/* ════════════════════════════════════════════════════════════
   RealityHost — multi-page site · shared design system
   Coral cards aesthetic (concept v7)
════════════════════════════════════════════════════════════ */
:root {
  --bg:      #f4f6fa;
  --white:   #ffffff;
  --ink:     #15192b;
  --grey:    #6b7280;
  --grey-2:  #9aa1ad;
  --line:    #e6e9f0;
  --line-2:  #eef1f6;

  --coral:   #ff5a4d;
  --coral-d: #f0392b;
  --coral-l: #ffe9e7;
  --indigo:  #4f46e5;
  --teal:    #0fb5a3;
  --amber:   #f8a51b;
  --green:   #18b368;

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow:   0 1px 2px rgba(20,25,43,.04), 0 8px 24px rgba(20,25,43,.06);
  --shadow-h: 0 4px 8px rgba(20,25,43,.06), 0 18px 50px rgba(255,90,77,.14);
  --gutter: clamp(16px, 4vw, 48px);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--ink); font-size: 15px; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img,svg { display: block; max-width: 100%; }
.frame { max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
.frame--narrow { max-width: 860px; }

/* ─── buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 22px; border-radius: 12px;
  font-family: var(--font); font-weight: 700; font-size: 14px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s, color .2s;
}
.btn:active { transform: scale(.97); }
.btn--coral { background: var(--coral); color: #fff; box-shadow: 0 6px 16px rgba(255,90,77,.32); }
.btn--coral:hover { background: var(--coral-d); box-shadow: 0 10px 24px rgba(255,90,77,.42); }
.btn--out { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn--out:hover { border-color: var(--coral); color: var(--coral); }
.btn--ghost { background: transparent; color: var(--grey); }
.btn--ghost:hover { color: var(--ink); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #2a3050; }
.btn.sm { height: 38px; padding: 0 16px; font-size: 13px; border-radius: 10px; }
.btn.lg { height: 52px; padding: 0 28px; font-size: 15px; border-radius: 14px; }
.btn.block { width: 100%; }

/* ════════════════════════════════════ HEADER ═══ */
.topband { background: var(--ink); color: #c7cdd9; font-size: 12.5px; font-weight: 500; }
.topband .frame { display: flex; align-items: center; gap: 22px; height: 38px; }
.topband a { color: #c7cdd9; transition: color .2s; }
.topband a:hover { color: #fff; }
.topband .tb-end { margin-left: auto; display: flex; gap: 20px; align-items: center; }
.topband .pulse { display:inline-flex; align-items:center; gap:7px; color: #8de9c4; }
.topband .pulse i { width:7px; height:7px; border-radius:50%; background:#18b368; box-shadow:0 0 8px #18b368; }

.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.header .frame { display: flex; align-items: center; gap: 28px; height: 66px; }
.logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
/* ─── animated brand mark ─── */
.logo .mk {
  position: relative; z-index: 0;
  width: 40px; height: 40px;
  border-radius: 13px;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 20px; letter-spacing: -.03em;
  background:
    linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,0) 46%),
    linear-gradient(145deg, #ff7d5c 0%, #ff5a4d 45%, #f0392b 100%);
  box-shadow: 0 6px 16px rgba(255,90,77,.4), inset 0 1px 0 rgba(255,255,255,.4);
  text-shadow: 0 1px 1px rgba(150,20,10,.35);
  overflow: visible;
  animation: mkPulse 2.6s ease-out infinite;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
/* rotating colour halo behind the mark */
.logo .mk::before {
  content: ""; position: absolute; inset: -3px;
  border-radius: 16px; z-index: -1;
  background: conic-gradient(from 0deg, #ff5a4d, #ffb15a, #ff3d8a, #8b5cff, #ff5a4d);
  filter: blur(7px); opacity: .6;
  animation: mkSpin 4.5s linear infinite;
}
/* orbiting signal spark */
.logo .mk::after {
  content: ""; position: absolute; inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle 2.6px at 50% 0, #fff, rgba(255,255,255,.7) 38%, transparent 72%);
  animation: mkOrbit 3.4s linear infinite;
}
@keyframes mkSpin  { to { transform: rotate(360deg); } }
@keyframes mkOrbit { to { transform: rotate(360deg); } }
@keyframes mkPulse {
  0%   { box-shadow: 0 6px 16px rgba(255,90,77,.4), inset 0 1px 0 rgba(255,255,255,.4), 0 0 0 0 rgba(255,90,77,.45); }
  70%  { box-shadow: 0 6px 16px rgba(255,90,77,.4), inset 0 1px 0 rgba(255,255,255,.4), 0 0 0 12px rgba(255,90,77,0); }
  100% { box-shadow: 0 6px 16px rgba(255,90,77,.4), inset 0 1px 0 rgba(255,255,255,.4), 0 0 0 0 rgba(255,90,77,0); }
}
.logo:hover .mk { transform: rotate(-7deg) scale(1.07); }
.logo:hover .mk::before { animation-duration: 1.5s; opacity: .9; }
@media (prefers-reduced-motion: reduce) {
  .logo .mk, .logo .mk::before, .logo .mk::after { animation: none !important; }
}
.logo .mk-sub { display:block; font-size:9px; font-weight:600; letter-spacing:.18em; color:var(--grey-2); text-transform:uppercase; margin-top:2px; }
.mainnav { display: flex; gap: 4px; }
.mainnav a { padding: 9px 14px; border-radius: 9px; font-size: 14px; font-weight: 600; color: var(--grey); transition: color .2s, background .2s; }
.mainnav a:hover { color: var(--ink); background: var(--line-2); }
.mainnav a.active { color: var(--coral); background: var(--coral-l); }
.head-end { margin-left: auto; display: flex; gap: 10px; align-items: center; }

/* ════════════════════════════════════ PAGE HERO (inner) ═══ */
.phero { background: linear-gradient(180deg, var(--white), var(--bg)); border-bottom: 1px solid var(--line); padding: 28px 0 44px; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--grey-2); font-weight: 600; margin-bottom: 22px; }
.crumbs a:hover { color: var(--coral); }
.crumbs .sep { opacity: .5; }
.phero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.phero h1 { font-size: clamp(30px, 4.2vw, 48px); font-weight: 800; letter-spacing: -.03em; line-height: 1.07; margin-bottom: 16px; }
.phero h1 .hl { background: linear-gradient(120deg, var(--coral), #ff9a4d); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.phero-lead { font-size: 18px; color: var(--grey); line-height: 1.55; max-width: 52ch; margin-bottom: 24px; }
.phero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.phero-stats { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 26px; }
.phero-stats .s b { display:block; font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.phero-stats .s span { font-size: 12.5px; color: var(--grey-2); font-weight: 600; }

/* hero illustration box */
/* ─── page-hero illustration: LIVE datacenter dashboard ─── */
.phero-art { background: linear-gradient(160deg, #ffffff, #eef1f9); border: 1px solid var(--line); border-radius: 22px; min-height: 290px; position: relative; overflow: hidden; box-shadow: var(--shadow); display:grid; place-items:center; }
.phero-art.livepanel { display:block; padding: 22px 24px; }
.livepanel .lp-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.livepanel .lp-live { display:inline-flex; align-items:center; gap:9px; font-size:12px; font-weight:700; color:var(--grey); letter-spacing:.01em; }
.livepanel .lp-live i { width:8px; height:8px; border-radius:50%; background:var(--green); animation: lpPulse 1.8s ease-out infinite; }
@keyframes lpPulse { 0%{ box-shadow:0 0 0 0 rgba(24,179,104,.5);} 70%{ box-shadow:0 0 0 8px rgba(24,179,104,0);} 100%{ box-shadow:0 0 0 0 rgba(24,179,104,0);} }
.livepanel .lp-big { display:flex; align-items:baseline; gap:8px; }
.livepanel .lp-big .lp-num { font-size:46px; font-weight:800; letter-spacing:-.03em; color:var(--ink); font-variant-numeric:tabular-nums; line-height:1; }
.livepanel .lp-big b { font-size:18px; font-weight:800; color:var(--coral); }
.livepanel .lp-cap { font-size:13px; color:var(--grey); margin-top:5px; font-weight:600; }
.livepanel .lp-spark { width:100%; height:54px; margin:14px 0 16px; display:block; }
.livepanel .lp-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.livepanel .lp-cell { background:var(--bg); border:1px solid var(--line); border-radius:13px; padding:13px 15px; }
.livepanel .lp-cell b { display:block; font-size:23px; font-weight:800; letter-spacing:-.02em; color:var(--ink); font-variant-numeric:tabular-nums; line-height:1; margin-bottom:4px; }
.livepanel .lp-cell b small { font-size:14px; color:var(--grey-2); font-weight:700; }
.livepanel .lp-cell span { font-size:11.5px; color:var(--grey); font-weight:600; }
@media (prefers-reduced-motion: reduce) { .livepanel .lp-live i { animation: none !important; } }

/* ════════════════════════════════════ SECTIONS ═══ */
.sec { padding: 56px 0; }
.sec.tight { padding: 36px 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.sec-head .lhs h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; }
.sec-head .lhs p { font-size: 15px; color: var(--grey); margin-top: 6px; max-width: 60ch; }
.kick { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
.sec--alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* billing toggle */
.bill { display: inline-flex; padding: 4px; gap: 2px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.bill button { height: 36px; padding: 0 16px; border: 0; border-radius: 9px; background: transparent; font-family: var(--font); font-weight: 700; font-size: 13px; color: var(--grey); cursor: pointer; display: inline-flex; align-items: center; gap: 7px; transition: all .18s; }
.bill button em { font-style: normal; font-size: 11px; font-weight: 800; color: var(--green); }
.bill button.on { background: var(--ink); color: #fff; }
.bill button.on em { color: #7df0b6; }

/* ─── TARIFF CARDS ─── */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cards.c3 { grid-template-columns: repeat(3, 1fr); }
.cards.c5 { grid-template-columns: repeat(auto-fit, minmax(208px, 1fr)); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px 22px; box-shadow: var(--shadow); transition: transform .22s, box-shadow .22s, border-color .22s; position: relative; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-h); border-color: rgba(255,90,77,.4); }
.card.hot { border-color: var(--coral); box-shadow: 0 0 0 1px var(--coral), var(--shadow-h); }
.card .hot-tag { position: absolute; top: -11px; left: 22px; background: var(--coral); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .04em; padding: 5px 12px; border-radius: 999px; box-shadow: 0 6px 14px rgba(255,90,77,.4); }
.card-name { font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--coral); margin-bottom: 6px; }
.card-cpu { font-size: 21px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; }
.card-specs { list-style: none; display: grid; gap: 11px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px dashed var(--line); }
.card-specs li { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--ink); font-weight: 600; }
.card-specs li svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--coral); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card-specs li b { font-weight: 800; white-space: nowrap; }
.card-specs li .freq { color: var(--grey-2); font-weight: 600; font-size: 12px; white-space: nowrap; }
.card-price { margin-bottom: 16px; }
.card-price .old { font-size: 13px; color: var(--grey-2); text-decoration: line-through; font-weight: 600; min-height: 18px; display:block; }
.card-price .new { display: flex; align-items: baseline; gap: 4px; }
.card-price .new b { font-size: 28px; font-weight: 800; letter-spacing: -.02em; }
.card-price .new span { font-size: 13px; color: var(--grey-2); font-weight: 600; }
.card .btn { margin-top: auto; }
.card-os { display: flex; gap: 6px; margin-top: 14px; }
.card-os span { width: 28px; height: 28px; border-radius: 8px; background: var(--line-2); display: grid; place-items: center; color: var(--grey-2); transition: all .18s; }
.card-os span:hover { background: var(--coral-l); color: var(--coral); }
.card-os svg { width: 15px; height: 15px; fill: currentColor; }

/* ─── FEATURE CARDS ─── */
.feat { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feat.f3 { grid-template-columns: repeat(3, 1fr); }
.fcard { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); }
.fcard .fi { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; }
.fcard .fi svg { width: 24px; height: 24px; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.fcard h4 { font-size: 17px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 7px; }
.fcard p { font-size: 14px; color: var(--grey); line-height: 1.55; }
.fi.c1 { background: var(--coral-l); } .fi.c1 svg { stroke: var(--coral); }
.fi.c2 { background: #e8eaff; } .fi.c2 svg { stroke: var(--indigo); }
.fi.c3 { background: #dcfaf4; } .fi.c3 svg { stroke: var(--teal); }
.fi.c4 { background: #fff3da; } .fi.c4 svg { stroke: var(--amber); }

/* ─── PROSE / CONTENT ─── */
.prose { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 36px 40px; box-shadow: var(--shadow); }
.prose h3 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin: 28px 0 12px; }
.prose h3:first-child { margin-top: 0; }
.prose p { font-size: 15.5px; color: var(--grey); line-height: 1.7; margin-bottom: 14px; }
.prose p b, .prose li b { color: var(--ink); font-weight: 700; }
.prose ul { list-style: none; display: grid; gap: 10px; margin: 14px 0 20px; }
.prose ul li { position: relative; padding-left: 26px; font-size: 15px; color: var(--grey); line-height: 1.6; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 9px; height: 9px; border-radius: 3px; background: var(--coral); }
.prose code { background: var(--coral-l); color: var(--coral-d); padding: 1px 7px; border-radius: 6px; font-family: ui-monospace, Menlo, monospace; font-size: 13px; }
.prose a.inl { color: var(--coral); font-weight: 700; border-bottom: 1px solid currentColor; }

/* two-column content layout */
.split { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.aside-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 26px; box-shadow: var(--shadow); position: sticky; top: 86px; }
.aside-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 14px; }
.aside-card .row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.aside-card .row:last-of-type { border-bottom: 0; }
.aside-card .row span { color: var(--grey); }
.aside-card .row b { font-weight: 800; }
.aside-card .btn { margin-top: 16px; }

/* spec comparison table */
.spectable-wrap { background: var(--white); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.spectable { width: 100%; border-collapse: collapse; }
.spectable thead th { text-align: left; padding: 18px 22px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); background: var(--line-2); border-bottom: 1px solid var(--line); }
.spectable thead th:last-child, .spectable td:last-child { text-align: right; }
.spectable tbody td { padding: 18px 22px; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--grey); }
.spectable tbody tr:last-child td { border-bottom: 0; }
.spectable tbody tr:hover { background: #fcfcfe; }
.spectable td.name { font-weight: 800; color: var(--ink); }
.spectable td.name small { display:block; font-weight: 600; color: var(--coral); font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; margin-top: 2px; }
.spectable td.price { font-weight: 800; color: var(--ink); font-size: 17px; white-space: nowrap; }

/* info banner */
.note { display: flex; gap: 14px; background: var(--coral-l); border: 1px solid rgba(255,90,77,.25); border-radius: 16px; padding: 20px 22px; }
.note svg { width: 22px; height: 22px; flex-shrink: 0; stroke: var(--coral); fill: none; stroke-width: 2; margin-top: 2px; }
.note p { font-size: 14.5px; color: #7a2b25; line-height: 1.6; }
.note p b { color: var(--coral-d); }

/* configurator (home) */
.cfg { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 26px; box-shadow: var(--shadow); }
.cfg-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.cfg-head h3 { font-size: 17px; font-weight: 800; }
.cfg-head .tag { font-size: 11px; font-weight: 700; color: var(--coral); background: var(--coral-l); padding: 4px 10px; border-radius: 999px; }
.cfg-row { margin-bottom: 20px; }
.cfg-row .lab { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; }
.cfg-row .lab span { font-size: 13px; font-weight: 600; color: var(--grey); }
.cfg-row .lab b { font-size: 15px; font-weight: 800; }
.cfg-row input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px; background: var(--line); outline: none; cursor: pointer; }
.cfg-row input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--white); border: 4px solid var(--coral); box-shadow: 0 2px 8px rgba(255,90,77,.4); cursor: pointer; transition: transform .15s; }
.cfg-row input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.12); }
.cfg-row input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--white); border: 4px solid var(--coral); box-shadow: 0 2px 8px rgba(255,90,77,.4); cursor: pointer; }
.cfg-os { display: flex; gap: 8px; margin-bottom: 22px; }
.cfg-os button { flex: 1; height: 40px; border-radius: 11px; border: 1.5px solid var(--line); background: var(--white); font-family: var(--font); font-weight: 700; font-size: 13px; color: var(--grey); cursor: pointer; transition: all .18s; }
.cfg-os button.on { border-color: var(--coral); color: var(--coral); background: var(--coral-l); }
.cfg-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); }
.cfg-price b { font-size: 32px; font-weight: 800; letter-spacing: -.03em; }
.cfg-price span { font-size: 13px; color: var(--grey-2); font-weight: 600; }

/* FAQ accordion */
.faq { display: grid; gap: 12px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); overflow: hidden; transition: border-color .2s; }
.faq details[open] { border-color: rgba(255,90,77,.4); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 24px; font-size: 16px; font-weight: 700; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; width: 28px; height: 28px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%; background: var(--coral-l); color: var(--coral); font-size: 18px; font-weight: 700; transition: transform .2s; }
.faq details[open] summary::after { content: "−"; }
.faq .faq-body { padding: 0 24px 22px; color: var(--grey); font-size: 14.5px; line-height: 1.7; }
.faq .faq-body code { background: var(--coral-l); color: var(--coral-d); padding: 1px 6px; border-radius: 5px; font-family: ui-monospace, Menlo, monospace; font-size: 13px; }

/* review cards */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px; }
.review .stars { color: var(--amber); font-size: 15px; letter-spacing: 1px; }
.review p { font-size: 14.5px; color: var(--grey); line-height: 1.65; flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.review .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--coral), #ff8a5a); color: #fff; font-weight: 800; display: grid; place-items: center; flex-shrink: 0; }
.review .who b { font-size: 14px; font-weight: 800; }
.review .who span { font-size: 12.5px; color: var(--grey-2); display: block; }

/* ─── CTA BANNER ─── */
.cta-banner { background: linear-gradient(120deg, var(--ink) 0%, #2a3050 100%); border-radius: 24px; padding: 48px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; position: relative; overflow: hidden; }
.cta-banner::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(255,90,77,.35), transparent 65%); }
.cta-banner h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; position: relative; }
.cta-banner p { color: #aab2c8; font-size: 16px; margin-top: 10px; max-width: 44ch; position: relative; }
.cta-banner .acts { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }

/* ─── FOOTER ─── */
footer.ft { padding: 56px 0 32px; }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.ft-about p { color: var(--grey); font-size: 13.5px; line-height: 1.6; margin-top: 14px; max-width: 32ch; }
.ft-col h5 { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-2); margin-bottom: 16px; }
.ft-col a { display: block; color: var(--grey); font-size: 13.5px; margin-bottom: 10px; transition: color .2s; }
.ft-col a:hover { color: var(--coral); }
.ft-base { margin-top: 22px; font-size: 12.5px; color: var(--grey-2); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ─── cookie consent banner ─── */
.ckbanner { position: fixed; left:16px; right:16px; bottom:16px; z-index:120; max-width:880px; margin:0 auto; background:var(--white); border:1px solid var(--line); border-radius:18px; box-shadow:0 20px 60px rgba(20,25,43,.20); padding:24px 28px; display:none; }
.ckbanner.show { display:block; animation: ckUp .32s ease both; }
@keyframes ckUp { from{ opacity:0; transform:translateY(14px);} to{ opacity:1; transform:none;} }
.ckbanner h4 { font-size:19px; font-weight:800; margin-bottom:6px; padding-right:34px; }
.ckbanner p { font-size:13.5px; color:var(--grey); line-height:1.55; }
.ckbanner p a { color:var(--coral); font-weight:700; }
.ckbanner .ck-acts { display:flex; gap:10px; margin-top:18px; flex-wrap:wrap; }
.ckbanner .ck-close { position:absolute; top:16px; right:16px; width:34px; height:34px; border:0; border-radius:9px; background:var(--bg); color:var(--ink); font-size:22px; line-height:1; cursor:pointer; transition:background .2s, transform .2s; }
.ckbanner .ck-close:hover { background:var(--line); transform:rotate(90deg); }
@media(max-width:560px){ .ckbanner .ck-acts{ flex-direction:column; } .ckbanner .ck-acts .btn{ width:100%; } }

/* footer legal links (injected) */
.ft-legal a { color: var(--coral); font-weight:600; transition:color .2s; }
.ft-legal a:hover { color: var(--coral-d); text-decoration:underline; }

/* ─── floating TG ─── */
.tgfab { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #2aa3ff, #38bdf8); box-shadow: 0 12px 30px rgba(42,163,255,.45); display: grid; place-items: center; transition: transform .2s; }
.tgfab:hover { transform: translateY(-3px) scale(1.05); }
.tgfab svg { width: 28px; height: 28px; fill: #fff; }

/* ════════════════════════════════════ RESPONSIVE ═══ */
@media (max-width: 1080px) {
  .cards, .cards.c3 { grid-template-columns: repeat(2, 1fr); }
  .feat, .feat.f3 { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .phero-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  /* tariff cards → swipeable carousel on mobile */
  .cards, .cards.c3, .cards.c5 {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 calc(-1 * var(--gutter));
    padding: 16px var(--gutter) 18px;
    scroll-padding-left: var(--gutter);
  }
  .cards::-webkit-scrollbar, .cards.c3::-webkit-scrollbar, .cards.c5::-webkit-scrollbar { display: none; }
  .cards > .card { scroll-snap-align: start; flex: 0 0 84%; }
  .feat, .feat.f3 { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 32px; }
  .mainnav, .topband { display: none; }
  .ft-grid { grid-template-columns: 1fr; }
  .prose { padding: 26px 22px; }
  .spectable thead { display: none; }
  .spectable td { display: block; border: 0; padding: 4px 18px; }
  .spectable tbody tr { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .spectable td.price { padding-top: 10px; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
