/* Base Styles */
:root {
  --primary: #3a86ff;
  --primary-dark: #2a70e0;
  --secondary: #ff006e;
  --accent: #fb5607;
  --text: #333333;
  --text-light: #666666;
  --background: #ffffff;
  --background-alt: #f8f9fa;
  --border: #e1e4e8;
  --success: #4CAF50;
  --warning: #ff9100;
  --danger: #f44336;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--background);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

h2 {
  font-size: 2.25rem;
  color: var(--text);
}

h3 {
  font-size: 1.5rem;
  color: var(--text);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* Buttons */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(58, 134, 255, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(58, 134, 255, 0.3);
}

.cta-button.small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.text-link {
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.text-link:hover {
  color: var(--primary-dark);
}

.text-link .arrow {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.text-link:hover .arrow {
  transform: translateX(3px);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-link {
  margin-right: 30px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(240, 245, 255, 0.9), rgba(255, 255, 255, 0.9));
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./assets/pattern-bg.svg');
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}

.hero .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.hero-logo {
  margin-bottom: 2rem;
  text-align: center;
}

.hero-logo-img {
  width: 200px;
  height: auto;
  max-width: 100%;
}

.highlight {
  color: var(--secondary);
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  line-height: 1.1;
}

.hero-text {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.pricing-highlight {
  text-align: center;
  margin-bottom: 2rem;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.trial-info {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.phone-mockup {
  max-width: 400px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s ease;
}

.phone-mockup:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--background-alt);
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.pricing-header h3 {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 20px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 15px;
}

.currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
}

.amount {
  font-size: 60px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 5px;
}

.period {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 500;
}

.pricing-description {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 16px;
}

.pricing-features {
  margin: 30px 0;
  text-align: left;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
}

.checkmark {
  color: var(--success);
  font-weight: bold;
  margin-right: 12px;
  font-size: 18px;
}

.pricing-trial {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0;
}

.trial-badge {
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.pricing-trial p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
}

.pricing-cta {
  margin-top: 30px;
}

.pricing-cta .cta-button {
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}

.feature-card {
  background-color: var(--background);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.1), rgba(255, 0, 110, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon img {
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

/* How it Works Section */
.how-it-works {
  padding: 100px 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.step {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  grid-gap: 30px;
  align-items: center;
}

.step:nth-child(even) {
  grid-template-columns: 70px 1fr 1fr;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(58, 134, 255, 0.2);
}

.step-content {
  padding-right: 20px;
}

.step-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-image img {
  display: block;
  width: 100%;
  transition: transform 0.5s ease;
}

.step-image:hover img {
  transform: scale(1.02);
}

/* Prize System Section */
.prize-system {
  padding: 100px 0;
  background-color: var(--background-alt);
}

.prize-system .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.prize-content {
  flex: 1;
  min-width: 300px;
}

.prize-description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.prize-list {
  margin-bottom: 2rem;
  list-style-position: inside;
}

.prize-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: var(--text-light);
}

.prize-list li:before {
  content: "✓";
  color: var(--success);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.prize-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.prize-image img {
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
}

.testimonials-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 30px;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 300px;
  scroll-snap-align: start;
  background-color: var(--background);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content p {
  font-style: italic;
}

.testimonial-content:before {
  content: "\201C";
  font-size: 5rem;
  color: rgba(58, 134, 255, 0.1);
  position: absolute;
  top: -30px;
  left: -20px;
  z-index: -1;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.author-info h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

.author-info p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Download Section */
.download {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
}

.download .section-title {
  color: white;
}

.download .section-title:after {
  background: white;
}

.download-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

.web-app-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button.large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

.cta-button-outline {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-align: center;
}

.cta-button-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-2px);
}

.cta-button-outline.large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: #f1f5f9;
  padding: 80px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.footer-logo p {
  color: #9ca3af;
  margin-top: 15px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  min-width: 150px;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-size: 1rem;
  color: white;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.social-links img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .hero {
    padding: 140px 0 80px;
  }
  .step {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-gap: 20px;
  }
  .step:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .step-number {
    margin: 0 auto;
  }
  .step-content {
    padding-right: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-content, .hero-image {
    flex: 100%;
    padding-right: 0;
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .prize-content {
    text-align: center;
  }
  .prize-list li {
    text-align: left;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .hero {
    padding: 120px 0 60px;
  }
  .section-title {
    margin-bottom: 2rem;
  }
  .testimonial {
    flex: 0 0 calc(100% - 20px);
  }
  .web-app-buttons {
    flex-direction: column;
    align-items: center;
  }
  .footer-content {
    flex-direction: column;
    gap: 50px;
  }
  .footer-logo {
    text-align: center;
    max-width: 100%;
  }
  .footer-links {
    flex-direction: column;
  }
  .footer-column {
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
}

/* Additional Page Styles */
.page-hero {
  background: linear-gradient(135deg, #3A86FF 0%, #8B5CF6 50%, #EF4444 100%);
  color: white;
  padding: 100px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-content {
  padding-top: 80px;
}

.content-section {
  padding: 60px 0;
}

.content-grid {
  display: grid;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.content-block {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-block h2 {
  color: #1F2937;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.content-block ul {
  margin: 16px 0;
  padding-left: 20px;
}

.content-block li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.contact-methods {
  margin-top: 30px;
}

.contact-method {
  margin-bottom: 30px;
  padding: 20px;
  background: #F8FAFC;
  border-radius: 8px;
}

.contact-method h3 {
  color: #3A86FF;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-link {
  color: #3A86FF;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3A86FF;
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

.response-time {
  text-align: center;
  padding: 30px;
  background: #F0F9FF;
  border-radius: 12px;
  margin-top: 40px;
}

.response-time h3 {
  color: #3A86FF;
  margin-bottom: 10px;
}

/* FAQ Page Styles */
.faq-sections {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section {
  margin-bottom: 50px;
}

.faq-section h2 {
  color: #1F2937;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3A86FF;
}

.faq-item {
  background: white;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  color: #3A86FF;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.faq-footer {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, #F0F9FF 0%, #FEF3F2 100%);
  border-radius: 12px;
}

.faq-footer h3 {
  color: #1F2937;
  margin-bottom: 10px;
}

/* Tutorial Page Styles */
.tutorial-grid {
  display: grid;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.tutorial-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tutorial-number {
  background: linear-gradient(135deg, #3A86FF 0%, #8B5CF6 100%);
  color: white;
  font-size: 24px;
  font-weight: 700;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
  float: left;
}

.tutorial-card h3 {
  color: #1F2937;
  font-size: 24px;
  font-weight: 600;
  margin: 20px 20px 10px 90px;
}

.tutorial-card > p {
  color: #6B7280;
  margin: 0 20px 20px 90px;
  font-style: italic;
}

.tutorial-content {
  clear: both;
  padding: 0 20px 30px;
}

.tutorial-content h4 {
  color: #3A86FF;
  font-size: 18px;
  font-weight: 600;
  margin: 25px 0 10px 0;
}

.tutorial-content ul {
  margin-bottom: 20px;
}

.tutorial-footer {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, #F0F9FF 0%, #FEF3F2 100%);
  border-radius: 12px;
}

.tutorial-actions {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cta-button.secondary {
  background: transparent;
  color: #3A86FF;
  border: 2px solid #3A86FF;
}

.cta-button.secondary:hover {
  background: #3A86FF;
  color: white;
}

/* Legal Pages Styles */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.legal-section h2 {
  color: #1F2937;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3A86FF;
}

.legal-section h3 {
  color: #3A86FF;
  font-size: 20px;
  font-weight: 600;
  margin: 25px 0 15px 0;
}

.legal-section ul {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Mobile Responsive for New Pages */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 32px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tutorial-number {
    float: none;
    margin: 20px auto;
  }
  
  .tutorial-card h3,
  .tutorial-card > p {
    margin-left: 20px;
    text-align: center;
  }
  
  .tutorial-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .tutorial-actions .cta-button {
    width: 200px;
  }
}