/* styles.css — DataMed marketing site */

.tabnum { font-variant-numeric: tabular-nums; }
.sec-head-center { max-width: 760px; margin: 0 auto; text-align: center; }
.sec-head-center .eyebrow { margin: 0 auto; }

/* Icon badges (shared tone vars) */
.ibadge-brand  { --bd-bg: var(--grad);                 --bd-fg: #fff; }
.ibadge-teal   { --bd-bg: rgba(22,207,189,0.13);       --bd-fg: #0E9C8C; }
.ibadge-sky    { --bd-bg: rgba(47,177,240,0.13);       --bd-fg: var(--accent-ink); }
.ibadge-indigo { --bd-bg: rgba(92,108,242,0.13);       --bd-fg: #4A57D6; }
.ibadge {
  background: var(--bd-bg); color: var(--bd-fg);
  border-radius: 15px; display: grid; place-items: center; flex: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.ibadge-brand { box-shadow: var(--shadow-brand); }

/* ══════════════════ NAV ══════════════════ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 800; transition: background 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease); border-bottom: 1px solid transparent; }
.nav-solid { background: rgba(255,255,255,0.82); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); border-bottom-color: var(--border); box-shadow: 0 4px 24px -16px rgba(12,28,44,0.30); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-links { display: flex; gap: 6px; }
.nav-links a { font-family: var(--font-head); font-weight: 500; font-size: 15px; color: var(--ink-2); padding: 9px 14px; border-radius: 9px; transition: color 160ms, background 160ms; }
.nav-links a:hover { color: var(--ink); background: var(--mute); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-signin { font-family: var(--font-head); font-weight: 500; font-size: 15px; color: var(--ink-2); }
.nav-signin:hover { color: var(--accent-ink); }
.nav-burger { display: none; color: var(--ink); width: 42px; height: 42px; border-radius: 10px; align-items: center; justify-content: center; border: 1px solid var(--border-strong); }
.nav-burger svg { width: 22px; height: 22px; }
.nav-mobile { display: none; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-tx { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 16px; letter-spacing: 0.16em; color: var(--ink); }
.brand-sub { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); font-weight: 500; }

/* ══════════════════ HERO ══════════════════ */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.orb-a { width: 520px; height: 520px; top: -160px; right: -80px; background: radial-gradient(circle, rgba(47,177,240,0.40), transparent 70%); }
.orb-b { width: 460px; height: 460px; top: 40px; left: -160px; background: radial-gradient(circle, rgba(22,207,189,0.30), transparent 70%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%); opacity: 0.5; }
.hero-inner { position: relative; z-index: 1; }
.hero-split .hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-centered .hero-inner { text-align: center; max-width: 880px; margin: 0 auto; }
.hero-centered .eyebrow { margin: 0 auto; }
.hero-h1 { font-size: clamp(38px, 5.6vw, 66px); font-weight: 700; margin-top: 22px; letter-spacing: -0.03em; }
.hero-centered .hero-h1 { font-size: clamp(40px, 6vw, 72px); }
.hero-sub { font-size: clamp(17px, 2vw, 20px); color: var(--muted); margin-top: 22px; line-height: 1.55; max-width: 560px; }
.hero-centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-centered .hero-cta { justify-content: center; }
.hero-trust { display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.hero-centered .hero-trust { justify-content: center; }
.trust-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 500; color: var(--ink-2); }
.trust-chip svg { width: 16px; height: 16px; color: var(--success); flex: none; }

.hero-centered-visual { position: relative; z-index: 1; margin-top: 60px; display: flex; flex-direction: column; align-items: center; gap: 44px; }
.hero-centered-dash { width: 100%; max-width: 860px; }

/* Mini dashboard mock */
.mini-dash { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; transform: perspective(1600px) rotateY(-4deg) rotateX(2deg); transition: transform 500ms var(--ease); }
.hero-centered-dash .mini-dash, .mini-dash:hover { transform: none; }
.mini-top { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--border); background: var(--soft); }
.mini-dots { display: flex; gap: 6px; }
.mini-dots span { width: 11px; height: 11px; border-radius: 50%; background: var(--border-strong); }
.mini-dots span:nth-child(1){ background:#F0696E; } .mini-dots span:nth-child(2){ background:#F5BE4F; } .mini-dots span:nth-child(3){ background:#52C172; }
.mini-title { font-size: 12px; color: var(--faint); }
.mini-body { padding: 18px; }
.mini-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mini-kpi { background: var(--soft); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; display: flex; flex-direction: column; gap: 3px; }
.mk-l { font-size: 11.5px; color: var(--muted); }
.mk-v { font-size: 19px; font-weight: 700; font-family: var(--font-head); color: var(--ink); }
.mk-d { font-size: 11px; font-weight: 600; }
.mk-d.up { color: var(--success); } .mk-d.down { color: var(--danger); }
.mini-chart { margin-top: 14px; height: 150px; }
.chart-svg { width: 100%; height: 100%; }
.mini-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.mini-legend, .dpanel-legend { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted); }
.lg { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }
.lg.sky { background: var(--brand-sky); } .lg.teal { background: var(--brand-teal); }
.mini-legend .lg:not(:first-child) { margin-left: 10px; }
.dpanel-legend .lg:not(:first-child) { margin-left: 10px; }
.mini-live { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--success); font-weight: 500; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(14,163,113,0.5); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(14,163,113,0.45);} 70%{box-shadow:0 0 0 7px rgba(14,163,113,0);} 100%{box-shadow:0 0 0 0 rgba(14,163,113,0);} }

/* Pipeline strip */
.pipe { display: flex; align-items: center; justify-content: center; gap: 4px; flex-wrap: wrap; }
.pipe-node { display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; transform: translateY(14px); }
.pipe.in .pipe-node { opacity: 1; transform: none; transition: transform 600ms var(--ease); }
.pipe-ic { width: 60px; height: 60px; border-radius: 18px; background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-md); display: grid; place-items: center; color: var(--accent-ink); }
.pipe-ic svg { width: 26px; height: 26px; }
.pipe-lb { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--ink-2); }
.pipe-link { width: 40px; height: 2px; position: relative; align-self: flex-start; margin-top: 30px; opacity: 0; }
.pipe.in .pipe-link { opacity: 1; }
.pipe-link span { position: absolute; inset: 0; background: linear-gradient(90deg, var(--brand-sky), var(--brand-indigo)); border-radius: 2px; }
@media (max-width: 720px){ .pipe-link{ display:none; } .pipe{ gap: 18px; } }

/* ══════════════════ FEATURES ══════════════════ */
.features { background: #fff; }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.fcard { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; overflow: hidden; transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease); }
.fcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent-border); }
.fcard-wide { grid-column: span 2; display: flex; flex-direction: column; }
.fcard .ibadge { margin-bottom: 20px; }
.fcard-t { font-size: 21px; font-weight: 700; margin-bottom: 11px; letter-spacing: -0.01em; }
.fcard-wide .fcard-t { font-size: 25px; }
.fcard-b { font-size: 15.5px; color: var(--muted); line-height: 1.6; }
.fcard-chips { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.fchip { font-size: 12.5px; color: var(--accent-ink); background: var(--accent-soft); border: 1px solid var(--accent-border); padding: 6px 12px; border-radius: 999px; }
.fcard-glow { position: absolute; width: 220px; height: 220px; right: -90px; top: -90px; background: var(--grad-soft); border-radius: 50%; opacity: 0; transition: opacity 320ms var(--ease); pointer-events: none; }
.fcard:hover .fcard-glow { opacity: 1; }

/* ══════════════════ LIFECYCLE ══════════════════ */
.lifecycle { background: var(--soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lc { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; margin-top: 60px; align-items: start; }
.lc-rail { position: relative; display: flex; flex-direction: column; gap: 6px; }
.lc-rail-line { position: absolute; left: 26px; top: 28px; bottom: 28px; width: 2px; background: var(--border-strong); border-radius: 2px; }
.lc-rail-fill { width: 100%; background: var(--grad); border-radius: 2px; transition: height 600ms var(--ease); }
.lc-step { position: relative; display: flex; align-items: center; gap: 16px; padding: 12px; border-radius: 14px; text-align: left; transition: background 200ms var(--ease); z-index: 1; }
.lc-step:hover { background: rgba(255,255,255,0.7); }
.lc-step.on { background: #fff; box-shadow: var(--shadow-md); }
.lc-node { width: 40px; height: 40px; border-radius: 12px; flex: none; display: grid; place-items: center; background: #fff; border: 1px solid var(--border-strong); color: var(--faint); transition: all 260ms var(--ease); }
.lc-node svg { width: 20px; height: 20px; }
.lc-step.on .lc-node { background: var(--grad); color: #fff; border-color: transparent; box-shadow: var(--shadow-brand); }
.lc-step.done .lc-node { color: var(--success); border-color: var(--success); }
.lc-step-tx { display: flex; flex-direction: column; gap: 2px; }
.lc-step-code { font-size: 11px; font-weight: 500; color: var(--faint); letter-spacing: 0.06em; }
.lc-step.on .lc-step-code { color: var(--accent-ink); }
.lc-step-title { font-family: var(--font-head); font-size: 15.5px; font-weight: 600; color: var(--ink); }

.lc-stage { position: sticky; top: 100px; }
.lc-card { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 40px; box-shadow: var(--shadow-lg); animation: lcIn 460ms var(--ease); }
@keyframes lcIn { from { transform: translateY(14px) scale(0.99); } to { transform: none; } }
.lc-card-ic { width: 60px; height: 60px; border-radius: 17px; display: grid; place-items: center; background: var(--bd-bg); color: var(--bd-fg); margin-bottom: 22px; }
.lc-card-ic svg { width: 28px; height: 28px; }
.lc-card-code { font-size: 13px; font-weight: 500; color: var(--accent-ink); letter-spacing: 0.1em; }
.lc-card-title { font-size: 28px; font-weight: 700; margin: 8px 0 14px; }
.lc-card-body { font-size: 17px; color: var(--muted); line-height: 1.6; }
.lc-card-metric { display: flex; align-items: center; justify-content: space-between; margin-top: 26px; padding: 16px 20px; background: var(--soft); border: 1px solid var(--border); border-radius: 14px; }
.lcm-l { font-size: 14px; color: var(--muted); }
.lcm-v { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink); display: inline-flex; align-items: center; gap: 9px; }
.lcm-check { width: 22px; height: 22px; border-radius: 50%; background: var(--success-soft); color: var(--success); display: grid; place-items: center; }
.lcm-check svg { width: 14px; height: 14px; }
.lc-progress { display: flex; gap: 6px; margin-top: 24px; }
.lc-progress span { height: 4px; flex: 1; border-radius: 2px; background: var(--border-strong); transition: background 300ms; }
.lc-progress span.on { background: var(--grad); }

/* ══════════════════ DASHBOARD PREVIEW ══════════════════ */
.dashboard { background: #fff; }
.dash-frame { position: relative; margin-top: 56px; }
.dash-window { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; z-index: 1; }
.dash-chrome { display: flex; align-items: center; gap: 16px; padding: 15px 20px; border-bottom: 1px solid var(--border); background: var(--soft); }
.dash-url { font-size: 13px; color: var(--faint); flex: 1; }
.dash-range { display: flex; gap: 4px; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 3px; }
.rg { font-family: var(--font-mono); font-size: 12px; color: var(--muted); padding: 6px 11px; border-radius: 7px; transition: all 180ms; }
.rg.on { background: var(--grad); color: #fff; }
.dash-grid { padding: 22px; display: grid; gap: 18px; }
.dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.kpi { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px; transition: box-shadow 240ms, transform 240ms; }
.kpi:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.kpi-head { display: flex; align-items: center; justify-content: space-between; }
.kpi-l { font-size: 13px; color: var(--muted); }
.kpi-d { font-size: 12px; font-weight: 600; }
.kpi-d.up { color: var(--success); } .kpi-d.down { color: var(--danger); }
.kpi-v { font-family: var(--font-head); font-size: 27px; font-weight: 700; color: var(--ink); margin: 8px 0 10px; letter-spacing: -0.02em; }
.spark { width: 100%; height: 34px; display: block; }
.dash-main { display: grid; grid-template-columns: 1.7fr 1fr; gap: 18px; }
.dpanel { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 20px; }
.dpanel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.dpanel-t { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink); }
.dpanel-sub { font-size: 12px; color: var(--faint); }
.dpanel-chart { height: 200px; }
.dpanel-area .dpanel-chart { height: 220px; }

/* Donut */
.donut-wrap { display: flex; align-items: center; gap: 18px; }
.donut { width: 130px; height: 130px; flex: none; }
.donut-big { font-family: var(--font-head); font-weight: 700; font-size: 26px; fill: var(--ink); }
.donut-cap { font-size: 11px; fill: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.donut-legend { display: flex; flex-direction: column; gap: 9px; flex: 1; }
.leg-row { display: flex; align-items: center; gap: 9px; font-size: 13.5px; }
.leg-dot { width: 10px; height: 10px; border-radius: 3px; flex: none; }
.leg-label { color: var(--ink-2); flex: 1; }
.leg-val { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }

/* Bars */
.bars { display: flex; flex-direction: column; gap: 14px; }
.bar-row { display: grid; grid-template-columns: 168px 1fr; align-items: center; gap: 14px; }
.bar-name { font-size: 13.5px; color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar-track { height: 12px; background: var(--mute); border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--grad); border-radius: 999px; width: 0; transition: width 1100ms var(--ease); }
.dash-reflect { position: absolute; left: 8%; right: 8%; bottom: -36px; height: 60px; background: var(--grad); filter: blur(38px); opacity: 0.22; border-radius: 50%; z-index: 0; }

/* ══════════════════ COMPARISON ══════════════════ */
.compare { background: var(--soft); border-top: 1px solid var(--border); }
.cmp-wrap { margin-top: 52px; overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-md); }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.cmp-table th, .cmp-table td { padding: 18px 20px; text-align: center; transition: background 200ms; }
.cmp-feat { text-align: left !important; font-size: 14.5px; color: var(--ink-2); font-weight: 500; width: 38%; }
thead .cmp-feat { width: 38%; }
.cmp-col { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--muted); vertical-align: bottom; border-bottom: 2px solid var(--border); }
.cmp-col span { display: block; }
.cmp-col.cmp-us { color: var(--ink); }
.cmp-badge { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--soft); margin: 0 auto 8px; box-shadow: inset 0 0 0 1px var(--border); }
.cmp-table tbody tr { border-top: 1px solid var(--border); }
.cmp-us { background: linear-gradient(180deg, rgba(47,177,240,0.05), rgba(92,108,242,0.04)); }
.cmp-table .hl:not(.cmp-us) { background: var(--soft); }
.cmp-cell { display: inline-grid; place-items: center; }
.cmp-cell.full { width: 30px; height: 30px; border-radius: 50%; background: var(--success-soft); color: var(--success); }
.cmp-cell.full svg { width: 18px; height: 18px; }
.cmp-cell.none { width: 30px; height: 30px; border-radius: 50%; background: rgba(100,120,136,0.10); color: var(--faint); }
.cmp-cell.none svg { width: 16px; height: 16px; }
.cmp-cell.partial { font-size: 12.5px; font-weight: 600; color: var(--warning); background: var(--warning-soft); padding: 5px 12px; border-radius: 999px; }

/* ══════════════════ SECURITY (dark) ══════════════════ */
.security { background: radial-gradient(ellipse 90% 70% at 80% 0%, #16314A 0%, #0C1C2C 60%); color: #fff; }
.sec-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.eyebrow-light { color: #6FD8F0; background: rgba(47,177,240,0.12); border-color: rgba(47,177,240,0.30); }
.sec-title-light { color: #fff; }
.sec-sub-light { color: #9FB4C6; }
.sec-cards { display: flex; flex-direction: column; gap: 16px; }
.sec-card { display: flex; gap: 18px; align-items: flex-start; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 18px; padding: 22px 24px; transition: background 240ms, border-color 240ms, transform 240ms; }
.sec-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(47,177,240,0.34); transform: translateX(4px); }
.sec-card-ic { width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--grad); color: #fff; box-shadow: var(--shadow-brand); }
.sec-card-ic svg { width: 23px; height: 23px; }
.sec-card-t { font-size: 18px; color: #fff; margin-bottom: 5px; }
.sec-card-b { font-size: 14.5px; color: #9FB4C6; line-height: 1.55; }

/* ══════════════════ CTA ══════════════════ */
.cta { background: #fff; }
.cta-card { position: relative; border-radius: var(--r-xl); overflow: hidden; background: linear-gradient(135deg, #0C1C2C, #14304A); box-shadow: var(--shadow-lg); }
.cta-bg { position: absolute; inset: 0; overflow: hidden; }
.cta-orb { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(70px); opacity: 0.55; background: radial-gradient(circle, rgba(47,177,240,0.6), transparent 70%); top: -160px; left: -100px; }
.cta-orb-2 { background: radial-gradient(circle, rgba(92,108,242,0.55), transparent 70%); top: auto; bottom: -180px; left: auto; right: -120px; }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 0.9fr; gap: 48px; padding: 56px; align-items: center; }
.cta-copy .eyebrow { margin-bottom: 22px; }
.cta-title { font-size: clamp(28px, 3.4vw, 40px); color: #fff; letter-spacing: -0.02em; }
.cta-sub { font-size: 17px; color: #A9BED0; margin-top: 16px; line-height: 1.55; }
.cta-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 13px; }
.cta-list li { display: flex; align-items: flex-start; gap: 12px; color: #D6E2EC; font-size: 15px; }
.cta-tick { width: 24px; height: 24px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; flex: none; margin-top: 1px; }
.cta-tick svg { width: 14px; height: 14px; }

.cta-form-wrap { background: #fff; border-radius: var(--r-lg); padding: 32px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4); }
.cta-form-t { font-size: 21px; margin-bottom: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field span { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field input { font-family: var(--font-body); font-size: 15.5px; color: var(--ink); padding: 13px 15px; border: 1px solid var(--border-strong); border-radius: 11px; transition: border-color 180ms, box-shadow 180ms; outline: none; background: var(--soft); }
.field input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); background: #fff; }
.field.bad input { border-color: var(--danger); box-shadow: 0 0 0 4px var(--danger-soft); }
.field-err { font-style: normal; font-size: 12.5px; color: var(--danger); }
.cta-submit { width: 100%; margin-top: 6px; }
.cta-fine { font-size: 12px; color: var(--faint); text-align: center; margin-top: 14px; }
.cta-done { text-align: center; padding: 20px 8px; animation: lcIn 400ms var(--ease); }
.cta-done-ic { width: 60px; height: 60px; border-radius: 50%; background: var(--success-soft); color: var(--success); display: grid; place-items: center; margin: 0 auto 18px; }
.cta-done-ic svg { width: 32px; height: 32px; }
.cta-done h3 { font-size: 22px; margin-bottom: 10px; }
.cta-done p { font-size: 15px; color: var(--muted); margin-bottom: 22px; }

/* ══════════════════ FOOTER ══════════════════ */
.footer { background: #0C1C2C; color: #9FB4C6; padding: 64px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer .brand-name { color: #fff; }
.footer-tag { margin-top: 16px; font-size: 14.5px; color: #7F94A6; max-width: 280px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-h { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer-col a { font-size: 14.5px; color: #9FB4C6; transition: color 160ms; }
.footer-col a:hover { color: #6FD8F0; }
.footer-base { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; font-size: 13px; color: #6B8194; }

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 1000px) {
  .hero-split .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 560px; }
  .lc { grid-template-columns: 1fr; gap: 32px; }
  .lc-stage { position: static; }
  .sec-inner, .cta-grid { grid-template-columns: 1fr; }
  .dash-main { grid-template-columns: 1fr; }
  .cta-grid { padding: 40px; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-links, .nav-signin { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; flex-direction: column; gap: 4px; padding: 12px 28px 20px; background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
  .nav-mobile a { padding: 12px; font-family: var(--font-head); font-weight: 500; color: var(--ink-2); border-radius: 9px; }
  .nav-mobile a:hover { background: var(--mute); }
  .nav-mobile-cta { color: #fff !important; background: var(--grad); text-align: center; }
  .bento { grid-template-columns: 1fr; }
  .fcard-wide { grid-column: span 1; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .sec-pad { padding: 80px 0; }
  .hero { padding: 120px 0 70px; }
}
@media (max-width: 540px) {
  .wrap { padding: 0 18px; }
  .dash-kpis { grid-template-columns: 1fr 1fr; }
  .bar-row { grid-template-columns: 120px 1fr; }
  .cta-form-wrap { padding: 24px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-base { flex-direction: column; gap: 8px; text-align: center; }
}
