/* ============================================================
 *  ÉLLEVA — Landing Comercial (marketing)
 *  Design system: pinheiro + latão (compartilhado com o app)
 *  Tipografia: Spectral (serif) + Hanken Grotesk (sans)
 * ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@500;600;700&family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body { font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif; color: var(--ink); background: var(--surface); line-height: 1.55; font-size: 16px; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- LAYOUT ---------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-600); margin-bottom: 14px; display: inline-block; }
.eyebrow.light { color: var(--brass-400); }
h1, h2, h3, h4 { font-family: 'Spectral', Georgia, serif; font-weight: 600; line-height: 1.1; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(38px, 6vw, 64px); }
h2 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 18px; }
h3 { font-size: 22px; margin-bottom: 8px; }
h4 { font-size: 18px; margin-bottom: 6px; }
.subtitle { font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); max-width: 60ch; line-height: 1.6; }
.center { text-align: center; }
.center .subtitle { margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px; border-radius: 12px; font-family: 'Hanken Grotesk', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; transition: all .2s cubic-bezier(.4,0,.2,1); border: 1.5px solid transparent; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(135deg, var(--brass-500), var(--brass-600)); color: #2d2206; box-shadow: 0 6px 22px -8px var(--brass-600); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -8px var(--brass-600); }
.btn-secondary { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); backdrop-filter: blur(8px); }
.btn-secondary:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.32); }
.btn-ghost { background: transparent; color: var(--pine-700); border-color: var(--line); }
.btn-ghost:hover { background: var(--pine-50); border-color: var(--pine-400); }
.btn-pine { background: var(--pine-700); color: #fff; }
.btn-pine:hover { background: var(--pine-800); transform: translateY(-2px); }
.btn-lg { padding: 17px 30px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* ---------- NAV (sticky) ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: all .25s; }
.nav.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding: 12px 0; box-shadow: 0 1px 0 rgba(16,32,27,.04); }
.nav-row { display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Spectral', serif; font-size: 24px; font-weight: 600; color: var(--ink); }
.brand-mark { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(150deg, var(--brass-400), var(--brass-600)); display: grid; place-items: center; box-shadow: inset 0 1px 0 rgba(255,255,255,.4); }
.brand-mark svg { width: 22px; height: 22px; }
.brand b { color: var(--brass-600); }
.nav.dark .brand { color: #fff; }
.nav.dark.scrolled .brand { color: var(--ink); }
.nav-links { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--muted); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav.dark .nav-links a { color: rgba(255,255,255,.78); }
.nav.dark.scrolled .nav-links a { color: var(--muted); }
.nav.dark.scrolled .nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; color: inherit; padding: 6px; }
.menu-toggle svg { width: 26px; height: 26px; }

/* ---------- HERO ---------- */
.hero { padding: 130px 0 90px; background: linear-gradient(165deg, var(--pine-800) 0%, var(--pine-900) 100%); color: #fff; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; right: -200px; top: -100px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(194,161,92,.25), transparent 65%); }
.hero::after { content: ""; position: absolute; left: -160px; bottom: -200px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(91,191,168,.13), transparent 65%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 30px; background: rgba(194,161,92,.18); border: 1px solid rgba(194,161,92,.36); color: var(--brass-400); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 22px; }
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass-400); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em { color: var(--brass-400); font-style: normal; font-weight: 600; }
.hero p.lead { font-size: 18px; color: #C7DBD3; max-width: 56ch; line-height: 1.6; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); max-width: 480px; }
.hero-stats .stat .v { font-family: 'Spectral', serif; font-size: 28px; font-weight: 600; color: #fff; }
.hero-stats .stat .l { font-size: 12.5px; color: #9FC0B5; margin-top: 2px; font-weight: 500; }

/* hero mockup */
.hero-mockup { position: relative; }
.mock { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.16); border-radius: 18px; padding: 18px; backdrop-filter: blur(10px); box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.mock-bar { display: flex; align-items: center; gap: 7px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 14px; }
.mock-bar .d { width: 11px; height: 11px; border-radius: 50%; }
.mock-bar .d:nth-child(1) { background: #ff5f57; } .mock-bar .d:nth-child(2) { background: #febc2e; } .mock-bar .d:nth-child(3) { background: #28c840; }
.mock-bar .url { margin-left: 12px; font-size: 11.5px; color: rgba(255,255,255,.55); font-family: ui-monospace, monospace; }
.mock-app { background: var(--surface); border-radius: 12px; padding: 22px; color: var(--ink); }
.mock-app .head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.mock-app .av { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--brass-400), var(--brass-600)); display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 14px; }
.mock-app .greet { font-family: 'Spectral', serif; font-size: 17px; font-weight: 600; }
.mock-app .sub { font-size: 11.5px; color: var(--muted); margin-top: 1px; }
.mock-app .kpis { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin-bottom: 14px; }
.mock-app .kpi { background: var(--pine-50); border: 1px solid var(--line); border-radius: 9px; padding: 10px 12px; }
.mock-app .kpi .v { font-family: 'Spectral', serif; font-size: 19px; font-weight: 600; color: var(--pine-700); }
.mock-app .kpi .l { font-size: 10.5px; color: var(--muted); margin-top: 1px; font-weight: 600; }
.mock-app .list { display: flex; flex-direction: column; gap: 7px; }
.mock-app .item { display: flex; align-items: center; gap: 9px; font-size: 12.5px; padding: 9px 11px; background: #fff; border: 1px solid var(--line-soft); border-radius: 8px; }
.mock-app .item .ic { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; flex: none; font-size: 12px; }
.mock-app .item .ic.a { background: var(--pos-bg); color: var(--pos); }
.mock-app .item .ic.b { background: var(--info-bg); color: var(--info); }
.mock-app .item .ic.c { background: var(--brass-100); color: var(--brass-600); }
.mock-app .item .t { font-weight: 600; flex: 1; }
.mock-app .item .h { font-size: 10.5px; color: var(--muted-2); }
.mock-float { position: absolute; right: -16px; top: 28%; background: #fff; padding: 12px 14px; border-radius: 12px; box-shadow: 0 18px 40px rgba(0,0,0,.22); display: flex; align-items: center; gap: 10px; max-width: 220px; animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.mock-float .av { width: 32px; height: 32px; border-radius: 50%; background: var(--pos); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 13px; flex: none; }
.mock-float .t { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.mock-float .s { font-size: 10.5px; color: var(--muted); }

/* ---------- TRUST BAR ---------- */
.trust { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }
.trust-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.trust-label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.trust-list { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.trust-list .item { font-family: 'Spectral', serif; font-size: 18px; font-weight: 600; color: var(--ink); opacity: .55; }

/* ---------- STATS ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.stat-card .v { font-family: 'Spectral', serif; font-size: 44px; font-weight: 600; color: var(--pine-700); }
.stat-card .v sup { font-size: 24px; color: var(--brass-600); }
.stat-card .l { font-size: 14px; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* ---------- CARDS GENERIC ---------- */
.cards { display: grid; gap: 20px; }
.cards.cols-2 { grid-template-columns: repeat(2,1fr); }
.cards.cols-3 { grid-template-columns: repeat(3,1fr); }
.cards.cols-4 { grid-template-columns: repeat(4,1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px; transition: all .25s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -18px rgba(16,32,27,.18); border-color: var(--pine-200,var(--pine-100)); }
.card .ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; }
.card .ic svg { width: 24px; height: 24px; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.ic.pine { background: var(--pine-50); color: var(--pine-700); }
.ic.brass { background: var(--brass-100); color: var(--brass-600); }
.ic.pos { background: var(--pos-bg); color: var(--pos); }
.ic.info { background: var(--info-bg); color: var(--info); }
.ic.warn { background: var(--warn-bg); color: var(--warn); }
.ic.neg { background: var(--neg-bg); color: var(--neg); }

/* ---------- PROBLEMA ---------- */
.problema { background: var(--surface-2); }
.problem-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; display: flex; align-items: flex-start; gap: 14px; }
.problem-card .x { width: 32px; height: 32px; border-radius: 9px; background: var(--neg-bg); color: var(--neg); display: grid; place-items: center; flex: none; font-weight: 800; font-size: 16px; }
.problem-card h4 { font-family: 'Hanken Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.problem-card p { font-size: 13.5px; color: var(--muted); }

/* ---------- MÓDULOS ---------- */
.modulos { background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%); }
.mod-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; transition: all .25s; }
.mod-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -12px rgba(16,32,27,.16); }
.mod-card .ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 13px; }
.mod-card .ic svg { width: 22px; height: 22px; }
.mod-card h4 { font-family: 'Hanken Grotesk', sans-serif; font-size: 15px; font-weight: 700; }
.mod-card p { font-size: 13px; color: var(--muted); margin-top: 4px; line-height: 1.5; }

/* ---------- IA SECTION ---------- */
.ia { background: linear-gradient(165deg, var(--pine-900), #0a1d18); color: #fff; position: relative; overflow: hidden; }
.ia::before { content: ""; position: absolute; right: -100px; top: 20%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(194,161,92,.18), transparent 60%); }
.ia h2, .ia h3, .ia h4 { color: #fff; }
.ia .subtitle { color: #C7DBD3; }
.ia-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; position: relative; z-index: 1; }
.ia-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 22px; backdrop-filter: blur(6px); transition: all .25s; }
.ia-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); border-color: rgba(194,161,92,.4); }
.ia-card .ic { width: 44px; height: 44px; border-radius: 11px; background: linear-gradient(135deg, var(--brass-500), var(--brass-700)); display: grid; place-items: center; margin-bottom: 14px; color: #2d2206; }
.ia-card .ic svg { width: 22px; height: 22px; }
.ia-card h4 { font-size: 15px; font-weight: 700; font-family: 'Hanken Grotesk', sans-serif; }
.ia-card p { font-size: 12.5px; color: #9FC0B5; margin-top: 4px; line-height: 1.55; }

/* ---------- ECOSSISTEMA ---------- */
.eco { background: #fff; }
.eco-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.eco-card { padding: 24px; border: 1px solid var(--line); border-radius: 14px; text-align: center; transition: all .25s; }
.eco-card:hover { border-color: var(--brass-400); transform: translateY(-3px); }
.eco-card .ic { width: 50px; height: 50px; margin: 0 auto 14px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, var(--pine-600), var(--pine-800)); color: #fff; }
.eco-card .ic svg { width: 26px; height: 26px; }
.eco-card h4 { font-size: 15px; font-weight: 700; font-family: 'Hanken Grotesk', sans-serif; }
.eco-card p { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ---------- PERSONAS ---------- */
.personas { background: var(--surface-2); }
.persona-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px; }
.persona-card .av { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; font-family: 'Spectral', serif; font-size: 22px; font-weight: 700; color: #fff; }
.persona-card .av.s { background: linear-gradient(135deg, var(--pine-500), var(--pine-700)); }
.persona-card .av.a { background: linear-gradient(135deg, var(--brass-500), var(--brass-700)); color: #2d2206; }
.persona-card .av.c { background: linear-gradient(135deg, var(--info), var(--info-deep,#1e4a8a)); }
.persona-card .av.m { background: linear-gradient(135deg, var(--pos), #1e7a48); }
.persona-card h3 { margin-bottom: 12px; }
.persona-card ul { list-style: none; }
.persona-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-soft,var(--muted)); padding: 7px 0; }
.persona-card li::before { content: "✓"; color: var(--pos); font-weight: 800; flex: none; }

/* ---------- PLANOS ---------- */
.planos { background: linear-gradient(180deg, var(--surface) 0%, #fff 100%); }
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px 26px; position: relative; transition: all .25s; }
.plan:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -22px rgba(16,32,27,.22); }
.plan.featured { background: linear-gradient(165deg, var(--pine-800), var(--pine-900)); color: #fff; border-color: var(--brass-500); box-shadow: 0 30px 70px -22px rgba(15,61,52,.5); }
.plan.featured h3, .plan.featured .price .v { color: #fff; }
.plan.featured ul li { color: rgba(255,255,255,.86); }
.plan.featured ul li::before { color: var(--brass-400); }
.plan .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brass-500); color: #2d2206; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 5px 14px; border-radius: 30px; }
.plan h3 { margin-bottom: 6px; }
.plan .pdesc { font-size: 13px; color: var(--muted); margin-bottom: 18px; min-height: 38px; }
.plan.featured .pdesc { color: #9FC0B5; }
.plan .price { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.plan.featured .price { border-color: rgba(255,255,255,.16); }
.plan .price .v { font-family: 'Spectral', serif; font-size: 42px; font-weight: 600; color: var(--ink); line-height: 1; }
.plan .price .currency { font-size: 22px; color: var(--brass-600); font-weight: 600; margin-right: 4px; vertical-align: top; }
.plan .price .period { font-size: 13px; color: var(--muted); margin-left: 4px; }
.plan.featured .price .period { color: #9FC0B5; }
.plan ul { list-style: none; margin-bottom: 24px; min-height: 200px; }
.plan ul li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; padding: 6px 0; color: var(--ink-soft,var(--muted)); }
.plan ul li::before { content: "✓"; color: var(--pos); font-weight: 800; flex: none; }
.plan .btn { width: 100%; }

/* ---------- COMPARATIVO ---------- */
.comparativo { background: #fff; }
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px -16px rgba(16,32,27,.08); }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.compare-table th { background: var(--pine-700); color: #fff; font-family: 'Spectral', serif; font-weight: 600; font-size: 14.5px; }
.compare-table th.h { background: var(--brass-500); color: #2d2206; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table td.feat { font-weight: 600; color: var(--ink); }
.compare-table td.y { color: var(--pos); font-size: 20px; font-weight: 800; }
.compare-table td.n { color: var(--muted-2); font-size: 18px; }
.compare-table td.h { background: var(--brass-100); color: var(--pos); font-size: 20px; font-weight: 800; }

/* ---------- CTA DEMO ---------- */
.cta-demo { background: linear-gradient(135deg, var(--pine-700), var(--pine-900)); color: #fff; padding: 64px 0; border-radius: 24px; position: relative; overflow: hidden; }
.cta-demo::after { content: ""; position: absolute; right: -100px; top: -120px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(194,161,92,.22), transparent 70%); }
.cta-demo h2 { color: #fff; margin-bottom: 14px; }
.cta-demo p { color: #C7DBD3; max-width: 56ch; margin: 0 auto 28px; font-size: 17px; }

/* ---------- FAQ ---------- */
.faq { background: var(--surface); }
.faq-list { max-width: 800px; margin: 0 auto; }
details.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; margin-bottom: 12px; transition: all .2s; }
details.faq-item[open] { border-color: var(--pine-400); box-shadow: 0 8px 24px -14px rgba(16,32,27,.18); }
details.faq-item summary { font-weight: 700; font-size: 15.5px; color: var(--ink); cursor: pointer; list-style: none; display: flex; align-items: center; gap: 14px; padding-right: 36px; position: relative; }
details.faq-item summary::after { content: "+"; position: absolute; right: 0; font-size: 24px; font-weight: 400; color: var(--brass-600); transition: transform .2s; line-height: 1; }
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item .answer { padding-top: 14px; margin-top: 14px; border-top: 1px solid var(--line-soft); font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ---------- CTA FINAL ---------- */
.final-cta { background: linear-gradient(165deg, var(--pine-800), var(--pine-900)); color: #fff; text-align: center; padding: 100px 0; position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(194,161,92,.12), transparent 65%); }
.final-cta h2 { color: #fff; max-width: 22ch; margin: 0 auto 18px; font-size: clamp(34px, 5vw, 52px); }
.final-cta p { color: #C7DBD3; max-width: 56ch; margin: 0 auto 32px; font-size: 18px; }
.final-cta .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.final-cta .micro { margin-top: 24px; font-size: 13px; color: #9FC0B5; }

/* ---------- FOOTER ---------- */
.footer { background: #0a1d18; color: #C7DBD3; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px; margin-bottom: 50px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: 'Spectral', serif; font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 14px; }
.footer-brand b { color: var(--brass-400); }
.footer-about { font-size: 13.5px; color: #9FC0B5; line-height: 1.65; max-width: 28ch; }
.footer h5 { font-family: 'Hanken Grotesk', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { font-size: 13.5px; color: #9FC0B5; transition: color .15s; }
.footer ul a:hover { color: var(--brass-400); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12.5px; color: #6F8780; }

/* ---------- COOKIE NOTICE ---------- */
.cookie-bar { position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 999; background: rgba(15,61,52,.97); color: #fff; padding: 18px 22px; border-radius: 14px; box-shadow: 0 24px 60px rgba(0,0,0,.32); display: flex; align-items: center; gap: 18px; max-width: 720px; margin: 0 auto; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.1); }
.cookie-bar p { font-size: 13.5px; color: #C7DBD3; line-height: 1.5; flex: 1; }
.cookie-bar a { color: var(--brass-400); text-decoration: underline; }
.cookie-bar.hide { display: none; }

/* ---------- ANIM (fade-up on scroll) ---------- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid, .cards.cols-4 { grid-template-columns: repeat(2,1fr); }
  .cards.cols-3 { grid-template-columns: repeat(2,1fr); }
  .ia-grid, .eco-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav.open .nav-links { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; padding: 16px 24px; border-bottom: 1px solid var(--line); box-shadow: 0 14px 40px rgba(0,0,0,.08); }
  .nav.open .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line-soft); width: 100%; }
  .nav.open .nav-cta { width: 100%; padding: 14px 0 0; }
  .nav.open .nav-cta .btn { flex: 1; justify-content: center; }
  .section { padding: 64px 0; }
  .hero { padding: 110px 0 70px; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .mock-float { display: none; }
  .compare-table { font-size: 12.5px; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
}
@media (max-width: 620px) {
  .stats-grid, .cards.cols-4, .cards.cols-3, .cards.cols-2 { grid-template-columns: 1fr; }
  .ia-grid, .eco-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-stats { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .hero-cta .btn { flex: 1; }
  .compare-table th:nth-child(3), .compare-table td:nth-child(3), .compare-table th:nth-child(4), .compare-table td:nth-child(4) { display: none; }
  .stat-card .v { font-size: 36px; }
}
