/* stylesheets/style.css */

  /* CSS Variables - Light Mode */
    :root {
      --background: #ffffff;
      --foreground: #07272d;
      --card: #ffffff;
      --card-foreground: #07272d;
      --primary: #65c87a;
      --primary-foreground: #ffffff;
      --primary-900: #004d2e;
      --primary-700: #006239;
      --primary-500: #65c87a;
      --primary-300: #8fd99b;
      --primary-100: #d4f4db;
      --secondary: #17373d;
      --secondary-foreground: #ffffff;
      --muted: #ededed;
      --muted-foreground: #202020;
      --accent: #dbe5cc;
      --accent-foreground: #07272d;
      --border: #dfdfdf;
      --input: #f6f6f6;
      --ring: #65c87a;
      --radius: 0.5rem;
    }

    /* Dark Mode */
    .dark {
      --background: #121212;
      --foreground: #e2e8f0;
      --card: #171717;
      --card-foreground: #e2e8f0;
      --primary: #10b981;
      --primary-900: #a7f3d0;
      --primary-700: #6ee7b7;
      --primary-500: #10b981;
      --primary-300: #059669;
      --primary-100: #064e3b;
      --muted: #1f1f1f;
      --muted-foreground: #a2a2a2;
      --border: #292929;
      --input: #242424;
      --ring: #4ade80;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      letter-spacing: 0.025em;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background: var(--background);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: background-color 0.3s ease;
    }

    .nav-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: var(--foreground);
      font-weight: 600;
      font-size: 1.25rem;
    }

    .logo-text {
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--primary-700);
    }

    .logo-badge {
      margin-left: 0.75rem;
      font-size: 0.75rem;
      color: var(--muted-foreground);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2px 6px;
      font-weight: 500;
    }

    .nav-links {
      display: none;
      gap: 2rem;
    }

    .nav-links a {
      color: var(--foreground);
      opacity: 0.8;
      text-decoration: none;
      transition: all 0.2s;
    }

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

    .nav-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    /* Theme Toggle Button */
    .theme-toggle {
      width: 40px;
      height: 40px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: var(--background);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .theme-toggle:hover {
      background: var(--muted);
    }

    .theme-toggle svg {
      width: 20px;
      height: 20px;
      stroke: var(--foreground);
    }

    .theme-toggle .sun-icon {
      display: none;
    }

    .theme-toggle .moon-icon {
      display: block;
    }

    .dark .theme-toggle .sun-icon {
      display: block;
    }

    .dark .theme-toggle .moon-icon {
      display: none;
    }

    .btn {
      padding: 0.625rem 1.5rem;
      border-radius: var(--radius);
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9375rem;
    }

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

    .btn-primary:hover {
      background: var(--primary-900);
    }

    /* Dark mode: Use darker green for better contrast with white text */
    .dark .btn-primary {
      background: var(--primary-500);
      color: white;
    }

    .dark .btn-primary:hover {
      background: var(--primary-300);
    }

    .btn-ghost {
      background: transparent;
      color: var(--foreground);
    }

    .btn-ghost:hover {
      background: var(--muted);
    }

    .btn-lg {
      padding: 1rem 3rem;
      font-size: 1.125rem;
      height: 4rem;
      border-radius: 1rem;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--primary-500);
      color: var(--primary-700);
    }

    .btn-outline:hover {
      background: var(--primary-100);
    }

    .mobile-menu-btn {
      display: block;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      color: var(--foreground);
    }

    .mobile-menu {
      display: none;
      background: var(--background);
      border-top: 1px solid var(--border);
      padding: 1rem;
    }

    .mobile-menu.active {
      display: block;
    }

    .mobile-menu a {
      display: block;
      padding: 0.75rem;
      color: var(--foreground);
      text-decoration: none;
      border-radius: var(--radius);
    }

    .mobile-menu a:hover {
      background: var(--accent);
    }

    /* Hero Section */
    .hero {
      padding: 12rem 1rem 10rem;
      text-align: center;
      background: linear-gradient(to bottom, var(--primary-100), var(--background), var(--background));
      position: relative;
      overflow: hidden;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      background: var(--primary-100);
      border: 1px solid var(--primary-300);
      color: var(--primary-700);
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 2rem;
    }

    h1 {
      font-size: 4rem;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 1rem;
      color: var(--foreground);
    }

    h1 .highlight {
      color: var(--primary-700);
      font-weight: 900;
      font-size: 4.5rem;
      display: block;
      margin-top: 1rem;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .hero p {
      font-size: 1.5rem;
      color: var(--muted-foreground);
      max-width: 48rem;
      margin: 0 auto 3rem;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-bottom: 4rem;
      flex-wrap: wrap;
    }

    .hero-cta-btn {
      background: linear-gradient(to right, var(--primary-700), var(--primary-500)) !important;
      box-shadow: 0 20px 40px rgba(101, 200, 122, 0.3);
    }

    .dark .hero-cta-btn {
      box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
    }

    .hero-features {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .hero-feature {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .icon-check {
      width: 1.25rem;
      height: 1.25rem;
      border-radius: 50%;
      background: var(--primary-100);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }

    /* Trust Marquee */
    .trust-marquee {
      background: var(--muted);
      padding: 2rem 0;
      overflow: hidden;
    }

    .marquee-content {
      display: flex;
      gap: 3rem;
      animation: scroll 30s linear infinite;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .trust-item {
      flex-shrink: 0;
      text-align: center;
      min-width: 250px;
    }

    .trust-item strong {
      display: block;
      font-weight: 600;
      color: var(--foreground);
    }

    .trust-item span {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    /* Sections */
    section {
      padding: 6rem 1rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 5rem;
    }

    h2 {
      font-size: 3rem;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      margin-bottom: 1rem;
      line-height: 1.2;
      color: var(--foreground);
    }

    .section-header p {
      font-size: 1.25rem;
      color: var(--muted-foreground);
      max-width: 42rem;
      margin: 0 auto;
    }

    /* Feature Grid */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1280px;
      margin: 0 auto;
    }

    .feature-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 2rem;
      transition: all 0.3s;
      position: relative;
    }

    .feature-card:hover {
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border-color: var(--primary-300);
    }

    .dark .feature-card:hover {
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .feature-card.hero-feature {
      border: 2px solid var(--primary-500);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transform: scale(1.05);
    }

    .dark .feature-card.hero-feature {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .feature-card.hero-feature::before {
      content: '⭐ MOST POPULAR';
      position: absolute;
      top: -12px;
      left: 24px;
      background: linear-gradient(to right, var(--primary-700), var(--primary-500));
      color: white;
      padding: 4px 12px;
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
    }

    .feature-icon {
      width: 4rem;
      height: 4rem;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      background: var(--primary-100);
      transition: transform 0.3s;
    }

    .feature-card.hero-feature .feature-icon {
      background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
      box-shadow: 0 4px 12px rgba(0, 98, 57, 0.3);
    }

    .dark .feature-card.hero-feature .feature-icon {
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

    .feature-card:hover .feature-icon {
      transform: scale(1.1);
    }

    .feature-card h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      font-family: 'Montserrat', sans-serif;
      color: var(--card-foreground);
    }

    .feature-card p {
      color: var(--muted-foreground);
      line-height: 1.6;
    }

    /* Steps */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
      max-width: 1280px;
      margin: 0 auto;
    }

    .step {
      text-align: center;
      position: relative;
    }

    .step-number {
      width: 5rem;
      height: 5rem;
      background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-100);
      font-size: 2rem;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      margin: 0 auto 1.5rem;
      box-shadow: 0 4px 12px rgba(0, 98, 57, 0.3);
    }

    .dark .step-number {
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

    .step h3 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--foreground);
    }

    .step p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    /* Benefits */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1280px;
      margin: 0 auto;
    }

    .benefit-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 2rem;
    }

    .benefit-card h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      font-family: 'Montserrat', sans-serif;
      color: var(--card-foreground);
    }

    .benefit-card ul {
      list-style: none;
      padding: 0;
    }

    .benefit-card li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1rem;
      color: var(--muted-foreground);
    }

    .benefit-card li::before {
      content: '✓';
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      background: var(--primary-100);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* Pricing */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .pricing-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 2rem;
      transition: all 0.3s;
    }

    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .dark .pricing-card:hover {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .pricing-card.featured {
      border: 2px solid var(--primary-500);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      position: relative;
    }

    .dark .pricing-card.featured {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .pricing-card.featured::before {
      content: 'Most Popular';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(to right, var(--primary-700), var(--primary-500));
      color: white;
      padding: 6px 16px;
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .pricing-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--card-foreground);
    }

    .pricing-price {
      font-size: 3rem;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      margin-bottom: 1.5rem;
      color: var(--card-foreground);
    }

    .pricing-price.featured {
      color: var(--primary-700);
    }

    .pricing-price span {
      font-size: 1rem;
      color: var(--muted-foreground);
      font-weight: 400;
    }

    .pricing-description {
      color: var(--muted-foreground);
      margin-bottom: 2rem;
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 2rem;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1rem;
      font-size: 0.875rem;
      color: var(--card-foreground);
    }

    .pricing-features li::before {
      content: '✓';
      width: 1.25rem;
      height: 1.25rem;
      border-radius: 50%;
      background: var(--primary-100);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* CTA Section */
    .cta-section {
      padding: 8rem 1rem;
      background: linear-gradient(135deg, var(--primary-900), var(--primary-700), var(--primary-500));
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
      );
    }

    .cta-section h2 {
      color: white;
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
    }

    .cta-section p {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.9);
      max-width: 42rem;
      margin: 0 auto 3rem;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .btn-secondary {
      background: white;
      color: var(--primary-900);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.9);
    }

    .btn-outline-white {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.4);
      color: white;
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.6);
    }

    /* Waitlist Section */
    .waitlist-section {
      padding: 6rem 1rem;
      background: linear-gradient(to bottom, var(--background), var(--primary-100));
    }

    .waitlist-container {
      max-width: 64rem;
      margin: 0 auto;
    }

    .waitlist-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .waitlist-form-container {
      background: var(--card);
      border-radius: 1rem;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      padding: 3rem;
      border: 1px solid var(--border);
    }

    .dark .waitlist-form-container {
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    label {
      display: block;
      font-weight: 600;
      margin-bottom: 0.5rem;
      font-size: 0.875rem;
      color: var(--foreground);
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--input);
      font-family: inherit;
      font-size: 0.9375rem;
      color: var(--foreground);
      transition: all 0.2s;
    }

    input:focus,
    select:focus,
  textarea:focus {
      outline: none;
      border-color: var(--primary-500);
      box-shadow: 0 0 0 2px var(--ring); 
    }

    textarea {
      resize: vertical;
      min-height: 6rem;
    }

    .form-description {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      margin-top: 0.25rem;
    }

    .form-error {
      color: #ca3214;
      font-size: 0.875rem;
      margin-top: 0.25rem;
    }

    .error-message {
      background: rgba(202, 50, 20, 0.1);
      border: 1px solid rgba(202, 50, 20, 0.3);
      color: #ca3214;
      padding: 1rem;
      border-radius: var(--radius);
      margin-bottom: 1rem;
    }

    .success-message {
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.3);
      color: #059669;
      padding: 2rem;
      border-radius: var(--radius);
      text-align: center;
    }

    .success-icon {
      width: 4rem;
      height: 4rem;
      margin: 0 auto 1rem;
      color: #10b981;
    }

    .waitlist-benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .waitlist-benefit {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      text-align: center;
    }

    .waitlist-benefit-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background: var(--primary-100);
      color: var(--primary-700);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }

    .waitlist-benefit h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--foreground);
    }

    .waitlist-benefit p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    /* Footer */
    footer {
      background: var(--card);
      border-top: 1px solid var(--border);
      padding: 4rem 1rem 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2.5rem;
      max-width: 1280px;
      margin: 0 auto 3rem;
    }

    .footer-column h4 {
      font-weight: 600;
      margin-bottom: 1rem;
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      color: var(--foreground);
    }

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

    .footer-column li {
      margin-bottom: 0.75rem;
    }

    .footer-column a {
      color: var(--muted-foreground);
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.2s;
    }

    .footer-column a:hover {
      color: var(--foreground);
    }

    .footer-logo {
      margin-bottom: 1rem;
    }

    .footer-description {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      line-height: 1.6;
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 2rem;
      text-align: center;
    }

    .footer-bottom p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    /* Responsive */
    @media (min-width: 768px) {
      .nav-links {
        display: flex;
      }

      .mobile-menu-btn {
        display: none;
      }

      h1 {
        font-size: 6rem;
      }

      h1 .highlight {
        font-size: 7rem;
      }

      .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 767px) {
      .hero {
        padding: 8rem 1rem 6rem;
      }

      h1 {
        font-size: 2.5rem;
      }

      h1 .highlight {
        font-size: 3rem;
      }

      h2 {
        font-size: 2rem;
      }

      .hero p {
        font-size: 1.125rem;
      }

      .cta-section h2 {
        font-size: 2rem;
      }

      .waitlist-form-container {
        padding: 1.5rem;
      }
    }

    /* Utility classes */
    .bg-muted {
      background-color: var(--muted);
    }

    .hidden {
      display: none;
    }

    .dark\:hidden {
      display: block;
    }

    .dark .dark\:hidden {
      display: none !important;
    }

    .dark\:block {
      display: none;
    }

    .dark .dark\:block {
      display: block !important;
    }

    /* Modal Styles */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: 2000;
      overflow-y: auto;
      padding: 2rem 1rem;
    }

    .modal-overlay.active {
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }

    .modal-content {
      background: var(--card);
      border-radius: 1rem;
      max-width: 800px;
      width: 100%;
      margin: auto;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      position: relative;
      animation: modalSlideIn 0.3s ease-out;
    }

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

    .modal-header {
      padding: 2rem 2rem 1rem;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .modal-header h2 {
      margin: 0;
      font-size: 2rem;
      color: var(--foreground);
    }

    .modal-close {
      background: none;
      border: none;
      font-size: 2rem;
      color: var(--muted-foreground);
      cursor: pointer;
      padding: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius);
      transition: all 0.2s;
    }

    .modal-close:hover {
      background: var(--muted);
      color: var(--foreground);
    }

    .modal-body {
      padding: 2rem;
      color: var(--foreground);
      line-height: 1.8;
    }

    .modal-body h3 {
      font-size: 1.5rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      color: var(--foreground);
    }

    .modal-body h3:first-child {
      margin-top: 0;
    }

    .modal-body p {
      margin-bottom: 1rem;
      color: var(--card-foreground);
    }

    .modal-body ul {
      margin-bottom: 1rem;
      padding-left: 1.5rem;
    }

    .modal-body li {
      margin-bottom: 0.5rem;
    }

    .modal-body a {
      color: var(--primary-700);
      text-decoration: underline;
    }

    .modal-body a:hover {
      color: var(--primary-900);
    }

    /* Buttons should keep their own colors, not inherit link styles */
    .modal-body a.btn {
      color: white;
      text-decoration: none;
    }

    .modal-body a.btn:hover {
      color: white;
    }

/* Footer notice style */
.footer-notice {
    margin-top: 2rem;
    color: var(--muted-foreground);
}

/* --- Global Utility Classes for Zero-Inline Compliance --- */
.text-white { color: #ffffff !important; }
.text-center { text-align: center !important; }
.text-muted-white { color: rgba(255, 255, 255, 0.9) !important; }
.text-foreground { color: var(--foreground) !important; }
.text-muted-foreground { color: var(--muted-foreground) !important; }
.text-primary-700 { color: var(--primary-700) !important; }
.font-bold { font-weight: 700 !important; }
.font-semibold { font-weight: 600 !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }
.mt-4 { margin-top: 1rem !important; }
.relative { position: relative !important; }
.z-10 { z-index: 10 !important; }
.max-w-42 { max-width: 42rem !important; }
.max-w-900 { max-width: 900px !important; }
.uppercase-tracking { font-size: 0.75rem; font-weight: 600; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.05em; }

/* --- Live Example Component Classes --- */
.example-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-900), var(--primary-700), var(--primary-500));
  position: relative;
  overflow: hidden;
}

.example-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
}

.example-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.product-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-card-body {
  padding: 3rem 2rem;
  background: var(--card);
}

.product-brand-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-100);
  border-radius: 9999px;
  color: var(--primary-700);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-title-large {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.info-grid-container {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 1.5rem; 
  padding: 2rem; 
  background: var(--muted); 
  border-radius: 1rem;
}

.impact-header-line {
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.impact-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.impact-card-fancy {
  background: linear-gradient(135deg, rgba(101, 200, 122, 0.08), rgba(101, 200, 122, 0.04));
  border: 1px solid rgba(101, 200, 122, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.impact-card-fancy svg {
  margin: 0 auto 0.75rem;
  stroke: var(--primary-700);
}

.impact-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-700);
  margin-bottom: 0.25rem;
}

.feature-check-list {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 1.5rem;
}

.feature-check-item {
  display: flex; 
  align-items: flex-start; 
  gap: 0.75rem;
}

.feature-check-icon {
  flex-shrink: 0; 
  margin-top: 2px;
  stroke: var(--primary-700);
}

.section-divider-line {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Cookie Table Styles */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.cookie-table thead tr {
  border-bottom: 2px solid var(--border);
}

.cookie-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.cookie-table th, 
.cookie-table td {
  text-align: left;
  padding: 0.5rem;
}

/* --- Approach Section Component --- */
.approach-section {
  padding: 6rem 0;
  background: var(--background);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.path-card {
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.path-card--sustalium {
  background: linear-gradient(135deg, rgba(101, 200, 122, 0.08) 0%, rgba(101, 200, 122, 0.04) 100%);
  border: 2px solid var(--primary-500);
}

.path-card--consultant {
  background: var(--card);
  border: 2px solid var(--border);
}

.path-icon-box {
  width: 3rem;
  height: 3rem;
  background: var(--primary-100);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.path-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.path-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.path-label {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  font-style: italic;
}

.path-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.path-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.path-list-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.path-list-text {
  color: var(--card-foreground);
  line-height: 1.5;
}

/* Extra Utility for the Consultant alignment */
.mt-14 {
  margin-top: 3.5rem !important;
}

/* --- Waitlist Section Component --- */
.waitlist-section {
  padding: 6rem 1rem;
  background: linear-gradient(to bottom, var(--background), var(--primary-100));
}

.waitlist-container {
  max-width: 64rem;
  margin: 0 auto;
}

.waitlist-header {
  text-align: center;
  margin-bottom: 3rem;
}

.waitlist-form-container {
  background: var(--card);
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 3rem;
  border: 1px solid var(--border);
  max-width: 600px; /* Constrain the form width for better UX */
  margin: 0 auto;
}

.dark .waitlist-form-container {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Custom Waitlist Button styling */
.waitlist-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.waitlist-btn svg {
  margin-right: 0.5rem;
}

/* Footer text below the button */
.waitlist-footer-text {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.waitlist-benefit {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.waitlist-benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.waitlist-benefit h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.waitlist-benefit p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* --- Additional Utility Classes --- */
.max-w-600 { max-width: 600px !important; }
.max-w-1100 { max-width: 1100px !important; }
.flex-center-wrap { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.border-primary-700 { border: 2px solid var(--primary-700) !important; }
.text-primary-900 { color: var(--primary-900) !important; }
.fs-0-85 { font-size: 0.85rem !important; }
.fs-0-9 { font-size: 0.9rem !important; }
.fs-1-1 { font-size: 1.1rem !important; }

/* --- Modal Specific Component Classes --- */
.banner-info {
  background: var(--primary-100);
  border-left: 4px solid var(--primary-700);
  padding: 1.25rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.modal-grid__title {
  color: var(--primary-700);
  border-bottom: 2px solid var(--primary-100);
  padding-bottom: 0.5rem;
}

.modal-grid__list {
  list-style: none;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.modal-footer-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--muted);
  border-radius: 1rem;
  border: 1px solid var(--border);
}

/* Specific button overrides for the email link */
.btn-outline-email {
  text-decoration: none;
  border: 2px solid var(--primary-700) !important;
  color: var(--primary-700) !important;
}

.btn-outline-email:hover {
  background: var(--primary-100);
}

/* --- Additional Utility Classes for Contact Modal --- */
.my-8 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
.italic { font-style: italic !important; }

/* Prevent body scroll when modal is open */
.no-scroll {
  overflow: hidden !important;
}

/* Site Logo styling */
.site-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}


.mobile-menu-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  align-items: center;
}

/* Helper for embedded Microsoft Forms */
.form-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* This ensures the iframe doesn't create double scrollbars if possible */
  height: 600px; 
}

@media (max-width: 767px) {
  .form-wrapper {
    height: 500px;
  }
}
