:root {
  --navy-950: #071221;
  --navy-900: #0a1b33;
  --navy-800: #10284a;
  --navy-700: #173a68;
  --steel-500: #7f93ae;
  --steel-300: #b7c5d8;
  --steel-100: #e7eef6;
  --ice: #f5f8fc;
  --white: #fff;
  --accent: #3d8fd9;
  --accent-2: #5aa7ea;
  --ok: #1f8a5b;
  --err: #c4453c;
  --text: #122033;
  --muted: #5c6d84;
  --line: #d5dfec;
  --shadow: 0 18px 50px rgba(7, 18, 33, .12);
  --radius: 16px;
  --header: 76px;
  --font: "Manrope", "Segoe UI", system-ui, sans-serif;
  --display: "Unbounded", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--ice);
  line-height: 1.55;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-700); }
h1, h2, h3, .brand strong {
  font-family: var(--display);
  letter-spacing: -.03em;
  line-height: 1.15;
}
.ico { width: 1.15em; height: 1.15em; flex: none; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, 100%); }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 12px; z-index: 80; background: #fff; padding: 8px 12px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; text-decoration: none;
  font: 700 14px/1 var(--font);
  padding: 12px 18px; border-radius: 999px;
  transition: .2s transform, .2s background, .2s box-shadow;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: linear-gradient(180deg, var(--accent-2), var(--accent)); color: #fff; box-shadow: 0 10px 24px rgba(61,143,217,.28); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn-light { background: #fff; color: var(--navy-900); }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-danger { background: var(--err); color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; text-decoration: none; color: var(--accent); }
.eyebrow {
  text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 800;
  color: var(--accent); margin: 0 0 10px;
}
.muted { color: var(--muted); }

.site-header {
  position: sticky; top: 0; z-index: 40;
  height: var(--header);
  background: rgba(10, 27, 51, .92);
  backdrop-filter: blur(16px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner { height: var(--header); display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; min-width: 180px; }
.logo-mark { width: 42px; height: 42px; color: var(--accent-2); }
.brand-text { display: flex; flex-direction: column; }
.brand-text strong { font-size: 15px; }
.brand-text small { font-size: 10px; letter-spacing: .04em; color: var(--steel-300); text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-item { position: relative; }
.nav-item { position: relative; flex-shrink: 0; }
.nav-item > a {
  color: #dbe6f3; text-decoration: none; font-weight: 600; font-size: 13.5px;
  padding: 10px 12px; border-radius: 10px; display: block; white-space: nowrap;
}
.nav-item.is-active > a, .nav-item > a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-sub {
  display: none; position: absolute; top: 100%; left: 0; min-width: 280px;
  background: #0d2240; border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 8px; box-shadow: var(--shadow);
}
.nav-item.has-sub:hover .nav-sub, .nav-item.has-sub:focus-within .nav-sub { display: grid; }
.nav-sub a {
  display: flex; align-items: center; gap: 10px; color: #e8eef6; text-decoration: none;
  padding: 9px 10px; border-radius: 10px; font-size: 13px; font-weight: 600;
}
.nav-sub a:hover, .nav-sub a.is-active { background: rgba(61,143,217,.16); }
.nav-ico { width: 28px; height: 28px; display: grid; place-items: center; background: rgba(255,255,255,.06); border-radius: 8px; color: var(--accent-2); }
.header-cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 6px; color: #fff; text-decoration: none; font-weight: 700; white-space: nowrap; }

.soc { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.soc-link {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  color: #fff; text-decoration: none; flex: none;
  transition: transform .15s ease, filter .15s ease;
}
.soc-link:hover { transform: translateY(-1px); filter: brightness(1.08); color: #fff; }
.soc-link .ico { width: 18px; height: 18px; }
.soc-telegram { background: #2AABEE; }
.soc-max { background: #4B51C8; }
.soc-whatsapp { background: #25D366; }
.soc-vk { background: #0077FF; }
.soc-ok { background: #EE8208; }
.soc-header { gap: 6px; flex-wrap: nowrap; flex-shrink: 0; }
.soc-header .soc-link { width: 32px; height: 32px; border-radius: 9px; }
.soc-hero { margin-top: 18px; }
.soc-footer { margin-top: 16px; }
.soc-page { margin-top: 16px; }
.soc-dock {
  position: fixed; right: 18px; bottom: 18px; z-index: 31;
}
.soc-fab { flex-direction: column; gap: 10px; }
.soc-fab .soc-link {
  width: 48px; height: 48px; border-radius: 14px;
  box-shadow: 0 10px 28px rgba(7, 18, 33, .22);
}
.soc-fab .soc-link .ico { width: 22px; height: 22px; }
.nav-toggle { display: none; background: transparent; border: 0; color: #fff; }
.nav-toggle .ico { width: 24px; height: 24px; }

.hero {
  position: relative; color: #fff;
  background: radial-gradient(1200px 500px at 80% -10%, rgba(61,143,217,.28), transparent 55%),
              linear-gradient(165deg, var(--navy-950), var(--navy-800) 58%, #0c2748);
  overflow: hidden; padding: 72px 0 80px;
}
.hero-bg {
  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: 48px 48px;
  mask-image: radial-gradient(circle at 70% 40%, #000 20%, transparent 75%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5vw, 58px); margin: 0 0 16px; }
.hero-lead { font-size: 18px; color: var(--steel-300); max-width: 36em; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 18px; }
.hero-tel { color: #fff; text-decoration: none; font-weight: 700; display: inline-flex; gap: 8px; align-items: center; }
.hero-panel {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; padding: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 18px;
}
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 0; }
.stats dt { font-family: var(--display); font-size: 32px; margin: 0; }
.stats dd { margin: 4px 0 0; color: var(--steel-300); font-size: 13px; }

.adv-section { padding-top: 56px; }
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.adv-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 28px 24px 26px; min-height: 100%;
  box-shadow: 0 10px 30px rgba(7, 18, 33, .04);
  transition: .2s transform, .2s box-shadow, .2s border-color;
}
.adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #bcd3ee; }
.adv-ico {
  width: 84px; height: 84px; border-radius: 22px;
  display: grid; place-items: center;
  background: var(--navy-900); color: var(--accent-2);
  margin-bottom: 22px;
}
.adv-ico .ico { width: 42px; height: 42px; stroke-width: 1.7; }
.adv-card h3 {
  margin: 0 0 10px; font-size: 18px; letter-spacing: .06em;
  text-transform: uppercase;
}
.adv-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.45; }

.section { padding: 72px 0; }
.section-navy { background: var(--navy-900); color: #fff; }
.section-navy .eyebrow { color: var(--accent-2); }
.section-navy .prose { color: var(--steel-300); }
.section-muted { background: #fff; }
.section-head { display: flex; align-items: end; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.section-head h2 { margin: 0; flex: 1; font-size: 32px; }
.section-head .eyebrow { width: 100%; margin-bottom: -8px; }

.cards-8 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cards-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; text-decoration: none; color: inherit;
  transition: .2s transform, .2s box-shadow, .2s border-color;
  min-height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #bcd3ee; }
.card-num { font-family: var(--display); color: var(--steel-500); font-size: 12px; }
.card-ico { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--navy-900); color: var(--accent-2); margin: 10px 0 12px; }
.card h3 { margin: 0 0 8px; font-size: 16px; }
.card-service { position: relative; overflow: hidden; isolation: isolate; }
.card-service.has-cover::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--card-cover) center/cover no-repeat;
  opacity: .28;
  z-index: 0;
}
.card-service.has-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(255,255,255,.55), rgba(245,248,252,.88));
  z-index: 0;
}
.card-service.has-cover > * { position: relative; z-index: 1; }
.card-service.has-cover .card-ico { background: rgba(10, 27, 51, .82); }
.card-region { background: var(--navy-900); color: #fff; border: 0; }
.card-region p { color: var(--steel-300); }
.card-region .ico { color: var(--accent-2); }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.checks { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; background: rgba(255,255,255,.04); border-radius: 14px; padding: 14px 16px; }
.checks .ico { color: var(--accent-2); margin-top: 2px; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 14px;
}
.partner-logo {
  display: grid; place-items: center;
  height: 112px; padding: 18px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  text-decoration: none;
  transition: .2s border-color, .2s box-shadow, .2s transform;
}
.partner-logo img {
  max-width: 100%; max-height: 72px; width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(1); opacity: .78;
  transition: .2s filter, .2s opacity;
}
.partner-logo:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #bcd3ee; }
.partner-logo:hover img { filter: none; opacity: 1; }

.tape-nav { display: flex; gap: 8px; margin-left: auto; }
.tape-btn {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; color: var(--navy-900);
  cursor: pointer; display: grid; place-items: center;
}
.tape-btn:hover { border-color: var(--accent); color: var(--accent); }
.tape-btn .ico { width: 20px; height: 20px; }
.tape-track {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding: 2px 2px 10px;
}
.tape-track::-webkit-scrollbar { display: none; }
.tape-card {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden;
}
.tape-photo {
  display: block; width: 100%; padding: 0; border: 0; margin: 0;
  background: none; cursor: zoom-in; position: relative; font: inherit; color: inherit;
}
.tape-photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; background: var(--steel-100); pointer-events: none; }
.tape-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,18,33,.28));
  opacity: 0; transition: .2s opacity; pointer-events: none;
}
.tape-photo:hover::after, .tape-photo:focus-visible::after { opacity: 1; }
.tape-photo:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

.lightbox { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 56px 64px 28px; }
.lightbox-backdrop {
  position: absolute; inset: 0; border: 0; padding: 0; cursor: zoom-out;
  background: rgba(7,18,33,.9);
}
.lightbox-frame {
  position: relative; z-index: 1; margin: 0;
  display: grid; justify-items: center; gap: 14px;
  max-width: 100%;
}
.lightbox-frame img {
  max-width: min(calc(100vw - 128px), 1200px);
  max-height: min(calc(100vh - 160px), 900px);
  width: auto; height: auto; object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.lightbox-cap { color: #fff; text-align: center; max-width: 42em; }
.lightbox-cap h3 { margin: 0 0 4px; font-size: 18px; }
.lightbox-cap p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.45; }
.lightbox-cap p:empty { display: none; }
.lightbox-x, .lightbox-arrow {
  position: absolute; z-index: 2;
  border: 1px solid rgba(255,255,255,.22); background: rgba(7,18,33,.55);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  border-radius: 12px;
}
.lightbox-x { top: 16px; right: 16px; width: 42px; height: 42px; }
.lightbox-arrow { top: 50%; transform: translateY(-50%); width: 46px; height: 46px; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-x:hover, .lightbox-arrow:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-x .ico, .lightbox-arrow .ico { width: 22px; height: 22px; }
@media (max-width: 720px) {
  .lightbox { padding: 56px 12px 20px; }
  .lightbox-frame img { max-width: calc(100vw - 24px); max-height: calc(100vh - 150px); }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
.tape-copy { padding: 16px 18px 18px; }
.tape-copy h3 { margin: 0 0 6px; font-size: 17px; }
.tape-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }

.lic-strip, .lic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lic-thumb, .lic-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; text-decoration: none; color: inherit;
}
.lic-thumb img, .lic-card img { aspect-ratio: 3/4; object-fit: cover; width: 100%; background: var(--steel-100); }
.lic-thumb span, .lic-card figcaption { display: block; padding: 10px 12px; font-size: 13px; font-weight: 700; }

.cta-band { background: linear-gradient(90deg, var(--navy-800), var(--navy-700)); color: #fff; padding: 48px 0; }
.cta-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.cta-inner h2 { margin: 0 0 8px; font-size: 28px; }
.cta-inner p { margin: 0; color: var(--steel-300); }

.page-hero {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: #fff; padding: 48px 0 40px;
}
.page-hero h1 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 44px); }
.page-lead { color: var(--steel-300); max-width: 42em; font-size: 18px; }
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; color: var(--steel-500); font-size: 13px; }
.breadcrumb a { color: var(--steel-300); text-decoration: none; }

.split-page { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
.side { position: sticky; top: 96px; display: grid; gap: 6px; }
.side-label { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 6px; }
.side-link {
  display: flex; gap: 10px; align-items: center; padding: 10px 12px; border-radius: 12px;
  text-decoration: none; color: var(--text); background: #fff; border: 1px solid var(--line); font-weight: 650; font-size: 14px;
}
.side-link.is-active, .side-link:hover { border-color: var(--accent); color: var(--navy-800); }
.inline-cta { margin-top: 28px; }

.prose { font-size: 16.5px; }
.prose-top { margin-bottom: 28px; }
.prose h2 { font-size: 24px; margin: 1.4em 0 .5em; }
.prose p { margin: 0 0 1em; }
.prose ul { padding-left: 1.1em; }
.prose blockquote {
  margin: 0 0 16px; padding: 18px 20px; background: #fff; border-left: 3px solid var(--accent); border-radius: 0 14px 14px 0;
}
.prose cite { display: block; margin-top: 8px; color: var(--muted); font-style: normal; font-size: 13px; }
.lead-note {
  background: #eef5fd; border: 1px dashed #9bbbe0; color: var(--navy-700);
  padding: 10px 12px; border-radius: 10px; font-size: 13px;
}

.vac-list { display: grid; gap: 16px; }
.vac-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px;
  display: flex; justify-content: space-between; gap: 20px; align-items: start;
}
.vac-card h2 { margin: 0 0 8px; font-size: 22px; }
.vac-meta { display: flex; gap: 10px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.vac-meta span { background: var(--ice); padding: 4px 10px; border-radius: 999px; }

.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-facts { list-style: none; padding: 0; display: grid; gap: 12px; }
.contact-facts li { display: flex; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px; }
.contact-facts b { display: block; font-size: 12px; color: var(--muted); font-weight: 700; }
.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 24px; }
.contact-form-wrap h2 { margin-top: 0; }
.map-wrap { margin-top: 28px; border-radius: 18px; overflow: hidden; height: 380px; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.form { display: grid; gap: 12px; }
.form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; }
.form input, .form textarea, .form select {
  font: 500 15px var(--font); padding: 11px 12px; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; color: var(--text);
}
.form input:focus, .form textarea:focus, .form select:focus { outline: 2px solid rgba(61,143,217,.35); border-color: var(--accent); }
.form-legal { font-size: 12px; color: var(--muted); margin: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: 10px 12px; border-radius: 10px; font-weight: 600; }
.alert.ok { background: #e6f6ee; color: var(--ok); }
.alert.err { background: #fdecea; color: var(--err); }

.site-footer { background: var(--navy-950); color: var(--steel-300); padding: 48px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 32px; padding-bottom: 32px; }
.footer-grid h3 { color: #fff; font-size: 14px; margin: 0 0 12px; }
.footer-links, .footer-contacts { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-links a, .footer-contacts a { color: var(--steel-300); text-decoration: none; }
.footer-contacts li { display: flex; gap: 8px; align-items: flex-start; }
.footer-note { max-width: 36em; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0 22px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px;
}
.footer-bottom a { color: var(--steel-300); }

.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(7,18,33,.62); }
.modal-card {
  position: relative; width: min(440px, calc(100% - 32px)); background: #fff;
  border-radius: 20px; padding: 28px; box-shadow: var(--shadow);
}
.modal-x { position: absolute; right: 12px; top: 12px; border: 0; background: transparent; cursor: pointer; }
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 30;
  display: none; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; border: 0; border-radius: 999px;
  padding: 12px 16px; font-weight: 800; box-shadow: var(--shadow); cursor: pointer;
}
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 50;
  background: var(--navy-900); color: #fff; border-radius: 16px;
  padding: 14px 16px; display: flex; gap: 16px; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow); max-width: 920px; margin: 0 auto;
}
.cookie p { margin: 0; font-size: 14px; }
.cookie a { color: var(--accent-2); }
.cookie[hidden], .modal[hidden], .form-status[hidden], [hidden] { display: none !important; }

@media (max-width: 1080px) {
  .cards-8 { grid-template-columns: repeat(2, 1fr); }
  .cards-5 { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .lic-strip, .lic-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .split, .split-page, .contacts-grid, .footer-grid { grid-template-columns: 1fr; }
  .side { position: static; }
  .nav { display: none; }
  .header-phone span { display: none; }
  .soc-header { display: none; }
  .soc-dock { bottom: 78px; }
  .nav-toggle { display: grid; place-items: center; }
  body.nav-open .nav {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--header); left: 0; right: 0;
    background: var(--navy-900); padding: 12px 16px 20px; max-height: calc(100vh - var(--header)); overflow: auto;
  }
  .nav-item.has-sub .nav-sub { display: grid; position: static; min-width: 0; box-shadow: none; border: 0; background: transparent; }
  .fab { display: inline-flex; }
  .vac-card { flex-direction: column; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .cards-8, .cards-5, .lic-strip, .lic-grid, .adv-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 48px; }
  .section { padding: 48px 0; }
  .cookie { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
