:root{
  --bg:#030712;
  --surface:rgba(15,23,42,.56);
  --surface-soft:rgba(15,23,42,.38);
  --surface-hover:rgba(24,34,56,.78);
  --surface-strong:rgba(15,23,42,.84);
  --primary:#3b82f6;
  --primary-dark:#1d4ed8;
  --primary-glow:rgba(59,130,246,.45);
  --accent:#10b981;
  --accent-soft:rgba(16,185,129,.12);
  --warm:#f59e0b;
  --text-main:#f8fafc;
  --text-soft:#dbe4ef;
  --text-muted:#9ca3af;
  --border:rgba(255,255,255,.08);
  --border-hover:rgba(255,255,255,.18);
  --shadow:0 18px 48px rgba(2,6,23,.22);
}

*{margin:0;padding:0;box-sizing:border-box}
html{
  scroll-behavior:smooth;
  font-family:"Manrope",sans-serif;
  background:var(--bg);
}
body{
  color:var(--text-main);
  line-height:1.6;
  min-height:100%;
  overflow-x:hidden;
}
h1,h2,h3,h4,.price-value,.fact-number,.kpi-value{font-family:"Outfit",sans-serif}
a{color:inherit}
img{max-width:100%;display:block}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  background-color:var(--bg);
  background-image:
    linear-gradient(to right,rgba(255,255,255,.016) 1px,transparent 1px),
    linear-gradient(to bottom,rgba(255,255,255,.016) 1px,transparent 1px);
  background-size:52px 52px;
  background-position:top center;
}

body::after{
  content:"";
  position:fixed;
  inset:-8vh 0 auto;
  margin:auto;
  width:min(1200px,88vw);
  height:54vh;
  z-index:-1;
  background:
    radial-gradient(ellipse 46% 48% at 50% 18%,rgba(37,99,235,.14),transparent 74%),
    radial-gradient(ellipse 28% 24% at 64% 14%,rgba(14,165,233,.045),transparent 80%);
  pointer-events:none;
}

.skip-link{
  position:absolute;
  left:20px;
  top:-48px;
  z-index:200;
  background:#fff;
  color:#0f172a;
  padding:10px 14px;
  border-radius:12px;
  font-weight:700;
  text-decoration:none;
}
.skip-link:focus{top:20px}

.container{
  width:min(1320px,100%);
  margin:0 auto;
  padding:0 28px;
  position:relative;
  z-index:10;
}
main.container{padding-bottom:80px}
section{scroll-margin-top:136px}

.reveal{
  opacity:0;
  transform:translateY(40px) scale(.985);
  transition:all .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.active{
  opacity:1;
  transform:translateY(0) scale(1);
}

@keyframes borderGlow{
  0%{border-color:rgba(59,130,246,.3);box-shadow:0 0 20px rgba(59,130,246,.08)}
  50%{border-color:rgba(59,130,246,.82);box-shadow:0 0 44px rgba(59,130,246,.22)}
  100%{border-color:rgba(59,130,246,.3);box-shadow:0 0 20px rgba(59,130,246,.08)}
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:56px;
  padding:15px 28px;
  border-radius:16px;
  text-decoration:none;
  font-weight:800;
  font-size:16px;
  text-align:center;
  transition:transform .25s ease,background .25s ease,border-color .25s ease,box-shadow .25s ease;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  border:1px solid transparent;
}

.btn-buy{
  color:#fff;
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  border-color:rgba(255,255,255,.12);
  box-shadow:0 12px 34px rgba(37,99,235,.34);
}
.btn-buy::after{
  content:"";
  position:absolute;
  inset:0 auto 0 -100%;
  width:48%;
  background:linear-gradient(to right,transparent,rgba(255,255,255,.26),transparent);
  transform:skewX(-24deg);
  transition:left .5s ease;
}
.btn-buy:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 42px rgba(37,99,235,.42);
}
.btn-buy:hover::after{left:200%}

.btn-secondary{
  color:#fff;
  background:rgba(255,255,255,.03);
  border-color:var(--border);
  backdrop-filter:blur(12px);
}
.btn-secondary:hover{
  background:rgba(255,255,255,.08);
  border-color:var(--border-hover);
  transform:translateY(-2px);
}

.btn-ghost{
  color:#bfdbfe;
  background:rgba(59,130,246,.08);
  border-color:rgba(59,130,246,.18);
}
.btn-ghost:hover{
  background:rgba(59,130,246,.12);
  border-color:rgba(59,130,246,.28);
  transform:translateY(-2px);
}

header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(3,7,18,.72);
  border-bottom:1px solid rgba(255,255,255,.05);
  backdrop-filter:blur(24px);
}

.nav-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.logo-wrapper{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  transition:opacity .25s ease;
}
.logo-wrapper:hover{opacity:.88}

.logo-mark{
  width:38px;
  height:38px;
  border-radius:11px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--primary),#1e40af);
  font-family:"Outfit",sans-serif;
  font-weight:800;
  font-size:18px;
  box-shadow:0 4px 16px var(--primary-glow);
}
.logo-text{
  font-family:"Outfit",sans-serif;
  font-size:22px;
  font-weight:700;
  letter-spacing:-.5px;
}
.logo-slogan{
  display:none;
  font-size:13px;
  color:var(--text-muted);
  padding-left:14px;
  margin-left:2px;
  border-left:1px solid rgba(255,255,255,.14);
}
@media (min-width:840px){.logo-slogan{display:block}}

.nav-links{
  display:none;
  align-items:center;
  gap:20px;
}
.nav-links a{
  text-decoration:none;
  font-size:14px;
  color:var(--text-muted);
}
.nav-links a:hover,.nav-links a[aria-current="page"]{color:#fff}
@media (min-width:980px){.nav-links{display:flex}}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-actions .btn{
  min-height:44px;
  padding:10px 18px;
  font-size:14px;
  border-radius:14px;
}
@media (max-width:980px){
  .nav-actions .btn-ghost{display:none}
}

.subnav{
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
  background:rgba(2,6,23,.42);
}
.subnav-scroll{
  display:flex;
  gap:10px;
  overflow-x:auto;
  scrollbar-width:none;
  padding:10px 0 12px;
}
.subnav-scroll::-webkit-scrollbar{display:none}
.subnav-link{
  white-space:nowrap;
  text-decoration:none;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  color:var(--text-soft);
  font-size:14px;
  font-weight:700;
}
.subnav-link:hover,.subnav-link.active{
  color:#fff;
  border-color:rgba(59,130,246,.26);
  background:rgba(59,130,246,.14);
}

.hero{
  padding:36px 0 22px;
  min-height:calc(100vh - 132px);
  display:flex;
  align-items:center;
}
.hero-shell,
.page-shell{
  display:grid;
  grid-template-columns:minmax(0,1.42fr) minmax(320px,.86fr);
  gap:28px;
  align-items:stretch;
  width:100%;
}
@media (max-width:1020px){
  .hero-shell,.page-shell{grid-template-columns:1fr}
}

.hero-panel,
.hero-aside,
.glass-card,
.copy-card,
.mini-card,
.price-card,
.device-card,
.faq-item,
.smart-cabinet,
.story-card,
.step-card,
.scenario-card,
.fact-card,
.trial-card,
.link-card,
.support-card,
.legal-box,
.cta-band,
.table-card,
.cluster-card{
  background:var(--surface);
  border:1px solid var(--border);
  backdrop-filter:blur(12px);
  box-shadow:var(--shadow);
}

.hero-panel,
.hero-aside,
.smart-cabinet,
.cta-band{
  position:relative;
  overflow:hidden;
}

.hero-panel{
  border-radius:34px;
  padding:32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:100%;
  background:
    linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,0)),
    var(--surface);
}
.hero-panel::before,
.hero-aside::before,
.smart-cabinet::before,
.cta-band::before{
  content:"";
  position:absolute;
  pointer-events:none;
  border-radius:50%;
  background:radial-gradient(circle,rgba(59,130,246,.2),transparent 72%);
}
.hero-panel::before{
  width:220px;
  height:220px;
  top:-44px;
  right:-44px;
}

.hero-aside{
  border-radius:30px;
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:100%;
  background:
    linear-gradient(180deg,rgba(59,130,246,.04),rgba(255,255,255,0)),
    var(--surface);
}
.hero-aside::before{
  width:170px;
  height:170px;
  right:-54px;
  bottom:-54px;
  opacity:.75;
}

.hero-badge,
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 16px;
  border-radius:999px;
  margin-bottom:18px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.45px;
  color:#93c5fd;
  background:rgba(37,99,235,.12);
  border:1px solid rgba(37,99,235,.24);
}

.hero h1,
.page-shell h1{
  font-size:clamp(34px,4vw,54px);
  line-height:1.02;
  letter-spacing:-1.6px;
  margin-bottom:16px;
  max-width:780px;
}
.hero h1 span,
.page-shell h1 span{
  display:block;
  margin-top:10px;
  color:#b7c6db;
  font-size:.84em;
  font-weight:500;
  line-height:1.08;
}

.hero-copy{
  max-width:720px;
  margin-bottom:22px;
  font-size:17px;
  color:var(--text-muted);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
}
.hero-actions .btn{min-width:188px}

.hero-proof{
  margin-top:18px;
  font-size:14px;
  color:#c7d2e0;
  max-width:620px;
}

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:40px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  color:#d8e2ee;
  font-size:14px;
  font-weight:700;
}

.hero-side-title{
  margin-bottom:14px;
  color:#93c5fd;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}
.hero-side-title strong{color:#fff}

.hero-price-tag{
  display:flex;
  align-items:flex-end;
  gap:10px;
  margin:14px 0 10px;
}
.hero-price-tag strong{
  font-size:52px;
  line-height:1;
  letter-spacing:-2px;
}
.hero-price-tag span{
  padding-bottom:8px;
  color:var(--text-muted);
  font-size:16px;
}

.hero-side-list,
.compare-list{
  list-style:none;
  margin:18px 0 22px;
}
.hero-side-list li,
.compare-list li{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
  color:#dbe2ea;
  font-size:14px;
}
.hero-side-note{
  margin-top:14px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(16,185,129,.08);
  border:1px solid rgba(16,185,129,.16);
  color:#dff7ed;
  font-size:14px;
}
.hero-side-note strong{color:#fff}

.section-heading{
  max-width:880px;
  margin:0 auto 28px;
  text-align:center;
}
.section-title{
  font-size:clamp(30px,4vw,46px);
  line-height:1.06;
  letter-spacing:-1px;
  margin-bottom:14px;
}
.section-lead{
  max-width:760px;
  margin:0 auto;
  font-size:18px;
  color:var(--text-muted);
}

.benefits,
.story-grid,
.scenario-grid,
.facts-grid,
.steps-grid,
.copy-columns,
.support-grid,
.trial-grid,
.kpi-grid,
.cluster-grid{
  display:grid;
  gap:20px;
}
.benefits{grid-template-columns:repeat(auto-fit,minmax(260px,1fr));padding:26px 0 84px}
.story-grid{grid-template-columns:repeat(3,1fr);margin:16px 0 84px}
.scenario-grid{grid-template-columns:repeat(3,1fr);margin:16px 0 84px}
.facts-grid{grid-template-columns:repeat(4,1fr);margin:16px 0 84px}
.steps-grid{grid-template-columns:repeat(3,1fr);margin:16px 0 84px}
.copy-columns{grid-template-columns:repeat(3,1fr);margin:16px 0 84px}
.support-grid{grid-template-columns:repeat(3,1fr);margin:18px 0 70px}
.trial-grid{grid-template-columns:repeat(3,1fr);margin:18px 0 80px}
.kpi-grid{grid-template-columns:repeat(4,1fr);margin:20px 0 72px}
.cluster-grid{grid-template-columns:repeat(2,1fr);margin:18px 0 80px}

@media (max-width:980px){
  .story-grid,.scenario-grid,.facts-grid,.steps-grid,.copy-columns,.support-grid,.trial-grid,.kpi-grid,.cluster-grid{grid-template-columns:1fr}
}

.glass-card,
.story-card,
.scenario-card,
.fact-card,
.step-card,
.trial-card,
.support-card,
.copy-card,
.mini-card,
.table-card,
.cluster-card{
  border-radius:26px;
  padding:28px;
}

.glass-card{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.glass-card:hover,
.device-card:hover,
.link-card:hover,
.cluster-card:hover{
  transform:translateY(-4px);
  border-color:var(--border-hover);
  background:var(--surface-hover);
  box-shadow:0 22px 44px rgba(2,6,23,.24);
}

.icon-wrap{
  width:54px;
  height:54px;
  margin-bottom:18px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.glass-card h3,
.device-card h3,
.faq-item h3,
.story-card h3,
.step-card h3,
.scenario-card h3,
.trial-card h3,
.support-card h3,
.copy-card h3,
.mini-card h3,
.cluster-card h3{
  font-size:24px;
  margin-bottom:12px;
}
.glass-card p,
.device-card p,
.faq-item p,
.copy-card p,
.mini-card p,
.story-card p,
.step-card p,
.scenario-card p,
.trial-card p,
.support-card p,
.cluster-card p,
.legal-box,
.text-page p,
.text-page li{
  color:var(--text-soft);
}
.glass-card p{color:var(--text-muted)}

.fact-number,
.kpi-value{
  font-size:40px;
  line-height:1;
  letter-spacing:-1px;
  margin-bottom:10px;
}
.fact-card p,.kpi-card p{color:var(--text-muted)}
.kpi-card{
  padding:24px;
  border-radius:24px;
  background:var(--surface-soft);
  border:1px solid var(--border);
}

.pricing-wrap{padding-bottom:92px}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
@media (max-width:940px){
  .pricing-grid{grid-template-columns:1fr;max-width:540px;margin:0 auto}
}

.price-card{
  border-radius:30px;
  padding:38px 28px;
  display:flex;
  flex-direction:column;
  position:relative;
  transition:.35s ease;
  background:
    linear-gradient(180deg,rgba(255,255,255,.018),rgba(255,255,255,0)),
    var(--surface);
}
.price-card:hover{border-color:var(--border-hover)}
.price-card.entry{
  border-color:rgba(59,130,246,.28);
  background:linear-gradient(180deg,rgba(30,64,175,.18),rgba(17,24,39,.72));
  animation:borderGlow 4s infinite;
}
.price-card.popular{
  background:linear-gradient(180deg,rgba(16,185,129,.12),rgba(17,24,39,.68));
  border-color:rgba(16,185,129,.26);
}
.price-card.family{
  background:linear-gradient(180deg,rgba(245,158,11,.08),rgba(17,24,39,.68));
}

.hit-label{
  position:absolute;
  top:-14px;
  left:24px;
  padding:8px 16px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.55px;
  color:#fff;
  background:var(--primary);
  box-shadow:0 4px 15px var(--primary-glow);
}
.price-card.popular .hit-label{
  background:var(--accent);
  box-shadow:0 4px 15px rgba(16,185,129,.28);
}
.price-card.family .hit-label{
  background:var(--warm);
  box-shadow:0 4px 15px rgba(245,158,11,.26);
}

.price-kicker{
  margin-bottom:14px;
  color:#93c5fd;
  font-size:13px;
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
}
.price-name{
  font-size:30px;
  line-height:1.05;
  margin-bottom:10px;
}
.price-for{
  min-height:72px;
  margin-bottom:18px;
  color:var(--text-muted);
  font-size:15px;
  line-height:1.55;
}
.price-meta{
  display:flex;
  align-items:flex-end;
  gap:12px;
  margin-bottom:10px;
}
.price-old{
  color:#94a3b8;
  font-size:18px;
  font-weight:700;
  text-decoration:line-through;
  text-decoration-thickness:2px;
  text-decoration-color:rgba(148,163,184,.72);
}
.price-value{
  font-size:58px;
  line-height:1;
  letter-spacing:-2px;
  font-weight:800;
}
.price-value span{
  font-family:"Manrope",sans-serif;
  font-size:18px;
  font-weight:700;
  color:var(--text-muted);
  letter-spacing:0;
}
.price-save{
  display:inline-flex;
  align-self:flex-start;
  margin-bottom:18px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(16,185,129,.12);
  border:1px solid rgba(16,185,129,.2);
  color:#d1fae5;
  font-size:13px;
  font-weight:800;
}
.price-sub{
  margin-bottom:22px;
  color:#dbeafe;
  font-size:14px;
}
.price-features{
  list-style:none;
  margin-bottom:28px;
  flex-grow:1;
}
.price-features li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:14px;
  color:#d1d5db;
  font-size:15px;
}
.price-features li::before{
  content:"✓";
  color:var(--accent);
  font-weight:800;
}
.price-note{
  margin-top:16px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  color:var(--text-muted);
  font-size:14px;
}

.smart-cabinet,
.cta-band{
  border-radius:34px;
  padding:52px 44px;
  text-align:center;
  background:
    linear-gradient(180deg,rgba(59,130,246,.05),rgba(255,255,255,0)),
    var(--surface);
}
.smart-cabinet::before,
.cta-band::before{
  width:320px;
  height:120px;
  top:-50px;
  left:50%;
  transform:translateX(-50%);
  filter:blur(80px);
  opacity:.18;
}
.smart-cabinet h2,
.cta-band h2{
  font-size:clamp(30px,4vw,42px);
  letter-spacing:-1px;
  margin-bottom:18px;
}
.smart-cabinet p,
.cta-band p{
  max-width:760px;
  margin:0 auto 28px;
  font-size:18px;
  color:var(--text-muted);
}

.content-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:24px;
  margin:20px 0 84px;
}
@media (max-width:980px){.content-grid{grid-template-columns:1fr}}

.copy-card ul{padding-left:20px}
.copy-card li{margin-bottom:12px}
.mini-card{
  border-radius:24px;
  padding:24px;
  background:rgba(255,255,255,.025);
}

.device-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  margin:18px 0 88px;
  align-items:stretch;
}
@media (max-width:980px){.device-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:560px){.device-grid{grid-template-columns:1fr;gap:14px}}

.device-card{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  height:100%;
  position:relative;
  overflow:hidden;
  padding:24px;
  border-radius:24px;
  text-decoration:none;
  transition:.3s ease;
}
.device-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:1px;
  background:linear-gradient(90deg,rgba(59,130,246,0),rgba(59,130,246,.45),rgba(59,130,246,0));
}
.device-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.device-emoji{
  width:44px;
  height:44px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}
.device-kicker{
  color:#93c5fd;
  font-size:12px;
  font-weight:700;
  letter-spacing:.9px;
  text-transform:uppercase;
}
.device-card h3{font-size:22px;line-height:1.15;margin-bottom:10px}
.device-card p{font-size:15px;line-height:1.55;color:var(--text-muted)}

.faq-list{max-width:1180px;margin:0 auto 80px}
.faq-item{
  border-radius:22px;
  margin-bottom:16px;
  overflow:hidden;
}
.faq-question{
  list-style:none;
  display:flex;
  align-items:center;
  gap:16px;
  padding:22px 26px;
  cursor:pointer;
  user-select:none;
}
.faq-question::-webkit-details-marker{display:none}
.faq-emoji{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-size:20px;
  flex:0 0 auto;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.faq-question h3{
  flex:1;
  margin:0;
  font-size:20px;
  line-height:1.3;
}
.faq-toggle{
  width:34px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  font-size:20px;
  color:#cbd5e1;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  transition:transform .25s ease,background .25s ease,color .25s ease;
}
.faq-item[open] .faq-toggle{
  transform:rotate(45deg);
  background:rgba(37,99,235,.16);
  color:#fff;
}
.faq-answer{padding:0 26px 24px 86px}
.faq-answer p{
  margin:0;
  font-size:16px;
  line-height:1.65;
}

.link-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:18px 0 88px;
}
@media (max-width:980px){.link-grid{grid-template-columns:1fr}}
.link-card{
  display:block;
  padding:24px;
  border-radius:22px;
  text-decoration:none;
  transition:.3s ease;
}
.link-card strong{
  display:block;
  margin-bottom:8px;
  font-size:20px;
}
.link-card span{
  color:var(--text-muted);
  font-size:15px;
}

.text-page{padding:54px 0 30px}
.text-page .content{max-width:1180px;margin:0 auto}
.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:24px;
  color:var(--text-muted);
  font-size:14px;
}
.breadcrumbs a{
  color:var(--text-muted);
  text-decoration:none;
}
.breadcrumbs a:hover{color:#fff}

.text-page h1{font-size:clamp(36px,5vw,58px);line-height:1.06;letter-spacing:-1.3px;margin-bottom:18px}
.text-page h2{font-size:30px;line-height:1.15;margin:36px 0 14px}
.text-page h3{font-size:22px;margin:24px 0 10px}
.text-page .intro{font-size:20px;color:var(--text-muted);margin-bottom:24px}
.text-page p,.text-page li{font-size:18px}
.text-page ul{padding-left:22px}
.text-page li{margin-bottom:10px}

.callout{
  margin:24px 0;
  padding:18px 20px;
  border-radius:18px;
  background:rgba(37,99,235,.08);
  border:1px solid rgba(37,99,235,.22);
}
.callout p{margin:0}

.split-callout{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin:26px 0 18px;
}
@media (max-width:760px){.split-callout{grid-template-columns:1fr}}

.footer-note{margin-top:12px;color:var(--text-muted);font-size:14px}

footer{
  margin-top:64px;
  padding:40px 0 100px;
  border-top:1px solid var(--border);
  position:relative;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr .95fr .85fr;
  gap:28px;
  margin-bottom:28px;
  align-items:start;
}
@media (max-width:860px){.footer-grid{grid-template-columns:1fr;gap:32px}}
.footer-col{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.footer-col h4{
  margin-bottom:14px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.9px;
  text-transform:uppercase;
}
.footer-links{list-style:none}
.footer-links li{margin-bottom:8px}
.footer-links a{
  color:var(--text-muted);
  text-decoration:none;
  font-size:15px;
  transition:color .2s ease;
}
.footer-links a:hover{color:#fff}
.footer-col .logo-wrapper{margin-bottom:16px !important}

.legal-box{
  padding:16px 18px;
  border-radius:16px;
  font-size:12px;
  line-height:1.6;
  color:#94a3b8;
}

.footer-bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--border);
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#6b7280;
  font-size:14px;
}

.sticky-cta{
  position:fixed;
  inset:auto 0 14px;
  z-index:120;
  opacity:0;
  pointer-events:none;
  transform:translateY(20px);
  transition:opacity .25s ease,transform .25s ease;
}
.sticky-cta.visible{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.sticky-cta-inner{
  width:min(640px,calc(100% - 24px));
  margin:0 auto;
  padding:12px;
  display:flex;
  gap:10px;
  align-items:center;
  background:rgba(2,6,23,.86);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  box-shadow:0 16px 34px rgba(2,6,23,.4);
  backdrop-filter:blur(18px);
}
.sticky-cta-copy{
  flex:1;
  min-width:0;
  font-size:13px;
  color:#cbd5e1;
}
.sticky-cta-copy strong{
  display:block;
  color:#fff;
  font-size:14px;
}
.sticky-cta-actions{
  display:flex;
  gap:10px;
}
.sticky-cta-actions .btn{
  min-height:44px;
  padding:10px 16px;
  font-size:14px;
  border-radius:14px;
}

@media (min-width:961px){.sticky-cta{display:none}}

@media (max-width:960px){
  .container{padding:0 18px}
  .hero{padding-top:28px;min-height:auto;display:block}
  .hero-actions .btn{width:100%}
  .hero-panel,.hero-aside,.smart-cabinet,.cta-band,.price-card,.copy-card,.story-card,.scenario-card,.step-card,.fact-card,.trial-card,.support-card,.device-card,.faq-item,.glass-card,.table-card,.cluster-card{padding:24px}
  .hero-side-list li,.compare-list li{flex-direction:column}
}

@media (max-width:720px){
  .nav-inner{min-height:70px}
  .nav-actions .btn-secondary{display:none}
  .hero-copy,.section-lead,.smart-cabinet p,.cta-band p,.text-page .intro{font-size:17px}
  .hero h1,.page-shell h1{font-size:clamp(32px,9vw,46px)}
  .section-title,.smart-cabinet h2,.cta-band h2{font-size:clamp(28px,8vw,38px)}
  .faq-question{padding:18px}
  .faq-question h3{font-size:18px}
  .faq-emoji{width:40px;height:40px;border-radius:12px;font-size:18px}
  .faq-answer{padding:0 18px 20px}
  .footer-bottom{flex-direction:column}
  .sticky-cta-inner{
    width:calc(100% - 16px);
    flex-direction:column;
    align-items:stretch;
  }
  .sticky-cta-copy{text-align:center}
  .sticky-cta-actions{width:100%}
  .sticky-cta-actions .btn{flex:1}
}
