/* ============================================================
   BILGI TEKNOLOJI DANISMANLIK — Design System (LIGHT)
   Aesthetic: clean corporate / trusted enterprise IT
   Display: Space Grotesk · Body: IBM Plex Sans · Mono: IBM Plex Mono
   ============================================================ */

:root {
  /* — Surfaces — */
  --bg:        #ffffff;
  --bg-2:      #f5f8fd;
  --surface:   #ffffff;
  --surface-2: #f3f7fc;
  --surface-3: #e9f0fa;
  --line:      rgba(18, 48, 92, 0.13);
  --line-2:    rgba(18, 48, 92, 0.08);

  /* — Text — */
  --ink:       #0f2143;
  --ink-2:     #4a5a76;
  --ink-3:     #8190a8;

  /* — Brand: corporate blue + security green — */
  --mint:      #1a56db;   /* primary brand (kept var name for HTML compat) */
  --mint-deep: #1546b8;
  --mint-soft: rgba(26, 86, 219, 0.09);
  --grn:       #0e9f6e;
  --grn-soft:  rgba(14, 159, 110, 0.10);
  --cyan:      #0891b2;
  --blue:      #1a56db;
  --danger:    #e23d3d;
  --gold:      #b8860b;

  /* — Type — */
  --f-display: "Space Grotesk", system-ui, sans-serif;
  --f-body:    "IBM Plex Sans", system-ui, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* — Geometry — */
  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;
  --maxw: 1240px;
  --gut:  clamp(20px, 5vw, 64px);

  --glow: 0 0 0 1px rgba(26,86,219,0.25), 0 8px 40px -8px rgba(26,86,219,0.25);
  --shadow: 0 24px 60px -28px rgba(18, 48, 92, 0.30);
  --shadow-sm: 0 2px 10px -4px rgba(18, 48, 92, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: clip;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient soft grid + light wash */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 70% at 50% -10%, #000 20%, transparent 65%);
          mask-image: radial-gradient(120% 70% at 50% -10%, #000 20%, transparent 65%);
  opacity: .6;
}
body::after {
  content: "";
  position: fixed;
  top: -25vh; left: 50%;
  width: 95vw; height: 75vh;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(26,86,219,0.07), transparent 70%);
  filter: blur(10px);
}

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

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { position: relative; z-index: 1; padding-block: clamp(72px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--mint), transparent);
}

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.06; letter-spacing: -0.02em; color: var(--ink); }
.h-xl { font-size: clamp(40px, 6.4vw, 76px); }
.h-lg { font-size: clamp(32px, 4.2vw, 52px); }
.h-md { font-size: clamp(24px, 2.6vw, 34px); }
.lede { color: var(--ink-2); font-size: clamp(17px, 1.5vw, 21px); max-width: 60ch; }
.muted { color: var(--ink-2); }
.mono { font-family: var(--f-mono); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head .h-lg { margin: 18px 0 16px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--mint); color: #fff; box-shadow: 0 10px 26px -10px rgba(26,86,219,0.6); }
.btn--primary:hover { transform: translateY(-2px); background: var(--mint-deep); box-shadow: 0 16px 34px -10px rgba(26,86,219,0.65); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--mint); color: var(--mint); transform: translateY(-2px); }
.btn--wa { background: #25a55a; color: #fff; border: 1px solid transparent; box-shadow: 0 10px 26px -10px rgba(37,165,90,0.5); }
.btn--wa:hover { background: #1f8f4d; transform: translateY(-2px); }
.btn--lg { padding: 17px 30px; font-size: 17.5px; }
.btn--block { width: 100%; justify-content: center; }

.linkarrow { display: inline-flex; align-items: center; gap: 8px; color: var(--mint); font-family: var(--f-mono); font-size: 13.5px; letter-spacing: 0.02em; font-weight: 500; }
.linkarrow svg { width: 15px; height: 15px; transition: transform .2s; }
.linkarrow:hover svg { transform: translateX(4px); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  position: relative; z-index: 60;
  border-bottom: 1px solid var(--line-2);
  background: var(--bg-2);
  font-size: 13px;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 42px; }
.topbar-left { display: flex; align-items: center; gap: 18px; color: var(--ink-2); }
.topbar-badges { display: flex; align-items: center; gap: 14px; }
.tb-badge { font-family: var(--f-mono); font-size: 11px; letter-spacing: .04em; color: var(--ink-2); display: inline-flex; align-items: center; gap: 7px; }
.tb-badge b { color: var(--gold); font-weight: 600; }
.tb-badge.silver b { color: #5b6b85; }
.topbar-right { display: flex; align-items: center; gap: 18px; color: var(--ink-2); }
.topbar-right a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar-right a:hover { color: var(--mint); }
.topbar-right svg { width: 14px; height: 14px; color: var(--mint); }
@media (max-width: 880px) { .topbar { display: none; } }

/* ============================================================
   HEADER / NAV + MEGA MENU
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line-2);
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.header.scrolled { background: rgba(255,255,255,0.96); border-color: var(--line); box-shadow: 0 8px 30px -18px rgba(18,48,92,.25); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { height: 34px; width: auto; display: block; }
.drawer-head .brand-logo { height: 30px; }
.footer .brand-logo { height: 36px; background: #fff; padding: 9px 14px; border-radius: 11px; }
@media (max-width: 480px){ .brand-logo { height: 28px; } }
.brand-mark {
  width: 42px; height: 42px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--mint), var(--mint-deep));
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px -8px rgba(26,86,219,.55);
}
.brand-mark svg { width: 23px; height: 23px; color: #fff; position: relative; z-index: 1; }
.brand-mark::after { content:""; position:absolute; inset:0; background: radial-gradient(60% 60% at 30% 15%, rgba(255,255,255,.35), transparent); }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-txt b { font-family: var(--f-display); font-weight: 600; font-size: 17.5px; letter-spacing: -0.01em; color: var(--ink); }
.brand-txt span { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.26em; color: var(--ink-3); text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 9px;
  font-size: 15px; color: var(--ink-2); font-weight: 500;
  transition: color .2s, background .2s;
}
.nav-link svg { width: 13px; height: 13px; opacity: .55; transition: transform .25s; }
.nav-item:hover .nav-link { color: var(--mint); background: var(--surface-2); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.mega {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0; visibility: hidden;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 14px;
  transition: opacity .2s ease, transform .22s ease, visibility .2s;
  z-index: 70;
}
.mega::before { content:""; position:absolute; top:-12px; left:0; right:0; height:12px; }
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; gap: 4px; }
.mega--cols2 { width: 560px; }
.mega--cols2 .mega-grid { grid-template-columns: 1fr 1fr; }
.mega--cols3 { width: 760px; }
.mega--cols3 .mega-grid { grid-template-columns: repeat(3, 1fr); }
.mega--single { width: 300px; }
.mega-link {
  display: flex; gap: 12px; padding: 11px 12px; border-radius: 11px;
  transition: background .18s; align-items: flex-start;
}
.mega-link:hover { background: var(--surface-2); }
.mega-ico { width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px; background: var(--surface-2); border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--mint); }
.mega-link:hover .mega-ico { background: var(--mint); border-color: transparent; color: #fff; }
.mega-ico svg { width: 17px; height: 17px; }
.mega-txt b { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); font-family: var(--f-body); }
.mega-txt span { font-size: 12.5px; color: var(--ink-3); }
.mega-foot { margin-top: 8px; padding: 14px; border-radius: 13px; background: var(--surface-2); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.mega-foot p { font-size: 13px; color: var(--ink-2); }
.mega-foot b { color: var(--ink); font-family: var(--f-display); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.burger { display: none; width: 46px; height: 46px; border-radius: 11px; border: 1.5px solid var(--mint); background: var(--mint-soft); color: var(--mint-deep); place-items: center; flex-shrink: 0; transition: background .15s, color .15s; }
.burger:hover, .burger:active { background: var(--mint); color: #fff; }
.burger svg { width: 22px; height: 22px; stroke-width: 2.5; }

@media (max-width: 1080px) {
  .nav-menu, .nav-cta .btn--ghost { display: none; }
  .burger { display: grid; }
}
@media (max-width: 520px) {
  .nav { gap: 12px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn--primary { padding: 11px 16px; font-size: 14px; }
  .nav-cta .btn--primary svg { display: none; }
}
@media (max-width: 380px) {
  .nav-cta .btn--primary { display: none; }
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.drawer { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(15,33,67,0.45); opacity: 0; transition: opacity .3s; }
.drawer.open .drawer-scrim { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 90vw); background: #fff; border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1); overflow-y: auto; padding: 22px; box-shadow: var(--shadow); }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.drawer-close { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--ink); display: grid; place-items: center; }
.drawer-close svg { width: 18px; height: 18px; }
.acc-item { border-bottom: 1px solid var(--line-2); }
.acc-head { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 16px 4px; background: none; border: none; color: var(--ink); font-family: var(--f-display); font-size: 17px; font-weight: 600; }
.acc-head svg { width: 18px; height: 18px; color: var(--mint); transition: transform .25s; }
.acc-item.open .acc-head svg { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-body-inner { padding: 0 4px 14px; display: flex; flex-direction: column; gap: 2px; }
.acc-body-inner a { padding: 9px 12px; border-radius: 9px; color: var(--ink-2); font-size: 15px; }
.acc-body-inner a:hover { background: var(--surface-2); color: var(--mint); }
.drawer-cta { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; z-index: 1; padding-block: clamp(60px, 8vw, 104px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 7px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 13px; color: var(--ink-2); margin-bottom: 26px; box-shadow: var(--shadow-sm); }
.hero-tag .pill { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; background: var(--grn-soft); color: var(--grn); font-weight: 500; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .accent { color: var(--mint); position: relative; }
.hero-lede { margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px 40px; padding-top: 30px; border-top: 1px solid var(--line-2); }
.hero-stat b { font-family: var(--f-display); font-size: 34px; font-weight: 600; display: block; letter-spacing: -0.02em; color: var(--ink); }
.hero-stat b .u { color: var(--mint); }
.hero-stat span { font-size: 13px; color: var(--ink-3); font-family: var(--f-mono); letter-spacing: .01em; }

/* Hero console visual */
.console {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.console-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--line-2); background: var(--surface-2); }
.console-dots { display: flex; gap: 6px; }
.console-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-3); display: block; }
.console-dots i:first-child { background: #ff5f57; } .console-dots i:nth-child(2){ background:#febc2e;} .console-dots i:nth-child(3){background:#28c840;}
.console-title { font-family: var(--f-mono); font-size: 12px; color: var(--ink-3); margin-left: 6px; }
.console-live { margin-left: auto; font-family: var(--f-mono); font-size: 11px; color: var(--grn); display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.console-live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grn); box-shadow: 0 0 0 0 rgba(14,159,110,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(14,159,110,.5);} 70%{box-shadow:0 0 0 8px rgba(14,159,110,0);} 100%{box-shadow:0 0 0 0 rgba(14,159,110,0);} }
.console-body { padding: 20px; display: grid; gap: 14px; }
.cstat { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 14px; border-radius: 13px; background: var(--surface-2); border: 1px solid var(--line-2); }
.cstat-ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--mint-soft); color: var(--mint); }
.cstat-ico svg { width: 19px; height: 19px; }
.cstat-ico.warn { background: rgba(226,61,61,.10); color: var(--danger); }
.cstat-ico.cyan { background: rgba(8,145,178,.10); color: var(--cyan); }
.cstat-txt b { font-size: 14px; display: block; font-family: var(--f-body); font-weight: 600; color: var(--ink); }
.cstat-txt span { font-size: 12px; color: var(--ink-3); font-family: var(--f-mono); }
.cstat-val { font-family: var(--f-mono); font-size: 13px; color: var(--grn); font-weight: 600; }
.cstat-val.warn { color: var(--danger); }
.cbar { height: 6px; border-radius: 6px; background: var(--surface-3); overflow: hidden; }
.cbar i { display: block; height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--mint), var(--grn)); animation: grow 1.6s cubic-bezier(.4,0,.2,1) forwards; transform-origin: left; }
@keyframes grow { from { transform: scaleX(0); } }
.console-foot { padding: 14px 20px; border-top: 1px solid var(--line-2); display: flex; align-items: center; justify-content: space-between; font-family: var(--f-mono); font-size: 11.5px; color: var(--ink-3); background: var(--surface-2); }
.console-foot b { color: var(--grn); }

/* blueprint corner ticks */
.ticks::before, .ticks::after { content:""; position:absolute; width:14px; height:14px; border-color: var(--mint); opacity:.35; z-index: 2; }
.ticks::before { top:10px; left:10px; border-top:1.5px solid; border-left:1.5px solid; }
.ticks::after { bottom:10px; right:10px; border-bottom:1.5px solid; border-right:1.5px solid; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}

/* ============================================================
   MARQUEE / PARTNERS
   ============================================================ */
.marquee { border-block: 1px solid var(--line-2); padding-block: 26px; position: relative; z-index: 1; background: var(--bg-2); }
.marquee-label { text-align: center; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; }
.marquee-track { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.brand-chip {
  font-family: var(--f-display); font-weight: 600; font-size: 17px;
  letter-spacing: -0.01em;
  padding: 12px 22px; border-radius: 10px;
  border: 1px solid var(--line-2); background: #fff;
  color: var(--ink-2);
  transition: color .2s, border-color .2s, transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 9px;
  box-shadow: var(--shadow-sm);
}
.brand-chip:hover { color: var(--ink); border-color: var(--mint); transform: translateY(-2px); }
.brand-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }

/* ============================================================
   PROCESS / SERVICE MODEL
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; counter-reset: step; }
.pstep { position: relative; padding: 22px 18px; border-radius: var(--r); border: 1px solid var(--line-2); background: #fff; transition: border-color .25s, transform .25s, box-shadow .25s; box-shadow: var(--shadow-sm); }
.pstep:hover { border-color: var(--mint); transform: translateY(-4px); box-shadow: 0 18px 36px -20px rgba(26,86,219,.45); }
.pstep-num { font-family: var(--f-mono); font-size: 12px; color: var(--mint); letter-spacing: .06em; font-weight: 500; }
.pstep-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--mint-soft); display: grid; place-items: center; color: var(--mint); margin: 14px 0 16px; }
.pstep-ico svg { width: 20px; height: 20px; }
.pstep b { font-family: var(--f-display); font-weight: 600; font-size: 18px; display: block; margin-bottom: 7px; color: var(--ink); }
.pstep p { font-size: 13.5px; color: var(--ink-3); line-height: 1.5; }
.pstep .connector { position: absolute; top: 50%; right: -14px; width: 14px; height: 2px; background: var(--line); z-index: 2; }
@media (max-width: 1080px){ .process-grid { grid-template-columns: repeat(3, 1fr); } .pstep .connector { display:none; } }
@media (max-width: 620px){ .process-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-card {
  position: relative; padding: 26px 24px 24px; border-radius: var(--r);
  border: 1px solid var(--line-2); background: #fff;
  overflow: hidden; transition: border-color .25s, transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; min-height: 210px;
  box-shadow: var(--shadow-sm);
}
.svc-card::after { content:""; position:absolute; left:0; right:0; bottom:0; height:3px; background: linear-gradient(90deg, var(--mint), var(--grn)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.svc-card:hover { border-color: var(--mint); transform: translateY(-5px); box-shadow: 0 22px 44px -24px rgba(26,86,219,.4); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--mint-soft); display: grid; place-items: center; color: var(--mint); margin-bottom: 18px; position: relative; z-index: 1; transition: background .25s, color .25s; }
.svc-card:hover .svc-ico { background: var(--mint); color: #fff; }
.svc-ico svg { width: 23px; height: 23px; }
.svc-card h3 { font-size: 19px; margin-bottom: 8px; position: relative; z-index: 1; }
.svc-card p { font-size: 14px; color: var(--ink-3); line-height: 1.55; position: relative; z-index: 1; flex: 1; }
.svc-card .svc-more { margin-top: 16px; position: relative; z-index: 1; opacity: 0; transform: translateY(4px); transition: opacity .25s, transform .25s; }
.svc-card:hover .svc-more { opacity: 1; transform: translateY(0); }
.svc-tag { position: absolute; top: 18px; right: 18px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .04em; color: var(--ink-3); z-index: 1; }
@media (max-width: 1080px){ .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .svc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PARTNER SPOTLIGHT (Avast / Kaspersky)
   ============================================================ */
.spotlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.spot {
  position: relative; border-radius: var(--r-lg); padding: 36px;
  border: 1px solid var(--line); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm);
}
.spot::before { content:""; position:absolute; top:0; left:0; right:0; height:5px; background: var(--spot-accent); }
.spot.avast { --spot-accent: linear-gradient(90deg, #ff7a00, #ffb300); }
.spot.kasp  { --spot-accent: linear-gradient(90deg, #0891b2, #19b3da); }
.spot-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; position: relative; z-index: 1; }
.spot-brand { font-family: var(--f-display); font-size: 26px; font-weight: 600; color: var(--ink); }
.spot-tier { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; border: 1px solid; font-weight: 500; }
.spot-tier.gold { color: #9a6b00; border-color: rgba(184,134,11,.35); background: rgba(184,134,11,.08); }
.spot-tier.silver { color: #54627a; border-color: rgba(84,98,122,.28); background: rgba(84,98,122,.06); }
.spot p.spot-desc { color: var(--ink-2); font-size: 15px; margin-bottom: 22px; position: relative; z-index: 1; }
.spot-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 18px; margin-bottom: 26px; position: relative; z-index: 1; }
.spot-list li { list-style: none; font-size: 13.5px; color: var(--ink-2); display: flex; align-items: center; gap: 9px; }
.spot-list svg { width: 15px; height: 15px; color: var(--grn); flex-shrink: 0; }
.spot-actions { display: flex; gap: 12px; position: relative; z-index: 1; flex-wrap: wrap; }
@media (max-width: 860px){ .spotlight-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SCENARIOS
   ============================================================ */
.scn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.scn {
  position: relative; border-radius: var(--r); border: 1px solid var(--line-2);
  background: #fff; padding: 26px 24px; overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s; box-shadow: var(--shadow-sm);
}
.scn:hover { transform: translateY(-4px); border-color: var(--mint); box-shadow: 0 20px 40px -24px rgba(26,86,219,.4); }
.scn-idx { font-family: var(--f-mono); font-size: 12px; color: var(--ink-3); letter-spacing: .06em; }
.scn-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin: 16px 0 16px; color: var(--mint); background: var(--mint-soft); }
.scn-ico svg { width: 22px; height: 22px; }
.scn h3 { font-size: 19px; margin-bottom: 9px; }
.scn p { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; margin-bottom: 16px; }
.scn-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .02em; padding: 5px 10px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line-2); color: var(--ink-2); }
@media (max-width: 980px){ .scn-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .scn-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHY / DIFFERENTIATORS  (split feature)
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.why-list { display: grid; gap: 14px; }
.why-row { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 20px; border-radius: var(--r); border: 1px solid var(--line-2); background: #fff; transition: border-color .25s, transform .2s, box-shadow .25s; box-shadow: var(--shadow-sm); }
.why-row:hover { border-color: var(--mint); transform: translateX(4px); box-shadow: 0 14px 30px -20px rgba(26,86,219,.4); }
.why-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--mint-soft); display: grid; place-items: center; color: var(--mint); }
.why-ico svg { width: 23px; height: 23px; }
.why-row b { font-family: var(--f-display); font-weight: 600; font-size: 18px; display: block; margin-bottom: 5px; color: var(--ink); }
.why-row p { font-size: 14px; color: var(--ink-3); line-height: 1.5; }

.stat-card { border-radius: var(--r-lg); border: 1px solid var(--line); background: linear-gradient(160deg, #0f2143, #1a3566); padding: 34px; color: #fff; box-shadow: var(--shadow); }
.stat-card .eyebrow { margin-bottom: 22px; color: #7fb0ff; }
.stat-card .eyebrow::before { background: linear-gradient(90deg, #7fb0ff, transparent); }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; }
.bigstat b { font-family: var(--f-display); font-size: clamp(38px, 5vw, 52px); font-weight: 600; letter-spacing: -0.03em; display: block; color: #fff; }
.bigstat b .u { color: #54d6a3; }
.bigstat span { font-size: 13.5px; color: #b9c8e4; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post { border-radius: var(--r); border: 1px solid var(--line-2); background: #fff; overflow: hidden; transition: transform .25s, border-color .25s, box-shadow .25s; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.post:hover { transform: translateY(-5px); border-color: var(--mint); box-shadow: 0 22px 44px -24px rgba(26,86,219,.35); }
.post-img { aspect-ratio: 16/9; position: relative; background: linear-gradient(135deg, var(--surface-3), #dbe7f7); overflow: hidden; border-bottom: 1px solid var(--line-2); }
.post-img .grid-ov { position: absolute; inset: 0; background-image: linear-gradient(rgba(26,86,219,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(26,86,219,.07) 1px, transparent 1px); background-size: 24px 24px; }
.post-img .glyph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--mint); opacity: .55; }
.post-img .glyph svg { width: 52px; height: 52px; }
.post-cat { position: absolute; top: 14px; left: 14px; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--mint); font-weight: 500; box-shadow: var(--shadow-sm); }
.post-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-family: var(--f-mono); font-size: 11.5px; color: var(--ink-3); margin-bottom: 12px; display: flex; gap: 10px; }
.post-body h3 { font-size: 19px; line-height: 1.25; margin-bottom: 10px; }
.post-body p { font-size: 13.5px; color: var(--ink-3); line-height: 1.5; flex: 1; margin-bottom: 16px; }
@media (max-width: 980px){ .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BAND
   ============================================================ */
.ctaband { position: relative; z-index: 1; }
.ctaband-inner {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #14306b, #1a56db 70%);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  box-shadow: var(--shadow);
}
.ctaband-inner::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 40px 40px; -webkit-mask-image: radial-gradient(70% 100% at 50% 0%, #000, transparent); mask-image: radial-gradient(70% 100% at 50% 0%, #000, transparent); }
.ctaband-inner > * { position: relative; z-index: 1; }
.ctaband-inner .eyebrow { color: #aecbff; }
.ctaband-inner .eyebrow::before { background: linear-gradient(90deg, #aecbff, transparent); }
.ctaband h2 { margin: 16px auto 18px; max-width: 16ch; color: #fff; }
.ctaband .lede { margin: 0 auto 32px; color: #d4e1fb; }
.ctaband .hero-actions { justify-content: center; margin-bottom: 0; }
.ctaband .btn--primary { background: #fff; color: var(--mint); }
.ctaband .btn--primary:hover { background: #eef3ff; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 56px); align-items: start; }
.contact-info .h-lg { margin: 16px 0 18px; }
.ci-list { display: grid; gap: 14px; margin: 30px 0; }
.ci-row { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding: 16px; border-radius: var(--r); border: 1px solid var(--line-2); background: #fff; transition: border-color .2s, box-shadow .2s; box-shadow: var(--shadow-sm); }
.ci-row:hover { border-color: var(--mint); }
.ci-ico { width: 44px; height: 44px; border-radius: 11px; background: var(--mint-soft); display: grid; place-items: center; color: var(--mint); }
.ci-ico svg { width: 20px; height: 20px; }
.ci-row b { display: block; font-size: 12px; font-family: var(--f-mono); letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 2px; }
.ci-row span { font-size: 15.5px; color: var(--ink); }
.ci-trust { display: flex; gap: 10px; flex-wrap: wrap; }

.form-card { border-radius: var(--r-lg); border: 1px solid var(--line); background: #fff; padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-family: var(--f-mono); letter-spacing: .01em; color: var(--ink-2); }
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 15px;
  padding: 13px 15px; border-radius: 10px;
  background: var(--bg-2); border: 1px solid var(--line);
  color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--mint); background: #fff; box-shadow: 0 0 0 3px var(--mint-soft); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238190a8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field.error input, .field.error select, .field.error textarea { border-color: var(--danger); }
.field .err-msg { font-size: 12px; color: var(--danger); font-family: var(--f-mono); display: none; }
.field.error .err-msg { display: block; }

.kvkk { grid-column: 1/-1; display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.kvkk input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; accent-color: var(--mint); }
.kvkk a { color: var(--mint); text-decoration: underline; }
.kvkk .req { color: var(--danger); }
.form-submit { grid-column: 1/-1; }
.form-note { grid-column: 1/-1; font-family: var(--f-mono); font-size: 12px; color: var(--ink-3); text-align: center; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success .sx-ico { width: 72px; height: 72px; border-radius: 50%; background: var(--grn-soft); border: 1px solid rgba(14,159,110,.3); display: grid; place-items: center; color: var(--grn); margin: 0 auto 22px; }
.form-success .sx-ico svg { width: 34px; height: 34px; }
.form-success h3 { font-size: 26px; margin-bottom: 12px; }
.form-success p { color: var(--ink-2); max-width: 40ch; margin: 0 auto; }

@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--line); background: #0f2143; color: #c2d0e8; padding-top: 64px; }
.footer .brand-txt b { color: #fff; }
.footer .brand-txt span { color: #7d8fb0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { color: #93a4c4; font-size: 14px; margin: 18px 0 22px; max-width: 32ch; line-height: 1.6; }
.foot-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer .spot-tier.gold { color: #f0c14b; border-color: rgba(240,193,75,.35); background: rgba(240,193,75,.1); }
.footer .spot-tier.silver { color: #c5d0e2; border-color: rgba(197,208,226,.28); background: rgba(197,208,226,.08); }
.foot-col h4 { font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #7d8fb0; margin-bottom: 18px; font-weight: 500; }
.foot-col ul { list-style: none; display: grid; gap: 11px; }
.foot-col a { color: #b3c2dd; font-size: 14px; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.footer-bot { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 26px; flex-wrap: wrap; }
.footer-bot p { font-size: 13px; color: #7d8fb0; font-family: var(--f-mono); }
.footer-bot .social { display: flex; gap: 10px; }
.footer-bot .social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); display: grid; place-items: center; color: #b3c2dd; transition: all .2s; }
.footer-bot .social a:hover { color: #fff; border-color: var(--mint); background: var(--mint); }
.footer-bot .social svg { width: 17px; height: 17px; }
@media (max-width: 880px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px){ .footer-top { grid-template-columns: 1fr; } }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 58px; height: 58px; border-radius: 50%; background: #25a55a; display: grid; place-items: center; color: #fff; box-shadow: 0 14px 34px -8px rgba(37,165,90,.6); transition: transform .2s; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 28px; height: 28px; }
.fab::after { content:""; position:absolute; inset:0; border-radius:50%; border:2px solid #25a55a; animation: ring 2.4s ease-out infinite; }
@keyframes ring { 0%{transform:scale(1); opacity:.7;} 100%{transform:scale(1.6); opacity:0;} }

/* ============================================================
   CLOUD SERVICES (navy flagship band)
   ============================================================ */
.cloud { position: relative; z-index: 1; background: linear-gradient(165deg, #0f2143 0%, #16315f 55%, #122a52 100%); color: #fff; overflow: hidden; }
.cloud::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 56px 56px; -webkit-mask-image: radial-gradient(100% 70% at 70% 0%, #000, transparent 75%); mask-image: radial-gradient(100% 70% at 70% 0%, #000, transparent 75%); }
.cloud::after { content:""; position:absolute; top:-30%; right:-10%; width:55%; height:120%; background: radial-gradient(50% 50% at 50% 50%, rgba(84,214,163,.16), transparent 70%); pointer-events:none; }
.cloud .wrap { position: relative; z-index: 1; }
.cloud .section-head .h-lg, .cloud .lede { color: #fff; }
.cloud .lede { color: #cdd9f0; }
.cloud .eyebrow { color: #7fb0ff; }
.cloud .eyebrow::before { background: linear-gradient(90deg, #7fb0ff, transparent); }

.cloud-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cloudcard {
  position: relative; padding: 24px 22px; border-radius: var(--r);
  background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  transition: transform .25s, border-color .25s, background .25s;
  display: flex; flex-direction: column; min-height: 188px;
}
.cloudcard:hover { transform: translateY(-5px); background: rgba(255,255,255,0.09); border-color: rgba(127,176,255,0.6); }
.cloud-tag { position: absolute; top: 18px; right: 18px; font-family: var(--f-mono); font-size: 10px; color: rgba(255,255,255,0.4); }
.cloudcard-ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(127,176,255,0.16); display: grid; place-items: center; color: #9ec4ff; margin-bottom: 16px; transition: background .25s, color .25s; }
.cloudcard:hover .cloudcard-ico { background: #4c7dff; color: #fff; }
.cloudcard-ico svg { width: 23px; height: 23px; }
.cloudcard h3 { font-size: 18px; margin-bottom: 7px; color: #fff; }
.cloudcard p { font-size: 13.5px; color: #aebdd9; line-height: 1.5; flex: 1; }

.cloud-private { margin-top: 22px; border-radius: var(--r-lg); border: 1px solid rgba(255,255,255,0.13); background: rgba(255,255,255,0.04); padding: 28px 30px; display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center; }
.cloud-private-head h4 { font-size: 19px; color: #fff; margin-bottom: 4px; }
.cloud-private-head p { font-size: 13px; color: #aebdd9; font-family: var(--f-mono); }
.priv-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.priv-chip { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.13); font-family: var(--f-display); font-weight: 600; font-size: 15px; color: #fff; transition: border-color .2s, background .2s; }
.priv-chip:hover { border-color: rgba(127,176,255,0.6); background: rgba(255,255,255,0.1); }
.priv-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: #54d6a3; }
.cloud-private .btn--primary { background: #fff; color: var(--mint); }
.cloud-private .btn--primary:hover { background: #eef3ff; }
@media (max-width: 1080px){ .cloud-grid { grid-template-columns: repeat(2, 1fr); } .cloud-private { grid-template-columns: 1fr; gap: 20px; text-align: left; } }
@media (max-width: 560px){ .cloud-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICE PAGES
   ============================================================ */
.breadcrumb { position: relative; z-index: 1; padding-top: 26px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 9px; font-family: var(--f-mono); font-size: 12.5px; color: var(--ink-3); }
.breadcrumb a { color: var(--ink-3); transition: color .2s; }
.breadcrumb a:hover { color: var(--mint); }
.breadcrumb li[aria-current] { color: var(--mint); }
.breadcrumb svg { width: 13px; height: 13px; opacity: .5; }

.svc-hero { padding-block: clamp(40px, 5vw, 64px) clamp(56px, 7vw, 90px); }
.benefit-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.benefit-chips span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 13.5px; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.benefit-chips svg { width: 15px; height: 15px; color: var(--grn); }

/* checklist hero card */
.check-card { border-radius: var(--r-lg); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.check-card-head { padding: 18px 22px; border-bottom: 1px solid var(--line-2); background: var(--surface-2); display: flex; align-items: center; gap: 12px; }
.check-card-head .cc-ico { width: 38px; height: 38px; border-radius: 10px; background: var(--mint); color: #fff; display: grid; place-items: center; }
.check-card-head .cc-ico svg { width: 20px; height: 20px; }
.check-card-head b { font-family: var(--f-display); font-size: 16px; }
.check-card-head span { font-family: var(--f-mono); font-size: 11px; color: var(--ink-3); display: block; }
.check-card-body { padding: 14px 22px 20px; display: grid; gap: 2px; }
.check-row { display: flex; align-items: center; gap: 13px; padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.check-row:last-child { border-bottom: none; }
.check-row .ck { width: 24px; height: 24px; border-radius: 50%; background: var(--grn-soft); color: var(--grn); display: grid; place-items: center; flex-shrink: 0; }
.check-row .ck svg { width: 14px; height: 14px; }
.check-row span { font-size: 14.5px; color: var(--ink); }
.check-row em { margin-left: auto; font-family: var(--f-mono); font-size: 11px; color: var(--ink-3); font-style: normal; }

/* feature checklist (2-col) */
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.feature-list li { list-style: none; display: flex; gap: 13px; }
.feature-list .fl-ico { width: 26px; height: 26px; border-radius: 7px; background: var(--mint-soft); color: var(--mint); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.feature-list .fl-ico svg { width: 15px; height: 15px; }
.feature-list b { display: block; font-size: 15.5px; color: var(--ink); font-family: var(--f-body); font-weight: 600; margin-bottom: 2px; }
.feature-list p { font-size: 13.5px; color: var(--ink-3); line-height: 1.5; }
@media (max-width: 700px){ .feature-list { grid-template-columns: 1fr; } }

/* split overview */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.split.rev { grid-template-columns: 0.9fr 1.1fr; }
@media (max-width: 880px){ .split, .split.rev { grid-template-columns: 1fr; } }

/* audience pills */
.audience { display: flex; flex-wrap: wrap; gap: 10px; }
.audience span { padding: 9px 16px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line-2); font-size: 14px; color: var(--ink-2); }

/* FAQ */
.faq { display: grid; gap: 12px; max-width: 860px; }
.faq-item { border: 1px solid var(--line-2); border-radius: var(--r); background: #fff; overflow: hidden; transition: border-color .2s, box-shadow .2s; box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--mint); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; background: none; border: none; text-align: left; font-family: var(--f-display); font-weight: 600; font-size: 17.5px; color: var(--ink); }
.faq-q .fq-ico { width: 28px; height: 28px; border-radius: 8px; background: var(--mint-soft); color: var(--mint); display: grid; place-items: center; flex-shrink: 0; transition: transform .25s, background .25s, color .25s; }
.faq-q .fq-ico svg { width: 16px; height: 16px; }
.faq-item.open .fq-ico { transform: rotate(45deg); background: var(--mint); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 22px 22px; color: var(--ink-2); font-size: 15px; line-height: 1.6; }

/* related tech */
.related-chips { display: flex; flex-wrap: wrap; gap: 12px; }

/* compact mid CTA */
.midcta { border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface-2); padding: clamp(28px, 4vw, 44px); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.midcta h3 { font-size: clamp(22px, 2.4vw, 28px); margin-bottom: 8px; }
.midcta p { color: var(--ink-2); font-size: 15.5px; }
.midcta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 720px){ .midcta { grid-template-columns: 1fr; } }

/* ============================================================
   BRAND PAGES (Avast / Kaspersky)
   ============================================================ */
.brandhero { position: relative; overflow: hidden; padding-block: clamp(40px,5vw,60px) clamp(48px,6vw,80px); }
.brandhero .wrap { position: relative; z-index: 1; }
.brand-tier-row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.brand-wordmark { font-family: var(--f-display); font-weight: 700; font-size: clamp(34px,5vw,56px); letter-spacing: -0.02em; line-height: 1; }
.brand-wordmark.avast { color: #ff7a00; }
.brand-wordmark.kasp { color: #1aa260; }
.tier-badge-lg { font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; border: 1px solid; font-weight: 500; }
.tier-badge-lg.gold { color: #9a6b00; border-color: rgba(184,134,11,.4); background: rgba(184,134,11,.09); }
.tier-badge-lg.silver { color: #54627a; border-color: rgba(84,98,122,.3); background: rgba(84,98,122,.07); }
.brandhero h1 { margin-bottom: 22px; }
.brand-value { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 44px; }
.bv { padding: 20px; border-radius: var(--r); border: 1px solid var(--line-2); background: #fff; box-shadow: var(--shadow-sm); }
.bv-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--mint-soft); color: var(--mint); display: grid; place-items: center; margin-bottom: 14px; }
.bv-ico svg { width: 20px; height: 20px; }
.bv b { font-family: var(--f-display); font-size: 16px; display: block; margin-bottom: 5px; }
.bv p { font-size: 13px; color: var(--ink-3); line-height: 1.5; }
@media (max-width:900px){ .brand-value { grid-template-columns: 1fr 1fr; } }
@media (max-width:520px){ .brand-value { grid-template-columns: 1fr; } }

.product { border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 18px; transition: box-shadow .25s, border-color .25s; }
.product:hover { box-shadow: var(--shadow); border-color: var(--line); }
.product-top { height: 4px; background: var(--brand-accent, var(--mint)); }
.product.avast { --brand-accent: linear-gradient(90deg,#ff7a00,#ffb300); }
.product.kasp { --brand-accent: linear-gradient(90deg,#1aa260,#37c98a); }
.product-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 26px 28px; }
.product-head .ph-left { display: flex; gap: 16px; align-items: flex-start; }
.product-ico { width: 52px; height: 52px; flex-shrink: 0; border-radius: 13px; background: var(--surface-2); border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--mint); }
.product-ico svg { width: 26px; height: 26px; }
.product-title h3 { font-size: 22px; margin-bottom: 4px; }
.product-title p { font-size: 14px; color: var(--ink-3); }
.product-num { font-family: var(--f-mono); font-size: 12px; color: var(--ink-3); padding-top: 6px; }
.product-desc { padding: 0 28px 22px; color: var(--ink-2); font-size: 15px; line-height: 1.6; max-width: 75ch; }
.product-cols { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-2); }
.product-col { padding: 22px 28px; border-right: 1px solid var(--line-2); }
.product-col:last-child { border-right: none; }
.product-col h5 { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--mint); margin-bottom: 14px; font-weight: 500; }
.product-col ul { list-style: none; display: grid; gap: 9px; }
.product-col li { display: flex; gap: 9px; font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }
.product-col li svg { width: 15px; height: 15px; color: var(--grn); flex-shrink: 0; margin-top: 3px; }
.product-col.aud li svg { color: var(--mint); }
.product-foot { padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--surface-2); border-top: 1px solid var(--line-2); flex-wrap: wrap; }
.product-foot span { font-size: 13.5px; color: var(--ink-2); font-family: var(--f-mono); }
@media (max-width: 860px){ .product-cols { grid-template-columns: 1fr; } .product-col { border-right: none; border-bottom: 1px solid var(--line-2); } .product-col:last-child { border-bottom: none; } }

/* ===== Blog posts ===== */
.article-hero { padding: clamp(40px,5vw,64px) 0 clamp(20px,3vw,28px); border-bottom: 1px solid var(--line-2); position: relative; z-index: 1; }
.article-hero .eyebrow { margin-bottom: 14px; }
.article-hero h1 { font-size: clamp(28px,4.2vw,46px); max-width: 22ch; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 18px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 14px 22px; font-family: var(--f-mono); font-size: 13px; color: var(--ink-3); }
.article-meta b { color: var(--ink-2); font-weight: 500; }
.article-body { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; padding-top: 40px; font-size: 17.5px; line-height: 1.75; color: var(--ink); }
.article-body p { margin-bottom: 18px; color: var(--ink-2); }
.article-body h2 { font-size: clamp(22px,2.6vw,30px); margin: 40px 0 14px; letter-spacing: -0.01em; }
.article-body h3 { font-size: 20px; margin: 26px 0 10px; }
.article-body ul, .article-body ol { margin: 0 0 22px 22px; }
.article-body li { margin-bottom: 8px; color: var(--ink-2); }
.article-body strong { color: var(--ink); }
.article-body a { color: var(--mint-deep); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--mint); }
.article-callout { background: var(--mint-soft); border: 1px solid rgba(22,164,138,.22); border-radius: 14px; padding: 22px 24px; margin: 28px 0; }
.article-callout b { display: block; font-family: var(--f-display); font-size: 16px; margin-bottom: 6px; color: var(--ink); }
.article-callout p { font-size: 14.5px; color: var(--ink); margin: 0; }
.article-cta-box { margin: 40px 0; padding: 30px; border-radius: 16px; background: linear-gradient(135deg, #0f2a3d, #1a4258); color: #fff; text-align: center; }
.article-cta-box h3 { color: #fff; font-size: 22px; margin-bottom: 10px; font-family: var(--f-display); }
.article-cta-box p { color: rgba(255,255,255,0.78); margin-bottom: 18px; font-size: 15px; }
.blog-listing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px){ .blog-listing { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .blog-listing { grid-template-columns: 1fr; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .06s; } .reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .18s; } .reveal.d4 { transition-delay: .24s; }
.reveal.d5 { transition-delay: .30s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .cbar i { animation: none; transform: none; } }
