/* ─── TOKENS ─── */
:root {
    --font: 'Bricolage Grotesque', sans-serif;
  
    /* dark */
    --bg:        #0d0d0d;
    --bg2:       #141414;
    --bg3:       #1a1a1f;
    --border:    #222;
    --text:      #f0efea;
    --muted:     #666;
    --muted2:    #444;
  
    /* brand */
    --orange:    #f04e14;
    --orange-dim: rgba(240,78,20,0.12);
    --orange-glow: rgba(240,78,20,0.3);
  
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-pill: 999px;
  
    --transition: 0.35s cubic-bezier(0.16,1,0.3,1);
  }
  
  [data-theme="light"] {
    --bg:    #f0ede6;
    --bg2:   #e8e4dc;
    --bg3:   #dedad0;
    --border: #ccc8be;
    --text:  #111110;
    --muted: #888;
    --muted2: #bbb;
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; user-select: none;}
  html { scroll-behavior: smooth; }
  
  /* Esconder cursor padrão em desktop */
  @media (pointer: fine) {
    body, a, button, .theme-btn, .nav-logo {
      cursor: none !important;
    }
  }
  
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
  }
  
  /* ─── CUSTOM CURSOR ─── */
  .cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--orange);
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    display: none;
  }
  
  .cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid var(--orange);
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    display: none;
  }
  
  @media (pointer: fine) {
    .cursor-dot, .cursor-outline { display: block; }
  }
  
  /* Estado do cursor ao passar em links */
  body.cursor-hover .cursor-dot {
    width: 4px;
    height: 4px;
  }
  body.cursor-hover .cursor-outline {
    width: 50px;
    height: 50px;
    background: var(--orange-dim);
    border-color: var(--orange);
    opacity: 0.8;
  }
  
  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background: var(--muted2); border-radius: 4px; }
  
  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 48px; height: 64px;
    background: color-mix(in srgb, var(--bg) 85%, transparent);
    backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), border-color var(--transition);
  }
  
  .nav-logo {
    font-size: 22px; font-weight: 800;
    letter-spacing: -0.04em;
    display: flex; align-items: baseline;
    color: var(--text);
    text-decoration: none;
    justify-self: start;
  }
  .nav-logo-dot {
    color: var(--orange);
    margin-left: 1px;
    text-shadow: 0 0 12px var(--orange-glow);
    transition: transform 0.3s;
    display: inline-block;
  }
  .nav-logo:hover .nav-logo-dot {
    transform: translateY(-2px) scale(1.2);
  }
  
  .nav-links {
    display: flex; align-items: center; gap: 8px;
    list-style: none;
    justify-self: center;
  }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px; font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--r-sm);
    transition: color 0.2s, background 0.2s;
  }
  .nav-links a:hover { color: var(--text); background: var(--bg3); }
  
  .nav-right { display: flex; align-items: center; gap: 12px; justify-self: end; }
  
  /* theme toggle */
  .theme-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg2);
    color: var(--text);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }
  .theme-btn:hover {
    background: var(--bg3);
    transform: rotate(20deg);
  }
  
  .btn-cta {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: var(--r-pill);
    font-family: var(--font);
    font-size: 14px; font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    box-shadow: 0 2px 16px var(--orange-glow);
  }
  .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--orange-glow);
    filter: brightness(1.08);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .btn-cta svg { transition: transform 0.2s; }
  .btn-cta:hover svg { transform: translateX(3px); }
  
  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start;
    padding: 100px 48px 60px;
    position: relative;
    overflow: hidden;
  }
  
  .hero-watermark {
    position: absolute;
    right: -80px; top: 50%;
    transform: translateY(-50%);
    font-size: clamp(180px, 28vw, 380px);
    font-weight: 800;
    color: var(--muted2);
    opacity: 0.12;
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    transition: color var(--transition);
  }

  .hero-watermark--top {
    top: calc(50% - clamp(180px, 28vw, 380px) * 0.95);
    opacity: 0.06;
  }

  .hero-watermark--bottom {
    top: calc(50% + clamp(180px, 28vw, 380px) * 0.95);
    opacity: 0.06;
  }
  
  .hero-bracket {
    position: absolute;
    left: 0; top: 30%;
    width: 2px; height: 40%;
    background: var(--text);
    opacity: 0.08;
  }
  .hero-bracket::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 40px; height: 2px;
    background: var(--text);
    opacity: 1;
  }
  
  .hero-tag {
    font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--orange);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 8px;
  }
  .hero-tag::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--orange);
    border-radius: 2px;
  }
  
  .hero-title {
    font-size: clamp(52px, 8vw, 108px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 28px;
    max-width: 800px;
  }
  .hero-title span { color: var(--orange); }
  
  .hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.5;
  }
  
  .hero-actions { display: flex; gap: 14px; align-items: center; }
  
  .btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 10px 22px;
    border-radius: var(--r-pill);
    font-family: var(--font);
    font-size: 14px; font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { background: var(--bg3); border-color: var(--muted); }
  
  .hero-scroll {
    position: absolute;
    bottom: 36px; left: 48px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--muted);
    display: flex; align-items: center; gap: 10px;
  }
  .hero-scroll::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--muted);
    animation: scroll-line 2s ease-in-out infinite;
  }
  @keyframes scroll-line {
    0%, 100% { width: 24px; opacity: 1; }
    50% { width: 40px; opacity: 0.4; }
  }
  
  /* ─── STATS STRIP ─── */
  .stats-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: grid; grid-template-columns: repeat(3, 1fr);
    transition: border-color var(--transition);
  }
  .stat-item {
    padding: 36px 48px;
    border-right: 1px solid var(--border);
    transition: border-color var(--transition);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--text);
  }
  .stat-num span { color: var(--orange); }
  .stat-num .stat-unit { color: var(--text) !important; }
  .stat-label { font-size: 14px; font-weight: 500; color: var(--muted); }
  
  /* ─── SECTION COMMON ─── */
  section { padding: 100px 48px; }
  
  .section-eyebrow {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--orange); margin-bottom: 16px;
  }
  .section-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.0;
    margin-bottom: 20px;
    max-width: 700px;
  }
  .section-title span { color: var(--orange); }
  .section-sub {
    font-size: 17px; font-weight: 400;
    color: var(--muted); max-width: 500px;
    line-height: 1.55; margin-bottom: 56px;
  }
  
  /* ─── HOW IT WORKS ─── */
  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color var(--transition);
  }
  .how-item {
    background: var(--bg2);
    padding: 40px 36px;
    position: relative;
    border-right: 1px solid var(--border);
    transition: background 0.3s, border-color var(--transition);
  }
  .how-item:last-child { border-right: none; }
  .how-item:hover { background: var(--bg3); }
  
  .how-num {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 24px;
    display: flex; align-items: center; gap: 8px;
  }
  .how-num::after {
    content: '';
    flex: 1; height: 1px;
    background: var(--border);
  }
  .how-icon {
    width: 44px; height: 44px; border-radius: var(--r-md);
    background: var(--orange-dim);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
    border: 1px solid rgba(240,78,20,0.2);
  }
  .how-h { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
  .how-p { font-size: 14px; color: var(--muted); line-height: 1.6; }
  
  /* ─── MARQUEE ─── */
  .marquee-wrap {
    overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 24px 0; background: var(--bg2); width: 100%;
  }
  .marquee-track {
    display: flex; width: max-content; will-change: transform;
  }
  .marquee-group {
    display: flex; align-items: center; gap: 60px;
    padding-right: 60px;
  }
  .marquee-item {
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--muted); white-space: nowrap; display: flex; align-items: center; gap: 20px;
  }
  .marquee-item::before { content: '•'; color: var(--orange); }
  
  /* ─── SERVICES / CARDS ─── */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .service-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s, border-color var(--transition);
  }
  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-dim) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .service-card:hover::before { opacity: 1; }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(240,78,20,0.15);
  }
  
  .service-card.featured {
    background: var(--text);
    color: var(--bg);
    border-color: transparent;
  }
  .service-card.featured .service-sub { color: color-mix(in srgb, var(--bg) 60%, transparent); }
  .service-card.featured .service-tag { background: var(--orange); color: #fff; }
  
  .service-num {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 32px;
  }
  .service-card.featured .service-num { color: var(--orange); }
  .service-h { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
  .service-sub { font-size: 15px; color: var(--muted); line-height: 1.55; margin-bottom: 28px; }
  .service-tag {
    display: inline-block;
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: var(--r-pill);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted);
    margin-right: 6px; margin-bottom: 6px;
    transition: border-color var(--transition), background var(--transition);
  }
  
  /* ─── SPLIT SECTION ─── */
  .split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .split-visual {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    aspect-ratio: 1/1;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition), background var(--transition);
  }
  
  .split-logo-anim {
    font-size: clamp(60px, 8vw, 90px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    position: relative; z-index: 2;
    transition: color var(--transition);
  }
  .split-logo-anim .dot { color: var(--orange); }
  
  .split-visual::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: var(--orange-glow);
    filter: blur(80px);
    animation: float-blob 6s ease-in-out infinite;
  }
  @keyframes float-blob {
    0%, 100% { transform: translate(-30%, 20%); }
    50% { transform: translate(20%, -20%); }
  }
  
  .split-visual::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom right, transparent 40%, var(--bg2) 100%);
  }
  
  .bracket-deco {
    position: absolute;
    width: 2px; height: 45%;
    background: var(--muted2);
  }
  .bracket-deco.tl { top: 24px; left: 24px; }
  .bracket-deco.tl::before { content: ''; position: absolute; top: 0; left: 0; width: 24px; height: 2px; background: var(--muted2); }
  .bracket-deco.br { bottom: 24px; right: 24px; }
  .bracket-deco.br::after { content: ''; position: absolute; bottom: 0; right: 0; width: 24px; height: 2px; background: var(--muted2); }
  
  /* ─── TESTIMONIALS ─── */
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .testi-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    transition: background var(--transition), border-color var(--transition);
  }
  .testi-stars { color: var(--orange); font-size: 14px; margin-bottom: 16px; }
  .testi-text { font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--orange-dim);
    border: 2px solid rgba(240,78,20,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800; color: var(--orange);
  }
  .testi-name { font-size: 13px; font-weight: 700; }
  .testi-role { font-size: 12px; color: var(--muted); }
  
  /* ─── CTA BAND ─── */
  .cta-band {
    margin: 0;
    background: var(--text);
    color: var(--bg);
    padding: 80px 48px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px;
    transition: background var(--transition), color var(--transition);
  }
  .cta-band-title {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    max-width: 600px;
  }
  .cta-band-title span { color: var(--orange); }
  .btn-cta-dark {
    background: var(--bg);
    color: var(--text);
    border: none;
    padding: 14px 30px;
    border-radius: var(--r-pill);
    font-family: var(--font);
    font-size: 15px; font-weight: 800;
    cursor: pointer; white-space: nowrap;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-cta-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  
  /* ─── FOOTER ─── */
  footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 56px 48px 36px;
    transition: background var(--transition), border-color var(--transition);
  }
  .footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 48px;
  }
  .footer-logo {
    font-size: 26px; font-weight: 800;
    letter-spacing: -0.04em;
    display: flex; align-items: baseline;
  }
  .footer-desc { font-size: 14px; color: var(--muted); margin-top: 10px; max-width: 260px; line-height: 1.5; }
  .footer-links { display: flex; gap: 60px; }
  .footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { color: var(--text); text-decoration: none; font-size: 14px; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--orange); }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    transition: border-color var(--transition);
  }
  .footer-copy { font-size: 12px; color: var(--muted); }
  .footer-badge {
    font-size: 12px; color: var(--muted);
    display: flex; align-items: center; gap: 6px;
  }
  .footer-badge::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 8px var(--orange-glow);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
  }
  
  /* ─── FADE IN ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
  }
  .fade-up.visible { opacity: 1; transform: none; }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }

  /* ─── PLANS ─── */
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
  }
  .plan-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color var(--transition), background var(--transition);
  }
  .plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  }
  .plan-featured {
    background: var(--text);
    color: var(--bg);
    border-color: transparent;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }
  .plan-featured:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  }
  .plan-parceria {
    border-color: rgba(240,78,20,0.25);
    background: color-mix(in srgb, var(--bg2) 95%, var(--orange));
  }
  .plan-badge {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--orange);
    margin-bottom: 20px;
  }
  .plan-label {
    font-size: 22px; font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--text);
  }
  .plan-featured .plan-label { color: var(--bg); }
  .plan-price {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1;
  }
  .plan-featured .plan-price { color: var(--bg); }
  .plan-price span { color: var(--orange); }
  .plan-featured .plan-price span { color: var(--orange); }
  .plan-consult {
    font-size: 22px;
    color: var(--muted);
  }
  .plan-recurrence {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
  }
  .plan-featured .plan-recurrence { color: color-mix(in srgb, var(--bg) 60%, transparent); }
  .plan-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 0;
  }
  .plan-featured .plan-desc { color: color-mix(in srgb, var(--bg) 65%, transparent); }
  .plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    flex-grow: 1;
  }
  .plan-features li {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .plan-features li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 800;
    font-size: 12px;
    flex-shrink: 0;
  }
  .plan-featured .plan-features li { color: color-mix(in srgb, var(--bg) 65%, transparent); }
  .plan-featured .plan-features li::before { color: var(--orange); }
  .plan-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: var(--r-pill);
    font-family: var(--font);
    font-size: 13px; font-weight: 700;
    text-decoration: none;
    background: var(--bg3);
    color: var(--text);
    border: 1px solid var(--border);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    margin-top: auto;
  }
  .plan-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
  }
  .plan-btn-featured {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
  }
  .plan-btn-featured:hover {
    filter: brightness(1.1);
  }
  
  /* ─── RESPONSIVE ─── */
  @media (max-width: 1000px) {
    nav {display: flex; justify-content: space-between;}
  }

  @media (max-width: 900px) {
    nav { padding: 0px 24px; display:flex; justify-content: space-between;}
    .nav-links { display: none; }
    section { padding: 72px 24px; }
    .hero { padding: 100px 24px 60px; }
    .stats-strip { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .how-grid { grid-template-columns: 1fr; }
    .how-item { border-right: none; border-bottom: 1px solid var(--border); }
    .services-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .split-section { grid-template-columns: 1fr; gap: 40px; }
    .testi-grid { grid-template-columns: 1fr; }
    .cta-band { flex-direction: column; padding: 56px 24px; }
    footer { padding: 40px 24px 24px; }
    .footer-top { flex-direction: column; gap: 32px; }
    .footer-links { flex-wrap: wrap; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  }