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

  :root {
    --green-950: #0a1f0e;
    --green-900: #112d17;
    --green-800: #1a4825;
    --green-700: #236031;
    --green-600: #2d7a3e;
    --green-500: #3a9b4f;
    --green-400: #5ab86a;
    --green-300: #85d094;
    --green-200: #b5e3be;
    --green-100: #dff2e3;
    --green-50:  #f2faf4;
    --gold-500: #c9910a;
    --gold-400: #e3a80f;
    --gold-200: #f5d98a;
    --gold-100: #fdf3cc;
    --earth-800: #3d2b1a;
    --earth-600: #7a5635;
    --earth-400: #b8895a;
    --earth-100: #f5ece0;
    --off-white: #f8f6f1;
    --text-dark: #111c14;
    --text-mid: #3a4d3e;
    --text-light: #6b7f6e;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(248, 246, 241, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 122, 62, 0.12);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-mark {
    width: 34px;
    height: 34px;
    background: var(--green-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-logo-mark svg {
    width: 20px;
    height: 20px;
  }

  .nav-logo-text {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--green-900);
    letter-spacing: -0.02em;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-mid);
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--green-800);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 400 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--green-700) !important; color: #fff !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    padding: 120px 2rem 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 40%, rgba(45, 122, 62, 0.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 50% at 10% 80%, rgba(201, 145, 10, 0.06) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(45,122,62,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(45,122,62,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-100);
    border: 1px solid var(--green-300);
    color: var(--green-800);
    font-size: 0.78rem;
    font-weight: 400;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero-title {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--green-950);
    margin-bottom: 1.5rem;
  }

  .hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--green-600);
  }

  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 460px;
  }

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

  .btn-primary {
    background: var(--green-800);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--green-700); transform: translateY(-1px); }

  .btn-ghost {
    background: transparent;
    color: var(--text-mid);
    border: 1px solid rgba(45,122,62,0.25);
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-ghost:hover { border-color: var(--green-500); color: var(--green-700); }

  .hero-trust {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--text-light);
  }

  .hero-trust-avatars {
    display: flex;
  }

  .hero-trust-avatars span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--off-white);
    background: var(--green-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--green-800);
    margin-left: -8px;
  }

  .hero-trust-avatars span:first-child { margin-left: 0; }

  /* HERO VISUAL */
  .hero-visual {
    position: relative;
  }

  .app-mockup {
    background: #fff;
    border: 1px solid rgba(45,122,62,0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 24px 60px rgba(10, 31, 14, 0.1);
    position: relative;
  }

  .mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--green-100);
  }

  .mockup-title {
    font-family: 'Fraunces', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green-900);
  }

  .mockup-badge {
    background: var(--green-100);
    color: var(--green-700);
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 100px;
  }

  .treatment-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(45,122,62,0.07);
    font-size: 0.82rem;
  }

  .treatment-row:last-of-type { border-bottom: none; }

  .treatment-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
  }

  .icon-ok { background: var(--green-100); }
  .icon-warn { background: var(--gold-100); }
  .icon-info { background: #e8f0fe; }

  .treatment-info { flex: 1; }

  .treatment-name {
    font-weight: 400;
    color: var(--text-dark);
    font-size: 0.83rem;
    margin-bottom: 2px;
  }

  .treatment-sub {
    color: var(--text-light);
    font-size: 0.75rem;
  }

  .status-chip {
    font-size: 0.7rem;
    padding: 3px 9px;
    border-radius: 100px;
    font-weight: 400;
  }

  .chip-ok { background: var(--green-100); color: var(--green-700); }
  .chip-warn { background: var(--gold-100); color: var(--gold-500); }

  .mockup-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--green-100);
    display: flex;
    gap: 8px;
  }

  .mockup-btn-main {
    flex: 1;
    background: var(--green-800);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
  }

  .mockup-btn-sec {
    background: var(--green-50);
    color: var(--green-700);
    border: 1px solid var(--green-200);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
  }

  .floating-card {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(45,122,62,0.15);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(10,31,14,0.08);
    font-size: 0.78rem;
  }

  .float-top {
    top: -20px;
    right: -24px;
    min-width: 160px;
  }

  .float-bottom {
    bottom: -18px;
    left: -20px;
    min-width: 180px;
  }

  .float-label {
    font-size: 0.68rem;
    color: var(--text-light);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .float-value {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--green-800);
    line-height: 1;
  }

  .float-sub {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 2px;
  }

  /* REGLA NORMATIVA */
  .reg-banner {
    background: var(--green-950);
    color: var(--green-200);
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .reg-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .reg-date {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold-400);
  }

  /* SECTION: PROBLEMA */
  .section {
    padding: 100px 2rem;
  }

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-600);
    font-weight: 400;
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--green-950);
    margin-bottom: 1.25rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 3.5rem;
  }

  /* PAIN CARDS */
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .pain-card {
    background: #fff;
    border: 1px solid rgba(45,122,62,0.12);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
  }

  .pain-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
  }

  .pain-card.red::before { background: #e24b4a; }
  .pain-card.amber::before { background: var(--gold-400); }
  .pain-card.blue::before { background: #378add; }

  .pain-card:hover { border-color: var(--green-300); transform: translateY(-2px); }

  .pain-icon {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: block;
  }

  .pain-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--green-950);
    margin-bottom: 0.75rem;
  }

  .pain-desc {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.65;
    font-weight: 300;
  }

  /* CÓMO FUNCIONA */
  .how-section {
    background: var(--green-950);
    padding: 100px 2rem;
    position: relative;
    overflow: hidden;
  }

  .how-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(58, 155, 79, 0.08);
    pointer-events: none;
  }

  .how-section .section-title { color: var(--green-100); }
  .how-section .section-label { color: var(--green-400); }
  .how-section .section-subtitle { color: var(--green-300); }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(33.33% - 20px);
    right: calc(33.33% - 20px);
    height: 1px;
    background: rgba(58,155,79,0.3);
    pointer-events: none;
  }

  .step-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    transition: background 0.2s;
  }

  .step-card:hover { background: rgba(255,255,255,0.07); }

  .step-num {
    width: 44px;
    height: 44px;
    background: var(--green-700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
  }

  .step-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--green-100);
    margin-bottom: 0.75rem;
  }

  .step-desc {
    font-size: 0.875rem;
    color: var(--green-300);
    line-height: 1.65;
    font-weight: 300;
  }

  .step-tech {
    margin-top: 1rem;
    font-size: 0.72rem;
    color: var(--green-500);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
  }

  /* FEATURES */
  .features-section {
    padding: 100px 2rem;
    background: var(--off-white);
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    background: #fff;
    border: 1px solid rgba(45,122,62,0.12);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: border-color 0.2s;
  }

  .feature-card:hover { border-color: var(--green-300); }

  .feature-card.wide {
    grid-column: 1 / -1;
    background: var(--green-50);
    border-color: var(--green-200);
  }

  .feature-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--green-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
  }
  .feature-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--green-950);
    margin-bottom: 0.5rem;
  }

  .feature-desc {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.65;
    font-weight: 300;
  }

  /* PRECIOS */
  .pricing-section {
    padding: 100px 2rem;
    background: #fff;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: start;
  }

  .price-card {
    background: var(--off-white);
    border: 1px solid rgba(45,122,62,0.12);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
  }

  .price-card:hover { transform: translateY(-3px); border-color: var(--green-400); }

  .price-card.featured {
    background: var(--green-800);
    border-color: var(--green-700);
    color: #fff;
  }

  .price-card.featured:hover { border-color: var(--green-500); }

  .featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-400);
    color: var(--earth-800);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
  }

  .price-name {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }

  .price-card.featured .price-name { color: var(--green-100); }
  .price-card:not(.featured) .price-name { color: var(--green-900); }

  .price-exp {
    font-size: 0.78rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
  }

  .price-card.featured .price-exp { color: var(--green-300); }
  .price-card:not(.featured) .price-exp { color: var(--text-light); }

  .price-amount {
    margin-bottom: 1.5rem;
  }

  .price-num {
    font-family: 'Fraunces', serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .price-card.featured .price-num { color: #fff; }
  .price-card:not(.featured) .price-num { color: var(--green-950); }

  .price-period {
    font-size: 0.78rem;
    font-weight: 300;
  }

  .price-card.featured .price-period { color: var(--green-300); }
  .price-card:not(.featured) .price-period { color: var(--text-light); }

  .price-features {
    list-style: none;
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .price-features li {
    font-size: 0.82rem;
    font-weight: 300;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .price-card.featured .price-features li { color: var(--green-200); }
  .price-card:not(.featured) .price-features li { color: var(--text-mid); }

  .check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .price-card.featured .check { color: var(--green-300); }
  .price-card:not(.featured) .check { color: var(--green-500); }

  .price-btn {
    width: 100%;
    padding: 11px;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 400;
  }

  .price-card.featured .price-btn {
    background: #fff;
    color: var(--green-800);
    border: none;
  }

  .price-card.featured .price-btn:hover { background: var(--green-100); }

  .price-card:not(.featured) .price-btn {
    background: transparent;
    color: var(--green-700);
    border: 1px solid var(--green-300);
  }

  .price-card:not(.featured) .price-btn:hover { background: var(--green-50); }

  .price-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: var(--text-light);
  }

  /* KIT DIGITAL */
  .kit-section {
    padding: 80px 2rem;
    background: var(--gold-100);
    border-top: 1px solid var(--gold-200);
    border-bottom: 1px solid var(--gold-200);
  }

  .kit-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .kit-tag {
    display: inline-block;
    background: var(--gold-200);
    color: var(--gold-500);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 1rem;
  }

  .kit-title {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.025em;
    color: var(--earth-800);
    margin-bottom: 1rem;
    line-height: 1.15;
  }

  .kit-desc {
    font-size: 0.925rem;
    color: var(--earth-600);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
  }

  .kit-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .kit-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.875rem;
    color: var(--earth-600);
    font-weight: 300;
    line-height: 1.5;
  }

  .kit-step-num {
    width: 24px;
    height: 24px;
    background: var(--gold-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--earth-800);
    flex-shrink: 0;
    margin-top: 1px;
  }

  .kit-visual {
    background: #fff;
    border: 1px solid var(--gold-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
  }

  .kit-amount {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gold-200);
  }

  .kit-eur {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-500);
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .kit-eur-label {
    font-size: 0.8rem;
    color: var(--earth-600);
    margin-top: 4px;
  }

  .kit-segs {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .kit-seg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
  }

  .kit-seg-label { color: var(--earth-600); font-weight: 300; }
  .kit-seg-val { font-weight: 400; color: var(--earth-800); }

  /* TESTIMONIAL / EARLY ACCESS */
  .early-section {
    padding: 100px 2rem;
    background: var(--off-white);
  }

  .early-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .early-inner .section-label { text-align: center; display: block; }

  .early-inner .section-title { margin-left: auto; margin-right: auto; }

  .early-form {
    display: flex;
    gap: 10px;
    margin-top: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .early-input {
    flex: 1;
    padding: 13px 16px;
    border: 1px solid rgba(45,122,62,0.2);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    background: #fff;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
  }

  .early-input:focus { border-color: var(--green-500); }
  .early-input::placeholder { color: var(--text-light); }

  .early-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
  }

  .early-benefit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-mid);
    font-weight: 300;
  }

  .benefit-dot {
    width: 5px;
    height: 5px;
    background: var(--green-500);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* FOOTER */
  footer {
    background: var(--green-950);
    padding: 3rem 2rem;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-logo {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--green-200);
  }

  .footer-copy {
    font-size: 0.8rem;
    color: var(--green-600);
    font-weight: 300;
  }

  .footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }

  .footer-links a {
    font-size: 0.8rem;
    color: var(--green-500);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--green-300); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-up {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
  }

  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.22s; }
  .delay-3 { animation-delay: 0.34s; }
  .delay-4 { animation-delay: 0.46s; }
  .delay-5 { animation-delay: 0.58s; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .pain-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card.wide { grid-column: 1; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .kit-inner { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }

  @media (max-width: 600px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .early-form { flex-direction: column; }
  }

  
.nav-logo-img {
  height: 40px;
  width: auto;   
  display: block;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px; 
  text-decoration: none;
}