:root {
      --color-primary: #0D8B8B;
      --color-secondary: #4A4A4A;
      --color-accent: #D4A574;
      --color-text: #1a1a2e;
      --color-text-light: #4a4a68;
      --color-background: #ffffff;
      --color-background-alt: #f5f3f0;
      --font-heading: 'Montserrat', sans-serif;
      --font-body: 'Inter', sans-serif;
      --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
      --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
      --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      color: var(--color-text);
      background: var(--color-background);
    }

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

    /* Header & Navigation */
    .header {
      position: sticky;
      top: 0;
      background: var(--color-background);
      border-bottom: 1px solid rgba(13, 139, 139, 0.1);
      z-index: 1000;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      font-weight: 700;
      font-size: 24px;
      color: var(--color-text);
      transition: opacity 0.2s ease;
    }

    .logo:hover {
      opacity: 0.85;
    }

    .logo svg {
      width: 32px;
      height: 38px;
      margin-right: 10px;
      flex-shrink: 0;
    }

    .logo .logo-text {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 22px;
      color: var(--color-text);
      letter-spacing: -0.5px;
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--color-text-light);
      font-weight: 500;
      font-size: 14px;
      transition: color 0.2s ease;
    }

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

    /* Buttons */
    .btn {
      display: inline-block;
      padding: 12px 28px;
      border-radius: var(--radius-sm);
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.2s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .btn-primary {
      background: var(--color-primary);
      color: white !important;
    }

    .btn-primary:hover {
      background: #0a6e6e;
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: var(--color-accent);
      color: var(--color-text);
    }

    .btn-secondary:hover {
      background: #c59461;
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .btn-lg {
      padding: 16px 48px;
      font-size: 16px;
    }

    /* Hero Section */
    .hero {
      padding: 80px 0;
      background: linear-gradient(135deg, rgba(13, 139, 139, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
      border-bottom: 1px solid rgba(13, 139, 139, 0.1);
    }

    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-content h1 {
      font-family: var(--font-heading);
      font-size: 56px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
      color: var(--color-text);
    }

    .hero-content p {
      font-size: 18px;
      color: var(--color-text-light);
      margin-bottom: 32px;
      line-height: 1.8;
    }

    .hero-cta-group {
      display: flex;
      gap: 16px;
      margin-bottom: 40px;
    }

    .hero-visual {
      background: white;
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-lg);
      border: 2px solid var(--color-primary);
    }

    .mockup-header {
      background: var(--color-background-alt);
      border-radius: var(--radius-sm);
      padding: 14px 18px;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 17px;
      color: var(--color-text);
      text-align: center;
      margin-bottom: 18px;
      letter-spacing: -0.2px;
    }

    .mockup-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 16px;
    }

    .mockup-card {
      background: var(--color-background-alt);
      border-radius: var(--radius-sm);
      padding: 14px 16px;
      border: 1px solid rgba(13, 139, 139, 0.15);
      min-height: 132px;
      display: flex;
      flex-direction: column;
    }

    .mockup-card.peer { border-color: rgba(212, 165, 116, 0.5); }

    .mockup-card .mockup-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--color-text-light);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
    }

    .mockup-card svg {
      width: 100%;
      height: 54px;
      display: block;
      margin-bottom: auto;
    }

    .mockup-card .mockup-caption {
      font-size: 11px;
      color: var(--color-text-light);
      margin-top: 10px;
      line-height: 1.4;
      font-weight: 500;
    }

    .mockup-card .mockup-caption strong {
      color: var(--color-text);
      font-weight: 700;
    }

    .mockup-scenario {
      background: var(--color-background-alt);
      border-radius: var(--radius-sm);
      padding: 16px 18px;
    }

    .mockup-scenario .scenario-title {
      font-size: 11px;
      font-weight: 700;
      color: var(--color-text-light);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 14px;
    }

    .mockup-bar-row {
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: 14px;
      align-items: center;
      margin-bottom: 10px;
    }

    .mockup-bar-row:last-child { margin-bottom: 0; }

    .mockup-bar {
      height: 12px;
      border-radius: 6px;
      background: var(--color-primary);
    }

    .mockup-bar.light { background: rgba(13, 139, 139, 0.4); }

    .mockup-bar-row .row-value {
      font-weight: 600;
      color: var(--color-text);
      font-size: 13px;
    }

    /* Trust Bar */
    .trust-section {
      padding: 60px 0;
      background: var(--color-background-alt);
      border-bottom: 1px solid rgba(13, 139, 139, 0.1);
    }

    .trust-section .container {
      text-align: center;
    }

    .trust-label {
      font-size: 14px;
      color: var(--color-text-light);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    .trust-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .trust-logo {
      height: 40px;
      padding: 0 16px;
      display: flex;
      align-items: center;
      color: var(--color-text-light);
      font-weight: 600;
      font-size: 13px;
      border-left: 1px solid rgba(13, 139, 139, 0.2);
    }

    .trust-logo:first-child {
      border-left: none;
    }

    /* Features Section */
    .features {
      padding: 80px 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-family: var(--font-heading);
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--color-text);
    }

    .section-header p {
      font-size: 18px;
      color: var(--color-text-light);
      max-width: 600px;
      margin: 0 auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .feature-card {
      padding: 32px;
      background: #fbf6ee;
      border: 1px solid rgba(212, 165, 116, 0.18);
      border-radius: var(--radius-md);
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      border-color: var(--color-primary);
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .feature-icon {
      width: 56px;
      height: 56px;
      background: rgba(13, 139, 139, 0.1);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .feature-card h3 {
      font-family: var(--font-heading);
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--color-text);
    }

    .feature-card p {
      font-size: 15px;
      color: var(--color-text-light);
      line-height: 1.8;
    }

    /* Feature slider — the animated carousel of the three tools */
    .feature-slider {
      position: relative;
      max-width: 760px;
      margin: 0 auto;
      padding: 0 56px;
    }

    .feature-slider-track {
      position: relative;
      min-height: 380px;
      background: linear-gradient(135deg, #fbf6ee 0%, #f5ecd9 100%);
      border: 1px solid rgba(212, 165, 116, 0.25);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .feature-slide {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 24px;
      padding: 40px 48px;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.5s ease, transform 0.5s ease;
      pointer-events: none;
    }

    .feature-slide.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .feature-slide-animation {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feature-slide-animation > div,
    .feature-slide-animation canvas {
      width: 220px !important;
      height: 220px !important;
      max-width: 100%;
    }

    .feature-slide-body h3 {
      font-family: var(--font-heading);
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.4px;
      color: var(--color-text);
      margin: 0 0 12px;
    }

    .feature-slide-body p {
      font-size: 15px;
      color: var(--color-text-light);
      line-height: 1.7;
      margin: 0;
    }

    .feature-slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid rgba(13, 139, 139, 0.2);
      color: var(--color-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      z-index: 2;
      box-shadow: var(--shadow-sm);
    }

    .feature-slider-arrow:hover {
      background: var(--color-primary);
      color: #fff;
      border-color: var(--color-primary);
      transform: translateY(-50%) scale(1.05);
    }

    .feature-slider-arrow.prev { left: 0; }
    .feature-slider-arrow.next { right: 0; }

    .feature-slider-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }

    .feature-slider-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(13, 139, 139, 0.2);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: all 0.2s ease;
    }

    .feature-slider-dot:hover {
      background: rgba(13, 139, 139, 0.45);
    }

    .feature-slider-dot.active {
      background: var(--color-primary);
      width: 24px;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
      .feature-slider {
        padding: 0 12px;
      }
      .feature-slider-arrow.prev { left: -4px; }
      .feature-slider-arrow.next { right: -4px; }
      .feature-slide {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 24px;
      }
      .feature-slider-track {
        min-height: 440px;
      }
      .feature-slide-animation > div,
      .feature-slide-animation canvas {
        width: 160px !important;
        height: 160px !important;
      }
    }

    /* How It Works */
    .how-it-works {
      padding: 56px 0;
      background: var(--color-background-alt);
    }

    .how-it-works .section-header {
      margin-bottom: 36px;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 0;
    }

    .step {
      display: flex;
      flex-direction: column;
    }

    .step-number {
      width: 40px;
      height: 40px;
      background: var(--color-primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 14px;
    }

    .step h3 {
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--color-text);
    }

    .step p {
      font-size: 14px;
      color: var(--color-text-light);
      line-height: 1.65;
    }

    /* Trust pledge — the "Farmer-first. Vendor-never." slogan */
    .trust-pledge {
      text-align: center;
      margin-top: 64px;
      margin-bottom: 22px;
    }

    .trust-pledge h3 {
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -0.6px;
      color: var(--color-text);
      margin: 0 0 6px;
      display: inline-block;
      position: relative;
    }

    .trust-pledge h3::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      margin: 10px auto 0;
      background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
      border-radius: 2px;
    }

    .trust-pledge p {
      font-size: 14px;
      font-style: italic;
      color: var(--color-text-light);
      margin: 12px 0 0;
    }

    /* Sign-up CTA at the bottom of the "Get started" section */
    .how-it-works-cta {
      text-align: center;
      margin-top: 32px;
    }

    /* Trust pledge section — "Farmer-first. Vendor-never." */
    .trust-pledge-section {
      padding: 48px 0;
      background: #ffffff;
    }

    .trust-pledge-section .section-header {
      margin-bottom: 28px;
    }

    .trust-pledge-section .section-header h2 {
      display: inline-block;
      position: relative;
    }

    .trust-pledge-section .section-header h2::after {
      content: '';
      display: block;
      width: 64px;
      height: 3px;
      margin: 12px auto 0;
      background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
      border-radius: 2px;
    }

    .trust-pledge-section .section-header p {
      font-size: 14px;
      font-style: italic;
      margin-top: 14px;
    }

    /* Trust commitments — under the pledge */
    .trust-commitments {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      padding: 28px 32px;
      background: linear-gradient(135deg, #ffffff 0%, #f5f3f0 100%);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(13, 139, 139, 0.12);
      box-shadow: var(--shadow-sm);
    }

    .trust-commitment {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .trust-commitment-icon {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: rgba(13, 139, 139, 0.10);
      color: var(--color-primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .trust-commitment-icon svg {
      width: 18px;
      height: 18px;
    }

    .trust-commitment-body {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .trust-commitment-body strong {
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 700;
      color: var(--color-text);
      letter-spacing: -0.1px;
    }

    .trust-commitment-body span {
      font-size: 12px;
      color: var(--color-text-light);
      line-height: 1.55;
    }

    @media (max-width: 900px) {
      .trust-commitments {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        padding: 24px 22px;
      }
    }

    @media (max-width: 540px) {
      .trust-commitments {
        grid-template-columns: 1fr;
        gap: 18px;
      }
    }

    /* Testimonial Section */
    .testimonial {
      padding: 80px 0;
    }

    .testimonial-card {
      max-width: 700px;
      margin: 0 auto;
      padding: 48px;
      background: white;
      border-left: 4px solid var(--color-primary);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      text-align: center;
    }

    .testimonial-quote {
      font-size: 20px;
      font-weight: 500;
      color: var(--color-text);
      margin-bottom: 24px;
      line-height: 1.8;
    }

    .testimonial-quote::before {
      content: '"';
      font-size: 48px;
      color: var(--color-primary);
      margin-right: 8px;
    }

    .testimonial-author {
      font-weight: 600;
      color: var(--color-text);
      margin-bottom: 4px;
    }

    .testimonial-role {
      font-size: 14px;
      color: var(--color-text-light);
    }

    /* Research findings — replaces the old testimonial quotes with honest themes */
    .research-findings {
      display: flex;
      flex-direction: column;
      gap: 36px;
      max-width: 820px;
      margin: 48px auto 0;
    }

    .research-finding {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 20px;
      align-items: start;
    }

    .research-finding-num {
      font-family: var(--font-heading);
      font-size: 56px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -2px;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-align: center;
    }

    .research-finding h3 {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.3px;
      color: var(--color-text);
      margin: 0 0 8px;
      line-height: 1.3;
    }

    .research-finding p {
      font-size: 15px;
      line-height: 1.75;
      color: var(--color-text-light);
      margin: 0;
    }

    .research-finding p em {
      color: var(--color-text);
      font-style: italic;
      font-weight: 500;
    }

    @media (max-width: 600px) {
      .research-finding {
        grid-template-columns: 50px 1fr;
        gap: 14px;
      }
      .research-finding-num { font-size: 40px; }
      .research-finding h3 { font-size: 18px; }
    }

    .testimonial-snippets {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 980px;
      margin: 40px auto 0;
    }

    .testimonial-snippet {
      background: rgba(13, 139, 139, 0.05);
      border-left: 3px solid var(--color-accent);
      border-radius: var(--radius-sm);
      padding: 18px 22px;
    }

    .testimonial-snippet p {
      font-size: 14px;
      font-style: italic;
      color: var(--color-text);
      line-height: 1.55;
      margin: 0;
    }

    @media (max-width: 768px) {
      .testimonial-snippets {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
      }
    }

    /* Cooperative callout — sits between testimonial and final CTA */
    .cooperative-callout {
      padding: 88px 0;
      background:
        radial-gradient(circle at 18% 50%, rgba(13, 139, 139, 0.07), transparent 55%),
        radial-gradient(circle at 82% 50%, rgba(212, 165, 116, 0.09), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #fbf6ee 50%, #ffffff 100%);
      border-top: 1px solid rgba(13, 139, 139, 0.08);
      border-bottom: 1px solid rgba(13, 139, 139, 0.08);
      text-align: center;
      position: relative;
    }

    .cooperative-callout .container {
      max-width: 760px;
    }

    .cooperative-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--color-primary);
      margin-bottom: 18px;
    }

    .cooperative-slogan {
      font-family: var(--font-heading);
      font-size: 38px;
      font-weight: 700;
      letter-spacing: -0.8px;
      line-height: 1.2;
      color: var(--color-text);
      margin: 0 0 18px;
    }

    .cooperative-tagline {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 600;
      color: var(--color-primary);
      margin: 0 0 16px;
      letter-spacing: -0.2px;
    }

    .cooperative-body {
      font-size: 16px;
      line-height: 1.7;
      color: var(--color-text-light);
      max-width: 560px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .cooperative-callout { padding: 64px 0; }
      .cooperative-slogan { font-size: 28px; }
      .cooperative-tagline { font-size: 16px; }
      .cooperative-body { font-size: 15px; }
    }

    /* CTA Section */
    .final-cta {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--color-primary) 0%, #0a6e6e 100%);
      color: white;
      border-radius: var(--radius-lg);
      margin: 0 20px 60px;
    }

    .final-cta .container {
      text-align: center;
    }

    .final-cta h2 {
      font-family: var(--font-heading);
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .final-cta p {
      font-size: 18px;
      margin-bottom: 32px;
      opacity: 0.95;
    }

    .final-cta .btn-secondary {
      background: #e6d6b6;
      color: var(--color-text);
    }

    .final-cta .btn-secondary:hover {
      background: #d4be99;
    }

    /* Footer */
    .footer {
      background: var(--color-secondary);
      color: white;
      padding: 60px 0 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer .container {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      margin-bottom: 16px;
      color: #ffffff;
      text-decoration: none;
    }

    .footer-brand:hover { opacity: 0.85; }

    .footer-brand svg {
      width: 28px;
      height: 34px;
      margin-right: 10px;
      flex-shrink: 0;
    }

    .footer-brand span {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 20px;
      letter-spacing: -0.4px;
      color: #ffffff;
    }

    .footer-desc {
      font-size: 14px;
      opacity: 0.8;
      line-height: 1.8;
    }

    .footer-section h4 {
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      color: white;
      text-decoration: none;
      font-size: 14px;
      opacity: 0.8;
      transition: opacity 0.2s ease;
    }

    .footer-links a:hover {
      opacity: 1;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      text-align: center;
      font-size: 13px;
      opacity: 0.7;
    }

    /* Form Modal Styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .modal-content {
      background-color: white;
      margin: 5% auto;
      padding: 40px;
      border-radius: var(--radius-lg);
      width: 90%;
      max-width: 500px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
      from {
        transform: translateY(-50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .close {
      color: var(--color-text-light);
      float: right;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .close:hover {
      color: var(--color-text);
    }

    .modal h2 {
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--color-text);
    }

    .modal p {
      font-size: 15px;
      color: var(--color-text-light);
      margin-bottom: 32px;
      line-height: 1.6;
    }

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

    .form-group label {
      display: block;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--color-text);
      font-size: 14px;
    }

    .form-group input {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid rgba(13, 139, 139, 0.2);
      border-radius: var(--radius-sm);
      font-size: 15px;
      font-family: var(--font-body);
      transition: border-color 0.2s ease;
    }

    .form-group input:focus {
      outline: none;
      border-color: var(--color-primary);
      box-shadow: 0 0 0 3px rgba(13, 139, 139, 0.1);
    }

    .form-submit {
      width: 100%;
      margin-top: 24px;
    }

    .success-message {
      display: none;
      padding: 24px;
      background: rgba(13, 139, 139, 0.1);
      border-left: 4px solid var(--color-primary);
      border-radius: var(--radius-sm);
      color: var(--color-text);
      text-align: center;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        gap: 16px;
      }

      .nav-links a {
        display: none;
      }

      .hero .container {
        grid-template-columns: 1fr;
      }

      .hero-content h1 {
        font-size: 36px;
      }

      .hero-cta-group {
        flex-direction: column;
      }

      .hero-visual {
        min-height: 300px;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .steps-grid {
        grid-template-columns: 1fr;
      }

      .trust-logos {
        gap: 20px;
      }

      .footer .container {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .section-header h2 {
        font-size: 32px;
      }

      .final-cta h2 {
        font-size: 32px;
      }

      .modal-content {
        margin: 20% auto;
      }
    }

    @media (max-width: 480px) {
      .logo svg {
        width: 40px;
        height: 40px;
        margin-right: 8px;
      }

      .logo {
        font-size: 18px;
      }

      .hero-content h1 {
        font-size: 28px;
      }

      .hero-content p {
        font-size: 16px;
      }

      .section-header h2 {
        font-size: 24px;
      }

      .final-cta h2 {
        font-size: 24px;
      }

      .final-cta p {
        font-size: 16px;
      }

      .btn-lg {
        padding: 14px 32px;
        font-size: 15px;
      }

      .modal-content {
        padding: 28px 20px;
        margin: 40% auto;
      }
    }