/* ============================================================
   Bilgi Teknoloji Danışmanlık — Tasarım Sistemi
   Vibe: Beyaz zemin · Koyu lacivert · Mavi & Yeşil vurgu
   Tipografi: Manrope
   ============================================================ */

:root {
  /* Renkler */
  --navy: #0a1f44;
  --navy-800: #0e2a57;
  --navy-700: #163b6e;
  --ink: #0a1f44;
  --body: #475569;
  --muted: #64748b;
  --faint: #94a3b8;

  --blue: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-tint: #eff4ff;
  --blue-tint-2: #dbe6ff;

  --green: #16a34a;
  --green-600: #15803d;
  --green-tint: #e9f8ee;

  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-soft-2: #eef3f9;
  --border: #e4e9f0;
  --border-strong: #d4dbe6;

  --white: #ffffff;

  /* Radius */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 1px 2px rgba(10, 31, 68, 0.06), 0 1px 3px rgba(10, 31, 68, 0.04);
  --sh: 0 4px 16px rgba(10, 31, 68, 0.07), 0 1px 4px rgba(10, 31, 68, 0.05);
  --sh-lg: 0 18px 48px rgba(10, 31, 68, 0.12), 0 4px 14px rgba(10, 31, 68, 0.06);
  --sh-blue: 0 14px 34px rgba(29, 78, 216, 0.28);

  /* Layout */
  --container: 1200px;
  --gutter: 24px;

  --t: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--body);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
i[data-ic] { display: inline-flex; align-items: center; justify-content: center; flex: none; line-height: 0; }
i[data-ic] svg { width: 1.35em; height: 1.35em; }
image-slot { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; text-wrap: balance; }
p { text-wrap: pretty; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-navy { background: var(--navy); color: #c7d3e8; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; }
.eyebrow.green { color: var(--green); }
.eyebrow.green::before { background: var(--green); }
.eyebrow.light { color: #7fa9ff; }
.eyebrow.light::before { background: #7fa9ff; }

h1, .h1 { font-size: clamp(2.4rem, 4.6vw, 3.65rem); }
h2, .h2 { font-size: clamp(1.9rem, 3.2vw, 2.65rem); }
h3, .h3 { font-size: 1.3rem; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.27rem); line-height: 1.6; color: var(--body); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { margin-top: 16px; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 16px; line-height: 1;
  padding: 15px 26px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--sh-blue); }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(29,78,216,0.36); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 14px 34px rgba(22,163,74,0.26); }
.btn-green:hover { background: var(--green-600); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--sh); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.34); }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-lg { padding: 17px 32px; font-size: 17px; }
.btn-block { width: 100%; }
.btn-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--blue); }
.btn-link svg { width: 17px; height: 17px; transition: transform var(--t); }
.btn-link:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.86); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color var(--t), box-shadow var(--t);
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: 0 4px 20px rgba(10,31,68,0.05); }
.nav { display: flex; align-items: center; gap: 14px; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: linear-gradient(140deg, var(--blue) 0%, var(--navy) 100%);
  display: grid; place-items: center; box-shadow: 0 6px 16px rgba(29,78,216,0.32);
}
.brand-mark svg { width: 21px; height: 21px; color: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { color: var(--navy); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; white-space: nowrap; }
.brand-text span { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 600; font-size: 15.5px; color: var(--navy); padding: 9px 14px; border-radius: var(--r-sm);
  transition: background var(--t), color var(--t); position: relative;
}
.nav-links a:hover { background: var(--bg-soft); color: var(--blue); }
.nav-links a.active { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); font-size: 15px; padding: 8px 10px; white-space: nowrap; }
.nav-phone svg { width: 17px; height: 17px; color: var(--green); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1.5px solid var(--border-strong); background: #fff; border-radius: 11px; place-items: center; color: var(--navy); }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Nav dropdown ---------- */
.nav-item { position: relative; }
.nav-item::before { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 12px; }
.nav-drop-toggle { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; font-size: 15.5px; color: var(--navy); padding: 9px 14px; border-radius: var(--r-sm); background: none; border: none; transition: background var(--t), color var(--t); }
.nav-drop-toggle i[data-ic] svg { width: 15px; height: 15px; transition: transform var(--t); }
.nav-item:hover .nav-drop-toggle, .nav-item.open .nav-drop-toggle, .nav-item:focus-within .nav-drop-toggle { background: var(--bg-soft); color: var(--blue); }
.nav-item:hover .nav-drop-toggle i[data-ic] svg, .nav-item.open .nav-drop-toggle i[data-ic] svg { transform: rotate(90deg); }
.nav-dropdown { position: absolute; top: calc(100% + 10px); left: 0; width: 330px; background: #fff; border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--sh-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity var(--t), transform var(--t), visibility var(--t); z-index: 50; }
.nav-item:hover .nav-dropdown, .nav-item.open .nav-dropdown, .nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.nav-dropdown a { display: flex; align-items: center; gap: 13px; padding: 11px 12px; border-radius: 10px; transition: background var(--t); }
.nav-dropdown a:hover { background: var(--bg-soft); }
.nav-dropdown .nd-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.nav-dropdown .nd-ic.green { background: var(--green-tint); color: var(--green); }
.nav-dropdown .nd-ic svg { width: 19px; height: 19px; }
.nav-dropdown b { display: block; font-size: 14.5px; color: var(--navy); font-weight: 700; }
.nav-dropdown small { font-size: 12.5px; color: var(--muted); }
/* mobile sub-links */
.m-sub { display: flex; flex-direction: column; gap: 2px; padding: 4px 0 4px 12px; margin-left: 12px; border-left: 2px solid var(--border); }
.m-sub a { font-size: 16px; font-weight: 600; color: var(--body); padding: 9px 12px; border-radius: 8px; }
.m-sub a:hover { background: var(--bg-soft); color: var(--blue); }
.m-label { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); padding: 12px 12px 4px; }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: rgba(10,31,68,0.45);
  backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity var(--t), visibility var(--t);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(380px, 88vw);
  background: #fff; padding: 22px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); overflow-y: auto;
}
.mobile-menu.open .mobile-panel { transform: translateX(0); }
.mobile-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mobile-panel a.m-link { font-weight: 700; font-size: 18px; color: var(--navy); padding: 13px 12px; border-radius: 10px; }
.mobile-panel a.m-link:hover, .mobile-panel a.m-link:focus { background: var(--bg-soft); }
.mobile-divider { height: 1px; background: var(--border); margin: 12px 0; }
.mobile-foot { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 16px; }
.icon-btn { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 11px; border: 1.5px solid var(--border); background: #fff; color: var(--navy); }
.icon-btn svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--blue); }
.hero .lead { max-width: 560px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-assure { display: flex; flex-wrap: wrap; gap: 18px 26px; }
.assure-item { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--navy); }
.assure-item svg { width: 19px; height: 19px; color: var(--green); flex: none; }

/* soft background flourish */
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-bg .blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; }
.hero-bg .b1 { width: 460px; height: 460px; background: var(--blue-tint-2); top: -160px; right: -120px; }
.hero-bg .b2 { width: 360px; height: 360px; background: var(--green-tint); bottom: -150px; left: -110px; opacity: 0.7; }
.hero-bg .grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 46px 46px; opacity: 0.35;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 35%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 70% 35%, #000 0%, transparent 75%);
}

/* Hero visual panel (CSS dashboard mock) */
.hero-visual { position: relative; }
.shield-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); padding: 26px; position: relative; overflow: hidden;
}
.shield-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--blue), var(--green)); }
.sc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.sc-shield { width: 56px; height: 56px; border-radius: 16px; background: var(--blue-tint); display: grid; place-items: center; flex: none; }
.sc-shield svg { width: 30px; height: 30px; color: var(--blue); }
.sc-head h4 { font-size: 17px; color: var(--navy); }
.sc-head p { font-size: 13px; color: var(--muted); }
.sc-status { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--green); background: var(--green-tint); padding: 6px 11px; border-radius: var(--r-pill); }
.sc-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(22,163,74,0.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.45); } 70% { box-shadow: 0 0 0 8px rgba(22,163,74,0); } 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); } }
.sc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.sc-stat { background: var(--bg-soft); border-radius: var(--r); padding: 14px 16px; }
.sc-stat b { display: block; font-size: 26px; color: var(--navy); font-weight: 800; letter-spacing: -0.02em; }
.sc-stat span { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.sc-bars { display: flex; flex-direction: column; gap: 11px; }
.sc-bar { display: grid; grid-template-columns: 92px 1fr 36px; align-items: center; gap: 12px; font-size: 13px; }
.sc-bar span:first-child { color: var(--navy); font-weight: 600; }
.sc-bar .track { height: 7px; background: var(--bg-soft-2); border-radius: 99px; overflow: hidden; }
.sc-bar .fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--blue), var(--blue-500)); }
.sc-bar .fill.g { background: linear-gradient(90deg, var(--green), #34d07a); }
.sc-bar b { text-align: right; color: var(--navy); font-weight: 700; }

.hero-badge-float {
  position: absolute; background: #fff; border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--sh-lg); padding: 13px 16px; display: flex; align-items: center; gap: 12px;
}
.hero-badge-float svg { width: 26px; height: 26px; }
.hero-badge-float b { display: block; font-size: 14px; color: var(--navy); font-weight: 800; }
.hero-badge-float span { font-size: 12px; color: var(--muted); }
.hbf-1 { bottom: -22px; left: -28px; }
.hbf-2 { top: -22px; right: -18px; }

/* ---------- Partner / trust band ---------- */
.trust-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.trust-inner { display: flex; align-items: center; gap: 40px; padding: 28px 0; flex-wrap: wrap; }
.trust-label { font-size: 13.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; max-width: 160px; }
.partner-chips { display: flex; gap: 16px; flex-wrap: wrap; flex: 1; }
.partner-chip {
  display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 20px; box-shadow: var(--sh-sm); min-width: 240px; flex: 1;
}
.pc-logo { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none; font-weight: 800; color: #fff; font-size: 20px; }
.pc-logo.avast { background: linear-gradient(135deg, #ff7a00, #ff9d2e); }
.pc-logo.kasp { background: linear-gradient(135deg, #16a34a, #0f9d6c); }
.pc-logo.forti { background: linear-gradient(135deg, #da291c, #ee4d3d); }
.partner-chip b { display: block; color: var(--navy); font-size: 16px; font-weight: 800; }
.partner-chip .tier { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; margin-top: 2px; }
.tier.gold { color: #b8791a; }
.tier.silver { color: #6b7280; }
.tier.fortinet { color: #d62b1f; }
.eyebrow.red { color: #d62b1f; }
.eyebrow.red::before { background: #d62b1f; }
.card-icon.red { background: #fdeceb; color: #d62b1f; }
.nd-ic.red { background: #fdeceb; color: #d62b1f; }
.tag.red { background: #fdeceb; color: #d62b1f; }
.fr-icon.red, .feature-row.red .fr-icon { background: #fdeceb; color: #d62b1f; }
.tier .medal { width: 14px; height: 14px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; height: 100%;
}
.card.hover:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--border-strong); }
.card-icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--blue-tint); color: var(--blue);
}
.card-icon svg { width: 27px; height: 27px; }
.card-icon.green { background: var(--green-tint); color: var(--green); }
.card-icon.navy { background: var(--navy); color: #fff; }
.card h3 { font-size: 1.22rem; margin-bottom: 11px; }
.card p { font-size: 15.5px; line-height: 1.6; }
.card .card-list { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.card-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--navy); font-weight: 500; }
.card-list svg { width: 18px; height: 18px; color: var(--green); flex: none; margin-top: 1px; }
.card-foot { margin-top: 20px; }

/* product card */
.prod-card { display: flex; flex-direction: column; }
.prod-card .tag { display: inline-flex; align-items: center; gap: 7px; align-self: flex-start; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 11px; border-radius: var(--r-pill); margin-bottom: 16px; }
.tag.blue { background: var(--blue-tint); color: var(--blue); }
.tag.green { background: var(--green-tint); color: var(--green); }
.tag.navy { background: #e9eef6; color: var(--navy); }
.tag.popular { background: var(--navy); color: #fff; }
.prod-card .price-note { margin-top: auto; padding-top: 18px; font-size: 13.5px; color: var(--muted); }
.prod-card.featured { border-color: var(--blue); box-shadow: var(--sh-lg); }
.prod-card.featured::after { content: "Önerilen"; position: absolute; top: 18px; right: 18px; background: var(--blue); color: #fff; font-size: 11.5px; font-weight: 700; padding: 5px 11px; border-radius: var(--r-pill); }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev .split-media { order: -1; }
.feature-list { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.feature-row { display: flex; gap: 16px; }
.feature-row .fr-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.feature-row.green .fr-icon { background: var(--green-tint); color: var(--green); }
.feature-row svg { width: 23px; height: 23px; }
.feature-row h4 { font-size: 1.08rem; color: var(--navy); margin-bottom: 5px; }
.feature-row p { font-size: 15px; }

/* ---------- Placeholder media ---------- */
.ph {
  border-radius: var(--r-lg); border: 1px solid var(--border); background:
    repeating-linear-gradient(45deg, var(--bg-soft) 0 11px, var(--bg-soft-2) 11px 22px);
  display: grid; place-items: center; color: var(--faint); font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px; text-align: center; padding: 24px; min-height: 320px; position: relative;
}
.ph span { background: rgba(255,255,255,0.85); padding: 6px 12px; border-radius: 8px; border: 1px dashed var(--border-strong); }

/* ---------- Comparison table ---------- */
.compare { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); background: #fff; }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 16px 20px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--border); }
.compare thead th { background: var(--navy); color: #fff; font-weight: 700; font-size: 14.5px; }
.compare thead th:first-child { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: #9db4dd; }
.compare tbody td:first-child { font-weight: 700; color: var(--navy); }
.compare tbody tr:hover { background: var(--bg-soft); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare td.center, .compare th.center { text-align: center; }
.check-yes { color: var(--green); }
.check-no { color: var(--faint); }
.compare svg { width: 20px; height: 20px; display: inline-block; }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; background: var(--bg-soft); padding: 7px; border-radius: var(--r-pill); width: fit-content; margin-left: auto; margin-right: auto; border: 1px solid var(--border); }
.tab { padding: 11px 24px; border-radius: var(--r-pill); font-weight: 700; font-size: 15px; color: var(--muted); border: none; background: transparent; transition: all var(--t); }
.tab.active { background: #fff; color: var(--navy); box-shadow: var(--sh-sm); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade 0.3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Stats strip ---------- */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat-block { text-align: center; }
.stat-block b { display: block; font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.stat-block .plus { color: #7fa9ff; }
.stat-block span { display: block; margin-top: 10px; font-size: 14.5px; color: #9db4dd; font-weight: 600; }

/* ---------- Why-us / value ---------- */
.value-card { display: flex; gap: 18px; align-items: flex-start; }
.value-card .vc-num { font-family: ui-monospace, monospace; font-size: 14px; font-weight: 700; color: var(--blue); border: 1.5px solid var(--blue-tint-2); width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; background: var(--blue-tint); }
.value-card h4 { font-size: 1.12rem; color: var(--navy); margin-bottom: 7px; }
.value-card p { font-size: 15px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: s; }
.step { position: relative; }
.step .s-num { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; display: grid; place-items: center; margin-bottom: 18px; font-size: 18px; }
.step h4 { font-size: 1.08rem; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 15px; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 23px; left: 58px; right: -12px; height: 2px; background: linear-gradient(90deg, var(--border-strong), transparent); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); background: #fff; overflow: hidden; transition: border-color var(--t), box-shadow var(--t); }
.faq-item.open { border-color: var(--border-strong); box-shadow: var(--sh); }
.faq-q { width: 100%; display: flex; align-items: center; gap: 16px; padding: 22px 24px; background: none; border: none; text-align: left; font-weight: 700; font-size: 17px; color: var(--navy); }
.faq-q .faq-ic { margin-left: auto; width: 28px; height: 28px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; flex: none; transition: background var(--t), transform var(--t); color: var(--blue); }
.faq-item.open .faq-q .faq-ic { background: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-ic svg { width: 16px; height: 16px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-a-inner { padding: 0 24px 24px; font-size: 15.5px; color: var(--body); line-height: 1.65; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner { background: linear-gradient(135deg, var(--navy) 0%, #102f63 55%, #143b7d 100%); border-radius: var(--r-xl); padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-inner p { color: #b9c9e6; max-width: 560px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-deco { position: absolute; border-radius: 50%; filter: blur(50px); }
.cta-deco.d1 { width: 280px; height: 280px; background: rgba(59,130,246,0.4); top: -120px; right: -60px; }
.cta-deco.d2 { width: 240px; height: 240px; background: rgba(22,163,74,0.28); bottom: -130px; left: -50px; }

/* ---------- Forms ---------- */
.form-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--sh-lg); padding: 38px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 700; color: var(--navy); }
.field label .req { color: var(--blue); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15.5px; padding: 13px 15px; border: 1.5px solid var(--border-strong);
  border-radius: var(--r-sm); background: #fff; color: var(--navy); transition: border-color var(--t), box-shadow var(--t); width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-tint); }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field.error input, .field.error select, .field.error textarea { border-color: #dc2626; box-shadow: 0 0 0 4px #fee2e2; }
.field .err-msg { font-size: 13px; color: #dc2626; font-weight: 600; display: none; }
.field.error .err-msg { display: block; }
.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='%2364748b' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* radio chips */
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-radio { position: relative; }
.chip-radio input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip-radio span { display: inline-flex; align-items: center; gap: 8px; padding: 11px 17px; border: 1.5px solid var(--border-strong); border-radius: var(--r-pill); font-size: 14.5px; font-weight: 600; color: var(--navy); transition: all var(--t); }
.chip-radio input:checked + span { border-color: var(--blue); background: var(--blue-tint); color: var(--blue); }
.chip-radio input:focus-visible + span { outline: 3px solid var(--blue-500); outline-offset: 2px; }

/* checkbox */
.checkbox { display: flex; gap: 12px; align-items: flex-start; }
.checkbox input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--blue); cursor: pointer; }
.checkbox label { font-size: 13.5px; color: var(--muted); font-weight: 500; line-height: 1.5; }
.checkbox a { color: var(--blue); font-weight: 700; text-decoration: underline; }

/* thank you */
.thanks { text-align: center; padding: 30px 10px; display: none; }
.thanks.show { display: block; animation: fade 0.4s ease; }
.thanks .ty-icon { width: 84px; height: 84px; border-radius: 50%; background: var(--green-tint); display: grid; place-items: center; margin: 0 auto 24px; }
.thanks .ty-icon svg { width: 44px; height: 44px; color: var(--green); }
.thanks h2 { margin-bottom: 14px; }
.thanks p { max-width: 460px; margin: 0 auto 26px; }

/* ---------- Aside contact info ---------- */
.contact-aside { display: flex; flex-direction: column; gap: 14px; }
.ci-card { display: flex; gap: 15px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 20px; }
.ci-card .ci-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.ci-card .ci-ic.green { background: var(--green-tint); color: var(--green); }
.ci-card svg { width: 22px; height: 22px; }
.ci-card b { display: block; color: var(--navy); font-size: 15px; margin-bottom: 3px; }
.ci-card p, .ci-card a { font-size: 14.5px; color: var(--body); }
.ci-card a:hover { color: var(--blue); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform var(--t), box-shadow var(--t); height: 100%; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.blog-thumb { aspect-ratio: 16/10; background: repeating-linear-gradient(45deg, var(--bg-soft) 0 11px, var(--bg-soft-2) 11px 22px); position: relative; display: grid; place-items: center; }
.blog-thumb .cat { position: absolute; top: 14px; left: 14px; background: #fff; color: var(--blue); font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: var(--r-pill); box-shadow: var(--sh-sm); }
.blog-thumb .ph-ic { width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,0.75); display: grid; place-items: center; color: var(--faint); }
.blog-thumb .ph-ic svg { width: 28px; height: 28px; }
.blog-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-body .meta { font-size: 12.5px; color: var(--faint); font-weight: 600; }
.blog-body h3 { font-size: 1.18rem; line-height: 1.25; color: var(--navy); }
.blog-body p { font-size: 14.5px; }
.blog-body .btn-link { margin-top: auto; padding-top: 8px; }

/* ---------- Article (blog post) ---------- */
.article-hero-inner { position: relative; max-width: 840px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 22px; font-size: 14.5px; color: #9db4dd; font-weight: 600; }
.article-meta .am-author { display: inline-flex; align-items: center; gap: 9px; color: #fff; }
.article-meta .am-author .am-ava { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(140deg, var(--blue), var(--navy)); display: grid; place-items: center; color: #fff; }
.article-meta .am-author .am-ava svg { width: 16px; height: 16px; }
.article-meta .dot-sep { width: 4px; height: 4px; border-radius: 50%; background: #5c739e; }
.article-meta span.am-item { display: inline-flex; align-items: center; gap: 7px; }
.article-meta span.am-item svg { width: 15px; height: 15px; }
.article-body { max-width: 748px; margin: 0 auto; }
.article-body > p { font-size: 17.5px; line-height: 1.78; color: var(--body); margin-bottom: 22px; }
.article-body > p.lead { font-size: 1.26rem; line-height: 1.6; color: var(--navy); font-weight: 500; margin-bottom: 28px; }
.article-body h2 { font-size: 1.62rem; margin: 46px 0 16px; scroll-margin-top: 100px; }
.article-body h3 { font-size: 1.24rem; margin: 32px 0 12px; }
.article-body ul.prose, .article-body ol.prose { list-style: none; padding: 0; margin: 6px 0 26px; display: flex; flex-direction: column; gap: 13px; counter-reset: pl; }
.article-body ul.prose li { position: relative; padding-left: 30px; font-size: 17px; line-height: 1.6; color: var(--body); }
.article-body ul.prose li::before { content: ""; position: absolute; left: 5px; top: 9px; width: 8px; height: 8px; border-radius: 2px; background: var(--blue); transform: rotate(45deg); }
.article-body ol.prose li { position: relative; padding-left: 46px; font-size: 17px; line-height: 1.62; color: var(--body); min-height: 30px; }
.article-body ol.prose li::before { counter-increment: pl; content: counter(pl); position: absolute; left: 0; top: 2px; width: 30px; height: 30px; border-radius: 9px; background: var(--blue-tint); color: var(--blue); font-weight: 800; font-size: 14px; display: grid; place-items: center; }
.article-body li strong, .article-body p strong { color: var(--navy); font-weight: 700; }
.article-callout { background: var(--blue-tint); border: 1px solid var(--blue-tint-2); border-radius: var(--r); padding: 22px 26px; margin: 30px 0; display: flex; gap: 16px; align-items: flex-start; }
.article-callout .ac-ic { width: 42px; height: 42px; border-radius: 11px; background: #fff; color: var(--blue); display: grid; place-items: center; flex: none; box-shadow: var(--sh-sm); }
.article-callout .ac-ic svg { width: 22px; height: 22px; }
.article-callout b { color: var(--navy); display: block; margin-bottom: 4px; font-size: 16px; }
.article-callout p { font-size: 15.5px; color: var(--body); margin: 0; line-height: 1.6; }
.article-cta { background: var(--navy); border-radius: var(--r-lg); padding: 34px 32px; margin: 40px 0 8px; text-align: center; position: relative; overflow: hidden; }
.article-cta h3 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.article-cta p { color: #b9c9e6; font-size: 15.5px; margin: 0 auto 22px; max-width: 460px; }
.article-share { display: flex; align-items: center; gap: 12px; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--border); font-size: 14.5px; color: var(--muted); font-weight: 600; }
.article-share .tag { margin: 0; }

/* ---------- Legal / policy pages ---------- */
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.legal-toc { position: sticky; top: 100px; border: 1px solid var(--border); border-radius: var(--r); padding: 22px; background: var(--bg-soft); }
.legal-toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 14px; font-weight: 800; }
.legal-toc ul { display: flex; flex-direction: column; gap: 3px; }
.legal-toc a { display: block; font-size: 14.5px; font-weight: 600; color: var(--body); padding: 8px 12px; border-radius: 9px; line-height: 1.4; transition: background var(--t), color var(--t); border-left: 2px solid transparent; }
.legal-toc a:hover { background: #fff; color: var(--blue); }
.legal-toc a.active { background: #fff; color: var(--blue); border-left-color: var(--blue); }
.legal-doc { max-width: 760px; }
.legal-doc .doc-updated { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--muted); background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 8px 16px; margin-bottom: 34px; }
.legal-doc .doc-updated svg { width: 16px; height: 16px; color: var(--blue); }
.legal-doc h2 { font-size: 1.5rem; margin: 44px 0 14px; scroll-margin-top: 100px; padding-top: 8px; }
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc h3 { font-size: 1.16rem; margin: 26px 0 10px; color: var(--navy); }
.legal-doc p { font-size: 16.5px; line-height: 1.74; color: var(--body); margin-bottom: 18px; }
.legal-doc ul.prose, .legal-doc ol.prose { list-style: none; padding: 0; margin: 6px 0 22px; display: flex; flex-direction: column; gap: 11px; }
.legal-doc ul.prose li { position: relative; padding-left: 28px; font-size: 16px; line-height: 1.6; color: var(--body); }
.legal-doc ul.prose li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 7px; height: 7px; border-radius: 2px; background: var(--blue); transform: rotate(45deg); }
.legal-doc strong { color: var(--navy); font-weight: 700; }
.legal-doc a.inline { color: var(--blue); font-weight: 700; text-decoration: underline; }
.legal-table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; font-size: 15px; }
.legal-table th, .legal-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal-table thead th { background: var(--navy); color: #fff; font-weight: 700; font-size: 14px; }
.legal-table tbody td:first-child { font-weight: 700; color: var(--navy); white-space: nowrap; }
.legal-table tbody tr:last-child td { border-bottom: none; }
.legal-note { background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--r); padding: 18px 22px; margin: 28px 0; font-size: 14.5px; color: #92651a; line-height: 1.6; }
.legal-note b { color: #7c4a03; }

/* ---------- Cookie consent banner ---------- */
.cookie-bar { position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%) translateY(140%); width: min(1080px, calc(100vw - 32px)); background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 20px 24px; z-index: 95; display: flex; align-items: center; gap: 22px; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.cookie-bar.show { transform: translateX(-50%) translateY(0); }
.cookie-bar .ck-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.cookie-bar .ck-ic svg { width: 24px; height: 24px; }
.cookie-bar .ck-text { flex: 1; font-size: 14.5px; line-height: 1.55; color: var(--body); }
.cookie-bar .ck-text b { color: var(--navy); display: block; margin-bottom: 2px; font-size: 15px; }
.cookie-bar .ck-text a { color: var(--blue); font-weight: 700; text-decoration: underline; }
.cookie-bar .ck-actions { display: flex; gap: 10px; flex: none; }
@media (max-width: 720px) {
  .cookie-bar { flex-direction: column; align-items: flex-start; gap: 14px; bottom: 12px; padding: 18px; }
  .cookie-bar .ck-actions { width: 100%; }
  .cookie-bar .ck-actions .btn { flex: 1; }
  .cookie-bar .ck-ic { display: none; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--navy); color: #c7d3e8; padding: 64px 0 72px; position: relative; overflow: hidden; }
.page-hero .grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 46px 46px; -webkit-mask-image: radial-gradient(ellipse 80% 70% at 75% 30%, #000, transparent 70%); mask-image: radial-gradient(ellipse 80% 70% at 75% 30%, #000, transparent 70%); }
.page-hero .blob { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(70px); background: rgba(59,130,246,0.3); top: -160px; right: -100px; }
.page-hero-inner { position: relative; max-width: 760px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #93a8cf; margin-bottom: 18px; font-weight: 600; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; }
.page-hero h1 { color: #fff; margin-bottom: 18px; }
.page-hero p { font-size: 1.15rem; color: #b9c9e6; max-width: 620px; }
.page-hero .ph-cta { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #061634; color: #9db4dd; padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-text b { color: #fff; }
.footer-brand .brand-text span { color: #7e96c4; }
.footer-brand p { font-size: 14.5px; margin: 18px 0; max-width: 320px; line-height: 1.6; }
.footer-partners { display: flex; gap: 10px; }
.fp-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 8px 12px; font-size: 12.5px; font-weight: 700; color: #cdd9ef; }
.fp-chip .d { width: 18px; height: 18px; border-radius: 6px; display: grid; place-items: center; font-size: 11px; font-weight: 800; color: #fff; }
.fp-chip .d.a { background: linear-gradient(135deg, #ff7a00, #ff9d2e); }
.fp-chip .d.k { background: linear-gradient(135deg, #16a34a, #0f9d6c); }
.fp-chip .d.f { background: linear-gradient(135deg, #da291c, #ee4d3d); }
.footer-col h5 { color: #fff; font-size: 14px; font-weight: 800; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; color: #9db4dd; transition: color var(--t); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 26px; font-size: 13.5px; color: #7e96c4; }
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; display: flex; align-items: center; gap: 12px; }
.wa-btn { width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,0.45); transition: transform var(--t); }
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 32px; height: 32px; color: #fff; }
.wa-pulse { position: absolute; right: 0; bottom: 0; width: 60px; height: 60px; border-radius: 50%; background: #25d366; opacity: 0.5; animation: wapulse 2.2s ease-out infinite; z-index: -1; }
@keyframes wapulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.7); opacity: 0; } }

/* ---------- Reveal anim ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .center { text-align: center; }
.divider { height: 1px; background: var(--border); border: none; }
.text-blue { color: var(--blue); } .text-green { color: var(--green); }
.nowrap { white-space: nowrap; }

/* ---------- Print ---------- */
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .wa-float, .cookie-bar, .nav-toggle, .mobile-menu { display: none !important; }
  .site-header { position: static !important; box-shadow: none !important; }
  .card, .blog-card, .faq-item, .value-card, .prod-card, .step, .feature-row, .partner-chip { break-inside: avoid; }
  .section { padding: 40px 0 !important; }
  a { color: inherit !important; text-decoration: none !important; }
  .hero-bg, .page-hero .blob, .cta-deco { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  body { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
/* Nav: collapse to hamburger earlier so the desktop bar never overflows */
@media (max-width: 1040px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: grid; }
  .hero-badge-float { display: none; }
}
@media (max-width: 920px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: grid; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .split { grid-template-columns: 1fr !important; gap: 40px; }
  .split.rev .split-media { order: 0; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  /* Legal/policy pages: stack TOC above content */
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-toc { position: static; top: auto; }
  .legal-toc ul { flex-flow: row wrap; gap: 6px; }
  .legal-toc a { border-left: none; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 44px 26px; }
  .form-wrap { padding: 26px 20px; }
  .compare { overflow-x: auto; }
  .compare table { min-width: 560px; }
  .hero-cta .btn, .ph-cta .btn { flex: 1; }
  .nav-cta .btn span.hide-sm { display: none; }
  .hero-badge-float { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .wa-float { bottom: 16px; right: 16px; }
  /* Article + legal readability on small screens */
  .article-body > p { font-size: 16.5px; }
  .article-body > p.lead { font-size: 1.12rem; }
  .article-body h2 { font-size: 1.4rem; margin-top: 36px; }
  .article-cta { padding: 28px 22px; }
  .legal-doc p { font-size: 16px; }
  .legal-table td:first-child { white-space: normal; }
  .legal-table th, .legal-table td { padding: 11px 13px; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 18px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}
