/* ============================================================
   GridBotZen.com — système visuel
   Dark fintech moderne · accent menthe "zen" · motif grille
   ============================================================ */

:root {
  --ink-0: #06080b;
  --ink-1: #0a0d12;
  --surface-1: #11151d;
  --surface-2: #161b25;
  --surface-3: #1d2430;
  --border: rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.15);

  --text: #eef1f5;
  --text-muted: #9aa4b2;
  --text-faint: #69727f;

  --accent: #2fe0a8;
  --accent-700: #15a87c;
  --accent-soft: rgba(47,224,168,.12);
  --accent-line: rgba(47,224,168,.28);

  --pos: var(--accent);
  --neg: #ff6b6b;
  --warn: #ffc14d;
  --info: #6ea8ff;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(0,0,0,.4);
  --sh-md: 0 8px 30px rgba(0,0,0,.45);
  --sh-lg: 0 24px 70px rgba(0,0,0,.55);
  --glow: 0 0 0 1px var(--accent-line), 0 10px 40px rgba(47,224,168,.18);

  --f-display: "Space Grotesk", "Manrope", system-ui, sans-serif;
  --f-body: "Manrope", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --sec-pad: clamp(64px, 9vw, 132px);
  --gap: 24px;
  --maxw: 1200px;
}

[data-density="compact"] { --sec-pad: clamp(48px, 6vw, 88px); --gap: 18px; }
[data-density="comfy"]   { --sec-pad: clamp(84px, 12vw, 168px); --gap: 32px; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--ink-0);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 75%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
section { position: relative; }
.section-pad { padding-block: var(--sec-pad); }
.bg-1 { background: var(--ink-1); }
.divider-top { border-top: 1px solid var(--border); }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; letter-spacing: -.02em; margin: 0; line-height: 1.06; }
.h1 { font-size: clamp(38px, 6vw, 72px); font-weight: 600; }
.h2 { font-size: clamp(30px, 4.2vw, 50px); }
.h3 { font-size: clamp(21px, 2.4vw, 28px); }
.lead { font-size: clamp(17px, 1.5vw, 21px); color: var(--text-muted); line-height: 1.6; }
.mono { font-family: var(--f-mono); font-feature-settings: "tnum","kern"; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-mono);
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  padding: 7px 13px;
  border: 1px solid var(--accent-line);
  border-radius: var(--r-pill);
  background: var(--accent-soft);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.muted { color: var(--text-muted); }
.faint { color: var(--text-faint); }
.center { text-align: center; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head .h2 { margin-top: 16px; }
.section-head .lead { margin-top: 18px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-body); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: var(--r-md);
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #052017; box-shadow: var(--glow); }
.btn-primary:hover { background: #46e9b6; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--border-strong); }
.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: var(--r-md); }
.btn svg { width: 18px; height: 18px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--ink-0) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-bottom-color: var(--border); background: color-mix(in srgb, var(--ink-0) 92%, transparent); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--f-display); font-weight: 600; font-size: 19px; letter-spacing: -.01em; }
.brand .logo { width: 30px; height: 30px; flex: none; }
.brand .tld { color: var(--text-faint); font-weight: 500; }
.nav-links { display: flex; gap: 4px; margin-left: 14px; }
.nav-links a { padding: 8px 13px; border-radius: var(--r-sm); font-size: 14.5px; color: var(--text-muted); font-weight: 500; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--text); background: var(--surface-1); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav-cta .login { font-size: 14.5px; font-weight: 600; padding: 9px 14px; color: var(--text-muted); border-radius: var(--r-sm); cursor: pointer; }
.nav-cta .login:hover { color: var(--text); }

.hero { padding-top: clamp(56px, 8vw, 96px); padding-bottom: var(--sec-pad); overflow: hidden; }
.hero::after {
  content: ""; position: absolute; z-index: 0; top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; pointer-events: none;
  background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 60%);
  opacity: .8;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; position: relative; z-index: 1; }
.hero h1 { margin-top: 22px; }
.hero h1 .accent { color: var(--accent); }
.hero .lead { margin-top: 22px; max-width: 540px; }
.hero-form { margin-top: 32px; }
.email-row { display: flex; gap: 10px; max-width: 470px; }
.email-row input {
  flex: 1; min-width: 0; padding: 14px 16px; font-family: var(--f-body); font-size: 15px;
  background: var(--surface-1); border: 1px solid var(--border-strong); border-radius: var(--r-md);
  color: var(--text); transition: border-color .15s, box-shadow .15s;
}
.email-row input::placeholder { color: var(--text-faint); }
.email-row input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.hero-reassure { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 18px; font-size: 13.5px; color: var(--text-muted); }
.hero-reassure span { display: inline-flex; align-items: center; gap: 7px; }
.hero-reassure svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

.viz-card {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, var(--surface-1), var(--ink-1));
  border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 18px; overflow: hidden;
}
.viz-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding: 4px 6px; }
.viz-pair { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.viz-pair .ico { width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent); font-size: 13px; font-family: var(--f-mono); }
.viz-tag { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); padding: 4px 9px; border: 1px solid var(--accent-line); border-radius: var(--r-pill); }
.viz-chart { width: 100%; height: 270px; display: block; border-radius: var(--r-md); }
.viz-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 14px; }
.viz-stat { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); padding: 11px 13px; }
.viz-stat .k { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-faint); }
.viz-stat .v { font-family: var(--f-mono); font-size: 18px; font-weight: 600; margin-top: 3px; }
.viz-stat .v.pos { color: var(--pos); }

.trust { padding-block: 34px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 14px 40px; flex-wrap: wrap; }
.trust-label { font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); }
.trust-item { display: inline-flex; align-items: center; gap: 9px; color: var(--text-muted); font-size: 14px; font-weight: 500; }
.trust-item svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.step {
  background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; position: relative; transition: border-color .2s, transform .2s;
}
.step:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.step-num { font-family: var(--f-mono); font-size: 13px; color: var(--accent); border: 1px solid var(--accent-line); width: 38px; height: 38px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--accent-soft); }
.step h3 { margin-top: 20px; font-size: 20px; }
.step p { margin-top: 10px; color: var(--text-muted); font-size: 15px; }
.step .ic { position: absolute; top: 26px; right: 26px; width: 26px; height: 26px; color: var(--text-faint); }

.strat { display: grid; gap: 28px; }
.strat-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,64px); align-items: center; }
.strat-row.rev .strat-text { order: 2; }
.strat-text .eyebrow { margin-bottom: 18px; }
.strat-text h3 { font-size: clamp(24px,2.6vw,34px); }
.strat-text p { margin-top: 16px; color: var(--text-muted); font-size: 16px; max-width: 460px; }
.strat-points { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.strat-points li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; }
.strat-points svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }
.strat-visual {
  background: linear-gradient(180deg, var(--surface-1), var(--ink-1));
  border: 1px solid var(--border); border-radius: var(--r-xl); padding: 20px;
  box-shadow: var(--sh-md); min-height: 320px; display: flex; flex-direction: column;
}

.reb { display: flex; flex-direction: column; gap: 18px; height: 100%; justify-content: center; }
.reb-bars { display: grid; gap: 12px; flex: 1; }
.reb-bar-row { display: grid; grid-template-columns: 56px 1fr 54px; align-items: center; gap: 12px; font-size: 13px; }
.reb-bar-row .name { font-weight: 600; }
.reb-track { height: 10px; background: var(--surface-3); border-radius: var(--r-pill); overflow: hidden; }
.reb-fill { height: 100%; border-radius: var(--r-pill); transition: width 1.1s cubic-bezier(.2,.7,.2,1); }
.reb-bar-row .pct { font-family: var(--f-mono); text-align: right; color: var(--text-muted); }
.reb-note { font-size: 13px; color: var(--text-faint); display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.reb-note svg { width: 15px; height: 15px; color: var(--accent); }

.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.pillar { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; transition: border-color .2s, transform .2s; }
.pillar:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.pillar .pic { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--accent-soft); display: grid; place-items: center; color: var(--accent); margin-bottom: 18px; }
.pillar .pic svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 18px; }
.pillar p { margin-top: 9px; color: var(--text-muted); font-size: 14.5px; }

.dash {
  background: linear-gradient(180deg, var(--surface-1), var(--ink-1));
  border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  overflow: hidden;
}
.dash-bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.dash-dots { display: flex; gap: 6px; }
.dash-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-3); }
.dash-title { font-family: var(--f-mono); font-size: 12.5px; color: var(--text-faint); margin-left: 8px; }
.dash-body { display: grid; grid-template-columns: 240px 1fr; min-height: 420px; }
.dash-side { border-right: 1px solid var(--border); padding: 18px 14px; display: flex; flex-direction: column; gap: 6px; }
.dash-side .sb-item { display: flex; align-items: center; gap: 11px; padding: 9px 11px; border-radius: var(--r-sm); font-size: 14px; color: var(--text-muted); font-weight: 500; }
.dash-side .sb-item.active { background: var(--accent-soft); color: var(--text); }
.dash-side .sb-item .si { width: 17px; height: 17px; opacity: .8; }
.dash-side .sb-item.active .si { color: var(--accent); opacity: 1; }
.dash-main { padding: 22px; display: flex; flex-direction: column; gap: 18px; }
.kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.kpi { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px; }
.kpi .k { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-faint); }
.kpi .v { font-family: var(--f-mono); font-size: 22px; font-weight: 600; margin-top: 6px; }
.kpi .v small { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.kpi .v.pos { color: var(--pos); }
.bots { display: grid; gap: 10px; }
.bot-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 90px; align-items: center; gap: 12px; padding: 14px 16px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); font-size: 14px; }
.bot-name { display: flex; align-items: center; gap: 11px; font-weight: 600; }
.bot-name .pair-ic { width: 30px; height: 30px; border-radius: 50%; background: var(--surface-3); display: grid; place-items: center; font-family: var(--f-mono); font-size: 11px; color: var(--accent); }
.bot-row .cell-k { font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .05em; }
.bot-row .cell-v { font-family: var(--f-mono); margin-top: 2px; }
.bot-row .cell-v.pos { color: var(--pos); }
.bot-state { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-size: 11.5px; padding: 5px 10px; border-radius: var(--r-pill); background: var(--accent-soft); color: var(--accent); justify-self: start; }
.bot-state .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

.pricing-table { border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; background: var(--surface-1); box-shadow: var(--sh-md); }
.pt-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); }
.pt-cell { padding: 18px 20px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.pt-grid > .pt-cell:nth-child(5n) { border-right: none; }
.pt-head { background: var(--surface-2); }
.pt-feature-label { display: flex; flex-direction: column; gap: 3px; }
.pt-feature-label .ttl { font-weight: 600; font-size: 14.5px; }
.pt-feature-label .sub { font-size: 12.5px; color: var(--text-faint); }
.pt-plan-name { font-family: var(--f-display); font-weight: 600; font-size: 19px; }
.pt-plan-price { font-family: var(--f-mono); font-size: 15px; color: var(--text-muted); margin-top: 6px; }
.pt-plan-price b { color: var(--text); font-size: 26px; }
.pt-col-head { position: relative; }
.pt-badge { position: absolute; top: 12px; right: 12px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--r-pill); background: var(--accent); color: #052017; font-weight: 700; }
.pt-val { font-family: var(--f-mono); font-size: 15px; text-align: center; }
.pt-val.center-flex { display: flex; align-items: center; justify-content: center; }
.pt-val .yes { color: var(--accent); }
.pt-val .no { color: var(--text-faint); }
.pt-val svg { width: 19px; height: 19px; }
.pt-cta-cell { text-align: center; }
.pt-cta-cell .btn { width: 100%; }
.price-cards { display: none; }

.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md); background: var(--surface-1); overflow: hidden; transition: border-color .2s; }
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 600; font-size: 16.5px; font-family: var(--f-display); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { width: 20px; height: 20px; color: var(--text-muted); transition: transform .25s; flex: none; }
.faq-item[open] summary .chev { transform: rotate(180deg); color: var(--accent); }
.faq-item .ans { padding: 0 22px 22px; color: var(--text-muted); font-size: 15px; line-height: 1.65; }

.cta-final { position: relative; overflow: hidden; }
.cta-box {
  background: linear-gradient(160deg, var(--surface-1), var(--ink-1));
  border: 1px solid var(--accent-line); border-radius: var(--r-xl);
  padding: clamp(40px,6vw,72px); text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--glow);
}
.cta-box::before { content:""; position:absolute; inset:0; background: radial-gradient(ellipse 70% 120% at 50% 0%, var(--accent-soft), transparent 70%); pointer-events:none; }
.cta-box .h2 { position: relative; }
.cta-box .lead { position: relative; margin: 18px auto 30px; max-width: 540px; }
.cta-box .email-row { margin: 0 auto; position: relative; }

.footer { border-top: 1px solid var(--border); padding-block: 56px 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { margin-bottom: 16px; }
.footer-blurb { color: var(--text-muted); font-size: 14px; max-width: 300px; }
.footer-col h4 { font-family: var(--f-body); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-faint); margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-bottom p { font-size: 13px; color: var(--text-faint); margin: 0; }
.risk { margin-top: 18px; font-size: 12.5px; color: var(--text-faint); max-width: 760px; line-height: 1.6; }

.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(3,5,8,.72); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal { width: 100%; max-width: 410px; background: var(--surface-1); border: 1px solid var(--border-strong); border-radius: var(--r-xl); padding: 32px; box-shadow: var(--sh-lg); }
.modal .brand { justify-content: center; margin-bottom: 22px; }
.modal h3 { text-align: center; font-size: 22px; }
.modal .sub { text-align: center; color: var(--text-muted); font-size: 14px; margin-top: 8px; }
.modal .field { margin-top: 18px; }
.modal label { font-size: 13px; color: var(--text-muted); font-weight: 600; display: block; margin-bottom: 7px; }
.modal input { width: 100%; padding: 13px 15px; background: var(--surface-2); border: 1px solid var(--border-strong); border-radius: var(--r-md); color: var(--text); font-family: var(--f-body); font-size: 15px; }
.modal input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.modal .btn { width: 100%; margin-top: 22px; }
.modal .switch { text-align: center; font-size: 14px; color: var(--text-muted); margin-top: 18px; }
.modal .switch a { color: var(--accent); font-weight: 600; cursor: pointer; }
.modal .close { position: absolute; top: 18px; right: 20px; background: none; border: none; color: var(--text-muted); font-size: 22px; }
.modal-wrap { position: relative; width: 100%; max-width: 410px; }

.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.gz-pre { opacity: 0; transform: translateY(22px); }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal.gz-pre { opacity: 1; transform: none; transition: none; } }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .strat-row, .strat-row.rev { grid-template-columns: 1fr; }
  .strat-row.rev .strat-text { order: 0; }
  .steps, .pillars { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--border); }
  .kpis { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 820px) {
  .pricing-table { display: none; }
  .price-cards { display: grid; gap: 16px; }
  .pcard { border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface-1); padding: 24px; }
  .pcard.hot { border-color: var(--accent-line); box-shadow: var(--glow); }
  .pcard .pc-name { font-family: var(--f-display); font-size: 20px; font-weight: 600; }
  .pcard .pc-price { font-family: var(--f-mono); margin-top: 6px; color: var(--text-muted); }
  .pcard .pc-price b { color: var(--text); font-size: 28px; }
  .pcard ul { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; }
  .pcard li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
  .pcard li svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 2px; }
  .pcard .btn { width: 100%; }
}
@media (max-width: 560px) {
  .email-row { flex-direction: column; }
  .email-row .btn { width: 100%; }
  .kpis { grid-template-columns: 1fr 1fr; }
  .bot-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
