:root{
  --bg:#ffffff;
  --bg-alt:#f7f5f1;
  --bg-dark:#0b1020;
  --ink:#0f172a;
  --ink-2:#475569;
  --ink-3:#64748b;
  --line:#e6e2da;
  --line-dark:rgba(255,255,255,.12);
  --brand:#214A88;
  --brand-2:#67D377;
  --brand-dark:#1a3c70;
  --brand-ink:#0b1020;
  --accent:#0ea5e9;
  --ok:#10b981;
  --radius:14px;
  --radius-lg:22px;
  --shadow-sm:0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.08);
  --shadow-md:0 10px 25px -5px rgba(15,23,42,.08), 0 8px 10px -6px rgba(15,23,42,.05);
  --shadow-lg:0 25px 50px -12px rgba(15,23,42,.18);
  --font:'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth; -webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-size:16px;
  line-height:1.6;
}
img,svg{display:block; max-width:100%; height:auto}
a{color:inherit; text-decoration:none}
ul{list-style:none; margin:0; padding:0}
button{font-family:inherit; cursor:pointer; border:none; background:none}
h1,h2,h3,h4{margin:0 0 .5em; font-weight:800; line-height:1.15; color:var(--ink); letter-spacing:-.01em}
h1{font-size:clamp(2rem, 4.5vw, 3.5rem)}
h2{font-size:clamp(1.6rem, 3vw, 2.4rem)}
h3{font-size:1.2rem}
p{margin:0 0 1em; color:var(--ink-2)}

.container{width:100%; max-width:1200px; margin:0 auto; padding:0 24px}
.container-narrow{max-width:860px}

.skip-link{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
  background:#000; color:#fff; padding:8px 12px; border-radius:8px;
}
.skip-link:focus{left:16px; top:16px; width:auto; height:auto; z-index:100}

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(180%) blur(12px);
  -webkit-backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:24px; min-height:72px}
.logo{display:inline-flex; align-items:center; gap:10px; font-weight:800; font-size:1.05rem}
.logo-mark{flex-shrink:0}
.logo-text{letter-spacing:-.02em}
.logo-dot{color:var(--brand)}
.site-nav{display:flex; gap:28px; font-weight:500; font-size:.95rem; color:var(--ink-2)}
.site-nav a{transition:color .15s}
.site-nav a:hover{color:var(--brand)}
.header-cta{display:flex; gap:8px}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 18px; border-radius:10px; font-weight:600; font-size:.95rem;
  transition:transform .1s, box-shadow .15s, background .15s, color .15s, border-color .15s;
  white-space:nowrap; cursor:pointer;
}
.btn-lg{padding:14px 24px; font-size:1rem; border-radius:12px}
.btn-block{width:100%}
.btn-primary{background:var(--brand); color:#fff; box-shadow:0 6px 14px rgba(33,74,136,.32)}
.btn-primary:hover{background:var(--brand-dark); box-shadow:0 8px 20px rgba(33,74,136,.4); transform:translateY(-1px)}
.btn-outline{background:#fff; color:var(--ink); border:1.5px solid var(--line)}
.btn-outline:hover{border-color:var(--brand); color:var(--brand)}
.btn-ghost{color:var(--ink); background:transparent}
.btn-ghost:hover{color:var(--brand)}

/* ---------- Hero ---------- */
.hero{position:relative; padding:80px 0 100px; overflow:hidden}
.hero-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 50% 60% at 85% 10%, rgba(103,211,119,.28), transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(14,165,233,.18), transparent 70%),
    linear-gradient(180deg, #f1f6ff 0%, #fff 60%);
  z-index:-1;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:72px;
  align-items:center;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 14px; border-radius:999px;
  background:rgba(33,74,136,.1); color:var(--brand);
  font-weight:600; font-size:.82rem; letter-spacing:.02em;
  margin-bottom:20px;
}
.eyebrow-dot{width:6px; height:6px; border-radius:50%; background:var(--brand); box-shadow:0 0 0 3px rgba(33,74,136,.25)}
.eyebrow-light{background:rgba(255,255,255,.1); color:#bcdfff}
.hl{
  background:linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
  white-space:nowrap;
}
.lead{font-size:1.1rem; color:var(--ink-2); margin:16px 0 32px; max-width:560px}
.hero-ctas{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:28px}
.hero-bullets{display:flex; gap:24px; flex-wrap:wrap; color:var(--ink-2); font-size:.95rem}
.hero-bullets li{display:inline-flex; align-items:center; gap:8px}
.check{
  display:inline-flex; align-items:center; justify-content:center;
  width:22px; height:22px; border-radius:50%;
  background:rgba(16,185,129,.15); color:var(--ok);
  font-weight:700; font-size:.8rem;
}

/* ---------- Hero card (phone) ---------- */
.hero-card{position:relative}
.phone{
  width:100%; max-width:360px; margin:0 auto;
  background:#0b1020;
  border-radius:36px;
  padding:10px;
  box-shadow:var(--shadow-lg);
  position:relative;
  transform:rotate(-2deg);
}
.phone-notch{
  width:110px; height:26px; background:#0b1020;
  border-radius:0 0 18px 18px;
  margin:0 auto;
  position:relative;
  z-index:2;
}
.phone-screen{
  background:#fff;
  border-radius:28px;
  padding:16px;
  margin-top:-6px;
  min-height:520px;
}
.phone-header{
  display:flex; align-items:center; gap:6px;
  padding:4px 6px 12px;
  border-bottom:1px solid var(--line);
  margin-bottom:16px;
}
.phone-dot{width:10px; height:10px; border-radius:50%}
.dot-red{background:#ef4444}
.dot-yellow{background:#f59e0b}
.dot-green{background:#10b981}
.phone-url{margin-left:auto; font-size:.75rem; color:var(--ink-3)}
.phone-body{padding:0 4px}
.shop-name{font-weight:800; font-size:1.15rem; margin-bottom:2px}
.shop-status{color:var(--ink-3); font-size:.85rem; margin-bottom:18px}
.product-row{
  display:flex; align-items:center; gap:12px;
  padding:12px; border-radius:12px;
  background:var(--bg-alt);
  margin-bottom:8px;
}
.product-thumb{
  width:40px; height:40px; border-radius:10px;
  background:rgba(33,74,136,.15); color:var(--brand);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.product-info{flex:1; min-width:0}
.product-title{font-weight:600; font-size:.9rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.product-meta{color:var(--ink-3); font-size:.78rem}
.product-price{font-weight:700; font-size:.95rem}
.total-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:16px 4px; margin-top:8px;
  border-top:1px dashed var(--line);
  font-size:1rem;
}
.total-row strong{font-size:1.3rem}
.pay-btn{
  display:flex; align-items:center; justify-content:center; gap:8px;
  width:100%; padding:14px; border-radius:12px;
  background:var(--brand); color:#fff;
  font-weight:700; font-size:1rem;
  box-shadow:0 6px 14px rgba(33,74,136,.32);
  margin-top:8px;
}
.pay-note{text-align:center; color:var(--ink-3); font-size:.78rem; margin-top:10px}

.pill{
  position:absolute; padding:10px 16px; border-radius:999px;
  background:#fff; box-shadow:var(--shadow-md);
  font-weight:600; font-size:.85rem;
  border:1px solid var(--line);
}
.pill-top{top:-8px; right:-8px; color:var(--ok)}
.pill-bottom{bottom:24px; left:-20px; color:var(--brand)}

@media (max-width: 960px){
  .hero{padding:56px 0 72px}
  .hero-grid{grid-template-columns:1fr; gap:48px}
  .phone{transform:none}
}

/* ---------- Logos strip ---------- */
.logos{padding:32px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff}
.logos-title{text-align:center; text-transform:uppercase; letter-spacing:.12em; color:var(--ink-3); font-size:.78rem; margin:0 0 16px}
.logos-row{
  display:flex; flex-wrap:wrap; justify-content:center; gap:16px 40px;
  color:var(--ink-2); font-weight:700; font-size:1.05rem; letter-spacing:-.01em;
}
.logos-row li{opacity:.75}

/* ---------- Sections ---------- */
.section{padding:96px 0}
.section-alt{background:var(--bg-alt)}
.section-head{text-align:center; max-width:720px; margin:0 auto 56px}
.section-head .eyebrow{margin-bottom:14px}
.section-sub{color:var(--ink-2); font-size:1.05rem; margin-top:8px}
.section-head-light h2{color:#fff}
.section-head-light .section-sub{color:#cbd5e1}

/* ---------- Steps ---------- */
.steps{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
  counter-reset:step;
}
.step{
  position:relative;
  padding:28px 24px;
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  transition:transform .2s, box-shadow .2s;
}
.step:hover{transform:translateY(-4px); box-shadow:var(--shadow-md)}
.step-num{
  font-size:.85rem; font-weight:800; color:var(--brand);
  letter-spacing:.08em; margin-bottom:16px;
}
.step h3{margin-bottom:8px}
.step p{font-size:.95rem; margin:0}

@media (max-width: 960px){
  .section{padding:64px 0}
  .steps{grid-template-columns:repeat(2, 1fr)}
}
@media (max-width: 560px){
  .steps{grid-template-columns:1fr}
}

/* ---------- Features ---------- */
.features-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}
.feature{
  padding:28px 24px;
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius-lg);
  transition:transform .2s, box-shadow .2s, border-color .2s;
}
.feature:hover{transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:rgba(33,74,136,.3)}
.feature-ico{
  width:52px; height:52px; border-radius:14px;
  background:linear-gradient(135deg, rgba(33,74,136,.15), rgba(103,211,119,.15));
  color:var(--brand);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.feature h3{margin-bottom:8px}
.feature p{font-size:.95rem; margin:0}

@media (max-width: 960px){
  .features-grid{grid-template-columns:repeat(2, 1fr)}
}
@media (max-width: 560px){
  .features-grid{grid-template-columns:1fr}
}

/* ---------- Marketplace ---------- */
.mp-grid{
  display:grid; grid-template-columns:repeat(2, 1fr); gap:20px;
  margin-bottom:48px;
}
.mp-card{
  padding:32px 28px;
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius-lg);
  transition:transform .2s, box-shadow .2s, border-color .2s;
}
.mp-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-md)}
.mp-card-accent{
  background:linear-gradient(135deg, rgba(33,74,136,.08), rgba(103,211,119,.04));
  border-color:rgba(33,74,136,.3);
}
.mp-icon{
  width:52px; height:52px; border-radius:14px;
  background:linear-gradient(135deg, rgba(33,74,136,.15), rgba(103,211,119,.15));
  color:var(--brand);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.mp-card h3{margin-bottom:8px}
.mp-card p{font-size:.98rem; margin:0}
.mp-card code{
  background:var(--bg-alt); padding:2px 6px; border-radius:6px;
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size:.88em; color:var(--ink);
}

.mp-compare{
  max-width:720px; margin:0 auto;
  background:#fff; border:1.5px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.mp-compare-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:18px 28px;
  border-bottom:1px solid var(--line);
  font-size:1rem;
}
.mp-compare-row:last-child{border-bottom:none}
.mp-compare-head{
  background:var(--bg-alt);
  font-weight:700; font-size:.8rem;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--ink-3);
}
.mp-compare-highlight{
  background:linear-gradient(135deg, rgba(33,74,136,.1), rgba(103,211,119,.05));
  padding:22px 28px;
}
.mp-bad{color:#dc2626; font-weight:700}
.mp-good{color:var(--ok); font-weight:800; font-size:1.1rem}
.mp-good small{color:var(--ink-3); font-weight:500; font-size:.75rem; display:block; margin-top:2px}

@media (max-width: 720px){
  .mp-grid{grid-template-columns:1fr}
  .mp-compare-row{padding:14px 18px; font-size:.92rem; gap:12px}
}

/* ---------- Messengers (Telegram + MAX) ---------- */
.msg-grid{
  display:grid; grid-template-columns:repeat(2, 1fr); gap:24px;
  max-width:1080px; margin:0 auto 32px;
}
.msg-card{
  position:relative;
  padding:32px 28px 28px;
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  transition:transform .2s, box-shadow .2s;
  display:flex; flex-direction:column;
}
.msg-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-md)}
.msg-card-tg{
  background:
    radial-gradient(ellipse 60% 60% at 100% 0%, rgba(55,174,226,.12), transparent 70%),
    #fff;
  border-color:rgba(55,174,226,.25);
}
.msg-card-max{
  background:
    radial-gradient(ellipse 60% 60% at 100% 0%, rgba(255,138,0,.12), transparent 70%),
    #fff;
  border-color:rgba(255,138,0,.25);
}
.msg-head{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center; gap:14px;
  margin-bottom:20px;
  padding-bottom:18px;
  border-bottom:1px dashed var(--line);
}
.msg-logo{
  width:52px; height:52px; border-radius:14px; overflow:hidden;
  box-shadow:0 8px 20px -8px rgba(15,23,42,.25);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.msg-head h3{margin:0 0 2px; font-size:1.15rem}
.msg-sub{color:var(--ink-3); font-size:.82rem; font-weight:500}
.msg-badge{
  align-self:start;
  padding:4px 10px; border-radius:999px;
  font-size:.72rem; font-weight:700; letter-spacing:.04em;
  white-space:nowrap;
}
.msg-badge-ok{background:rgba(16,185,129,.14); color:#047857}
.msg-badge-soon{background:rgba(255,138,0,.14); color:#b45309}
.msg-list{
  flex:1;
  display:flex; flex-direction:column; gap:12px;
  margin-bottom:22px;
}
.msg-list li{
  position:relative;
  padding:0 0 0 28px;
  font-size:.96rem;
  color:var(--ink-2);
  line-height:1.55;
}
.msg-list li::before{
  content:'';
  position:absolute; left:0; top:6px;
  width:18px; height:18px; border-radius:50%;
  background:rgba(33,74,136,.1);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8l3 3 7-7' stroke='%23214A88' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat:no-repeat; background-position:center;
}
.msg-card-tg .msg-list li::before{
  background-color:rgba(55,174,226,.14);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8l3 3 7-7' stroke='%231E96C8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.msg-card-max .msg-list li::before{
  background-color:rgba(255,138,0,.14);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8l3 3 7-7' stroke='%23b45309' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.msg-list li strong{color:var(--ink); font-weight:700}
.msg-card .btn-outline svg{margin-left:6px}

.msg-bottom{
  max-width:860px; margin:0 auto;
  display:flex; gap:16px; align-items:center;
  padding:18px 24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow-sm);
}
.msg-bottom-icon{
  width:44px; height:44px; flex-shrink:0;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(33,74,136,.15), rgba(103,211,119,.15));
  color:var(--brand);
  display:flex; align-items:center; justify-content:center;
}
.msg-bottom p{margin:0; font-size:.95rem}
.msg-bottom a{color:var(--brand); border-bottom:1px dashed rgba(33,74,136,.4)}

@media (max-width: 820px){
  .msg-grid{grid-template-columns:1fr}
  .msg-head{grid-template-columns:auto 1fr; grid-template-rows:auto auto}
  .msg-head .msg-badge{grid-column:2; justify-self:start; margin-top:4px}
}

/* ---------- Chips (who) ---------- */
.chips{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:center;
  max-width:900px; margin:0 auto;
}
.chip{
  padding:10px 18px; border-radius:999px;
  background:#fff; border:1.5px solid var(--line);
  font-weight:500; font-size:.95rem;
  transition:border-color .15s, color .15s, transform .15s;
}
.chip:hover{border-color:var(--brand); color:var(--brand); transform:translateY(-2px)}
.foot-note{text-align:center; color:var(--ink-3); font-size:.85rem; margin-top:24px}

/* ---------- Compare (dark) ---------- */
.section-dark{background:var(--bg-dark); color:#fff; position:relative; overflow:hidden}
.section-dark::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 40% at 20% 10%, rgba(103,211,119,.22), transparent 70%);
  pointer-events:none;
}
.compare{
  display:grid; grid-template-columns:1fr 1fr; gap:24px;
  max-width:960px; margin:0 auto;
  position:relative;
}
.compare-3{
  grid-template-columns:repeat(3, 1fr);
  max-width:1100px;
}
@media (max-width: 960px){
  .compare-3{grid-template-columns:1fr}
}
.compare-col{
  padding:36px 28px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line-dark);
  border-radius:var(--radius-lg);
  color:#e2e8f0;
}
.compare-col h3{color:#fff; margin-bottom:20px}
.compare-highlight{
  background:linear-gradient(135deg, rgba(33,74,136,.18), rgba(103,211,119,.08));
  border-color:rgba(33,74,136,.4);
  box-shadow:0 20px 40px -20px rgba(33,74,136,.4);
}
.cmp-list li{
  position:relative; padding:10px 0 10px 32px;
  border-bottom:1px solid var(--line-dark); font-size:.98rem;
}
.cmp-list li:last-child{border-bottom:none}
.cmp-list li::before{
  position:absolute; left:0; top:10px;
  width:22px; height:22px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.85rem;
}
.cmp-list-minus li::before{content:'–'; background:rgba(239,68,68,.2); color:#fca5a5}
.cmp-list-plus li::before{content:'✓'; background:rgba(16,185,129,.25); color:#6ee7b7}

@media (max-width: 760px){.compare{grid-template-columns:1fr}}

/* ---------- Pricing ---------- */
.pricing{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:20px;
  max-width:1080px; margin:0 auto;
}
.price-card{
  position:relative;
  padding:32px 28px;
  background:#fff; border:1.5px solid var(--line);
  border-radius:var(--radius-lg);
  display:flex; flex-direction:column; gap:16px;
  transition:transform .2s, box-shadow .2s;
}
.price-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-md)}
.price-card-highlight{
  border-color:var(--brand);
  box-shadow:0 20px 40px -20px rgba(33,74,136,.4);
}
.price-badge{
  position:absolute; top:-12px; right:24px;
  background:var(--brand); color:#fff;
  padding:4px 12px; border-radius:999px;
  font-size:.75rem; font-weight:700; letter-spacing:.04em;
}
.price-name{font-size:.85rem; text-transform:uppercase; letter-spacing:.1em; color:var(--ink-3); font-weight:700}
.price-value{font-size:2.2rem; font-weight:800; letter-spacing:-.02em}
.price-value span{font-size:.9rem; font-weight:500; color:var(--ink-3); margin-left:4px}
.price-list{flex:1; display:flex; flex-direction:column; gap:8px}
.price-list li{position:relative; padding:6px 0 6px 26px; font-size:.95rem; color:var(--ink-2)}
.price-list li::before{
  content:'✓'; position:absolute; left:0; top:6px;
  width:18px; height:18px; border-radius:50%;
  background:rgba(16,185,129,.15); color:var(--ok);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.75rem;
}

@media (max-width: 960px){.pricing{grid-template-columns:1fr}}

/* ---------- FAQ ---------- */
.faq{display:flex; flex-direction:column; gap:12px}
.faq details{
  background:#fff; border:1px solid var(--line); border-radius:14px;
  padding:18px 22px;
  transition:border-color .15s, box-shadow .15s;
}
.faq details[open]{border-color:rgba(33,74,136,.4); box-shadow:var(--shadow-sm)}
.faq summary{
  cursor:pointer; font-weight:700; font-size:1rem; color:var(--ink);
  list-style:none; display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:'+'; width:26px; height:26px; flex-shrink:0;
  border-radius:50%; background:var(--bg-alt); color:var(--brand);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:1.1rem;
  transition:transform .2s, background .15s;
}
.faq details[open] summary::after{transform:rotate(45deg); background:rgba(33,74,136,.15)}
.faq details p{margin:12px 0 0; color:var(--ink-2)}
.faq details a{color:var(--brand); border-bottom:1px dashed rgba(33,74,136,.4)}

/* ---------- CTA ---------- */
.cta{padding:80px 0}
.cta-box{
  background:linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color:#fff;
  padding:64px 48px;
  border-radius:28px;
  text-align:center;
  box-shadow:var(--shadow-lg);
}
.cta-box h2{color:#fff}
.cta-box p{color:rgba(255,255,255,.92); font-size:1.1rem; margin-bottom:28px}
.cta-box .hero-ctas{justify-content:center}
.cta-box .btn-outline{background:transparent; border-color:rgba(255,255,255,.5); color:#fff}
.cta-box .btn-outline:hover{background:#fff; color:var(--brand); border-color:#fff}
.cta-box .btn-primary{background:#fff; color:var(--brand); box-shadow:0 8px 20px rgba(0,0,0,.15)}
.cta-box .btn-primary:hover{background:#0b1020; color:#fff}

/* ---------- Footer ---------- */
.site-footer{background:var(--bg-dark); color:#cbd5e1; padding:56px 0 24px; margin-top:0}
.footer-grid{
  display:grid; grid-template-columns:1.5fr 1fr 1.2fr 1fr; gap:32px;
  padding-bottom:40px; border-bottom:1px solid var(--line-dark);
}
.logo-footer{color:#fff}
.footer-about{color:#94a3b8; font-size:.9rem; margin-top:12px; max-width:280px}
.footer-col h4{color:#fff; font-size:.85rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:14px}
.footer-col ul{display:flex; flex-direction:column; gap:8px}
.footer-col a{color:#94a3b8; font-size:.93rem; transition:color .15s}
.footer-col a:hover{color:var(--brand)}
.footer-bottom{
  display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:16px;
  padding-top:24px; color:#64748b; font-size:.85rem;
}
.footer-bottom nav{display:flex; gap:20px}

@media (max-width: 960px){
  .site-nav,.header-cta a:not(.btn-primary){display:none}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 560px){
  .footer-grid{grid-template-columns:1fr}
  .header-cta .btn{padding:8px 14px; font-size:.88rem}
  .cta-box{padding:40px 24px}
}

/* ---------- Legal pages ---------- */
.legal-hero{
  background:
    radial-gradient(ellipse 50% 60% at 85% 10%, rgba(103,211,119,.18), transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(33,74,136,.14), transparent 70%),
    linear-gradient(180deg, #f1f6ff 0%, #fff 100%);
  padding:56px 0 32px;
  border-bottom:1px solid var(--line);
}
.legal-hero h1{font-size:clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom:10px}
.legal-hero .legal-meta{
  color:var(--ink-3); font-size:.9rem;
  display:flex; gap:16px; flex-wrap:wrap; align-items:center;
  margin-top:8px;
}
.legal-hero .legal-meta a{color:var(--brand); border-bottom:1px dashed rgba(33,74,136,.35)}
.legal-crumbs{
  font-size:.85rem; color:var(--ink-3);
  margin-bottom:14px;
  display:flex; gap:8px; flex-wrap:wrap; align-items:center;
}
.legal-crumbs a{color:var(--ink-2)}
.legal-crumbs a:hover{color:var(--brand)}
.legal-crumbs .sep{opacity:.5}

.legal-doc{
  max-width:820px; margin:0 auto;
  padding:48px 0 64px;
}
.legal-doc h2{
  font-size:1.25rem; margin:36px 0 12px;
  padding-top:20px;
  border-top:1px solid var(--line);
}
.legal-doc h2:first-child{border-top:none; padding-top:0; margin-top:0}
.legal-doc h3{font-size:1.05rem; margin:22px 0 8px; color:var(--ink)}
.legal-doc p{margin:0 0 12px; color:var(--ink-2); font-size:1rem; line-height:1.72}
.legal-doc ul{margin:8px 0 16px; padding:0}
.legal-doc ul li{
  position:relative; padding:6px 0 6px 22px;
  color:var(--ink-2); font-size:.98rem; line-height:1.65;
}
.legal-doc ul li::before{
  content:''; position:absolute; left:4px; top:16px;
  width:6px; height:6px; border-radius:50%;
  background:var(--brand-2);
}
.legal-doc strong{color:var(--ink); font-weight:700}
.legal-doc a{color:var(--brand); border-bottom:1px dashed rgba(33,74,136,.35)}
.legal-doc code, .legal-doc .mono{
  background:var(--bg-alt); padding:2px 6px; border-radius:6px;
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size:.92em; color:var(--ink);
}
.legal-back{
  display:inline-flex; align-items:center; gap:6px;
  margin-bottom:24px; padding:8px 14px;
  border-radius:999px; background:var(--bg-alt);
  font-weight:600; font-size:.88rem; color:var(--ink-2);
  transition:color .15s, background .15s;
}
.legal-back:hover{background:rgba(33,74,136,.1); color:var(--brand)}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation:none !important; transition:none !important; scroll-behavior:auto !important}
}

/* ---------- Print ---------- */
@media print{
  .site-header,.site-footer,.cta,.logos{display:none}
  body{color:#000}
  .hero{padding:20px 0}
}
