/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a2b3c;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── PALETTE ─────────────────────────────────────── */
:root {
  --navy:   #1B3A7F;  /* logo blue – structural / headings */
  --teal:   #DB352B;  /* logo red – primary accent / CTA */
  --green:  #B81E1E;  /* deep red – gradient partner */
  --mint:   #FF8A7A;  /* light coral – highlight on dark */
  --pale:   #FBE3E1;  /* soft red tint – badge / chip bg */
  --dark:   #14264F;  /* deep navy – dark sections */
  --accent: #FF5247;  /* bright red – gradient highlight */
  --text:   #1a2b3c;
  --muted:  #5a6e80;
  --bg-alt: #f7f9fd;
  --border: #e2e8f3;
}

/* ── UTILITIES ───────────────────────────────────── */
.container { max-width: 1360px; margin: 0 auto; padding: 0 40px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pale);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.badge svg { flex-shrink: 0; }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 560px;
  line-height: 1.7;
}
.section-header { }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

/* ── ICON WRAPPER ────────────────────────────────── */
.icon-box {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { display: block; }
.icon-teal   { background: rgba(219,53,43,.1);  color: var(--teal); }
.icon-green  { background: rgba(219,53,43,.12); color: #B81E1E; }
.icon-navy   { background: rgba(27,58,127,.09);  color: var(--navy); }
.icon-pale   { background: var(--pale);           color: var(--navy); }
.icon-amber  { background: #fef3cd;               color: #b47d00; }
.icon-red    { background: #feecec;               color: #c0392b; }
.icon-mint   { background: rgba(219,53,43,.18); color: #B81E1E; }

/* ── BTN ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all .2s ease;
  border: none; font-family: inherit;
  letter-spacing: -.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(219,53,43,.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(219,53,43,.5); }
.btn-secondary { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost-white:hover { background: rgba(255,255,255,.12); }

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(27,58,127,.09);
  box-shadow: 0 2px 24px rgba(27,58,127,.06);
}
nav::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--green) 55%, var(--mint) 100%);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 16px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img {
  display: block; height: 30px; width: auto;
  transition: opacity .2s ease;
}
.nav-logo:hover img { opacity: .72; }
.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--muted);
  text-decoration: none; transition: color .15s, background .15s;
  padding: 7px 13px; border-radius: 8px; white-space: nowrap; display: block;
}
.nav-links a:hover { color: var(--teal); background: rgba(219,53,43,.09); }
.nav-menu { display: flex; align-items: center; gap: 16px; flex: 1; justify-content: flex-end; }
.nav-sep { width: 1px; height: 26px; background: var(--border); flex-shrink: 0; margin: 0 4px; }
.nav-cta { display: flex; gap: 10px; }
.btn-nav { padding: 10px 20px; font-size: 14px; border-radius: 9px; font-weight: 700; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1B3A7F 55%, #2A56A8 100%);
  overflow: hidden; position: relative;
  padding: 96px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(219,53,43,.16) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 85%, rgba(219,53,43,.18) 0%, transparent 55%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(219,53,43,.12);
  border: 1px solid rgba(219,53,43,.28);
  color: var(--mint);
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(32px, 4.8vw, 56px);
  font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 20px;
  letter-spacing: -.03em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--mint), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.68);
  max-width: 460px; margin-bottom: 36px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px;
  margin-top: 52px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.stat-num { font-size: 30px; font-weight: 800; color: var(--mint); line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 5px; text-transform: uppercase; letter-spacing: .07em; }

/* Hero mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-device {
  width: 100%; max-width: 460px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  padding: 22px;
  box-shadow: 0 32px 80px rgba(0,0,0,.32), 0 0 0 1px rgba(255,255,255,.04);
}
.device-topbar { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.device-url {
  flex: 1; background: rgba(255,255,255,.07);
  border-radius: 6px; padding: 5px 12px;
  font-size: 11px; color: rgba(255,255,255,.4); font-family: monospace;
}
.dc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.dc-title { color: #fff; font-size: 14px; font-weight: 600; }
.dc-badge {
  display: flex; align-items: center; gap: 5px;
  background: rgba(219,53,43,.18);
  color: var(--mint); font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(219,53,43,.28);
}
.dc-badge-dot {
  width: 6px; height: 6px; background: var(--mint); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }
.dc-progress-bar {
  background: rgba(255,255,255,.07); border-radius: 100px; height: 5px;
  margin-bottom: 18px; overflow: hidden;
}
.dc-progress-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--teal), var(--mint)); width: 73%;
}
.dc-table { width: 100%; border-collapse: collapse; }
.dc-table th {
  color: rgba(255,255,255,.35); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .09em;
  padding: 0 8px 8px; text-align: left;
}
.dc-table td {
  padding: 8px 8px; font-size: 12px; color: rgba(255,255,255,.75);
  border-top: 1px solid rgba(255,255,255,.055);
}
.dc-table td:last-child { text-align: right; }
.status-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 8px; border-radius: 100px;
  font-size: 11px; font-weight: 500;
}
.status-ok   { background: rgba(219,53,43,.15); color: var(--mint); }
.status-warn { background: rgba(254,188,46,.12);  color: #febc2e; }
.status-dot  { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.dc-footer {
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: space-between;
}
.dc-sync { font-size: 11px; color: rgba(255,255,255,.35); }
.dc-sync strong { color: var(--mint); }
.dc-scan-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(219,53,43,.14); border: 1px solid rgba(219,53,43,.22);
  border-radius: 7px; padding: 6px 12px;
  font-size: 11px; font-weight: 600; color: var(--mint);
}

/* ── LOGOS CAROUSEL ────────────────────────────────── */
.logos-carousel {
  border-top: 1px solid #ebf2f6; border-bottom: 1px solid #ebf2f6;
  padding: 32px 0; background: #fafcfd; overflow: hidden;
}
.logos-carousel-label {
  text-align: center; margin: 0 0 22px;
  font-size: 11px; font-weight: 600; color: #9ab0bc;
  text-transform: uppercase; letter-spacing: .1em;
}
.logos-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.logos-track {
  display: flex; align-items: center; gap: 88px;
  width: max-content;
  animation: logos-scroll 60s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
.logos-img {
  height: 40px; width: auto; max-width: 160px; object-fit: contain;
  filter: grayscale(1) opacity(.5); transition: filter .25s;
}
.logos-img:hover { filter: grayscale(0) opacity(1); }
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS ────────────────────────────────────── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

/* ── PROBLEM / SOLUTION ──────────────────────────── */
.prob-sol-grid {
  display: grid; grid-template-columns: 1fr 72px 1fr;
  gap: 0; align-items: start; margin-top: 56px;
}
.prob-col, .sol-col { border-radius: 16px; padding: 32px 28px; }
.prob-col { background: #fff; border: 1px solid #edf2f6; }
.sol-col {
  background: linear-gradient(145deg, #fdf4f3 0%, #fff 100%);
  border: 1px solid rgba(219,53,43,.28);
  box-shadow: 0 8px 32px rgba(219,53,43,.1);
}
.col-header { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.col-title { font-size: 16px; font-weight: 700; color: var(--dark); }
.prob-item, .sol-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0; border-top: 1px solid #f0f4f7;
  font-size: 14.5px; color: var(--muted); line-height: 1.5;
}
.prob-item:first-of-type, .sol-item:first-of-type { border-top: none; }
.item-icon { flex-shrink: 0; margin-top: 1px; color: var(--teal); }
.item-icon-bad { color: #c0392b; }
.arrow-col { display: flex; align-items: center; justify-content: center; padding-top: 72px; }
.arrow-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--green));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(219,53,43,.35);
}

/* ── BENEFITS ────────────────────────────────────── */
.benefits-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 22px; margin-top: 56px;
}
.benefit-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 26px 22px;
  transition: all .22s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27,58,127,.09);
  border-color: var(--teal);
}
.benefit-title { font-size: 15px; font-weight: 700; color: var(--dark); margin: 16px 0 7px; }
.benefit-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ── HOW IT WORKS ────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 35px; left: calc(12.5%); right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green));
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 70px; height: 70px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800;
  box-shadow: 0 0 0 8px var(--bg-alt);
  margin-bottom: 22px;
}
.step:nth-child(1) .step-num { border: 2.5px solid var(--teal);  color: var(--teal); }
.step:nth-child(2) .step-num { border: 2.5px solid var(--green); color: #B81E1E; }
.step:nth-child(3) .step-num { border: 2.5px solid #C5392E;      color: #C5392E; }
.step:nth-child(4) .step-num { border: 2.5px solid var(--mint);  color: #B81E1E; }
.step-title { font-size: 14.5px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-desc  { font-size: 13px; color: var(--muted); line-height: 1.55; }
.how-cta { text-align: center; margin-top: 52px; }

/* ── PRODUCT ─────────────────────────────────────── */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px; margin-top: 56px;
}
.product-card { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); transition: transform .22s, box-shadow .22s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 22px 52px rgba(27,58,127,.11); }
.product-header {
  padding: 26px 26px 20px;
  background: linear-gradient(135deg, var(--dark), var(--navy));
  display: flex; align-items: center; gap: 14px;
}
.product-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.9);
}
.product-name { font-size: 16px; font-weight: 700; color: #fff; }
.product-sub  { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 2px; }
.product-body { padding: 22px 26px; background: #fff; }
.product-feature {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; font-size: 14px; color: var(--text);
  border-top: 1px solid #f0f5f8;
}
.product-feature:first-child { border-top: none; }
.check-circle {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}

/* ── COMPARISON ──────────────────────────────────── */
.comparison-wrap {
  margin-top: 56px; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(27,58,127,.07);
}
.cmp-header { display: grid; grid-template-columns: 1fr 1fr 1fr; background: var(--dark); }
.cmp-hcell { padding: 18px 26px; font-size: 14px; font-weight: 700; color: rgba(255,255,255,.45); }
.cmp-hcell.hl {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #fff; display: flex; align-items: center; gap: 10px;
}
.cmp-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid #eef4f7; background: #fff; }
.cmp-row:nth-child(even) { background: var(--bg-alt); }
.cmp-cell { padding: 15px 26px; font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.cmp-cell.label { color: var(--dark); font-weight: 500; }
.cmp-cell.good  { color: #1a9955; font-weight: 600; }
.cmp-cell.bad   { color: #b94040; }

/* ── INDUSTRIES ──────────────────────────────────── */
.industries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 56px;
}
.industry-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 180px;
  padding: 20px 18px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.industry-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,38,79,.92) 0%, rgba(20,38,79,.4) 55%, rgba(20,38,79,.12) 100%);
  transition: background .25s ease;
}
.industry-card > * { position: relative; z-index: 1; }
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(20,38,79,.3);
}
.industry-card:hover::before {
  background: linear-gradient(to top, rgba(176,28,22,.88) 0%, rgba(20,38,79,.45) 55%, rgba(20,38,79,.15) 100%);
}
.industry-icon {
  width: 46px; height: 46px; border-radius: 12px;
  margin-bottom: 12px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.18); color: #fff;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.industry-name { font-size: 15px; font-weight: 700; color: #fff; }
.industries-note { text-align: center; margin-top: 26px; font-size: 14px; color: var(--muted); }
.industries-cta  { text-align: center; margin-top: 18px; }

/* ── SECURITY ────────────────────────────────────── */
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
.security-list { list-style: none; }
.security-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid #eef4f7;
}
.security-item:last-child { border-bottom: none; }
.sec-title { font-size: 15px; font-weight: 600; color: var(--dark); }
.sec-desc  { font-size: 13px; color: var(--muted); margin-top: 3px; }
.security-visual {
  background: linear-gradient(135deg, var(--dark), #1B3A7F);
  border-radius: 20px; padding: 36px; color: #fff;
}
.sec-vis-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 700; margin-bottom: 26px; color: #fff;
}
.sec-metric {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 14px;
}
.sec-metric:last-child { border-bottom: none; }
.sec-metric-label { color: rgba(255,255,255,.55); }
.sec-metric-val { font-weight: 700; color: var(--mint); }
.sec-metric-ok { display: flex; align-items: center; gap: 6px; font-weight: 600; color: var(--mint); }
.dot-ok { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; }

/* ── CTA BLOCK ───────────────────────────────────── */
.cta-block {
  background: linear-gradient(135deg, var(--dark) 0%, #1B3A7F 50%, #2A56A8 100%);
  border-radius: 22px; padding: 72px 56px;
  text-align: center; position: relative; overflow: hidden;
  margin: 0 32px;
}
.cta-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(219,53,43,.13), transparent 70%);
  pointer-events: none;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: #fff; margin-bottom: 14px; letter-spacing: -.02em; }
.cta-block p  { font-size: 17px; color: rgba(255,255,255,.6); max-width: 480px; margin: 0 auto 36px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── NEWSLETTER ──────────────────────────────────── */
.newsletter-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.newsletter-perks { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin: 22px 0 30px; }
.newsletter-perk { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--muted); }
.email-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.email-input {
  flex: 1; padding: 13px 16px; border: 1.5px solid #cddde8;
  border-radius: 10px; font-size: 14px; font-family: inherit;
  outline: none; transition: border-color .2s; color: var(--text);
}
.email-input:focus { border-color: var(--teal); }
.email-input::placeholder { color: #a8bec9; }

/* ── FOOTER ──────────────────────────────────────── */
footer { background: var(--dark); padding: 64px 0 32px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.4); margin-top: 16px; line-height: 1.7; max-width: 260px; }
.footer-maker {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: inline-block;
}
.footer-maker a { display: inline-block; line-height: 0; }
.footer-maker svg { opacity: .5; transition: opacity .2s; }
.footer-maker a:hover svg { opacity: .85; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.35);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 14px; transition: color .18s; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,.28);
}
.footer-bottom a { color: rgba(255,255,255,.38); text-decoration: none; }
.footer-bottom a:hover { color: var(--mint); }
.footer-bottom-links { display: flex; gap: 22px; }

/* ── SVG ICON HELPERS ────────────────────────────── */
.icon { display: inline-block; flex-shrink: 0; }

/* ── PAGE HERO (subpages) ────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1B3A7F 55%, #2A56A8 100%);
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(219,53,43,.16) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 85%, rgba(219,53,43,.18) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; color: #fff;
  line-height: 1.15; letter-spacing: -.02em;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,.65);
  max-width: 540px; margin: 0 auto; line-height: 1.7;
}

/* ── CONTENT STYLES (subpages) ───────────────────── */
.content-section { padding: 80px 0; }
.content-section h2 {
  font-size: 28px; font-weight: 800; color: var(--dark);
  margin-bottom: 18px; letter-spacing: -.02em;
}
.content-section p {
  font-size: 16px; color: var(--muted); line-height: 1.7;
  margin-bottom: 16px; max-width: 720px;
}

.content-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}

.value-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  transition: all .22s ease;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27,58,127,.09);
  border-color: var(--teal);
}
.value-card h3 {
  font-size: 16px; font-weight: 700; color: var(--dark);
  margin: 14px 0 8px;
}
.value-card p {
  font-size: 14px; color: var(--muted); line-height: 1.6;
  margin-bottom: 0;
}

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}

/* ── CONTACT ─────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.contact-info-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid #eef4f7;
}
.contact-info-card:last-child { border-bottom: none; }
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
}
.contact-info-grid .contact-info-card { border-bottom: none; padding: 14px 0; }
@media (max-width: 480px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}
.contact-info-card h3 {
  font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 0;
}
.contact-form label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--dark); margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #cddde8; border-radius: 10px;
  font-size: 14px; font-family: inherit;
  outline: none; transition: border-color .2s;
  color: var(--text); margin-bottom: 18px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--teal); outline: none; }
.contact-form select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 15px; font-family: inherit; color: var(--text);
  background: #fff; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6e80' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  transition: border-color .18s;
}
.contact-form textarea { min-height: 120px; resize: vertical; }

/* Form alerts */
.form-alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.form-alert-success {
  background: rgba(128,237,153,.12);
  border: 1px solid rgba(128,237,153,.35);
  color: #15803d;
}
.form-alert-error {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.25);
  color: #dc2626;
}

/* Submit spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

.contact-form button:disabled {
  opacity: .7;
  cursor: wait;
}

/* ── PARTNER BADGE BAR ──────────────────────────── */
.partner-badge-bar {
  background: linear-gradient(145deg, #fdf4f3 0%, #fff 100%);
  border: 1px solid rgba(219,53,43,.28);
  border-radius: 16px;
  padding: 24px 32px;
}
.partner-badge-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.partner-badge-inner img { flex-shrink: 0; }
.partner-badge-inner strong { display: block; font-size: 15px; color: var(--navy); }
.partner-badge-inner span { font-size: 13px; color: var(--text-light); }

/* ── HW PRODUCT CARDS ──────────────────────────── */
.hw-product-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  transition: box-shadow .25s ease;
}
.hw-product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.hw-product-img {
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/2;
}
.hw-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
.hw-product-img-icon {
  background: linear-gradient(145deg, #fdf4f3, #eef8ff);
}
.hw-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Android phone mockup */
.amock-frame {
  position: relative;
  width: 122px;
  padding: 8px;
  background: #14161f;
  border-radius: 26px;
  box-shadow: 0 18px 44px rgba(20,38,79,.3), inset 0 0 0 1.5px rgba(255,255,255,.06);
}
.amock-cam {
  position: absolute;
  top: 15px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: #23252f; z-index: 3;
}
.amock-screen {
  position: relative;
  height: 212px;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f5fa;
  display: flex;
  flex-direction: column;
}
.amock-head {
  background: linear-gradient(135deg, var(--navy), #244b97);
  color: #fff;
  padding: 9px 10px 10px;
}
.amock-status {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 6.5px; font-weight: 600; opacity: .85; margin-bottom: 8px;
}
.amock-title { font-size: 9.5px; font-weight: 800; letter-spacing: -.01em; }
.amock-sub { font-size: 6.5px; opacity: .82; margin: 1px 0 7px; }
.amock-bar { height: 3px; border-radius: 3px; background: rgba(255,255,255,.22); overflow: hidden; }
.amock-bar > i { display: block; height: 100%; width: 73%; background: var(--teal); border-radius: 3px; }
.amock-list {
  list-style: none; margin: 0; padding: 9px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.amock-list li { display: flex; align-items: center; gap: 7px; }
.amock-chk {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
  background: #dce2ee;
  display: flex; align-items: center; justify-content: center;
}
.amock-chk.on { background: var(--teal); }
.amock-ln { flex: 1; height: 5px; border-radius: 3px; background: #dce2ee; }
.amock-ln.s { flex: 0 0 52%; }
.amock-fab {
  position: absolute; right: 10px; bottom: 10px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 12px rgba(219,53,43,.45);
}
.hw-product-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--teal);
  margin-bottom: 8px;
}
.hw-product-info h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.hw-product-desc {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.hw-spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hw-spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.hw-spec-list li svg {
  flex-shrink: 0;
  color: var(--mint);
  margin-top: 2px;
}
.hw-product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hw-product-alt {
  background: linear-gradient(145deg, #fdf4f3 0%, #f5f7ff 100%);
  border-color: rgba(219,53,43,.2);
}

/* ── WHY ZEBRA GRID ─────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 32px 28px;
}
.why-card .icon-box { margin-bottom: 18px; }
.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
}

/* ── CONTACT PERSON ──────────────────────────────── */
.contact-person {
  background: linear-gradient(145deg, #fdf4f3 0%, #fff 100%);
  border: 1px solid rgba(219,53,43,.28);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(219,53,43,.1);
}
.contact-person-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--pale);
  box-shadow: 0 4px 16px rgba(27,58,127,.12);
  flex-shrink: 0;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.contact-person:hover .contact-person-photo {
  transform: scale(1.07);
  border-color: var(--teal);
  box-shadow: 0 10px 30px rgba(219,53,43,.25);
}
.contact-person-details li:first-child {
  transition: color .2s ease;
}
.contact-person:hover .contact-person-details li:first-child {
  color: var(--teal);
  font-weight: 700;
}
.contact-person-info h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-person-role {
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-person-details {
  list-style: none;
}
.contact-person-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0;
}
.contact-person-details li svg {
  flex-shrink: 0;
  color: var(--teal);
}
.contact-persons {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-persons .contact-person { margin-bottom: 0; }
@media (max-width: 768px) {
  .contact-persons { grid-template-columns: 1fr; }
}
.contact-address-photo {
  margin-top: 28px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(27,58,127,.1);
  position: relative;
}
.contact-address-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
}
.contact-address-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 18px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(20,38,79,.78), transparent);
}

/* ── VIDEO MODAL ─────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.visible { display: flex; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,38,79,.82);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.video-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 920px;
}
.video-modal-frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 28px 80px rgba(0,0,0,.5);
}
.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease;
}
.video-modal-close:hover { background: var(--teal); }
@media (max-width: 600px) {
  .video-modal-close { top: -42px; }
}

/* ── SOCIAL LINKS ────────────────────────────────── */
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
/* Light background variant (contact page) */
.contact-social a {
  background: var(--pale);
  color: var(--teal);
}
.contact-social a:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}
/* Dark background variant (footer) */
.footer-social { margin-top: 20px; }
.footer-social a {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.72);
}
.footer-social a:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

/* ── SERVICES ────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px; margin-top: 40px;
}
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 32px 26px;
  transition: all .22s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(27,58,127,.1);
  border-color: var(--teal);
}
.service-card h3 {
  font-size: 17px; font-weight: 700; color: var(--dark);
  margin: 18px 0 10px;
}
.service-card p {
  font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 0;
}
.service-features {
  list-style: none; margin-top: 16px;
}
.service-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; font-size: 14px; color: var(--text);
  border-top: 1px solid #f0f5f8;
}
.service-features li:first-child { border-top: none; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  padding: 11px 18px;
  font-size: 14px; font-weight: 600; color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(219,53,43,.35);
  transition: all .2s;
  width: 100%; justify-content: center;
}
.service-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(219,53,43,.5);
  gap: 12px;
}

/* ── LEGAL CONTENT ──────────────────────────────── */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 {
  font-size: 22px; font-weight: 800; color: var(--dark);
  margin: 40px 0 14px; letter-spacing: -.01em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 17px; font-weight: 700; color: var(--dark);
  margin: 24px 0 10px;
}
.legal-content p {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  margin-bottom: 14px; max-width: none;
}
.legal-content ul, .legal-content ol {
  margin: 0 0 18px 24px; color: var(--muted);
  font-size: 15px; line-height: 1.75;
}
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--dark); }
.legal-date {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: #9ab0bc;
}

/* ── PARTNERS / REFERENCE GRID ──────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px 36px;
}
.partner-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: all .22s ease;
}
.partner-card:hover {
  transform: translateY(-3px);
}
.partner-card img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter .3s ease;
}
.partner-card:hover img {
  filter: grayscale(0%) opacity(1);
}

/* ── REFERENCE STATS ────────────────────────────── */
.ref-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.ref-stat { text-align: center; }
.ref-stat-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--teal), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ref-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── ABOUT COMPANY GRID ─────────────────────────── */
.about-company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-company-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all .22s ease;
}
.about-company-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27,58,127,.09);
  border-color: var(--teal);
}
.about-company-card h3 {
  font-size: 16px; font-weight: 700; color: var(--dark);
  margin: 14px 0 8px;
}
.about-company-card p {
  font-size: 14px; color: var(--muted); line-height: 1.6;
  margin-bottom: 0; max-width: none;
}

/* ── COOKIE BANNER ──────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  flex: 1;
  min-width: 280px;
}
.cookie-banner-text a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all .2s ease;
}
.cookie-btn-accept {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #fff;
}
.cookie-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(219,53,43,.4);
}
.cookie-btn-decline {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.12);
}
.cookie-btn-decline:hover {
  background: rgba(255,255,255,.14);
  color: #fff;
}

/* ── HAMBURGER TOGGLE ────────────────────────────── */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative;
  flex-shrink: 0; padding: 0;
}
.nav-toggle span {
  display: block; position: absolute; left: 0;
  width: 100%; height: 2.5px; border-radius: 2px;
  background: var(--dark); transition: all .3s ease;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
nav.nav-open .nav-toggle span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ── RESPONSIVE ─────────────────────────────────── */

/* ── Large tablet / small laptop ────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }

  /* Grids */
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .prob-sol-grid { grid-template-columns: 1fr; gap: 24px; }
  .arrow-col { display: none; }
  .security-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
  .about-company-grid { grid-template-columns: repeat(3, 1fr); }

  /* Comparison table scroll */
  .comparison-wrap { overflow-x: auto; }
  .cmp-header, .cmp-row { min-width: 640px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  /* CTA */
  .cta-block { margin: 0 0; padding: 56px 32px; border-radius: 18px; }
}

/* ── Tablet – hamburger nav ────────────────────── */
@media (max-width: 900px) {
  /* Nav → hamburger */
  .nav-toggle { display: block; }
  .nav-menu {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid rgba(27,58,127,.07);
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
    padding: 16px 24px 24px;
    z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease, visibility 0s .22s;
    pointer-events: none;
  }
  nav.nav-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .22s ease, transform .22s ease, visibility 0s 0s;
    pointer-events: auto;
  }
  .nav-inner { position: relative; }
  .nav-sep { display: none; }
  .nav-links { flex-direction: column; gap: 4px; padding: 4px 0; }
  .nav-links li { border-bottom: none; }
  .nav-links a {
    display: flex; align-items: center; width: 100%;
    padding: 14px 16px; border-radius: 10px;
    font-size: 15px; font-weight: 600; color: var(--dark);
    background: none; transition: background .15s, color .15s;
    min-height: 50px; box-sizing: border-box;
  }
  .nav-links a:hover { background: var(--bg-alt); color: var(--teal); }
  /* Dropdown toggle – stejná výška jako ostatní položky */
  .nav-dd-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 14px 16px; border-radius: 10px;
    font-size: 15px; color: var(--dark);
    min-height: 50px;
  }
  .nav-item-dropdown.nav-dd-open .nav-dd-toggle { background: rgba(219,53,43,.07); }
  /* Dropdown inline – hidden by default, animate on click */
  .nav-item-dropdown .nav-dropdown {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    transform: none !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .28s ease, opacity .22s ease, visibility 0s .22s !important;
  }
  .nav-item-dropdown.nav-dd-open .nav-dropdown {
    max-height: 420px;
    opacity: 1;
    visibility: visible;
    transition: max-height .3s ease, opacity .22s ease, visibility 0s 0s !important;
  }
  .nav-dropdown-inner { border-radius: 0; overflow: visible; }
  .nav-dropdown-header { display: none; }
  .nav-dropdown-grid { grid-template-columns: 1fr 1fr; padding: 4px 0 10px; gap: 2px; }
  .nav-dropdown-grid a { padding: 9px 8px; font-size: 13px; color: var(--muted); border-radius: 8px; }
  .nav-dropdown-grid a:hover { background: var(--bg-alt); color: var(--teal); }
  .nav-dd-icon { width: 26px; height: 26px; border-radius: 7px; }
  .nav-cta { margin-top: 16px; }
  .nav-cta .btn-nav { width: 100%; justify-content: center; padding: 13px 18px; }

  /* Hero */
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-device { max-width: 400px; }
  .hero-stats { gap: 24px; }
  .hw-product-card { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .hw-product-img { max-height: 280px; }
  .partner-badge-inner { flex-direction: column; text-align: center; }
  .partner-badge-inner .btn { margin-left: 0; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ── Mobile ─────────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  /* Sections */
  .section { padding: 64px 0; }
  .content-section { padding: 56px 0; }
  .page-hero { padding: 48px 0 40px; }
  .page-hero p { font-size: 15px; }

  /* Hero */
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 10px; }
  .hero-device { padding: 16px; }

  /* Grids → 2 or 1 col */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .about-company-grid { grid-template-columns: 1fr; }

  /* Reference stats */
  .ref-stats { gap: 28px; }
  .ref-stat-num { font-size: 32px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  footer { padding: 48px 0 24px; }

  /* CTA */
  .cta-block { padding: 48px 24px; border-radius: 16px; }
  .cta-block h2 { font-size: 26px; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  /* Contact person */
  .contact-person { flex-direction: column; text-align: center; gap: 20px; padding: 24px; }
  .contact-person-photo { width: 96px; height: 96px; }

  /* Cookie banner */
  .cookie-banner-inner { flex-direction: column; text-align: center; }
  .cookie-banner-btns { width: 100%; }
  .cookie-btn { flex: 1; }

  /* Comparison */
  .cmp-header, .cmp-row { min-width: 560px; }

  /* Newsletter */
  .email-form { flex-direction: column; }
  .email-form .btn { width: 100%; justify-content: center; }
}

/* ── Small mobile ───────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero h1 { font-size: 28px; }
  .section-title { font-size: 24px; }
  .page-hero h1 { font-size: 26px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }

  .hero-stats { justify-content: center; }

  .cta-block { padding: 40px 18px; }
  .cta-block h2 { font-size: 22px; }
}

/* ── MOBILE APP PAGE ─────────────────────────────── */

/* Google Play badge */
.gplay-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111827;
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.12);
  transition: transform .2s, box-shadow .2s;
}
.gplay-badge:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.3); }
.gplay-badge-text { display: flex; flex-direction: column; line-height: 1; }
.gplay-badge-text span { font-size: 10px; color: rgba(255,255,255,.6); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 3px; }
.gplay-badge-text strong { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.gplay-badge--large { padding: 16px 28px; border-radius: 14px; }
.gplay-badge--large .gplay-badge-text strong { font-size: 21px; }

/* Feature grid */
.app-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.app-feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}
.app-feat-icon {
  width: 48px; height: 48px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  margin-bottom: 18px;
}
.app-feat-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.app-feat-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Showcase rows */
.app-showcase-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.app-showcase-row--reverse { grid-template-columns: auto 1fr; }
.app-showcase-row--reverse .app-showcase-text { order: 2; }
.app-showcase-row--reverse .app-showcase-visual { order: 1; }
.app-showcase-text .badge { color: var(--navy); background: var(--pale); }
.app-showcase-text h2 { margin-top: 8px; }
.app-showcase-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-showcase-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text); }

/* Phone frame mockup */
.phone-frame {
  background: #1a1e2e;
  border-radius: 38px;
  padding: 12px;
  box-shadow: 0 32px 64px rgba(0,0,0,.22), 0 0 0 1px rgba(255,255,255,.06) inset;
  flex-shrink: 0;
}
.phone-frame img { border-radius: 27px; display: block; width: 260px; height: auto; }
.phone-frame--small img { width: 210px; }

/* Dual screenshot row */
.app-dual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.app-dual-phone { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.app-dual-caption { text-align: center; }
.app-dual-caption h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.app-dual-caption p { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 280px; }

/* Responsive */
@media (max-width: 1024px) {
  .app-feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .app-showcase-row, .app-showcase-row--reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .app-showcase-row--reverse .app-showcase-text { order: 1; }
  .app-showcase-row--reverse .app-showcase-visual { order: 2; }
  .app-showcase-visual { display: flex; justify-content: center; }
  .app-dual-row { gap: 32px; }
}
@media (max-width: 640px) {
  .app-feat-grid { grid-template-columns: 1fr; }
  .app-dual-row { grid-template-columns: 1fr; }
  .phone-frame img { width: 220px; }
  .gplay-badge--large { padding: 14px 22px; }
  .gplay-badge--large .gplay-badge-text strong { font-size: 18px; }
}

/* ── SECTOR PAGES ─────────────────────────────── */

.sector-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  margin: 36px 0;
  display: block;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.challenge-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 0 14px 14px 0;
  padding: 22px 22px;
}

.challenge-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.challenge-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 !important;
  max-width: none !important;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.solution-item {
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 26px 24px;
  border: 1px solid var(--border);
}

.solution-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
}

.solution-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 !important;
  max-width: none !important;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.benefit-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
}

.benefit-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 !important;
  max-width: none !important;
}

/* ── CENA: FAKTORY ─────────────────────────────── */
.factor-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.factor-card {
  grid-column: span 2;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.factor-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: 0 14px 34px rgba(27, 58, 127, .08);
}
/* druhý řádek (body 4 a 5) vycentrovat na střed */
.factor-card:nth-child(4) { grid-column: 2 / span 2; }
.factor-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 18px;
}
.factor-card strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  padding-right: 28px;
}
.factor-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 !important;
  max-width: none !important;
}
.factor-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--navy);
  opacity: .08;
  pointer-events: none;
}

/* ── MISE ─────────────────────────────── */
.mission-band {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.mission-band .badge { margin-bottom: 20px; }
.mission-band .section-title { margin-bottom: 20px; }
.mission-band p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

/* ── PRO KAŽDOU ORGANIZACI – ÚROVNĚ ─────── */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.level-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.level-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: 0 14px 34px rgba(27, 58, 127, .08);
}
.level-card--top {
  border-color: var(--teal);
  box-shadow: 0 8px 28px rgba(219, 53, 43, .12);
}
.level-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.level-top .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
.level-num {
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--navy);
  opacity: .14;
}
.level-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 4px;
}
.level-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
}
.level-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}
.levels-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
  text-align: center;
}
.levels-cta p {
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
  margin: 0;
}

/* ── PANEL: MALÁ INSTITUCE? STAČÍ MOBIL. ── */
.mobile-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  background: linear-gradient(135deg, var(--dark), var(--navy));
  color: #fff;
  border-radius: 20px;
  padding: 36px 40px;
}
.mobile-panel-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.mobile-panel h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
}
.mobile-panel p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
  margin: 0;
  max-width: 760px;
}

.legislation-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 36px;
  margin-top: 40px;
}

.legislation-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legislation-box li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.legislation-box li:last-child { border-bottom: none; }

.legislation-box li::before {
  content: '§';
  font-size: 11px;
  font-weight: 800;
  color: var(--teal);
  flex-shrink: 0;
}

.sector-blockquote {
  border-left: 3px solid var(--teal);
  margin: 32px 0;
  padding: 18px 24px;
  background: rgba(219,53,43,.06);
  border-radius: 0 12px 12px 0;
}

.sector-blockquote p {
  font-size: 16px;
  font-style: italic;
  color: var(--dark) !important;
  margin: 0 0 8px !important;
  max-width: 100% !important;
}

.sector-blockquote cite {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}

.org-type-section {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 20px;
  background: #fff;
}

.org-type-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 12px;
}

.org-type-section p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 10px !important;
  max-width: none !important;
}

.org-type-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  background: var(--pale);
  padding: 4px 12px;
  border-radius: 6px;
}

.sector-tree {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  border-radius: 14px;
  padding: 28px 32px;
  margin: 40px 0;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.9;
  overflow-x: auto;
}

/* nav dropdown */
.nav-item-dropdown { position: relative; }
.nav-dd-toggle {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 600; color: var(--muted);
  padding: 7px 13px; border-radius: 8px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .15s, background .15s;
}
.nav-dd-toggle:hover { color: var(--teal); background: rgba(219,53,43,.09); }
.nav-dd-toggle svg { display: block; flex-shrink: 0; transition: transform .22s ease; }
.nav-item-dropdown.nav-dd-open .nav-dd-toggle { color: var(--teal); background: rgba(219,53,43,.09); }
.nav-item-dropdown.nav-dd-open .nav-dd-toggle svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 500px;
  background: #fff;
  border: 1px solid rgba(27,58,127,.1);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(27,58,127,.16);
  padding-top: 8px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility 0s .2s;
  pointer-events: none;
}
.nav-item-dropdown.nav-dd-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s 0s;
  pointer-events: auto;
}
.nav-dropdown-inner { border-radius: 18px; overflow: hidden; }
.nav-dropdown-header {
  font-size: 10.5px; font-weight: 700; color: var(--teal);
  letter-spacing: .1em; text-transform: uppercase;
  padding: 12px 16px 10px; border-bottom: 1px solid var(--border);
}
.nav-dropdown-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 8px;
}
.nav-dropdown-grid a {
  display: flex; align-items: center; gap: 11px; padding: 11px 12px;
  font-size: 13.5px; font-weight: 500; color: var(--dark);
  text-decoration: none; border-radius: 10px;
  transition: background .15s, color .15s; line-height: 1.3;
}
.nav-dropdown-grid a:hover { background: var(--bg-alt); color: var(--teal); }
.nav-dd-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(219,53,43,.1); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .15s;
}
.nav-dropdown-grid a:hover .nav-dd-icon { background: rgba(219,53,43,.2); }

@media (max-width: 980px) {
  .levels-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .challenge-grid,
  .solution-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .factor-grid { grid-template-columns: 1fr; }
  .factor-card,
  .factor-card:nth-child(4) { grid-column: auto; }
  .levels-grid { grid-template-columns: 1fr; }
  .mission-band p { font-size: 16px; }
  .mobile-panel { grid-template-columns: 1fr; gap: 18px; padding: 28px 24px; }
  .sector-img { max-height: 220px; margin: 24px 0; }
  .legislation-box { padding: 22px 20px; }
  .nav-dropdown-grid { grid-template-columns: 1fr; }
}

/* ── SECTOR PAGES v2 ─────────────────────────────── */

/* Hero */
.sc-hero {
  position: relative; min-height: 600px;
  display: flex; flex-direction: column; overflow: hidden;
}
.sc-hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.sc-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center; display: block;
}
.sc-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(20,38,79,.92) 0%,
    rgba(23,46,110,.80) 50%,
    rgba(42,86,168,.62) 100%
  );
}
.sc-hero-body {
  position: relative; z-index: 2;
  flex: 1; display: flex; align-items: flex-end;
  padding-top: 80px;
}
.sc-hero-body > .container { padding-bottom: 64px; }
.sc-sector-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
  padding: 7px 16px;
  font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.9);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 24px;
}
.sc-hero-body h1 {
  font-size: clamp(32px, 5vw, 58px); font-weight: 900; color: #fff;
  line-height: 1.08; letter-spacing: -.03em;
  max-width: 640px; margin-bottom: 20px;
}
.sc-hero-body > .container > p {
  font-size: 18px; color: rgba(255,255,255,.68);
  max-width: 520px; line-height: 1.72; margin-bottom: 36px;
}
.sc-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.sc-stats-strip {
  position: relative; z-index: 2;
  background: rgba(0,0,0,.28); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.sc-stats { display: flex; }
.sc-stat {
  flex: 1; padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.sc-stat:last-child { border-right: none; }
.sc-stat-num {
  display: block; font-size: 28px; font-weight: 900; color: #fff;
  letter-spacing: -.03em; line-height: 1; margin-bottom: 5px;
}
.sc-stat-label {
  font-size: 11px; color: rgba(255,255,255,.5);
  font-weight: 500; text-transform: uppercase; letter-spacing: .07em;
}

/* Content sections */
.sc-section { padding: 88px 0; }
.sc-section--alt { background: var(--bg-alt); }
.sc-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px;
}
.sc-eyebrow::before {
  content: ''; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  display: block; flex-shrink: 0;
}
.sc-h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--dark);
  letter-spacing: -.025em; line-height: 1.18; margin-bottom: 16px;
}
.sc-sub {
  font-size: 17px; color: var(--muted); line-height: 1.72; max-width: 560px;
}
.sc-header { margin-bottom: 52px; }
.sc-header--center { text-align: center; }
.sc-header--center .sc-eyebrow { display: block; }
.sc-header--center .sc-h2 { max-width: none; }
.sc-header--center .sc-sub { margin: 0 auto; }

/* Challenges */
.sc-challenges {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.sc-challenge {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 28px 24px; position: relative; overflow: hidden;
  transition: all .22s;
}
.sc-challenge:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(27,58,127,.09);
  border-color: rgba(219,53,43,.4);
}
.sc-challenge-num {
  position: absolute; top: -10px; right: 16px;
  font-size: 88px; font-weight: 900; color: rgba(219,53,43,.07);
  line-height: 1; pointer-events: none; user-select: none;
}
.sc-challenge-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(135deg, rgba(219,53,43,.12), rgba(219,53,43,.1));
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.sc-challenge h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin: 0 0 10px; }
.sc-challenge p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Feature blocks */
.sc-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  padding: 72px 0; border-bottom: 1px solid var(--border);
}
.sc-feature:first-child { padding-top: 0; }
.sc-feature:last-child { border-bottom: none; padding-bottom: 0; }
.sc-feature--flip .sc-feature-media { order: -1; }
.sc-feature-media img {
  width: 100%; height: 440px; object-fit: cover;
  border-radius: 22px; display: block;
  box-shadow: 0 28px 72px rgba(27,58,127,.16);
}
.sc-feature-text .sc-h2 { max-width: none; }
.sc-feature-text .sc-sub { max-width: none; margin-bottom: 28px; }
.sc-feature-checks {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.sc-feature-checks li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--muted); line-height: 1.6;
}
.sc-check-icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--green));
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}

/* Benefit cards */
.sc-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.sc-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 28px 26px; transition: all .22s;
}
.sc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27,58,127,.1);
  border-color: rgba(219,53,43,.4);
}
.sc-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(219,53,43,.12), rgba(219,53,43,.1));
  color: var(--teal);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.sc-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin: 0 0 10px; }
.sc-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Quote */
.sc-quote {
  background: var(--dark); border-radius: 24px; padding: 48px 56px;
  position: relative; overflow: hidden;
}
.sc-quote::before {
  content: '"'; position: absolute; top: -20px; left: 36px;
  font-size: 200px; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,.04); pointer-events: none;
}
.sc-quote p {
  font-size: 20px; font-weight: 600; color: rgba(255,255,255,.9);
  line-height: 1.62; font-style: italic; margin: 0 0 20px; max-width: 700px;
  position: relative; z-index: 1;
}
.sc-quote cite {
  font-size: 13px; color: rgba(255,255,255,.45);
  font-style: normal; position: relative; z-index: 1;
}

/* Legislation */
.sc-legislation {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-top: 40px;
}
.sc-leg-item {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start;
}
.sc-leg-badge {
  background: linear-gradient(135deg, var(--teal), var(--green));
  border-radius: 7px; padding: 4px 10px;
  font-size: 10.5px; font-weight: 700; color: #fff;
  white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}
.sc-leg-item strong {
  display: block; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px;
}
.sc-leg-item p { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .sc-challenges { grid-template-columns: repeat(2, 1fr); }
  .sc-cards { grid-template-columns: repeat(2, 1fr); }
  .sc-feature { gap: 48px; }
  .sc-feature-media img { height: 360px; }
}
@media (max-width: 768px) {
  .sc-hero { min-height: 480px; }
  .sc-hero-body h1 { font-size: 30px; }
  .sc-hero-body > .container > p { font-size: 16px; }
  .sc-stats { flex-wrap: wrap; }
  .sc-stat { flex: 1 0 50%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .sc-stat:nth-child(2n) { border-right: none; }
  .sc-stat:nth-child(n+3) { border-bottom: none; }
  .sc-feature { grid-template-columns: 1fr; gap: 32px; }
  .sc-feature--flip .sc-feature-media { order: 0; }
  .sc-feature-media img { height: 260px; }
  .sc-challenges { grid-template-columns: 1fr; }
  .sc-cards { grid-template-columns: 1fr; }
  .sc-legislation { grid-template-columns: 1fr; }
  .sc-quote { padding: 32px 28px; }
  .sc-quote p { font-size: 17px; }
  .sc-section { padding: 60px 0; }
}

/* ── POPTÁVKOVÝ FORMULÁŘ (CENÍK) ─────────────────── */
.poptavka-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.poptavka-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(27, 58, 127, .05);
  transition: box-shadow .2s;
}
.poptavka-card:last-child { margin-bottom: 0; }
.poptavka-card:hover { box-shadow: 0 4px 24px rgba(27, 58, 127, .1); }

.poptavka-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}

.poptavka-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(219, 53, 43, .35);
}

.poptavka-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.poptavka-card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.poptavka-fields {
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.poptavka-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.poptavka-row--single {
  grid-template-columns: 1fr;
}

.poptavka-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.poptavka-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.poptavka-field input,
.poptavka-field select,
.poptavka-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
  appearance: none;
}
.poptavka-field input:focus,
.poptavka-field select:focus,
.poptavka-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(219, 53, 43, .15);
}
.poptavka-field input::placeholder,
.poptavka-field textarea::placeholder { color: #b0bec5; }
.poptavka-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6e80' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.poptavka-field textarea { resize: vertical; min-height: 100px; }

.req { color: #e53e3e; }

.poptavka-card--submit {
  border: 2px solid var(--teal);
  background: linear-gradient(135deg, rgba(219,53,43,.04) 0%, rgba(219,53,43,.04) 100%);
}

.poptavka-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}
.poptavka-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  margin-top: 2px;
  accent-color: var(--teal);
}
.poptavka-checkbox a { color: var(--teal); }

/* Sidebar */
.poptavka-sidebar {
  position: sticky;
  top: 100px;
}
.poptavka-sidebar-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(27, 58, 127, .06);
}

.poptavka-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.poptavka-step:last-of-type { margin-bottom: 0; }

.poptavka-step-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(219, 53, 43, .3);
}

.poptavka-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.poptavka-step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .poptavka-layout { grid-template-columns: 1fr; }
  .poptavka-sidebar { position: static; }
  .cenik-price-cards { grid-template-columns: 1fr !important; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
  .poptavka-row { grid-template-columns: 1fr; }
  .poptavka-card { padding: 20px 18px; }
  .poptavka-sidebar-inner { padding: 20px 18px; }
  .benefit-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ACCORDION ───────────────────────────────── */
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: rgba(219,53,43,.35); }
.faq-item[open] {
  border-color: rgba(219,53,43,.45);
  box-shadow: 0 10px 30px rgba(27,58,127,.08);
}
.faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.45;
  user-select: none;
  transition: color .15s ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--teal); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pale);
  color: var(--teal);
  transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(135deg);
  background: var(--teal);
  color: #fff;
}
.faq-a {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.faq-item[open] .faq-a {
  animation: faqReveal .25s ease;
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
