@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('./fonts/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat_XDW3z.ttf') format('truetype');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('./fonts/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwA_JxhTg.ttf') format('truetype');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhTg.ttf') format('truetype');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./fonts/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhTg.ttf') format('truetype');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6k.ttf') format('truetype');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./fonts/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6k.ttf') format('truetype');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./fonts/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6k.ttf') format('truetype');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('./fonts/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6k.ttf') format('truetype');
}

:root {
    --green: #1a5c2e;
    --green-mid: #2d7a44;
    --green-light: #e8f5ec;
    --green-accent: #3db065;
    --gold: #d4a017;
    --gold-light: #fdf6e3;
    --off-white: #f8f7f4;
    --text-dark: #0f1a13;
    --text-mid: #3a4a3f;
    --text-muted: #7a8c7f;
    --border: rgba(26, 92, 46, 0.12);
    --border-strong: rgba(26, 92, 46, 0.25);
    --white: #ffffff;
    --nav-h: 72px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(248, 247, 244, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 5vw;
    gap: 2rem;
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.03em;
  }

  .nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-logo-icon svg { width: 20px; height: 20px; fill: white; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-mid);
    text-decoration: none;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
  }

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

  .nav-cta {
    background: var(--green) !important;
    color: white !important;
    font-weight: 500 !important;
    padding: 8px 20px !important;
  }

  .nav-cta:hover { background: var(--green-mid) !important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 4rem) 5vw 6rem;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 40%, rgba(61,176,101,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 50% 40% at 10% 80%, rgba(26,92,46,0.06) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    opacity: 0.5;
  }

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

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light);
    border: 1px solid rgba(26,92,46,0.2);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 1.5rem;
  }

  .hero-badge-dot { width: 7px; height: 7px; background: var(--green-accent); border-radius: 50%; animation: pulse 2s infinite; }

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

  .hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--green);
  }

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

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

  .btn-primary {
    background: var(--green);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
  }

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

  .btn-secondary {
    background: transparent;
    color: var(--green);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1.5px solid var(--border-strong);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, border-color 0.2s;
  }

  .btn-secondary:hover { background: var(--green-light); border-color: var(--green-accent); }

  .hero-sports {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
  }

  .hero-sports-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }

  .sport-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.8rem;
    color: var(--text-mid);
  }

  .sport-pill span { font-size: 15px; }

  /* Hero visual / dashboard mockup */
  .hero-visual {
    position: relative;
  }

  .dashboard-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 8px 48px rgba(26,92,46,0.1), 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
  }

  .dash-header {
    background: var(--green);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .dash-header-dots { display: flex; gap: 6px; }
  .dash-dot { width: 10px; height: 10px; border-radius: 50%; }
  .dash-dot-r { background: rgba(255,255,255,0.3); }
  .dash-dot-y { background: rgba(255,255,255,0.5); }
  .dash-dot-g { background: rgba(255,255,255,0.7); }

  .dash-title { color: rgba(255,255,255,0.9); font-size: 0.8rem; margin-left: 6px; font-weight: 500; }

  .dash-body { padding: 20px; }

  .dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
  }

  .dash-stat {
    background: var(--off-white);
    border-radius: var(--radius-sm);
    padding: 12px;
    border: 1px solid var(--border);
  }

  .dash-stat-label { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 4px; }
  .dash-stat-val { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text-dark); }
  .dash-stat-sub { font-size: 0.65rem; color: var(--green-accent); margin-top: 2px; }

  .dash-players {
    background: var(--off-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 12px;
  }

  .dash-table-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 8px 12px;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
  }

  .dash-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 8px 12px;
    font-size: 0.75rem;
    align-items: center;
    border-bottom: 1px solid var(--border);
  }

  .dash-table-row:last-child { border-bottom: none; }

  .player-name { display: flex; align-items: center; gap: 7px; }

  .player-avatar {
    width: 24px; height: 24px;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
  }

  .av-g { background: var(--green); }
  .av-b { background: #2d6a9f; }
  .av-o { background: #c07820; }

  .fee-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 500;
  }

  .fee-paid { background: #e8f5ec; color: var(--green); }
  .fee-due { background: #fff5e6; color: #c07820; }

  .att-bar-wrap { display: flex; align-items: center; gap: 6px; }
  .att-bar-bg { flex: 1; height: 4px; background: var(--border); border-radius: 2px; }
  .att-bar-fill { height: 100%; border-radius: 2px; background: var(--green-accent); }
  .att-label { font-size: 0.65rem; color: var(--text-muted); }

  .dash-mini-row {
    display: flex;
    gap: 10px;
  }

  .dash-mini-card {
    flex: 1;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 10px 12px;
  }

  .dash-mini-label { font-size: 0.65rem; color: var(--text-muted); margin-bottom: 6px; }

  .salary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    margin-bottom: 5px;
    color: var(--text-mid);
  }

  .salary-amount { font-weight: 500; color: var(--text-dark); }

  .att-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
  .att-cell {
    width: 100%; aspect-ratio: 1;
    border-radius: 3px;
  }

  .att-p { background: var(--green-accent); }
  .att-a { background: #f0d0d0; }
  .att-h { background: var(--border); }

  /* Float cards */
  .hero-float {
    position: absolute;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    font-size: 0.8rem;
  }

  .hero-float-tl {
    top: -24px;
    left: -24px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero-float-br {
    bottom: -20px;
    right: -16px;
  }

  .float-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .float-text { line-height: 1.3; }
  .float-text strong { display: block; font-size: 0.85rem; color: var(--text-dark); }
  .float-text span { color: var(--text-muted); font-size: 0.72rem; }

  /* ─── SECTION SHARED ─── */
  section { padding: 6rem 5vw; }
  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-eyebrow {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
  }

  .section-heading {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
  }

  .section-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    font-weight: 300;
    max-width: 580px;
    line-height: 1.8;
  }

  /* ─── SPORTS BAR ─── */
  .sports-bar {
    background: var(--green);
    padding: 2.5rem 5vw;
  }

  .sports-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .sports-bar p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 300;
  }

  .sports-bar strong { color: white; display: block; font-family: 'Syne', sans-serif; font-size: 1.15rem; }

  .sports-tags { display: flex; gap: 12px; flex-wrap: wrap; }

  .sport-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 8px 18px;
    color: white;
    font-size: 0.88rem;
    font-weight: 400;
  }

  .sport-tag .icon { font-size: 18px; }

  /* ─── FEATURES ─── */
  #features { background: white; }

  .features-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .feature-card {
    background: white;
    padding: 2rem;
    transition: background 0.2s;
  }

  .feature-card:hover { background: var(--green-light); }

  .feature-icon {
    width: 44px;
    height: 44px;
    background: var(--green-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
  }

  .feature-icon svg { width: 22px; height: 22px; }

  .feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
  }

  .feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ─── HOW IT WORKS ─── */
  #how-it-works { background: var(--off-white); }

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

  .steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 1px;
    background: var(--border-strong);
    z-index: 0;
  }

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

  .step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    margin: 0 auto 1.25rem;
  }

  .step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
  }

  .step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

  /* ─── PRICING ─── */
  #pricing { background: white; }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .price-card {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
  }

  .price-card.featured {
    background: var(--green);
    border-color: var(--green);
    color: white;
  }

  .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .price-plan { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; margin-bottom: 1rem; }

  .price-card:not(.featured) .price-plan { color: var(--text-muted); }
  .price-card.featured .price-plan { color: rgba(255,255,255,0.7); }

  .price-amount {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .price-card:not(.featured) .price-amount { color: var(--text-dark); }
  .price-card.featured .price-amount { color: white; }

  .price-period {
    font-size: 0.82rem;
    margin-bottom: 1.5rem;
  }

  .price-card:not(.featured) .price-period { color: var(--text-muted); }
  .price-card.featured .price-period { color: rgba(255,255,255,0.65); }

  .price-divider {
    height: 1px;
    margin-bottom: 1.5rem;
  }

  .price-card:not(.featured) .price-divider { background: var(--border); }
  .price-card.featured .price-divider { background: rgba(255,255,255,0.2); }

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

  .price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
  }

  .price-card:not(.featured) .price-features li { color: var(--text-mid); }
  .price-card.featured .price-features li { color: rgba(255,255,255,0.9); }

  .check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .price-card:not(.featured) .check { background: var(--green-light); }
  .price-card.featured .check { background: rgba(255,255,255,0.2); }

  .check svg { width: 10px; height: 10px; }
  .price-card:not(.featured) .check svg { stroke: var(--green); }
  .price-card.featured .check svg { stroke: white; }

  .btn-price {
    width: 100%;
    padding: 13px;
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
  }

  .btn-price:hover { opacity: 0.9; transform: translateY(-1px); }

  .price-card:not(.featured) .btn-price {
    background: white;
    color: var(--green);
    border: 1.5px solid var(--border-strong);
  }

  .price-card.featured .btn-price {
    background: white;
    color: var(--green);
  }

  /* ─── TESTIMONIALS ─── */
  #testimonials { background: var(--off-white); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

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

  .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }

  .testimonial-text {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
  }

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

  .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
  }

  .author-name { font-size: 0.88rem; font-weight: 500; color: var(--text-dark); }
  .author-role { font-size: 0.78rem; color: var(--text-muted); }

  /* ─── FAQ ─── */
  #faq { background: white; }

  .faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3.5rem;
  }

  .faq-list { display: flex; flex-direction: column; gap: 0; }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.2rem 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
  }

  .faq-q:hover { color: var(--green); }

  .faq-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s, background 0.2s;
  }

  .faq-arrow svg { width: 10px; height: 10px; stroke: var(--green); }

  .faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--green); }
  .faq-item.open .faq-arrow svg { stroke: white; }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
  }

  .faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.2rem; }

  /* ─── CONTACT ─── */
  #contact { background: var(--green); position: relative; overflow: hidden; }

  #contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
  }

  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
  }

  .contact-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: white;
    margin-bottom: 1rem;
  }

  .contact-left p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
  }

  .contact-info-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-info-icon svg { width: 16px; height: 16px; stroke: white; }

  .contact-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
  }

  .form-heading {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
  }

  .form-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.75rem; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .form-group { margin-bottom: 1rem; }
  .form-group label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-mid); margin-bottom: 5px; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--green);
    background: white;
  }

  .form-group textarea { resize: vertical; min-height: 90px; }

  .form-submit {
    width: 100%;
    background: var(--green);
    color: white;
    padding: 14px;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s, transform 0.15s;
  }

  .form-submit:hover { background: var(--green-mid); transform: translateY(-1px); }

  .form-success {
    display: none;
    text-align: center;
    padding: 2rem;
  }

  .form-success .success-icon {
    width: 56px;
    height: 56px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }

  .form-success h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 0.5rem; }
  .form-success p { font-size: 0.88rem; color: var(--text-muted); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--text-dark);
    padding: 4rem 5vw 2.5rem;
  }

  .footer-inner { max-width: 1200px; margin: 0 auto; }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 2rem;
  }

  .footer-brand .nav-logo { color: white; margin-bottom: 1rem; }
  .footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 260px; }

  .footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: rgba(255,255,255,0.9); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { display: none; }
    .features-intro { grid-template-columns: 1fr; gap: 1.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .steps::before { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
    .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    nav { padding: 0 4vw; }
    .nav-links { display: none; }
    .nav-mobile-cta { display: flex !important; }
  }

  .nav-mobile-cta {
    display: none;
    margin-left: auto;
  }

  @media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    section { padding: 4rem 5vw; }
  }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .reveal.visible { opacity: 1; transform: none; }
