  :root {
      --font-inter: 'Lora', serif;
      --font-playfair: 'Playfair Display', serif;
      --background: 36 25% 97%;
      --foreground: 222 47% 11%;
      --primary: 222 47% 14%;
      --primary-foreground: 45 100% 96%;
      --secondary: 36 20% 95%;
      --muted-foreground: 220 9% 46%;
      --accent: 38 72% 44%;
      --accent-foreground: 0 0% 100%;
      --border: 220 13% 91%;
  }

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

  body {
      font-family: var(--font-inter);
      background: hsl(var(--background));
      color: hsl(var(--foreground));
      line-height: 1.5;
  }

  .font-playfair {
      font-family: var(--font-playfair);
  }

  .font-inter {
      font-family: var(--font-inter);
  }

  .bg-primary {
      background: hsl(var(--primary));
  }

  .bg-secondary {
      background: hsl(var(--secondary));
  }

  .bg-accent {
      background: hsl(var(--accent));
  }

  .bg-white {
      background: #ffffff;
  }

  .bg-muted {
      background: #f8f6f1;
  }

  .text-primary {
      color: hsl(var(--primary));
  }

  .text-muted-foreground {
      color: hsl(var(--muted-foreground));
  }

  .text-accent {
      color: hsl(var(--accent));
  }

  .text-white {
      color: #ffffff;
  }

  .border-border {
      border-color: hsl(var(--border));
  }

  /* Hero Section */
  .hero {
      position: relative;
      padding-top: 112px;
      padding-bottom: 80px;
      padding-left: 24px;
      padding-right: 24px;
      background: #f0f4f8;
      overflow: hidden;
  }

  .hero-content {
      max-width: 1152px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
  }

  @media (min-width: 1024px) {
      .hero-content {
          grid-template-columns: 1fr 1fr;
          align-items: center;
      }
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 9999px;
      background: white;
      border: 1px solid hsl(var(--border));
      color: hsl(var(--primary));
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 24px;
  }

  .hero h1 {
      font-family: var(--font-playfair);
      font-size: 48px;
      font-weight: 700;
      color: hsl(var(--primary));
      margin-bottom: 16px;
      line-height: 1.1;
  }

  @media (min-width: 768px) {
      .hero h1 {
          font-size: 60px;
      }
  }

  .hero p {
      color: hsl(var(--muted-foreground));
      font-size: 13px !important;
  }

  .hero p {
      color: hsl(var(--muted-foreground));
      font-size: 13px;
      font-weight: 300;
      margin-bottom: 32px;
      line-height: 1.6;
      max-width: 448px;
  }

  .hero-checklist {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 32px;
  }

  .hero-checklist-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: hsl(var(--primary));
  }

  /* Form Card */
  .hero-form {
      background: white;
      border-radius: 24px;
      padding: 12px 25px 0px 25px !important;
      box-shadow: 0 25px 50px -12px rgba(30, 41, 59, 0.15);
      border: 1px solid hsl(var(--border));
  }

  .hero-form-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 9999px;
      background: hsl(var(--accent) / 0.1);
      border: 1px solid hsl(var(--accent) / 0.2);
      color: hsl(var(--accent));
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 24px;
  }

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

  .form-label {
      font-size: 12px;
      font-weight: 700;
      color: hsl(var(--muted-foreground));
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 8px;
      display: block;
  }

  .form-input {
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid hsl(var(--border));
      border-radius: 12px;
      padding: 12px 16px;
      background: #f8f6f1;
  }

  .form-input input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      font-size: 14px;
      color: hsl(var(--primary));
  }

  .form-input input::placeholder {
      color: hsl(var(--muted-foreground));
  }

  .btn-primary {
      margin-top: -25px;
      width: 100%;
      padding: 20px;
      border-radius: 16px;
      border: none;
      background: hsl(var(--primary));
      color: hsl(var(--primary-foreground));
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 10px 15px -3px rgba(30, 41, 59, 0.15);
      transition: all 0.2s;
  }

  .btn-primary:hover {
      background: hsl(var(--primary) / 0.9);
      transform: scale(1.02);
  }

  .form-disclaimer {
      text-align: center;
      font-size: 12px;
      color: hsl(var(--muted-foreground));
      margin-top: 16px;
  }

  /* Stats Section */
  .stats {
      padding: 56px 24px;
      background: white;
      border-bottom: 1px solid hsl(var(--border));
  }

  .stats-grid {
      max-width: 1024px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      text-align: center;
  }

  @media (min-width: 768px) {
      .stats-grid {
          grid-template-columns: repeat(4, 1fr);
      }
  }

  .stats-value {
      font-family: var(--font-playfair);
      font-size: 32px;
      font-weight: 700;
      color: hsl(var(--primary));
      margin-bottom: 4px;
  }

  @media (min-width: 768px) {
      .stats-value {
          font-size: 40px;
      }
  }

  .stats-label {
      font-size: 12px;
      color: hsl(var(--muted-foreground));
  }

  /* Steps Section */
  .steps {
      padding: 96px 24px;
      background: #f8f6f1;
  }

  .section-header {
      max-width: 896px;
      margin: 0 auto 64px;
      text-align: center;
  }

  .section-header h2 {
      font-family: var(--font-playfair);
      font-size: 36px;
      font-weight: 700;
      color: hsl(var(--primary));
      margin-bottom: 16px;
  }

  @media (min-width: 768px) {
      .section-header h2 {
          font-size: 48px;
      }
  }

  .section-header p {
      color: hsl(var(--muted-foreground));
      font-size: 16px;
      font-weight: 300;
      line-height: 1.6;
      max-width: 576px;
      margin: 0 auto;
  }

  .steps-grid {
      max-width: 1024px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
  }

  @media (min-width: 640px) {
      .steps-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (min-width: 1024px) {
      .steps-grid {
          grid-template-columns: repeat(4, 1fr);
      }
  }

  .step-card {
      position: relative;
      background: white;
      border-radius: 16px;
      padding: 28px;
      border: 1px solid hsl(var(--border));
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .step-number {
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: hsl(var(--accent));
      color: hsl(var(--accent-foreground));
      font-size: 14px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .step-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: hsl(var(--accent) / 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      margin-top: 12px;
  }

  .step-icon svg {
      width: 24px;
      height: 24px;
      color: hsl(var(--accent));
  }

  .step-title {
      font-size: 16px;
      font-weight: 600;
      color: hsl(var(--primary));
      margin-bottom: 8px;
  }

  .step-desc {
      font-size: 12px;
      color: hsl(var(--muted-foreground));
      line-height: 1.5;
  }

  /* Benefits Section */
  .benefits {
      padding: 80px 24px;
      background: white;
      border-top: 1px solid hsl(var(--border));
      border-bottom: 1px solid hsl(var(--border));
  }

  .benefits-grid {
      max-width: 1024px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
  }

  @media (min-width: 640px) {
      .benefits-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (min-width: 1024px) {
      .benefits-grid {
          grid-template-columns: repeat(4, 1fr);
      }
  }

  .benefit-card {
      padding: 24px;
      border-radius: 16px;
      border: 1px solid hsl(var(--border));
      background: #f8f6f1;
      text-align: center;
  }

  .benefit-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: hsl(var(--accent) / 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
  }

  .benefit-icon svg {
      width: 20px;
      height: 20px;
      color: hsl(var(--accent));
  }

  .benefit-title {
      font-size: 14px;
      font-weight: 600;
      color: hsl(var(--primary));
      margin-bottom: 8px;
  }

  .benefit-desc {
      font-size: 12px;
      color: hsl(var(--muted-foreground));
      line-height: 1.5;
  }

  /* Testimonials Section */
  .testimonials {
      padding: 80px 24px;
      background: white;
      border-top: 1px solid hsl(var(--border));
  }

  .testimonials-grid {
      max-width: 1024px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
  }

  @media (min-width: 768px) {
      .testimonials-grid {
          grid-template-columns: repeat(3, 1fr);
      }
  }

  .testimonial-card {
      border-radius: 16px;
      border: 1px solid hsl(var(--border));
      background: #f8f6f1;
      padding: 28px;
      display: flex;
      flex-direction: column;
  }

  .testimonial-quote {
      width: 24px;
      height: 24px;
      color: hsl(var(--accent) / 0.4);
      margin-bottom: 16px;
  }

  .testimonial-text {
      font-size: 14px;
      color: hsl(var(--foreground));
      line-height: 1.6;
      margin-bottom: 24px;
      flex: 1;
  }

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

  .testimonial-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: hsl(var(--accent) / 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: hsl(var(--accent));
      font-weight: 700;
      font-size: 14px;
  }

  .testimonial-info {
      flex: 1;
  }

  .testimonial-name {
      font-size: 14px;
      font-weight: 600;
      color: hsl(var(--primary));
  }

  .testimonial-role {
      font-size: 12px;
      color: hsl(var(--muted-foreground));
  }

  .testimonial-stars {
      display: flex;
      gap: 2px;
      margin-left: auto;
  }

  .testimonial-stars svg {
      width: 14px;
      height: 14px;
      color: hsl(var(--accent));
      fill: currentColor;
  }

  /* FAQ Section */
  .faq {
      padding: 80px 24px;
      background: #f8f6f1;
  }

  .faq-list {
      max-width: 768px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .faq-item {
      border-radius: 16px;
      border: 1px solid hsl(var(--border));
      background: white;
      overflow: hidden;
  }

  .faq-question {
      width: 100%;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
  }

  .faq-question-text {
      font-size: 14px;
      font-weight: 500;
      color: hsl(var(--primary));
  }

  .faq-icon {
      width: 16px;
      height: 16px;
      color: hsl(var(--accent));
      flex-shrink: 0;
      transition: transform 0.3s;
  }

  .faq-icon.rotated {
      transform: rotate(180deg);
  }

  .faq-answer {
      padding: 0 20px 20px;
      font-size: 14px;
      color: hsl(var(--muted-foreground));
      line-height: 1.6;
      border-top: 1px solid hsl(var(--border));
      margin-top: 0;
      display: none;
      padding-top: 16px;
  }

  .faq-answer.visible {
      display: block;
  }

  /* Final CTA */
  .final-cta {
      padding: 96px 24px;
      background: white;
      text-align: center;
  }

  .final-cta h2 {
      font-family: var(--font-playfair);
      font-size: 36px;
      font-weight: 700;
      color: hsl(var(--primary));
      margin-bottom: 16px;
  }

  @media (min-width: 768px) {
      .final-cta h2 {
          font-size: 48px;
      }
  }

  .final-cta p {
      color: hsl(var(--muted-foreground));
      font-size: 16px;
      font-weight: 300;
      margin-bottom: 40px;
      max-width: 448px;
      margin-left: auto;
      margin-right: auto;
  }

  .final-cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 16px;
      justify-content: center;
      margin-bottom: 40px;
  }

  @media (min-width: 640px) {
      .final-cta-buttons {
          flex-direction: row;
      }
  }

  .btn-cta {
      padding: 20px 48px;
      border-radius: 9999px;
      border: none;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s;
  }

  .btn-cta-primary {
      background: hsl(var(--accent));
      color: hsl(var(--accent-foreground));
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }

  .btn-cta-primary:hover {
      background: hsl(var(--accent) / 0.9);
      transform: scale(1.05);
  }

  .btn-cta-ghost {
      background: transparent;
      color: hsl(var(--primary) / 0.6);
      border: 1px solid hsl(var(--border));
  }

  .btn-cta-ghost:hover {
      color: hsl(var(--primary));
      border-color: hsl(var(--primary) / 0.4);
  }

  .final-cta-badges {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 24px;
      font-size: 12px;
      color: hsl(var(--muted-foreground));
  }

  .final-cta-badge {
      display: flex;
      align-items: center;
      gap: 6px;
  }

  .final-cta-badge svg {
      width: 14px;
      height: 14px;
      color: hsl(var(--accent));
  }

  .final-cta-divider {
      width: 1px;
      height: 12px;
      background: hsl(var(--border));
  }

  /* Footer */
  .footer {
      background: hsl(var(--primary));
      border-top: 1px solid hsl(var(--primary-foreground) / 0.05);
  }

  .footer-disclaimer {
      background: #0f172a;
      padding: 20px 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .footer-disclaimer p {
      max-width: 1280px;
      margin: 0 auto;
      font-size: 10px;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1.5;
  }

  .footer-content {
      max-width: 1280px;
      margin: 0 auto;
      padding: 64px 24px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
  }

  @media (min-width: 768px) {
      .footer-content {
          grid-template-columns: repeat(4, 1fr);
      }
  }

  .footer-brand {
      grid-column: span 1;
  }

  @media (min-width: 768px) {
      .footer-brand {
          grid-column: span 2;
      }
  }

  .footer-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
  }

  .footer-logo img {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      object-fit: cover;
  }

  .footer-logo span {
      font-size: 20px;
      font-weight: 600;
      color: hsl(var(--primary-foreground));
  }

  .footer-description {
      font-size: 14px;
      color: hsl(var(--primary-foreground) / 0.4);
      line-height: 1.6;
      max-width: 320px;
  }

  .footer-links h4 {
      font-size: 12px;
      font-weight: 600;
      color: hsl(var(--primary-foreground) / 0.6);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 16px;
  }

  .footer-links ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .footer-links a {
      font-size: 14px;
      color: hsl(var(--primary-foreground) / 0.4);
      text-decoration: none;
      transition: color 0.2s;
  }

  .footer-links a:hover {
      color: hsl(var(--primary-foreground) / 0.7);
  }

  .footer-bottom {
      max-width: 1280px;
      margin: 0 auto;
      padding: 32px 24px;
      border-top: 1px solid hsl(var(--primary-foreground) / 0.05);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
  }

  @media (min-width: 768px) {
      .footer-bottom {
          flex-direction: row;
          justify-content: space-between;
      }
  }

  .footer-copyright {
      font-size: 12px;
      color: hsl(var(--primary-foreground) / 0.3);
  }

  .footer-tagline {
      font-size: 12px;
      color: hsl(var(--primary-foreground) / 0.2);
  }

  /* Mobile menu */
  .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: hsl(var(--primary));
  }

  @media (max-width: 767px) {
      .mobile-menu-btn {
          display: block;
      }

      .navbar-desktop {
          display: none;
      }

      .hero p {
          color: hsl(var(--muted-foreground));
          font-size: 13px !important;
          font-weight: 300;
          margin-bottom: 32px;
          line-height: 1.6;
          max-width: 448px;
      }
  }