/* =====================================================
   OMEGA plus Chrudim — moderní redesign
   Sdílené styly pro celý web
   ===================================================== */

/* ----- 1. Reset & základní nastavení ----- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand-dark); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; }

/* ----- 2. Design tokens (CSS proměnné) ----- */
:root {
  /* Plocha */
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-mute: #f1f5f9;
  --surface: #ffffff;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  /* Text */
  --ink: #0f172a;
  --text: #1f2937;
  --muted: #64748b;

  /* Značka — modernizovaná Omega červená */
  --brand: #d92534;
  --brand-dark: #a8121e;
  --brand-light: #fee5e7;

  /* Akcent – tech blue (internet) */
  --accent: #0ea5e9;
  --accent-dark: #0369a1;
  --accent-light: #e0f2fe;

  /* Stavové */
  --ok: #15803d;
  --ok-soft: #dcfce7;
  --warn: #b45309;
  --warn-soft: #fef3c7;

  /* Tmavá plocha */
  --dark: #0b1220;
  --dark-2: #1a2236;
  --on-dark: #e2e8f0;
  --on-dark-mute: #94a3b8;

  /* Stíny / poloměry */
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
  --shadow: 0 4px 6px -1px rgba(15,23,42,.06), 0 10px 15px -3px rgba(15,23,42,.08);
  --shadow-lg: 0 20px 40px -12px rgba(15,23,42,.18);
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Mřížka */
  --maxw: 1200px;
  --gap: 24px;
  --pad-y: clamp(48px, 8vw, 96px);
}

/* ----- 3. Kontejnery ----- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--pad-y) 0; }
.section--soft { background: var(--bg-soft); }
.section--mute { background: var(--bg-mute); }
.section--dark { background: var(--dark); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark a:not(.btn) { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 12px;
}
.section--dark .eyebrow { color: #fca5a5; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }
.section--dark .lead { color: var(--on-dark-mute); }
.muted { color: var(--muted); }
.center { text-align: center; }
.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head .lead { margin-left: auto; margin-right: auto; }

/* ----- 4. Topbar ----- */
.topbar {
  background: var(--dark); color: var(--on-dark);
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 8px 0; flex-wrap: wrap;
}
.topbar-contacts {
  display: flex; gap: 24px; flex-wrap: wrap;
  list-style: none; margin: 0; padding: 0;
}
.topbar-contacts li { display: flex; align-items: center; gap: 8px; }
.topbar-contacts a { color: #fff; font-weight: 600; }
.topbar-contacts a:hover { color: #fca5a5; }
.topbar-contacts .label { color: var(--on-dark-mute); }
.topbar-extra { display: flex; gap: 16px; align-items: center; }
.topbar-extra a { color: var(--on-dark-mute); }
.topbar-extra a:hover { color: #fff; }
@media (max-width: 900px) { .topbar { display: none; } }

/* ----- 5. Header ----- */
.header {
  position: sticky; top: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.25rem; letter-spacing: -.01em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, #ec4862 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1.1rem;
  box-shadow: 0 6px 14px -3px rgba(217,37,52,.5);
}
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name span:last-child {
  font-size: .72rem; font-weight: 600;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
}

.nav { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav > li { position: relative; }
.nav a, .nav-toggle {
  display: inline-block; padding: 9px 14px;
  border-radius: 10px;
  color: var(--ink); font-weight: 500; font-size: .95rem;
  background: none; border: 0;
}
.nav a:hover, .nav-toggle:hover { background: var(--bg-mute); color: var(--brand); }
.nav a.active { color: var(--brand); }

.has-sub > .nav-toggle::after {
  content: ""; display: inline-block;
  width: 8px; height: 8px;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: .55;
}
.submenu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 240px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: var(--shadow-lg);
  list-style: none; margin: 0; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 60;
}
.has-sub:hover > .submenu,
.has-sub:focus-within > .submenu,
.has-sub.open > .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu a { display: block; padding: 10px 12px; border-radius: 8px; font-size: .92rem; }

.header-cta { display: flex; gap: 10px; align-items: center; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px; background: #fff; color: var(--ink);
  align-items: center; justify-content: center;
}
.burger span { position: relative; width: 18px; height: 2px; background: currentColor; display: block; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }

@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .nav.open {
    display: flex; position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px; gap: 4px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
  }
  .nav.open .submenu {
    position: static; box-shadow: none; border: 0;
    opacity: 1; visibility: visible; transform: none;
    padding: 4px 8px 4px 16px;
  }
  .header-cta .btn-primary { display: none; }
}

/* ----- 6. Tlačítka ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 13px 22px;
  border-radius: 12px;
  font-weight: 600; font-size: .98rem;
  border: 1px solid transparent; text-decoration: none; white-space: nowrap;
  transition: transform .1s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--sm { padding: 8px 14px; font-size: .85rem; border-radius: 9px; }

.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 6px 14px -4px rgba(217,37,52,.5);
}
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark-2); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); background: var(--bg-soft); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--bg-mute); color: var(--brand); }
.btn-on-dark { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.btn-on-dark:hover { background: rgba(255,255,255,.2); color: #fff; }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ----- 7. Hero ----- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 90% 10%, rgba(14,165,233,.15) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(217,37,52,.18) 0%, transparent 40%),
    linear-gradient(180deg, #0b1220 0%, #131c30 100%);
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  padding: clamp(56px, 9vw, 110px) 0 clamp(56px, 7vw, 90px);
  align-items: center;
}
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5.2vw, 4rem); }
.hero h1 .accent {
  background: linear-gradient(90deg, #ff8d96 0%, #fbbf24 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p.lead { color: var(--on-dark-mute); font-size: 1.15rem; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 28px; padding: 0; }
.hero-trust li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; color: var(--on-dark-mute);
  list-style: none;
}
.hero-trust li::before {
  content: ""; width: 18px; height: 18px;
  background: rgba(34,197,94,.2); border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2322c55e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8 7 12 13 4'/></svg>");
  background-position: center; background-repeat: no-repeat;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
}

/* Adresní checker */
.checker {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 24px;
  backdrop-filter: blur(6px);
}
.checker-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: #fff; }
.checker-sub { color: var(--on-dark-mute); font-size: .9rem; margin-bottom: 18px; }
.checker form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checker .field { grid-column: span 1; }
.checker .field--full { grid-column: span 2; }
.checker label {
  display: block; color: var(--on-dark-mute);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 6px;
}
.checker input {
  width: 100%; padding: 14px 16px; font-size: 1rem;
  font-family: inherit;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px; color: #fff;
  transition: border-color .15s, background .15s;
}
.checker input::placeholder { color: rgba(255,255,255,.4); }
.checker input:focus {
  outline: none; border-color: #ff6b78;
  background: rgba(255,255,255,.1);
}
.checker .btn { width: 100%; }
.checker-note { margin-top: 14px; font-size: .8rem; color: var(--on-dark-mute); display: flex; align-items: center; gap: 8px; }
.checker-note::before { content: "ⓘ"; opacity: .8; }

.checker--light {
  background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow); color: var(--ink);
}
.checker--light .checker-title { color: var(--ink); }
.checker--light .checker-sub { color: var(--muted); }
.checker--light label { color: var(--muted); }
.checker--light input {
  background: var(--bg-soft); border-color: var(--border); color: var(--ink);
}
.checker--light input::placeholder { color: var(--muted); }
.checker--light input:focus {
  background: #fff; border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-light);
}
.checker--light .checker-note { color: var(--muted); }

/* ----- 8. Karty ----- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease, border-color .15s ease;
}
.card-link, a.card { color: inherit; }
.card-link:hover, a.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
.card .icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--brand-light); color: var(--brand);
  margin-bottom: 16px;
}
.card .icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.card p { color: var(--muted); margin-bottom: 0; }
.card .more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-weight: 600; font-size: .92rem;
  color: var(--brand);
}
.card .more .arrow { transition: transform .15s ease; }
.card-link:hover .more .arrow { transform: translateX(4px); }

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ----- 9. Tarify ----- */
.tariff {
  position: relative; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 32px; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tariff:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tariff--featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, #fff 0%, #fff7f8 100%);
  box-shadow: 0 30px 60px -30px rgba(217,37,52,.3);
}
.tariff--featured::before {
  content: "Nejoblíbenější";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 99px; white-space: nowrap;
}
.tariff-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-dark); background: var(--accent-light);
  padding: 4px 10px; border-radius: 99px; margin-bottom: 14px;
}
.tariff--featured .tariff-tag { color: var(--brand-dark); background: var(--brand-light); }
.tariff h3 { font-size: 1.6rem; margin-bottom: 4px; }
.tariff-speed {
  font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em;
  color: var(--ink); margin: 8px 0 4px; line-height: 1;
}
.tariff-speed-unit { font-size: 1.2rem; color: var(--muted); font-weight: 600; }
.tariff-tech { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.tariff-price {
  font-size: 2.2rem; font-weight: 800;
  color: var(--ink); margin: 8px 0 0; letter-spacing: -.02em;
}
.tariff-price small { font-size: .9rem; font-weight: 500; color: var(--muted); }
.tariff-divider { border: 0; border-top: 1px solid var(--border); margin: 22px 0; }
.tariff-features {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.tariff-features li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--text); font-size: .95rem;
}
.tariff-features li::before {
  content: ""; flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--ok-soft); border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2315803d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8 7 12 13 4'/></svg>");
  background-position: center; background-repeat: no-repeat;
  background-size: 12px 12px; margin-top: 2px;
}
.tariff .btn { width: 100%; }

/* TV package */
.pkg {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pkg:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pkg-header {
  padding: 22px 24px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
}
.pkg--featured .pkg-header {
  background: linear-gradient(135deg, var(--brand) 0%, #ec4862 100%);
}
.pkg-header h3 { color: #fff; margin: 0 0 4px; font-size: 1.3rem; }
.pkg-header .pkg-sub { font-size: .85rem; color: rgba(255,255,255,.75); }
.pkg-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pkg-price {
  font-size: 2rem; font-weight: 800; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 4px;
}
.pkg-price small { font-size: .85rem; font-weight: 500; color: var(--muted); }
.pkg-save {
  display: inline-block;
  background: var(--ok-soft); color: var(--ok);
  font-size: .8rem; font-weight: 600;
  padding: 3px 10px; border-radius: 99px; margin-bottom: 14px;
}
.pkg-stats {
  display: flex; gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  font-size: .88rem;
}
.pkg-stats div { display: flex; flex-direction: column; }
.pkg-stats strong { font-size: 1.15rem; color: var(--ink); }
.pkg-desc { color: var(--muted); font-size: .92rem; flex: 1; margin-bottom: 16px; }
.pkg-foot { display: flex; gap: 8px; }

/* TV addon */
.addon {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.addon strong { font-size: 1rem; color: var(--ink); display: block; }
.addon span { color: var(--muted); font-size: .85rem; }
.addon .price { font-weight: 800; font-size: 1.15rem; color: var(--brand); white-space: nowrap; }

/* ----- 10. Tabulky cen ----- */
.price-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  font-size: .94rem;
}
.price-table th, .price-table td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.price-table th {
  background: var(--bg-mute); font-weight: 700; color: var(--ink);
  font-size: .85rem; text-transform: uppercase; letter-spacing: .04em;
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:nth-child(even) td { background: var(--bg-soft); }
.price-table .num { text-align: right; font-variant-numeric: tabular-nums; }

.price-group { margin-bottom: 36px; }
.price-group h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.price-group h3::before { content: ""; width: 5px; height: 22px; background: var(--brand); border-radius: 99px; }

/* ----- 11. Kontakty ----- */
.contact-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.contact-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-light); color: var(--brand);
  margin-bottom: 12px;
}
.contact-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.contact-card .phone {
  font-size: 1.4rem; font-weight: 800;
  color: var(--ink); letter-spacing: -.01em;
}
.contact-card .phone:hover { color: var(--brand); }
.contact-card .hours { color: var(--muted); font-size: .9rem; }
.contact-card .email { font-weight: 500; }

/* ----- 12. Forms ----- */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: .88rem; font-weight: 600;
  color: var(--ink); margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 14px; font-size: 1rem;
  font-family: inherit;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 10px; color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-light);
}
.form-group .help { font-size: .82rem; color: var(--muted); margin-top: 6px; }

/* ----- 13. FAQ ----- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: border-color .15s;
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  list-style: none; padding: 18px 22px;
  cursor: pointer; font-weight: 600; font-size: 1.02rem;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-mute);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 600; color: var(--brand);
  transition: transform .15s ease;
}
.faq details[open] summary::after { content: "−"; background: var(--brand); color: #fff; }
.faq .faq-body { padding: 0 22px 22px; color: var(--text); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ----- 14. Page hero ----- */
.page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(14,165,233,.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(217,37,52,.18) 0%, transparent 50%),
    linear-gradient(180deg, #0b1220 0%, #131c30 100%);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
}
.page-hero > .container { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: var(--on-dark-mute); }
.breadcrumbs { font-size: .9rem; color: var(--on-dark-mute); margin-bottom: 18px; }
.breadcrumbs a { color: var(--on-dark-mute); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span.sep { margin: 0 8px; opacity: .5; }

/* ----- 15. Footer ----- */
.footer {
  background: var(--dark); color: var(--on-dark);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer h4 {
  font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--on-dark-mute); font-size: .92rem; }
.footer a:hover { color: #fff; }
.footer .footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer .footer-brand .brand-mark { box-shadow: none; }
.footer .footer-brand strong { color: #fff; font-size: 1.1rem; }
.footer .footer-about { color: var(--on-dark-mute); font-size: .9rem; max-width: 32ch; }
.footer-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem; color: var(--on-dark-mute);
}
.footer-meta a { font-size: inherit; }
.footer-meta .partners { display: flex; gap: 16px; flex-wrap: wrap; }

/* ----- 16. Stats ----- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stats .stat {
  padding: 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.stats .stat:last-child { border-right: 0; }
.stats .stat strong {
  display: block; font-size: 2rem; font-weight: 800;
  letter-spacing: -.02em; color: var(--brand);
}
.stats .stat span { display: block; font-size: .9rem; color: var(--muted); margin-top: 2px; }
@media (max-width: 800px) { .stats .stat:nth-child(2) { border-right: 0; } }

/* ----- 17. CTA box ----- */
.cta-box {
  background: linear-gradient(135deg, var(--brand) 0%, #ec4862 100%);
  color: #fff;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--r-xl);
  display: grid; grid-template-columns: 1.5fr auto;
  align-items: center; gap: 32px;
  box-shadow: 0 30px 60px -30px rgba(217,37,52,.4);
}
@media (max-width: 720px) { .cta-box { grid-template-columns: 1fr; } }
.cta-box h2 { color: #fff; margin-bottom: 6px; }
.cta-box p { color: rgba(255,255,255,.85); margin-bottom: 0; max-width: 50ch; }
.cta-box .btn-light { background: #fff; color: var(--brand-dark); font-weight: 700; }
.cta-box .btn-light:hover { background: #fff; color: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 10px 20px -8px rgba(0,0,0,.3); }
.cta-box--dark { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); box-shadow: 0 30px 60px -30px rgba(11,18,32,.6); }
.cta-box--dark h2 { color: #fff; }
.cta-box--dark p { color: var(--on-dark-mute); }

/* ----- 18. Photo strip ----- */
.photo-strip { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.photo-strip .col { display: grid; gap: 16px; }
.photo-strip .col--right { grid-template-rows: 1fr 1fr; }
.photo-strip img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--r); aspect-ratio: 4 / 3;
}
.photo-strip .col--right img { aspect-ratio: 4 / 3; }
@media (max-width: 700px) { .photo-strip { grid-template-columns: 1fr; } }

.photo-card {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow);
  background: var(--bg-mute);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.photo-card .photo-cap {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  background: rgba(11,18,32,.7); backdrop-filter: blur(6px);
  color: #fff; padding: 10px 14px; border-radius: 10px; font-size: .9rem;
}

/* ----- 19. Misc ----- */
.tag {
  display: inline-block; font-size: .8rem; font-weight: 600;
  background: var(--bg-mute); color: var(--ink);
  padding: 4px 10px; border-radius: 99px;
}
.tag-success { background: var(--ok-soft); color: var(--ok); }
.tag-warn { background: var(--warn-soft); color: var(--warn); }
.tag-brand { background: var(--brand-light); color: var(--brand-dark); }
.divider { border: 0; border-top: 1px solid var(--border); margin: 48px 0; }
.list-clean { list-style: none; padding: 0; margin: 0 0 1em; }
.list-clean li { padding: 6px 0; }
.list-check { list-style: none; padding: 0; margin: 0 0 1em; }
.list-check li { position: relative; padding: 6px 0 6px 32px; }
.list-check li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 20px; height: 20px;
  background: var(--ok-soft); border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2315803d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8 7 12 13 4'/></svg>");
  background-size: 12px 12px; background-position: center; background-repeat: no-repeat;
}

/* News */
.news { display: flex; flex-direction: column; gap: 16px; }
.news article {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px 28px;
  transition: border-color .15s;
}
.news article:hover { border-color: var(--border-strong); }
.news .date {
  display: inline-block; font-size: .82rem; font-weight: 600;
  color: var(--brand); margin-bottom: 6px;
}
.news h3 { font-size: 1.15rem; margin-bottom: 6px; }
.news p { color: var(--muted); margin: 0; }

/* Anchor offset */
section[id] { scroll-margin-top: 90px; }

/* Service rows (split content image+text) */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.split.reverse > :first-child { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } .split.reverse > :first-child { order: 0; } }

.feature-list { display: grid; gap: 14px; }
.feature-list .item {
  display: flex; gap: 14px; align-items: flex-start;
}
.feature-list .item .icon-mini {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--brand-light); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.feature-list .item h4 { margin: 0 0 4px; font-size: 1.05rem; }
.feature-list .item p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Print */
@media print {
  .topbar, .header, .footer, .burger, .btn { display: none; }
  body { color: #000; background: #fff; }
}
