/* ============================================================
   zemITis — site design language (v2)
   A bold, modern, animated layer on top of the DS tokens.
   Fully theme-aware: both dark and light are first-class.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: clip; }
/* overflow-x:clip on html can move scrollbar to body in some browsers, so mirror the padding */
body { scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* long Hungarian compounds (e.g. "kiberbiztonsági") break instead of
     overflowing their container on narrow screens */
  overflow-wrap: break-word;
  transition: background .4s ease, color .4s ease;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #fff; }

/* ---- Theme-aware custom palette ---------------------------- */
:root {
  --viv-cyan: #28c2ee;
  --grad: linear-gradient(118deg, #45a6f5 0%, #015dcd 58%, #0a3ea0 100%);
  --grad-cta: linear-gradient(118deg, #3f9cf5 0%, #015dcd 70%);
  --maxw: 1240px;
  --section-y: clamp(1.5rem, 2.75vw, 2.5rem);   /* halved section rhythm — matches the tight .certs/stats spacing */
}
[data-theme="dark"] {
  --grad-text: linear-gradient(108deg, #8ecbff, #3f93f4 52%, #1a72e6);
  --glass: linear-gradient(180deg, rgba(31,49,72,.92), rgba(18,30,45,.96));
  --glass-bd: rgba(255,255,255,.16);
  --grid-line: rgba(125,165,215,.10);
  --aurora-op: .55;
  --chip-bg: rgba(255,255,255,.05);
  --chip-bd: rgba(255,255,255,.12);
  --field-bg: rgba(9,17,28,.55);
  --hair: rgba(255,255,255,.09);
  --glow: 0 0 0 1px rgba(74,143,236,.28), 0 24px 70px rgba(1,93,205,.34);
  --card-bg: var(--surface-card);
}
[data-theme="light"] {
  /* Softened light surfaces — page level is never pure #fff (glare);
     white is reserved for cards so they lift off the page. */
  --surface-page: #f4f7fb;
  --surface-subtle: #ebf0f8;
  --surface-sunken: #e3eaf4;
  --grad-text: linear-gradient(108deg, #0c52b4, #015dcd 52%, #1466d6);
  --glass: linear-gradient(180deg, #ffffff, #eef4fc);
  --glass-bd: rgba(20,55,105,.14);
  --grid-line: rgba(20,60,110,.08);
  --aurora-op: .26;
  --chip-bg: #eef4fb;
  --chip-bd: rgba(20,55,105,.12);
  --field-bg: #ffffff;
  --hair: rgba(15,40,80,.10);
  --glow: 0 16px 50px rgba(1,93,205,.16), 0 2px 10px rgba(20,40,70,.06);
  --card-bg: var(--surface-card);
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 1; }
.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--font-mono); font-size: var(--text-xs);
  letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--accent-soft-text);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--viv-cyan); box-shadow: 0 0 10px var(--viv-cyan); }
.vchip { font-family: var(--font-mono); font-size: var(--text-2xs); letter-spacing: .06em; color: var(--text-secondary); background: var(--chip-bg); border: 1px solid var(--chip-bd); border-radius: var(--radius-full); padding: 5px 10px; white-space: nowrap; }

/* ---- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; white-space: nowrap;
  font-family: var(--font-sans); font-weight: 600; font-size: var(--text-sm); line-height: 1;
  border: 1px solid transparent; border-radius: var(--radius-md); padding: 0 1.15rem; height: 44px;
  cursor: pointer; text-decoration: none; transition: transform .1s ease, box-shadow .22s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn svg { flex: none; }
.btn--sm { height: 38px; font-size: var(--text-sm); padding: 0 .95rem; border-radius: var(--radius-sm); }
.btn--lg { height: 54px; font-size: var(--text-base); padding: 0 1.7rem; }
.btn--block { width: 100%; }
.btn--primary { color: #fff; background: var(--grad); box-shadow: 0 10px 28px rgba(1,93,205,.40); }
.btn--primary:hover { box-shadow: 0 16px 42px rgba(1,93,205,.58); transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { color: var(--text-primary); background: var(--chip-bg); border-color: var(--chip-bd); }
.btn--ghost:hover { background: var(--surface-sunken); border-color: var(--border-strong); }
.btn--light { background: var(--surface-card); color: var(--text-primary); border-color: var(--border-default); box-shadow: var(--shadow-sm); }
.btn--light:hover { border-color: var(--accent); color: var(--accent); }

/* ---- Header ------------------------------------------------ */
.site-header { position: sticky; top: 0; z-index: 70; border-bottom: 1px solid transparent; transition: background .28s ease, border-color .28s ease, backdrop-filter .28s ease; }
.site-header.is-stuck { background: color-mix(in srgb, var(--surface-page) 78%, transparent); backdrop-filter: saturate(170%) blur(16px); border-bottom-color: var(--hair); }
.site-header__inner { max-width: var(--maxw); margin-inline: auto; padding: 0 var(--gutter); height: 76px; display: flex; align-items: center; gap: var(--space-6); }
.site-header__logo img { height: 26px; width: auto; display: block; }
/* Adaptive nav — flips to a dark theme whenever a dark section (data-theme="dark")
   sits behind it: dark glass blur, white text/icons, and the on-dark (white) wordmark.
   `is-over-dark` is toggled on scroll by zemFx().
   `img.` prefix keeps each rule above the base `.site-header__logo img` (0,1,1). */

.site-header__logo img.site-header__logo-img--dark { display: none; }
.site-header.is-over-dark img.site-header__logo-img--light { display: none; }
.site-header.is-over-dark img.site-header__logo-img--dark { display: block; }
.site-header.is-over-dark.is-stuck {
  background: color-mix(in srgb, #0b1d34 72%, transparent);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: rgba(255,255,255,.10);
}
.site-header.is-over-dark .site-nav__link { color: rgba(255,255,255,.80); }
.site-header.is-over-dark .site-nav__link:hover,
.site-header.is-over-dark .site-nav__link.is-active { color: #fff; }
.site-header.is-over-dark .mobile-toggle { color: #fff; }
/* the open mobile menu also flips dark when the header is over a dark section */
.site-header.is-over-dark .mobile-menu {
  background: color-mix(in srgb, #0b1d34 90%, transparent);
  border-top-color: rgba(255,255,255,.10);
}
.site-header.is-over-dark .mobile-menu > a:not(.btn),
.site-header.is-over-dark .mobile-svc__btn,
.site-header.is-over-dark .mobile-svc__items a { color: rgba(255,255,255,.82); }
.site-header.is-over-dark .mobile-menu > a:not(.btn):hover,
.site-header.is-over-dark .mobile-svc__btn:hover, .site-header.is-over-dark .mobile-svc__btn.is-open,
.site-header.is-over-dark .mobile-svc__items a:hover { color: #fff; background: rgba(255,255,255,.08); }
.site-header.is-over-dark .mobile-svc__sep { background: rgba(255,255,255,.12); }
.site-nav { display: flex; align-items: center; gap: 2px; margin-inline: auto; }
.site-nav__link { font-size: var(--text-sm); font-weight: 500; color: var(--text-secondary); padding: 9px 13px; border-radius: var(--radius-sm); position: relative; transition: color .15s ease; }
.site-nav__link:hover { color: var(--text-primary); }
.site-nav__link.is-active { color: var(--accent); }
.site-nav__link.is-active::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px; height: 2px; border-radius: 2px; background: var(--grad); }
.site-header__actions { display: flex; align-items: center; gap: var(--space-3); }

/* ---- Nav dropdown ------------------------------------------ */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger { display: inline-flex !important; align-items: center; gap: 6px; cursor: default; }
.nav-dropdown__chevron { transition: transform .2s cubic-bezier(.16,1,.3,1); display: block; }
.nav-dropdown__chevron.is-open { transform: rotate(180deg); }

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  background: var(--surface-page);
  border: 1px solid var(--hair);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(1,30,80,.12), 0 2px 8px rgba(0,0,0,.05);
  padding: 6px;
  z-index: 80;
  animation: dropdownIn .2s cubic-bezier(.16,1,.3,1);
}
@keyframes dropdownIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px) scale(.96); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0)    scale(1);   }
}

.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 13px;
  border-radius: var(--radius-md);
  transition: background .15s ease;
  color: inherit;
}
.nav-dropdown__item:hover { background: var(--surface-sunken); }
.nav-dropdown__item.is-active { background: var(--accent-soft); }
.nav-dropdown__item-icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent-soft-text);
  display: grid; place-items: center;
  transition: background .15s ease, color .15s ease;
}
.nav-dropdown__item:hover .nav-dropdown__item-icon { background: var(--grad); color: #fff; }
.nav-dropdown__item.is-active .nav-dropdown__item-icon { background: var(--grad); color: #fff; }
.nav-dropdown__item-label { font-weight: 600; font-size: var(--text-sm); color: var(--text-primary); flex: 1; }
.nav-dropdown__item-arrow { color: var(--text-faint); flex: none; margin-left: auto; transition: transform .15s ease; }
.nav-dropdown__item:hover .nav-dropdown__item-arrow { transform: translateX(2px); color: var(--accent); }

.nav-dropdown__section-label {
  font-size: var(--text-2xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-muted);
  padding: 8px 13px 4px;
}
.nav-dropdown__divider { height: 1px; background: var(--hair); margin: 4px 6px 2px; }
.nav-dropdown__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; padding: 2px 2px 4px;
}
.nav-dropdown__grid-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 11px; border-radius: var(--radius-sm);
  font-size: var(--text-xs); font-weight: 500; color: var(--text-secondary);
  transition: background .15s ease, color .15s ease;
}
.nav-dropdown__grid-item svg { flex: none; color: var(--text-faint); transition: color .15s ease; }
.nav-dropdown__grid-item:hover { background: var(--surface-sunken); color: var(--text-primary); }
.nav-dropdown__grid-item:hover svg { color: var(--accent); }

/* ---- Mobile toggle & menu ---------------------------------- */
.mobile-toggle { display: none; background: none; border: none; color: var(--text-primary); cursor: pointer; padding: 6px; border-radius: var(--radius-sm); transition: background .15s ease; -webkit-tap-highlight-color: transparent; }
.mobile-toggle:active { background: color-mix(in srgb, currentColor 12%, transparent); }
/* the icon node is swapped (menu⇄x) by React on each toggle → re-runs the pop */
.mobile-toggle svg { animation: tglPop .28s cubic-bezier(.16,1,.3,1); }
.mobile-menu { display: none; }
@keyframes tglPop   { from { opacity: 0; transform: rotate(-90deg) scale(.7); } to { opacity: 1; transform: rotate(0) scale(1); } }
@keyframes mobileMenuIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes mobileItemIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile services accordion */
.mobile-svc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 11px 12px; border-radius: var(--radius-sm);
  background: none; border: none; font: inherit; font-size: var(--text-sm); font-weight: 500;
  color: var(--text-secondary); cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.mobile-svc__btn:hover, .mobile-svc__btn.is-open { color: var(--text-primary); }
.mobile-svc__items {
  display: flex; flex-direction: column; gap: 2px;
  padding: 4px 0 4px 12px;
  animation: discloseIn .18s ease;
}
.mobile-svc__items a {
  display: flex !important; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: var(--text-sm); font-weight: 500; color: var(--text-secondary);
}
.mobile-svc__items a:hover { background: var(--surface-sunken); color: var(--text-primary); }
.mobile-svc__items a.is-active { color: var(--accent); }
.mobile-svc__ico {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--accent-soft); color: var(--accent-soft-text);
  display: grid; place-items: center; flex: none;
}
.mobile-svc__landing { font-weight: 600 !important; }
.mobile-svc__sep { height: 1px; background: var(--hair); margin: 4px 12px; }
.mobile-svc__other { font-size: var(--text-xs) !important; }

/* ---- :target highlight on service cards -------------------- */
.svc:target,
.svc.is-targeted {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent), var(--shadow-lg) !important;
  animation: svcTargetPulse .7s ease;
}
@keyframes svcTargetPulse {
  0%   { box-shadow: 0 0 0 0   color-mix(in srgb, var(--accent) 40%, transparent); }
  60%  { box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent) 0%,  transparent); }
  100% { box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent), var(--shadow-lg); }
}

/* ---- Section scaffolding ----------------------------------- */
/* Sections host decorative .blob glows positioned with negative offsets that
   bleed past the viewport. Clip them so they can't create horizontal scroll.
   Progressive: `clip` keeps the vertical axis visible (card shadows show); the
   `hidden` fallback only engages on engines without clip support (iOS Safari
   < 16), where html's own overflow-x:clip silently degrades to `visible`. */
.section { padding-block: var(--section-y); position: relative; overflow-x: hidden; overflow-x: clip; }
.section--tight { padding-block: clamp(1.75rem, 3.5vw, 3rem); }
.section--alt { background: var(--surface-subtle); }
/* Dark band — pair with data-theme="dark" on the section so every token
   (cards, chips, text) flips for the subtree. Blue blob glow baked in. */
.section--dark {
  background:
    radial-gradient(ellipse 52% 78% at 82% 6%, rgba(30,114,227,.20), transparent 62%),
    radial-gradient(ellipse 44% 66% at 6% 96%, rgba(40,194,238,.13), transparent 66%),
    linear-gradient(180deg, var(--navy-900), var(--navy-850));
  border-block: 1px solid rgba(255,255,255,.06);
}
.section--dark .blob, .finalcta--dark .blob { mix-blend-mode: screen; opacity: .5; filter: blur(78px); }
.section__head { max-width: 780px; margin: 0 auto var(--space-12); text-align: center; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__head .eyebrow { margin-bottom: var(--space-4); }
.section__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 3.8vw, 3rem); letter-spacing: -.03em; line-height: 1.06; margin: 0; }
.section__lead { margin: var(--space-5) auto 0; font-size: var(--text-lg); line-height: var(--leading-normal); color: var(--text-secondary); max-width: 62ch; }
.section__head--left .section__lead { margin-inline: 0; }

/* ---- Hero -------------------------------------------------- */
/* Negative margin pulls the hero up behind the sticky navbar so the aurora
   background is visible through the transparent header at page-top. */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  /* pull up 2px past the header so the dark hero fully covers the top edge —
     avoids a sub-pixel light sliver bleeding through above it */
  margin-top: -78px;
  padding: calc(78px + clamp(1.25rem, 3.5vw, 2.75rem)) 0 clamp(3.5rem, 7vw, 6rem);
}

/* Elegant "scroll" cue, centered at the hero's bottom */
.hero__scroll {
  position: absolute; left: 50%; bottom: clamp(1rem, 2.5vh, 2rem); transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-secondary); text-decoration: none; z-index: 2;
  opacity: .8; transition: opacity .25s ease, color .25s ease;
}
.hero__scroll:hover { opacity: 1; color: var(--text-primary); }
@media (min-width: 1001px) { .hero__scroll { display: flex; } }
.hero__scroll-txt { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: .14em; text-transform: uppercase; }
.hero__scroll-mouse {
  width: 24px; height: 38px; border: 1.5px solid var(--chip-bd); border-radius: var(--radius-full);
  display: flex; justify-content: center; padding-top: 7px;
}
.hero__scroll-wheel {
  width: 3px; height: 7px; border-radius: var(--radius-full); background: var(--viv-cyan);
  animation: heroWheel 1.8s ease-in-out infinite;
}
@keyframes heroWheel { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 70% { transform: translateY(11px); opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero__scroll-wheel { animation: none; } }
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.aurora { position: absolute; border-radius: 50%; filter: blur(75px); opacity: var(--aurora-op); mix-blend-mode: screen; }
[data-theme="light"] .aurora { mix-blend-mode: multiply; filter: blur(85px); }
.aurora--1 { width: 640px; height: 640px; top: -220px; right: -120px; background: radial-gradient(circle, #1c72e3, transparent 65%); animation: auroraA 19s ease-in-out infinite; }
.aurora--2 { width: 520px; height: 520px; top: 80px; right: 260px; background: radial-gradient(circle, #28c2ee, transparent 65%); opacity: calc(var(--aurora-op) * .7); animation: auroraB 24s ease-in-out infinite; }
.aurora--3 { width: 500px; height: 500px; top: -120px; left: -180px; background: radial-gradient(circle, #0a3ea0, transparent 70%); animation: auroraA 28s ease-in-out infinite reverse; }
@keyframes auroraA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-44px,42px) scale(1.14); } }
@keyframes auroraB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(54px,32px) scale(.88); } }

.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
.hero--split .hero__inner { align-items: start; }
.hero--split .hero__copy { padding-top: clamp(.25rem, 2vw, 2rem); }
.hero__copy { max-width: 620px; }
/* hero is fixed dark — navy gradient backdrop behind the particle net */
.hero[data-theme="dark"] { background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-850) 55%, var(--navy-900) 100%); }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: .04em; color: var(--text-secondary); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius-full); padding: 7px 14px; backdrop-filter: blur(3px) saturate(130%); -webkit-backdrop-filter: blur(3px) saturate(130%); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08); }
.hero__badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 var(--success); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--success) 60%, transparent); } 70%,100% { box-shadow: 0 0 0 9px transparent; } }
.hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5.2vw, 4.5rem); line-height: 1.02; letter-spacing: -.035em; margin: var(--space-3) 0 0; }
.hero__sub { margin-top: var(--space-6); font-size: var(--text-base); line-height: var(--leading-normal); color: var(--text-secondary); max-width: 50ch; }
.hero__cta { margin-top: var(--space-8); display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero__pills { margin-top: var(--space-6); display: flex; flex-wrap: wrap; gap: var(--space-2); }
.hero__pill { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; font-size: var(--text-sm); font-weight: 500; color: var(--text-primary); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius-full); padding: 7px 13px; backdrop-filter: blur(3px) saturate(130%); -webkit-backdrop-filter: blur(3px) saturate(130%); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08); }
.hero__pill svg { color: var(--viv-cyan); }

.hero__visual { position: relative; }

@keyframes heroIn { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .aurora { animation: none !important; }
}

/* ---- Estimator card ---------------------------------------- */
.est { position: relative; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: var(--radius-xl); padding: clamp(1.1rem, 1.8vw, 1.5rem); box-shadow: var(--shadow-lg); backdrop-filter: blur(10px); }
.est__glow { position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(120deg, rgba(122,185,255,.7), transparent 38%, transparent 62%, rgba(40,194,238,.5)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.est__head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); flex-wrap: wrap; }
.est__chip { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; font-size: var(--text-2xs); font-weight: 600; color: var(--text-secondary); background: var(--chip-bg); border: 1px solid var(--chip-bd); border-radius: var(--radius-full); padding: 5px 10px; }
.est__chip svg { color: var(--accent); }
.est__badge { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; font-family: var(--font-mono); font-size: var(--text-2xs); text-transform: uppercase; letter-spacing: .08em; color: var(--viv-cyan); }
.est__title { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); letter-spacing: -.01em; margin: var(--space-2) 0 0; }
.est__sub { font-size: var(--text-sm); color: var(--text-muted); margin: 6px 0 0; }
.est-block { margin-top: var(--space-3); }
.est-block__label { font-size: var(--text-xs); font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: .05em; margin-bottom: var(--space-2); display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-3); }
.est-block__val { font-family: var(--font-mono); font-size: var(--text-sm); font-weight: 600; color: var(--accent); text-transform: none; letter-spacing: 0; white-space: nowrap; }
.est-seg { display: grid; gap: 6px; background: var(--chip-bg); border: 1px solid var(--chip-bd); border-radius: var(--radius-md); padding: 5px; }
.est-seg--2 { grid-template-columns: 1fr 1fr; }
.est-seg button { display: inline-flex; align-items: center; justify-content: center; gap: 7px; border: none; background: transparent; color: var(--text-secondary); font: inherit; font-size: var(--text-sm); font-weight: 600; padding: 11px 8px; border-radius: var(--radius-sm); cursor: pointer; transition: all .16s ease; white-space: nowrap; }
.est-seg button:hover { color: var(--text-primary); }
.est-seg button.is-on { background: var(--grad); color: #fff; box-shadow: 0 5px 16px rgba(1,93,205,.4); }
.est-seg button svg { flex: none; }

.est-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.est-tier { display: flex; flex-direction: column; gap: 3px; align-items: flex-start; text-align: left; border: 1px solid var(--chip-bd); background: var(--chip-bg); border-radius: var(--radius-md); padding: 11px 10px; cursor: pointer; transition: all .16s ease; overflow: hidden; }
.est-tier:hover { border-color: var(--border-strong); }
.est-tier.is-on { border-color: transparent; background: var(--accent-soft); box-shadow: inset 0 0 0 1.5px var(--accent); }
.est-tier__name { font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); white-space: nowrap; }
.est-tier__price { font-size: var(--text-xs); color: var(--text-primary); font-weight: 600; white-space: nowrap; }
.est-tier__note { font-size: var(--text-2xs); color: var(--text-muted); white-space: nowrap; }

.est-switch { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); background: var(--chip-bg); border: 1px solid var(--chip-bd); border-radius: var(--radius-md); padding: 13px 15px; cursor: pointer; transition: border-color .16s ease, background .16s ease; }
.est-switch.is-on { border-color: var(--accent); background: var(--accent-soft); }
.est-switch__txt b { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: var(--text-sm); color: var(--text-primary); }
.est-switch__txt span { font-size: var(--text-xs); color: var(--text-muted); display: block; margin-top: 3px; }
.est-switch__right { display: flex; align-items: center; gap: 12px; flex: none; }
.est-switch__price { font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); color: var(--accent-soft-text); white-space: nowrap; }
.zem-switch-ui { position: relative; width: 44px; height: 25px; flex: none; }
.zem-switch-ui input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.zem-switch-ui__track { position: absolute; inset: 0; background: var(--border-strong); border-radius: 999px; transition: background .18s ease; }
.zem-switch-ui__thumb { position: absolute; top: 3px; left: 3px; width: 19px; height: 19px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,.3); transition: transform .2s cubic-bezier(.5,1.5,.5,1); }
.zem-switch-ui input:checked + .zem-switch-ui__track { background: var(--accent); }
.zem-switch-ui input:checked + .zem-switch-ui__track .zem-switch-ui__thumb { transform: translateX(19px); }

.est-total { margin-top: var(--space-4); padding: var(--space-4) var(--space-5); border-radius: var(--radius-lg); background: linear-gradient(118deg, rgba(69,166,245,.14), rgba(1,93,205,.14)); border: 1px solid rgba(74,143,236,.34); }
.est-total__rows { display: flex; flex-direction: column; gap: 6px; padding-bottom: var(--space-3); border-bottom: 1px solid var(--hair); }
.est-total__row { display: flex; justify-content: space-between; gap: var(--space-3); font-size: var(--text-sm); color: var(--text-secondary); }
.est-total__row span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.est-total__row span:last-child { font-weight: 600; color: var(--text-primary); white-space: nowrap; }
.est-total__row--add span { color: var(--accent-soft-text) !important; }
.est-total__row--add span:first-child { display: inline-flex; align-items: center; gap: 5px; }
.est-total__sum { display: flex; align-items: flex-end; justify-content: space-between; margin-top: var(--space-3); }
.est-total__lab { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .06em; color: var(--accent-soft-text); }
.est-total__main { display: flex; flex-direction: column; gap: 5px; }
.est-total__note { font-size: var(--text-xs); color: var(--text-muted); }
.est-total__val { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3.2vw, 2.2rem); letter-spacing: -.02em; line-height: 1; white-space: nowrap; color: var(--text-primary); }
.est-total__val small { display: block; font-family: var(--font-sans); font-weight: 400; font-size: var(--text-xs); color: var(--text-muted); text-align: right; margin-top: 5px; }

/* disclosure: "mit tartalmaz a havidíj" */
.est-disclose { margin-top: var(--space-4); border-top: 1px solid color-mix(in srgb, var(--accent) 22%, transparent); padding-top: var(--space-3); }
.est-disclose__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; background: none; border: none; padding: 0; cursor: pointer; font: inherit; color: var(--text-secondary); transition: color .15s ease; }
.est-disclose__btn:hover { color: var(--text-primary); }
.est-disclose__lead { display: inline-flex; align-items: center; gap: 8px; font-size: var(--text-sm); font-weight: 600; white-space: nowrap; }
.est-disclose__lead svg { color: var(--accent); flex: none; }
.est-disclose__chev { flex: none; transition: transform .22s ease; }
.est-disclose__btn.is-open .est-disclose__chev { transform: rotate(180deg); }
.est-disclose__list { list-style: none; margin: var(--space-3) 0 2px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 9px var(--space-5); animation: discloseIn .22s ease; }
@keyframes discloseIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
.est-disclose__list li { display: flex; align-items: flex-start; gap: 8px; font-size: var(--text-xs); color: var(--text-secondary); line-height: var(--leading-snug); }
.est-disclose__list svg { color: var(--success); flex: none; margin-top: 1px; }

.est-form { margin-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-3); }
.est-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.field { width: 100%; height: 42px; border-radius: var(--radius-sm); border: 1px solid var(--border-strong); background: var(--field-bg); color: var(--text-primary); padding: 0 14px; font: inherit; font-size: var(--text-sm); transition: border-color .15s ease, box-shadow .15s ease; }
.field::placeholder { color: var(--text-faint); }
.field:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--ring); }
textarea.field { height: auto; min-height: 104px; padding: 12px 14px; resize: vertical; line-height: 1.5; }
.est-consent { display: flex; align-items: flex-start; gap: 10px; font-size: var(--text-xs); color: var(--text-muted); line-height: 1.45; cursor: pointer; }
.est-consent input { margin-top: 1px; accent-color: var(--accent); width: 16px; height: 16px; flex: none; }
.est-consent a { color: var(--accent-soft-text); text-decoration: underline; }
.est-trust { margin-top: var(--space-3); display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; font-size: var(--text-xs); color: var(--text-muted); }
.est-trust span { display: inline-flex; align-items: center; gap: 6px; }
.est-trust svg { color: var(--success); }
.est-done { text-align: center; padding: var(--space-6) var(--space-2) var(--space-4); position: relative; }
.est-done__mark { position: relative; width: 72px; height: 72px; margin: 0 auto var(--space-5); border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; box-shadow: 0 14px 40px rgba(1,93,205,.5); animation: estDonePop .55s cubic-bezier(.2,.9,.3,1.35) both; }
.est-done__mark::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 2px solid var(--accent); opacity: .4; animation: estDoneRing 2s ease-out infinite; }
@keyframes estDonePop { from { transform: scale(.45); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes estDoneRing { 0% { transform: scale(.92); opacity: .45; } 70% { transform: scale(1.28); opacity: 0; } 100% { opacity: 0; } }
.est-done__title { font-family: var(--font-display); font-size: var(--text-2xl); margin: 0; letter-spacing: -.02em; }
.est-done__lead { color: var(--text-secondary); margin: var(--space-2) auto 0; max-width: 40ch; }

.est-recap { margin-top: var(--space-6); text-align: left; border: 1px solid var(--glass-bd); border-radius: var(--radius-lg); background: color-mix(in srgb, var(--chip-bg) 70%, transparent); overflow: hidden; }
.est-recap__head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); padding: var(--space-3) var(--space-4); border-bottom: 1px solid var(--hair); }
.est-recap__eyebrow { font-family: var(--font-mono); font-size: var(--text-2xs); text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); white-space: nowrap; }
.est-recap__svc { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: var(--text-2xs); color: var(--accent-soft-text); background: var(--accent-soft); border-radius: var(--radius-full); padding: 4px 10px; white-space: nowrap; }
.est-recap__svc svg { flex: none; }
.est-recap__list { margin: 0; padding: 2px var(--space-4); }
.est-recap__row { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4); padding: 10px 0; }
.est-recap__row + .est-recap__row { border-top: 1px solid var(--hair); }
.est-recap__row dt { flex: 1 1 auto; min-width: 0; margin: 0; color: var(--text-secondary); font-size: var(--text-sm); }
.est-recap__row dd { flex: 0 0 auto; margin: 0; color: var(--text-primary); font-weight: 600; font-size: var(--text-sm); text-align: right; }
.est-recap__price { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-3) var(--space-4); background: linear-gradient(118deg, rgba(69,166,245,.16), rgba(1,93,205,.16)); border-top: 1px solid rgba(74,143,236,.34); }
.est-recap__price-lab { font-size: var(--text-sm); font-weight: 600; color: var(--accent-soft-text); }
.est-recap__price-val { flex: none; font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: var(--text-primary); white-space: nowrap; letter-spacing: -.01em; text-align: right; }

.est-done__again { margin-top: var(--space-5); }
.est-done__call { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--space-3); font-size: var(--text-xs); color: var(--text-muted); text-decoration: none; transition: color .15s ease; }
.est-done__call:hover { color: var(--accent-soft-text); }
.est-done__call svg { flex: none; }
@media (prefers-reduced-motion: reduce) { .est-done__mark, .est-done__mark::after { animation: none; } }
/* Keskeny képernyőn az ár-címke és a (nowrap) ár-érték egymás alá kerül, hogy ne vágódjon le. */
@media (max-width: 460px) {
  .est-recap__price { flex-direction: column; align-items: flex-start; gap: 3px; }
  .est-recap__price-val { text-align: left; }
}

/* ---- Stat band (counters) ---------------------------------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.stat { text-align: center; padding: var(--space-6) var(--space-4); border-radius: var(--radius-xl); background: var(--card-bg); border: 1px solid var(--border-default); box-shadow: var(--shadow-xs); }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.9rem); letter-spacing: -.03em; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__lab { font-size: var(--text-sm); color: var(--text-secondary); margin-top: var(--space-3); line-height: 1.35; }

/* ---- Marquee ----------------------------------------------- */
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: clamp(2rem, 5vw, 4rem); width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--font-display); font-weight: 600; font-size: var(--text-xl); color: var(--text-faint); white-space: nowrap; letter-spacing: .01em; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ---- Bento services ---------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-5); }
.bento__item { position: relative; overflow: hidden; display: flex; flex-direction: column; padding: clamp(1.5rem, 2.4vw, 2.1rem); border-radius: var(--radius-xl); background: var(--card-bg); border: 1px solid var(--border-default); box-shadow: var(--shadow-xs); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; grid-column: span 2; }
.bento__item:hover { border-color: var(--border-strong); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.b-w4 { grid-column: span 4; }
.b-w3 { grid-column: span 3; }
.bento__item--feature { background: var(--glass); border-color: var(--glass-bd); box-shadow: var(--glow); }
.bento__spot { position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease; background: radial-gradient(420px circle at var(--mx,50%) var(--my,40%), color-mix(in srgb, var(--accent) 16%, transparent), transparent 60%); pointer-events: none; }
.bento__item:hover .bento__spot { opacity: 1; }
.bento__ico { width: 50px; height: 50px; border-radius: var(--radius-md); background: var(--accent-soft); color: var(--accent-soft-text); display: grid; place-items: center; margin-bottom: var(--space-5); }
.bento__item--feature .bento__ico { background: var(--grad); color: #fff; box-shadow: 0 8px 22px rgba(1,93,205,.4); }
.bento__title { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); color: var(--text-primary); line-height: 1.18; margin: 0; }
.bento__item--feature .bento__title { font-size: var(--text-2xl); letter-spacing: -.02em; }
.bento__desc { margin-top: var(--space-3); color: var(--text-secondary); font-size: var(--text-sm); line-height: var(--leading-normal); flex: 1; }
.bento__item--feature .bento__desc { font-size: var(--text-base); max-width: 52ch; }
.bento__tags { margin-top: var(--space-5); display: flex; gap: 6px; flex-wrap: wrap; }
.bento__link { margin-top: var(--space-5); display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-sm); font-weight: 600; color: var(--accent); }

/* ---- Path cards (two landings) ----------------------------- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.path { position: relative; overflow: hidden; display: flex; flex-direction: column; padding: clamp(1.8rem, 3vw, 2.6rem); border-radius: var(--radius-2xl); background: var(--card-bg); border: 1px solid var(--border-default); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; will-change: transform; }
.path:hover { box-shadow: var(--glow); border-color: var(--glass-bd); }
.path__spot { position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease; background: radial-gradient(500px circle at var(--mx,50%) var(--my,30%), color-mix(in srgb, var(--accent) 18%, transparent), transparent 60%); pointer-events: none; }
.path:hover .path__spot { opacity: 1; }
.path__ico { position: relative; width: 56px; height: 56px; border-radius: var(--radius-lg); background: var(--grad); color: #fff; display: grid; place-items: center; margin-bottom: var(--space-5); box-shadow: 0 10px 26px rgba(1,93,205,.4); }
.path__kicker { position: relative; font-family: var(--font-mono); font-size: var(--text-2xs); text-transform: uppercase; letter-spacing: .08em; color: var(--accent-soft-text); }
.path__title { position: relative; font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl); letter-spacing: -.02em; margin: var(--space-2) 0 0; }
.path__desc { position: relative; margin-top: var(--space-3); color: var(--text-secondary); font-size: var(--text-base); line-height: var(--leading-normal); }
.path__list { position: relative; list-style: none; padding: 0; margin: var(--space-5) 0 var(--space-6); display: flex; flex-direction: column; gap: var(--space-2); }
.path__list li { display: flex; align-items: flex-start; gap: 9px; font-size: var(--text-sm); color: var(--text-primary); }
.path__list svg { color: var(--viv-cyan); flex: none; margin-top: 2px; }
.path__foot { position: relative; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); margin-top: auto; padding-top: var(--space-4); border-top: 1px solid var(--hair); }
.path__price { font-size: var(--text-sm); color: var(--text-muted); }
.path__price b { font-family: var(--font-display); font-size: var(--text-xl); color: var(--text-primary); font-weight: 700; }
.path__go { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: var(--text-sm); color: var(--accent); }

/* ---- Packages ---------------------------------------------- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); align-items: start; }
.pkg { position: relative; display: flex; flex-direction: column; padding: clamp(1.6rem, 2.4vw, 2.1rem); border-radius: var(--radius-xl); background: var(--card-bg); border: 1px solid var(--border-default); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.pkg:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pkg--featured { background: var(--glass); border-color: transparent; box-shadow: var(--glow); }
.pkg--featured::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.pkg__tag { align-self: flex-start; font-family: var(--font-mono); font-size: var(--text-2xs); text-transform: uppercase; letter-spacing: .08em; color: #fff; background: var(--grad); padding: 5px 11px; border-radius: var(--radius-full); margin-bottom: var(--space-4); box-shadow: 0 5px 14px rgba(1,93,205,.4); }
.pkg__tier { font-family: var(--font-mono); font-size: var(--text-2xs); text-transform: uppercase; letter-spacing: .08em; color: var(--accent-soft-text); }
.pkg__name { font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl); letter-spacing: -.01em; margin: var(--space-1) 0 0; }
.pkg__price { margin-top: var(--space-4); font-family: var(--font-display); font-weight: 700; font-size: var(--text-3xl); letter-spacing: -.02em; line-height: 1; }
.pkg__price small { display: block; font-family: var(--font-sans); font-weight: 400; font-size: var(--text-xs); color: var(--text-muted); margin-top: 7px; }
.pkg__tagline { font-style: italic; color: var(--text-secondary); font-size: var(--text-sm); line-height: var(--leading-snug); margin: var(--space-5) 0; }
.pkg__list { list-style: none; padding: 0; margin: 0 0 var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.pkg__list li { display: flex; align-items: flex-start; gap: 9px; font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-snug); }
.pkg__list svg { color: var(--viv-cyan); flex: none; margin-top: 2px; }
.pkg__list li.is-strong { color: var(--text-primary); font-weight: 600; }
.pkg__note { font-size: var(--text-xs); color: var(--text-faint); margin-top: var(--space-6); text-align: center; }

/* ---- Process timeline -------------------------------------- */
.process { display: grid; gap: var(--space-5); }
.process--4 { grid-template-columns: repeat(4, 1fr); }
.process--5 { grid-template-columns: repeat(5, 1fr); }
.pstep { position: relative; padding: var(--space-6) var(--space-5); border-radius: var(--radius-lg); background: var(--card-bg); border: 1px solid var(--border-default); box-shadow: var(--shadow-xs); }
.pstep__n { font-family: var(--font-mono); font-size: var(--text-sm); font-weight: 600; color: var(--accent); }
.pstep__bar { height: 3px; width: 38px; border-radius: 3px; background: var(--grad); margin: 12px 0 16px; }
.pstep__title { font-family: var(--font-display); font-weight: 600; font-size: var(--text-md); color: var(--text-primary); margin: 0; }
.pstep__desc { color: var(--text-secondary); font-size: var(--text-sm); margin-top: 6px; line-height: var(--leading-snug); }

/* ---- FAQ --------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item { border: 1px solid var(--border-default); border-radius: var(--radius-lg); background: var(--card-bg); overflow: hidden; transition: border-color .2s ease; }
.faq-item.is-open { border-color: var(--accent); }
.faq-q { width: 100%; text-align: left; background: none; border: none; font: inherit; color: var(--text-primary); font-weight: 600; font-size: var(--text-md); padding: var(--space-5) var(--space-6); display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); cursor: pointer; }
.faq-q svg { color: var(--accent); flex: none; transition: transform .25s ease; }
.faq-item.is-open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a__inner { padding: 0 var(--space-6) var(--space-5); color: var(--text-secondary); font-size: var(--text-sm); line-height: var(--leading-normal); }

/* ---- Final CTA --------------------------------------------- */
.finalcta { position: relative; isolation: isolate; text-align: center; padding-block: clamp(4rem, 8vw, 7rem); overflow: hidden; }
.finalcta__bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse 60% 110% at 50% 0%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 70%); }
.finalcta h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: -.03em; max-width: 20ch; margin: var(--space-4) auto 0; line-height: 1.05; }
.finalcta p { margin: var(--space-5) auto 0; font-size: var(--text-lg); color: var(--text-secondary); max-width: 54ch; }
.finalcta__cta { margin-top: var(--space-8); display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; }
/* Dark final CTA band — navy with the light-blue glow, Z mark watermark. */
.finalcta--dark {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  border-block: 1px solid rgba(255,255,255,.06);
}
.finalcta--dark .finalcta__bg { background: radial-gradient(ellipse 62% 115% at 50% 0%, rgba(30,114,227,.36), transparent 70%); }
.finalcta--dark::after {
  content: ""; position: absolute; z-index: 0; right: -70px; bottom: -110px;
  width: 430px; height: 430px; opacity: .06; pointer-events: none;
  background: url("../assets/logos/mark-ondark.png") center / contain no-repeat;
}

/* Contact band — phone + email highlighted, then 3 price-calculator cards */
.finalcta__contact { margin-top: var(--space-8); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-4); max-width: 720px; margin-inline: auto; }
.contact-card {
  display: flex; align-items: center; gap: var(--space-4); text-align: left;
  padding: var(--space-5) var(--space-6); border-radius: var(--radius-xl);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.09); border-color: rgba(122,185,255,.55); box-shadow: 0 16px 40px rgba(0,0,0,.32); }
.contact-card__ico { flex: none; width: 48px; height: 48px; border-radius: var(--radius-lg); display: grid; place-items: center; color: #fff; background: var(--grad); box-shadow: 0 8px 22px rgba(1,93,205,.45); }
.contact-card__meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.contact-card__lab { font-family: var(--font-mono); font-size: var(--text-2xs); text-transform: uppercase; letter-spacing: .08em; color: var(--viv-cyan); }
.contact-card__val { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); letter-spacing: -.01em; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.finalcta__or { display: flex; align-items: center; gap: var(--space-4); max-width: 720px; margin: var(--space-8) auto var(--space-6); color: var(--text-muted); font-size: var(--text-sm); }
.finalcta__or::before, .finalcta__or::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.12); }
.finalcta__or span { white-space: nowrap; }

.finalcta__calc { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-4); }
.calc-card {
  display: flex; flex-direction: column; gap: var(--space-3); text-align: left;
  padding: var(--space-5); border-radius: var(--radius-xl);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.calc-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.07); border-color: rgba(122,185,255,.5); box-shadow: 0 16px 40px rgba(0,0,0,.32); }
.calc-card__top { display: flex; align-items: center; gap: 11px; }
.calc-card__ico { flex: none; width: 38px; height: 38px; border-radius: var(--radius-md); display: grid; place-items: center; color: var(--viv-cyan); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.calc-card__title { font-family: var(--font-display); font-weight: 700; font-size: var(--text-base); letter-spacing: -.01em; color: var(--text-primary); }
.calc-card__price { font-family: var(--font-mono); font-size: var(--text-sm); font-weight: 600; color: var(--text-secondary); }
.calc-card__cta { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-sm); font-weight: 600; color: var(--viv-cyan); }
.calc-card__cta svg { transition: transform .2s ease; }
.calc-card:hover .calc-card__cta svg { transform: translateX(3px); }

@media (max-width: 720px) {
  .finalcta__contact { grid-template-columns: 1fr; }
  .finalcta__calc { grid-template-columns: 1fr; }
}

/* ---- Blog -------------------------------------------------- */
.blog-filter { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-bottom: var(--space-10); justify-content: center; }
.chip { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: .02em; white-space: nowrap; padding: 8px 15px; border-radius: var(--radius-full); border: 1px solid var(--chip-bd); background: var(--chip-bg); color: var(--text-secondary); cursor: pointer; transition: all .15s ease; }
.chip:hover { color: var(--text-primary); border-color: var(--border-strong); }
.chip.is-active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 5px 14px rgba(1,93,205,.35); }
.featured { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; align-items: stretch; margin-bottom: clamp(2.5rem, 5vw, 4rem); border: 1px solid var(--border-default); border-radius: var(--radius-2xl); overflow: hidden; background: var(--card-bg); box-shadow: var(--shadow-sm); transition: box-shadow .2s ease; }
.featured:hover { box-shadow: var(--glow); }
.featured__media { min-height: 340px; }
.featured__body { padding: clamp(1.75rem, 3vw, 2.75rem); display: flex; flex-direction: column; justify-content: center; }
.featured__meta { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); flex-wrap: wrap; }
.featured__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.25rem); letter-spacing: -.02em; line-height: 1.12; margin: 0; }
.featured__excerpt { margin-top: var(--space-4); color: var(--text-secondary); font-size: var(--text-base); line-height: var(--leading-normal); }
.featured__foot { margin-top: var(--space-6); display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.post { display: flex; flex-direction: column; border: 1px solid var(--border-default); border-radius: var(--radius-xl); overflow: hidden; background: var(--card-bg); box-shadow: var(--shadow-xs); transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; cursor: pointer; }
.post:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--border-strong); }
.post__media { height: 184px; }
.post__body { padding: var(--space-5); display: flex; flex-direction: column; flex: 1; }
.post__meta { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-3); font-size: var(--text-xs); color: var(--text-muted); white-space: nowrap; }
.post__title { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); line-height: 1.22; color: var(--text-primary); margin: 0; }
.post__excerpt { margin-top: var(--space-3); color: var(--text-secondary); font-size: var(--text-sm); line-height: var(--leading-normal); flex: 1; }
.post__foot { margin-top: var(--space-5); display: flex; align-items: center; gap: 7px; font-size: var(--text-sm); color: var(--accent); font-weight: 600; }
.dot-sep { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .45; }
.blog-empty { text-align: center; padding: var(--space-16) var(--space-4); color: var(--text-muted); }
.thumb { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--navy-800), var(--navy-950)); color: #fff; display: grid; place-items: center; }
[data-theme="light"] .thumb { background: linear-gradient(150deg, #16365e, #0b1f3a); }
.thumb__grid { position: absolute; inset: 0; opacity: .4; background-image: linear-gradient(to right, rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 30px 30px; }
.thumb__glow { position: absolute; inset: 0; background: radial-gradient(circle at 72% 24%, color-mix(in srgb, var(--accent) 70%, transparent), transparent 58%); }
.thumb__mark { position: relative; width: 60px; height: 60px; border-radius: var(--radius-md); background: var(--grad); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 28px rgba(0,0,0,.3); }
.thumb__chip { position: absolute; top: 16px; left: 16px; white-space: nowrap; font-family: var(--font-mono); font-size: var(--text-2xs); letter-spacing: .06em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); padding: 4px 9px; border-radius: var(--radius-full); backdrop-filter: blur(4px); }
.thumb__tag { position: absolute; left: 16px; bottom: 16px; font-family: var(--font-mono); font-size: var(--text-2xs); letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.85); }

/* ---- Footer ------------------------------------------------ */
.site-footer { position: relative; overflow: hidden; background: var(--surface-subtle); border-top: 1px solid var(--hair); padding-top: var(--space-16); }
.site-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem); padding-bottom: var(--space-12); }
.site-footer__logo { height: 28px; width: auto; margin-bottom: var(--space-5); }
.site-footer__brand p { color: var(--text-secondary); font-size: var(--text-sm); line-height: var(--leading-normal); max-width: 36ch; }
.site-footer__pills { display: flex; gap: 6px; flex-wrap: wrap; margin-top: var(--space-5); }
.site-footer__col .eyebrow { margin-bottom: var(--space-4); }
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a, .site-footer__contact span { color: var(--text-secondary); font-size: var(--text-sm); display: inline-flex; align-items: center; gap: 9px; }
.site-footer__col a:hover { color: var(--accent); }
.site-footer__contact svg { color: var(--accent); flex: none; }
/* Small brand mark in the bottom bar */
.site-footer__bottom { position: relative; display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); padding-block: var(--space-6); border-top: 1px solid var(--hair); font-size: var(--text-xs); color: var(--text-muted); flex-wrap: wrap; }
.site-footer__copy { display: inline-flex; align-items: center; gap: 9px; }
.site-footer__mark { width: 20px; height: 20px; flex: none; opacity: .9; }
.site-footer__links { display: flex; gap: var(--space-5); }
.site-footer__links a:hover { color: var(--accent); }
@media (max-width: 900px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) { .site-footer__top { grid-template-columns: 1fr; } }

/* ---- Headcount slider -------------------------------------- */
.est-slider { }
.est-slider__readout { display: flex; align-items: baseline; gap: 8px; margin-bottom: var(--space-4); }
.est-slider__big { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 3vw, 2.2rem); letter-spacing: -.02em; white-space: nowrap; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.est-slider__unit { font-size: var(--text-sm); color: var(--text-muted); }
.range { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--accent) 0%, #45a6f5 var(--pct,50%), var(--border-strong) var(--pct,50%)); outline: none; cursor: pointer; margin: 0; }
.range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); box-shadow: 0 3px 12px rgba(1,93,205,.55); cursor: pointer; transition: transform .12s ease; }
.range::-webkit-slider-thumb:hover { transform: scale(1.12); }
.range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); box-shadow: 0 3px 12px rgba(1,93,205,.55); cursor: pointer; }
.range:focus-visible { box-shadow: 0 0 0 4px var(--ring); }
.est-slider__ticks { display: flex; justify-content: space-between; gap: 4px; margin-top: var(--space-3); }
.est-slider__tick { flex: 1; border: none; background: none; font: inherit; font-family: var(--font-mono); font-size: var(--text-2xs); color: var(--text-faint); cursor: pointer; padding: 4px 2px; border-radius: var(--radius-sm); transition: color .15s ease, background .15s ease; white-space: nowrap; }
.est-slider__tick:hover { color: var(--text-secondary); }
.est-slider__tick.is-on { color: var(--accent); font-weight: 600; }
.est-slider__ticks--scale { margin-top: 8px; }
.est-slider__ticks--scale > span { flex: 1; font-family: var(--font-mono); font-size: var(--text-2xs); color: var(--text-faint); }
.est-slider__ticks--scale > span:last-child { text-align: right; }
.est-slider__ticks--scale > span:first-child { text-align: left; }
.est-slider__ticks--scale > span:not(:first-child):not(:last-child) { text-align: center; }
.est-mdesc { margin-top: var(--space-3); font-size: var(--text-xs); color: var(--text-secondary); line-height: var(--leading-snug); background: var(--chip-bg); border-left: 3px solid var(--accent); border-radius: var(--radius-sm); padding: 9px 12px; min-height: 3.6em; }
.est-fine { margin: var(--space-3) 0 0; font-size: var(--text-2xs); color: var(--text-faint); line-height: var(--leading-snug); text-align: center; }

/* ---- Estimator question rows (IBF) ------------------------- */
.est-qs { margin-top: var(--space-4); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3) var(--space-5); }
.est-qs .est-q { margin-top: 0; }
.est-q { margin-top: var(--space-4); }
.est-q__text { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-2); }
.est-choices { display: flex; gap: 7px; flex-wrap: wrap; }
.est-choice { font-size: var(--text-xs); font-weight: 600; padding: 7px 14px; border-radius: var(--radius-full); border: 1px solid var(--chip-bd); background: var(--chip-bg); color: var(--text-secondary); cursor: pointer; transition: all .15s ease; white-space: nowrap; }
.est-choice:hover { color: var(--text-primary); border-color: var(--border-strong); }
.est-choice.is-on { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 4px 12px rgba(1,93,205,.32); }
.est-incl { margin-top: var(--space-3); border-left: 3px solid var(--success); border-radius: var(--radius-sm); background: var(--success-soft); padding: 11px 13px; }
.est-incl b { display: flex; align-items: flex-start; gap: 6px; font-size: var(--text-xs); font-weight: 600; color: var(--text-primary); line-height: var(--leading-snug); }
.est-incl b svg { color: var(--success); flex: none; margin-top: 2px; }
.est-incl-items { display: block; margin-top: 8px; font-size: var(--text-2xs); color: var(--text-secondary); line-height: var(--leading-relaxed); }
.est-items { margin-top: var(--space-4); padding-top: var(--space-3); border-top: 1px solid var(--hair); }
.est-items b { display: block; font-family: var(--font-mono); font-size: var(--text-2xs); text-transform: uppercase; letter-spacing: .06em; color: var(--accent-soft-text); margin-bottom: 5px; }
.est-items span { font-size: var(--text-2xs); color: var(--text-secondary); line-height: var(--leading-relaxed); }

/* ---- Decorative section blobs ------------------------------ */
.blob { position: absolute; z-index: 0; border-radius: 50%; pointer-events: none; filter: blur(72px); opacity: calc(var(--aurora-op) * .5); mix-blend-mode: screen; }
[data-theme="light"] .blob { mix-blend-mode: multiply; opacity: .16; filter: blur(82px); }
.blob--cyan { background: radial-gradient(circle, #28c2ee, transparent 66%); }
.blob--blue { background: radial-gradient(circle, #2f86ef, transparent 66%); }
.est-total__custom { text-align: left; }
.est-total__custom p { margin: var(--space-2) 0 0; font-size: var(--text-xs); color: var(--text-muted); }

/* ---- Radar (hero "what we do" visual) ---------------------- */
.radar { position: relative; width: min(100%, 480px); aspect-ratio: 1; margin-inline: auto; }
.radar__rings { position: absolute; inset: 0; }
.radar__rings span { position: absolute; border-radius: 50%; border: 1px solid var(--hair); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.radar__rings span:nth-child(1) { width: 100%; height: 100%; }
.radar__rings span:nth-child(2) { width: 68%; height: 68%; }
.radar__rings span:nth-child(3) { width: 36%; height: 36%; border-color: var(--chip-bd); }
.radar__cross { position: absolute; inset: 0; opacity: .6; }
.radar__cross i { position: absolute; background: var(--hair); }
.radar__cross i:first-child { left: 0; right: 0; top: 50%; height: 1px; }
.radar__cross i:last-child { top: 0; bottom: 0; left: 50%; width: 1px; }
.radar__sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, color-mix(in srgb, var(--accent) 42%, transparent) 0deg, transparent 55deg, transparent 360deg); -webkit-mask: radial-gradient(circle at center, #000 12%, #000 50%, transparent 51%); mask: radial-gradient(circle at center, #000 12%, #000 50%, transparent 51%); animation: radarSpin 5.5s linear infinite; }
@keyframes radarSpin { to { transform: rotate(360deg); } }
.radar__core { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 30%; aspect-ratio: 1; border-radius: 50%; background: var(--glass); border: 1px solid var(--glass-bd); box-shadow: var(--glow); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 6px; z-index: 3; }
.radar__core-ico { width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--grad); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(1,93,205,.45); margin-bottom: 8px; }
.radar__core-name { font-family: var(--font-display); font-weight: 600; font-size: var(--text-xs); line-height: 1.15; color: var(--text-primary); max-width: 96%; }
.radar__core-status { display: inline-flex; align-items: center; gap: 5px; margin-top: 6px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: var(--success); }
.radar__pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 var(--success); animation: pulse 2.2s ease-out infinite; }
.radar__node { position: absolute; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 4px; z-index: 2; transition: transform .3s cubic-bezier(.5,1.5,.5,1); }
.radar__node-ico { width: 42px; height: 42px; border-radius: var(--radius-md); background: var(--card-bg); border: 1px solid var(--border-default); color: var(--text-secondary); display: grid; place-items: center; box-shadow: var(--shadow-xs); transition: all .3s ease; }
.radar__node-code { font-family: var(--font-mono); font-size: var(--text-2xs); font-weight: 600; color: var(--text-muted); white-space: nowrap; transition: color .3s ease; }
.radar__node.is-active { transform: translate(-50%, -50%) scale(1.14); }
.radar__node.is-active .radar__node-ico { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 10px 26px rgba(1,93,205,.5); }
.radar__node.is-active .radar__node-code { color: var(--accent); }
@media (prefers-reduced-motion: reduce) { .radar__sweep { animation: none; opacity: .4; } }

/* ---- Hero visual — Orbit only (no tab switcher) ------------ */
/* ---- Orbit — nodes circle and light up (no link beam). The
   hub stays put in the middle; the selected node itself (auto-cycled or
   hovered) opens from its small icon into a slightly larger rounded tile
   with a one-line blurb that fades in. ------------------------------- */
.orbit { position: relative; width: min(100%, 480px); aspect-ratio: 1; margin-inline: auto; }
/* hub — bare, subtle Z watermark (no tile/background); swaps with the hero theme */
.orbit__hub { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: grid; place-items: center; z-index: 1; pointer-events: none; }
.orbit__hub img { width: 56px; height: 56px; opacity: .75; }
.orbit__hub-img--dark { display: none; }
.hero[data-theme="dark"] .orbit__hub-img--light { display: none; }
.hero[data-theme="dark"] .orbit__hub-img--dark { display: block; }
/* nodes — no square tile, just the bare icon; it grows when the node is active */
.orbit__node { position: absolute; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 6px; background: none; border: none; padding: 6px; cursor: pointer; font: inherit; text-decoration: none; z-index: 2; }
.orbit__node-ico { color: var(--text-secondary); display: grid; place-items: center; transition: transform .32s cubic-bezier(.4,1.5,.5,1), color .3s ease; }
/* code label stays under every icon; the blurb + link only open when active */
.orbit__node-code { font-family: var(--font-mono); font-size: var(--text-2xs); font-weight: 600; color: var(--text-muted); white-space: nowrap; transition: color .3s ease; }
.orbit__node-extra { max-height: 0; opacity: 0; overflow: hidden; display: flex; flex-direction: column; align-items: center; gap: 4px; transition: max-height .32s ease, opacity .26s ease; }
.orbit__node-blurb { white-space: nowrap; font-family: var(--font-display); font-weight: 600; font-size: var(--text-2xs); letter-spacing: .01em; color: var(--text-primary); }
.orbit__node-link { display: inline-flex; align-items: center; gap: 3px; white-space: nowrap; font-size: var(--text-2xs); font-weight: 600; color: var(--accent); }
.orbit__node-link svg { flex: none; }
.orbit__node.is-open { z-index: 5; }
.orbit__node.is-open .orbit__node-ico { color: var(--accent); transform: scale(1.36); }
.orbit__node.is-open .orbit__node-code { color: var(--accent); }
.orbit__node.is-open .orbit__node-extra { max-height: 4em; opacity: 1; margin-top: 1px; }
@media (prefers-reduced-motion: reduce) { .orbit__node-ico { transition: none; } }


/* net — canvas fills the hero */
.bg-net { position: absolute; inset: 0; width: 100%; height: 100%; -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent); mask-image: linear-gradient(180deg, #000 78%, transparent); }

/* ---- Services showcase ------------------------------------- */
/* Featured "push" services (NIS2 · IBF · ISO 27001) */
.svc-feat { display: flex; flex-wrap: wrap; gap: var(--space-5); margin-bottom: var(--space-8); }
.svc-feat__card { position: relative; overflow: hidden; flex: 1 1 300px; display: flex; flex-direction: column; padding: clamp(1.6rem, 2.3vw, 2.2rem); border-radius: var(--radius-2xl); background: var(--glass); border: 1px solid var(--glass-bd); box-shadow: var(--glow); text-decoration: none; user-select: none; transition: transform .2s ease, box-shadow .2s ease; }
.svc-feat__card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .55; transition: opacity .2s ease; }
.svc-feat__card:hover { transform: translateY(-5px); box-shadow: var(--glow), var(--shadow-lg); text-decoration: none; }
.svc-feat__card:hover::before { opacity: 1; }
.svc-feat__card--soon { background: var(--card-bg); box-shadow: var(--shadow-sm); }
.svc-feat__card--soon::before { background: var(--border-strong); opacity: .5; }
.svc-feat__card--soon:hover { box-shadow: var(--shadow-lg); }
.svc-feat__spot { position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease; background: radial-gradient(440px circle at var(--mx,50%) var(--my,30%), color-mix(in srgb, var(--accent) 15%, transparent), transparent 60%); pointer-events: none; }
.svc-feat__card:hover .svc-feat__spot { opacity: 1; }
.svc-feat__top { position: relative; display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-5); }
.svc-feat__ico { width: 54px; height: 54px; border-radius: var(--radius-lg); background: var(--grad); color: #fff; display: grid; place-items: center; flex: none; box-shadow: 0 10px 26px rgba(1,93,205,.4); }
.svc-feat__card--soon .svc-feat__ico { background: var(--accent-soft); color: var(--accent-soft-text); box-shadow: none; }
.svc-feat__badge { font-family: var(--font-mono); font-size: var(--text-2xs); text-transform: uppercase; letter-spacing: .07em; color: #fff; background: var(--grad); padding: 5px 11px; border-radius: var(--radius-full); white-space: nowrap; box-shadow: 0 5px 14px rgba(1,93,205,.35); }
.svc-feat__badge--soon { color: var(--warning); background: var(--warning-soft); box-shadow: none; }
.svc-feat__kicker { position: relative; font-family: var(--font-mono); font-size: var(--text-2xs); text-transform: uppercase; letter-spacing: .07em; color: var(--accent-soft-text); }
.svc-feat__title { position: relative; font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl); line-height: 1.16; letter-spacing: -.01em; color: var(--text-primary); margin: var(--space-2) 0 0; }
.svc-feat__desc { position: relative; margin-top: var(--space-3); color: var(--text-secondary); font-size: var(--text-sm); line-height: var(--leading-normal); }
.svc-feat__list { position: relative; list-style: none; padding: 0; margin: var(--space-5) 0 var(--space-6); display: flex; flex-direction: column; gap: var(--space-2); }
.svc-feat__list li { display: flex; align-items: flex-start; gap: 9px; font-size: var(--text-sm); color: var(--text-primary); line-height: var(--leading-snug); }
.svc-feat__list svg { color: var(--viv-cyan); flex: none; margin-top: 2px; }
.svc-feat__card--soon .svc-feat__list svg { color: var(--text-muted); }
.svc-feat__foot { position: relative; margin-top: auto; padding-top: var(--space-4); border-top: 1px solid var(--hair); display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.svc-feat__price { font-size: var(--text-sm); font-weight: 600; color: var(--text-secondary); white-space: nowrap; }
.svc-feat__card--soon .svc-feat__price { color: var(--text-muted); }
.svc-feat__cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: var(--text-sm); color: var(--accent); white-space: nowrap; }

/* ============ Scroll-triggered contact dock ============ */
.z-dock { position: fixed; z-index: 75; right: clamp(16px, 2.4vw, 28px); bottom: clamp(16px, 2.4vw, 28px);
  width: 358px; max-width: calc(100vw - 32px); box-sizing: border-box;
  display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px;
  background: var(--glass); border: 1px solid var(--glass-bd); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 22px 60px rgba(1,40,100,.18);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  opacity: 0; visibility: hidden; transform: translateY(22px) scale(.98);
  transition: opacity .38s ease, transform .5s cubic-bezier(.2,.7,.2,1), visibility .38s linear; }
.z-dock.is-in { opacity: 1; visibility: visible; transform: none; }
.z-dock__glow { position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(120deg, rgba(122,185,255,.75), transparent 38%, transparent 62%, rgba(40,194,238,.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.z-dock__icon { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  color: #fff; background: var(--grad); box-shadow: 0 8px 22px rgba(1,93,205,.42); }
.z-dock__body { min-width: 0; }
.z-dock__title { font-family: var(--font-display); font-weight: 700; font-size: var(--text-base); letter-spacing: -.01em; color: var(--text-primary); line-height: 1.2; }
.z-dock__sub { margin-top: 4px; font-size: var(--text-xs); color: var(--text-muted); line-height: var(--leading-snug); }
.z-dock__actions { margin-top: 13px; display: flex; align-items: center; gap: 8px 16px; flex-wrap: wrap; }
.z-dock__actions .btn { gap: 6px; }
.z-dock__tel { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-xs); font-weight: 600; color: var(--accent-soft-text); white-space: nowrap; }
.z-dock__tel:hover { color: var(--accent); }
.z-dock__tel svg { color: var(--accent); }
.z-dock__close { position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; border: none; cursor: pointer; color: var(--text-faint);
  background: var(--chip-bg); transition: color .15s ease, background .15s ease; }
.z-dock__close:hover { color: var(--text-primary); background: var(--surface-sunken); }
@media (max-width: 560px) {
  .z-dock { left: 12px; right: 12px; bottom: 12px; width: auto; padding: 13px 14px; gap: 12px; align-items: center; }
  .z-dock__icon { width: 38px; height: 38px; }
  .z-dock__close { top: 6px; right: 6px; }
  .z-dock__sub { display: none; }
  .z-dock__actions { margin-top: 9px; }
}
@media (prefers-reduced-motion: reduce) {
  .z-dock { transition: opacity .25s ease, visibility .25s linear; transform: none; }
  .z-dock.is-in { transform: none; }
}
.svc-feat__card--soon .svc-feat__cta { color: var(--text-secondary); }
.svc-more { margin-bottom: var(--space-6); }

/* ISO 27001 page — "details coming soon" notice */
.iso-note { display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap; padding: var(--space-5) var(--space-6); border-radius: var(--radius-xl); background: var(--glass); border: 1px solid var(--glass-bd); box-shadow: var(--shadow-sm); }
.iso-note__ico { width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--accent-soft); color: var(--accent-soft-text); display: grid; place-items: center; flex: none; }
.iso-note__body { flex: 1; min-width: 240px; }
.iso-note b { display: block; font-family: var(--font-display); font-weight: 600; font-size: var(--text-md); color: var(--text-primary); }
.iso-note span { display: block; margin-top: 4px; color: var(--text-secondary); font-size: var(--text-sm); line-height: var(--leading-normal); }
.iso-note .btn { flex: none; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.svc { position: relative; overflow: hidden; display: flex; flex-direction: column; padding: clamp(1.5rem, 2.3vw, 2rem); border-radius: var(--radius-xl); background: var(--card-bg); border: 1px solid var(--border-default); box-shadow: var(--shadow-xs); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.svc:hover { border-color: var(--border-strong); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.svc__spot { position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease; background: radial-gradient(360px circle at var(--mx,50%) var(--my,40%), color-mix(in srgb, var(--accent) 14%, transparent), transparent 60%); pointer-events: none; }
.svc:hover .svc__spot { opacity: 1; }
.svc__top { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-5); }
.svc__ico { width: 50px; height: 50px; border-radius: var(--radius-md); background: var(--accent-soft); color: var(--accent-soft-text); display: grid; place-items: center; flex: none; }
.svc__cat { font-family: var(--font-mono); font-size: var(--text-2xs); text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); background: var(--chip-bg); border: 1px solid var(--chip-bd); border-radius: var(--radius-full); padding: 4px 10px; white-space: nowrap; }
.svc__title { font-family: var(--font-display); font-weight: 600; font-size: var(--text-md); line-height: 1.22; color: var(--text-primary); margin: 0; }
.svc__desc { margin-top: var(--space-3); color: var(--text-secondary); font-size: var(--text-sm); line-height: var(--leading-normal); flex: 1; }
.svc__bar { margin-top: var(--space-5); height: 3px; border-radius: 3px; background: var(--hair); overflow: hidden; }
.svc__bar i { display: block; height: 100%; width: 0; background: var(--grad); border-radius: 3px; transition: width .7s cubic-bezier(.2,.7,.2,1); }
.svc:hover .svc__bar i { width: 100%; }

/* ---- Stakes (redesigned) ----------------------------------- */
.stakes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.stake { position: relative; overflow: hidden; padding: clamp(1.5rem, 2.4vw, 2rem); border-radius: var(--radius-xl); background: var(--card-bg); border: 1px solid var(--border-default); box-shadow: var(--shadow-xs); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.stake:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.stake__ico { width: 50px; height: 50px; border-radius: var(--radius-md); display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-soft-text); margin-bottom: var(--space-5); }
/* the warning lives in the number, not in a red frame */
.stake__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -.02em; line-height: 1; color: var(--danger); }
.stake__title { font-weight: 600; color: var(--text-primary); margin-top: var(--space-3); font-size: var(--text-md); }
.stake__desc { color: var(--text-secondary); font-size: var(--text-sm); margin-top: var(--space-2); line-height: var(--leading-normal); }

/* ---- Testimonials (redesigned) ----------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.quote { position: relative; overflow: hidden; padding: clamp(1.5rem, 2.4vw, 2rem); border-radius: var(--radius-xl); background: var(--card-bg); border: 1px solid var(--border-default); box-shadow: var(--shadow-xs); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.quote:hover { transform: translateY(-4px); box-shadow: var(--glow); border-color: var(--glass-bd); }
.quote__glyph { position: absolute; top: -12px; right: 14px; font-family: var(--font-display); font-weight: 700; font-size: 130px; line-height: 1; color: var(--accent); opacity: .10; pointer-events: none; }
.quote__stars { position: relative; color: #f2b134; font-size: var(--text-sm); letter-spacing: 3px; }
.quote__txt { position: relative; margin-top: var(--space-4); color: var(--text-primary); font-size: var(--text-md); line-height: var(--leading-normal); }
.quote__by { position: relative; margin-top: var(--space-6); display: flex; align-items: center; gap: 12px; padding-top: var(--space-5); border-top: 1px solid var(--hair); }
.quote__by > div:last-child { flex: 1; min-width: 0; }
.quote__av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm); flex: none; box-shadow: 0 6px 16px rgba(1,93,205,.4); }
.quote__name { font-weight: 600; color: var(--text-primary); font-size: var(--text-sm); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.quote__role { font-size: var(--text-xs); color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---- Vertical process timeline (progress bar) -------------- */
.timeline { position: relative; max-width: 720px; margin-inline: auto; padding-left: 80px; }
.timeline.reveal { opacity: 1; transform: none; } /* never hide; we animate children instead */
.timeline__rail { position: absolute; left: 24px; top: 8px; bottom: 8px; width: 4px; border-radius: 4px; background: var(--hair); overflow: hidden; }
.timeline__fill { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: linear-gradient(180deg, #45a6f5, var(--accent) 60%, #0a3ea0); border-radius: 4px; }
.tl-step { position: relative; margin-bottom: var(--space-5); }
.tl-step:last-child { margin-bottom: 0; }
.tl-node { position: absolute; left: -80px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: #fff; background: var(--grad); box-shadow: 0 8px 22px rgba(1,93,205,.42); z-index: 2; }
.tl-node::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid color-mix(in srgb, var(--accent) 26%, transparent); }
.tl-card { background: var(--card-bg); border: 1px solid var(--border-default); border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); padding: var(--space-5) var(--space-6); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.tl-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-lg); transform: translateX(4px); }
.tl-kicker { font-family: var(--font-mono); font-size: var(--text-2xs); text-transform: uppercase; letter-spacing: .08em; color: var(--accent-soft-text); }
.tl-title { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); color: var(--text-primary); margin: 4px 0 0; }
.tl-desc { color: var(--text-secondary); font-size: var(--text-sm); margin: var(--space-2) 0 0; line-height: var(--leading-normal); }
.timeline__done { position: relative; margin-top: var(--space-5); display: flex; align-items: center; gap: 12px; padding-left: 4px; }
.timeline__done .tl-node { position: relative; left: 0; top: 0; transform: none; margin-left: -4px; width: 52px; height: 52px; background: var(--success); box-shadow: 0 8px 22px color-mix(in srgb, var(--success) 45%, transparent); }
.timeline__done .tl-node::after { border-color: color-mix(in srgb, var(--success) 30%, transparent); }
.timeline__done span { font-family: var(--font-display); font-weight: 600; font-size: var(--text-md); color: var(--text-primary); }
@media (prefers-reduced-motion: no-preference) {
  .timeline.is-in .timeline__fill { height: 0; animation: tlFill 2s cubic-bezier(.45,0,.2,1) forwards; }
  .timeline.is-in .tl-node { animation: tlNode .55s cubic-bezier(.5,1.7,.5,1) backwards; animation-delay: var(--d, 0s); }
  .timeline.is-in .tl-card { animation: tlCard .55s ease backwards; animation-delay: var(--d, 0s); }
  .timeline.is-in .timeline__done { animation: tlCard .5s ease backwards; animation-delay: 1.9s; }
}
@keyframes tlFill { from { height: 0; } to { height: 100%; } }
@keyframes tlNode { from { opacity: 0; transform: translateY(-50%) scale(.4); } to { opacity: 1; transform: translateY(-50%) scale(1); } }
@keyframes tlCard { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }

/* ---- Reveal ------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ---- Responsive -------------------------------------------- */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .hero__copy,
  .hero__visual { min-width: 0; width: 100%; }
  .hero__visual { margin-top: var(--space-8); max-width: 520px; margin-inline: auto; }
  .process--5, .process--4 { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .radar, .orbit { max-width: 420px; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .b-w4 { grid-column: span 4; }
  .b-w3 { grid-column: span 2; }
  .bento__item { grid-column: span 2; }
  .site-nav { display: none; }
  .header-cta { display: none; }
  /* logo left, menu button hard right */
  .site-header__inner { justify-content: space-between; gap: var(--space-3); }
  .mobile-toggle { display: inline-flex; margin-left: auto; }
  .mobile-menu {
    /* absolute overlay so opening it doesn't push page content down — keeps the
       adaptive-nav background detection stable and lets it drop over the content */
    position: absolute; top: 100%; left: 0; right: 0;
    display: flex; flex-direction: column;
    padding: var(--space-3) var(--gutter) var(--space-5);
    border-top: 1px solid var(--hair); gap: 2px;
    background: color-mix(in srgb, var(--surface-page) 96%, transparent);
    backdrop-filter: saturate(170%) blur(16px);
    -webkit-backdrop-filter: saturate(170%) blur(16px);
    box-shadow: 0 16px 40px rgba(1,30,80,.16);
    max-height: calc(100dvh - 76px); overflow-y: auto;
    transform-origin: top;
    animation: mobileMenuIn .26s cubic-bezier(.16,1,.3,1);
  }
  /* staggered reveal of each row */
  .mobile-menu > * { animation: mobileItemIn .34s both cubic-bezier(.16,1,.3,1); }
  .mobile-menu > *:nth-child(1) { animation-delay: .04s; }
  .mobile-menu > *:nth-child(2) { animation-delay: .08s; }
  .mobile-menu > *:nth-child(3) { animation-delay: .12s; }
  .mobile-menu > *:nth-child(4) { animation-delay: .16s; }
  .mobile-menu > *:nth-child(5) { animation-delay: .20s; }
  .mobile-menu > *:nth-child(6) { animation-delay: .24s; }
  .mobile-menu > a:not(.btn) { padding: 11px 12px; border-radius: var(--radius-sm); color: var(--text-secondary); font-weight: 500; font-size: var(--text-sm); }
  .mobile-menu > a:not(.btn):hover { background: var(--surface-sunken); color: var(--text-primary); }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-toggle svg, .mobile-menu, .mobile-menu > * { animation: none; }
}
@media (max-width: 760px) {
  /* keep the eyebrow on a single line — scale the mono text to fit narrow screens */
  .hero__badge { white-space: nowrap; font-size: clamp(.5rem, 2.6vw, var(--text-xs)); letter-spacing: .02em; gap: 6px; padding: 6px 12px; }
  .statband { grid-template-columns: repeat(2, 1fr); }
  .packages, .stakes, .quotes, .blog-grid, .paths, .bento, .featured, .svc-grid { grid-template-columns: 1fr; }
  .bento__item, .b-w4, .b-w3 { grid-column: span 1; }
  .process--5, .process--4 { grid-template-columns: 1fr; }
  .est-form__grid { grid-template-columns: 1fr; }
  .est-qs { grid-template-columns: 1fr; }
  .est-disclose__list { grid-template-columns: 1fr; }
  .est-tiers { grid-template-columns: 1fr; }
  .radar, .orbit { max-width: 320px; }
  .featured__media { min-height: 220px; }
}

/* ============================================================
   Trust band — minősítés-logók vízszintes sávban
   ISACA · ISC² · SGS · TÜV Rheinland · ISO. Sötét sáv; tompított
   logók + rövid felirat, folyamatosan, varratmentesen futnak.
   ============================================================ */
.certs { padding-block: clamp(1.5rem, 3vw, 2.5rem); position: relative; overflow: hidden; }
/* logos + stats now share one .certs section → just space the stats below the marquee */
.certs .statband { margin-top: clamp(2rem, 4vw, 3.25rem); }
.certs__head { text-align: center; margin-bottom: clamp(1.1rem, 2.4vw, 1.75rem); }
.certs__head .eyebrow { justify-content: center; }

/* Vízszintes, folyamatosan futó logó-sáv — szimpla, professzionális.
   Per-elem padding (nem flex-gap) → tökéletesen varratmentes loop. */
.certs__marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
}
.certs__track { display: flex; align-items: center; width: max-content; animation: certsScroll 25s linear infinite; }
.certs__marquee:hover .certs__track { animation-play-state: paused; }
.certs__logo { flex: none; display: grid; place-items: center; padding-inline: clamp(1.75rem, 5vw, 4rem); }
.certs__logo img {
  width: auto; opacity: .66;
  filter: saturate(.85) brightness(1.04);
  transition: opacity .3s ease, transform .3s ease, filter .3s ease;
}
.certs__logo:hover img { opacity: 1; filter: saturate(1) brightness(1.08); transform: scale(1.05); }
/* --shift = -100%/setek száma → pontosan egy set elcsúszása, varratmentesen (a track inline állítja be). */
@keyframes certsScroll { from { transform: translateX(0); } to { transform: translateX(var(--shift, -50%)); } }
@media (prefers-reduced-motion: reduce) {
  .certs__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .certs__marquee { -webkit-mask-image: none; mask-image: none; }
  .certs__logo { padding: var(--space-4) clamp(1.2rem, 3vw, 2rem); }
}

/* ============================================================
   Rólunk — minősítések, bizalmi pillérek, idézet
   ============================================================ */
/* Credential-rács — karika logó + a minősítés leírása (CISA · CISM · ISO 27001/42001 LA). */
.about-creds {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  max-width: 1000px; margin: clamp(2.75rem, 5.5vw, 4rem) auto clamp(3rem, 6vw, 5rem);
}
.cred { display: flex; flex-direction: column; align-items: center; text-align: center; }
.cred__logo {
  width: clamp(100px, 11vw, 128px); aspect-ratio: 1; padding: 4px;
  background: var(--surface-card); border: 1px solid var(--border-default);
  border-radius: 50%; box-shadow: var(--shadow-sm);
  display: grid; place-items: center; overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.cred:hover .cred__logo {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--accent) 32%, var(--border-default));
}
.cred__logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.cred__name { font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); letter-spacing: -.01em; line-height: 1.3; color: var(--text-primary); margin: var(--space-4) 0 0; min-height: 2.6em; display: flex; align-items: center; justify-content: center; }
.cred__hu { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.4; margin: var(--space-1) 0 0; }
.cred__en { font-size: 12.5px; font-style: italic; color: var(--text-muted); line-height: 1.35; margin: 5px 0 0; }

.about-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.about-pillar { background: var(--card-bg); border: 1px solid var(--border-default); border-radius: var(--radius-xl); padding: var(--space-6); box-shadow: var(--shadow-xs); }
.about-pillar__ico { width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--accent-soft); color: var(--accent-soft-text); display: grid; place-items: center; margin-bottom: var(--space-4); }
.about-pillar__title { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); margin: 0 0 var(--space-2); letter-spacing: -.01em; }
.about-pillar__desc { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.5; margin: 0; }

.about-quote { margin: clamp(3rem, 6vw, 5rem) auto 0; max-width: 900px; text-align: center; position: relative; }
.about-quote::before { content: "\201C"; display: block; font-family: var(--font-display); font-size: 4rem; line-height: .6; color: color-mix(in srgb, var(--accent) 40%, transparent); margin-bottom: var(--space-2); }
.about-quote blockquote { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 2.2vw, 1.55rem); line-height: 1.45; letter-spacing: -.01em; color: var(--text-primary); }
.about-quote figcaption { margin-top: var(--space-5); font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--accent-soft-text); }

@media (max-width: 980px) {
  .about-creds { grid-template-columns: repeat(2, 1fr); gap: clamp(1.75rem, 5vw, 2.5rem); }
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .about-pillars { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .about-creds { grid-template-columns: 1fr; max-width: 280px; }
}

/* ============================================================
   Mobile ergonomics — touch targets & CTA sizing.
   Width-based (not pointer-based) so it applies on every narrow
   viewport; layers on top of the responsive rules above.
   ============================================================ */
@media (max-width: 760px) {
  /* Estimator segmented controls (maturity 1–5, EIR options) were ~25px
     tall — bring them up to a comfortable, thumb-friendly tap height. */
  .est-slider__tick {
    min-height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: var(--text-xs);
  }
  /* Choice chips (IBF/ISO qualifying questions) — taller hit area. */
  .est-choice { padding: 11px 16px; }
}
@media (max-width: 480px) {
  /* Primary actions span the row: easier to tap, no awkward wrapping. */
  .hero__cta .btn,
  .finalcta__cta .btn { flex: 1 1 100%; }
  /* The price is a single nowrap line; the 1.8rem floor let long IBF
     ranges (e.g. "1 134 000 – 1 200 000 Ft") spill past the card edge on
     phones. Scale it to the viewport so the full range always fits. */
  .est-total__val { font-size: clamp(1.2rem, 5.4vw, 1.7rem); }
  /* Bigger, more impactful hero headline on phones. Fluid (12vw) so the
     longest word ("kiberbiztonsági") still fits one line down to ~320px
     instead of breaking mid-word; caps at 3rem on large phones. */
  .hero h1 { font-size: clamp(2.2rem, 12vw, 3rem); }
}
