:root {
  --gold: #e4c27a;
  --gold-deep: #9a6b2f;
  --blue: #0c3f8f;
  --ink: #07080c;
  --paper: #f4f6fb;
  --text: #172033;
  --muted: #5d6b7c;
  --line: #e3e8f1;
  --white: #fff;
  --header: 108px;
  --radius: 22px;
  --shadow: 0 20px 50px rgba(10, 20, 40, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-offset, 112px); }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); }
.skip {
  position: absolute; left: 12px; top: -40px; background: #fff; padding: 8px 12px; z-index: 20;
}
.skip:focus { top: 12px; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 32px)); }

.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: var(--header);
  padding: 10px 22px;
  background: rgba(7, 8, 12, .92);
  color: #fff;
  backdrop-filter: blur(12px);
}
.brand { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 12px; flex: 0 1 auto; min-width: 0; }
.brand-logo { height: max(92px, var(--logo-size, 72px)); width: auto; }
.site-header.is-scrolled .brand-logo { height: var(--logo-scroll, 56px); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-left: auto; flex: 0 0 auto; }
.more-menu { position: relative; }
.more-toggle {
  background: transparent; color: inherit; border: 0; border-bottom: 3px solid transparent;
  font: inherit; font-weight: 700; font-size: 1rem; letter-spacing: .02em;
  padding: 8px 2px 6px; cursor: pointer;
}
.more-menu.is-open .more-toggle { border-bottom-color: currentColor; }
.more-panel {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 30;
  min-width: 250px; background: #fff; color: #5c6775;
  border-radius: 14px; box-shadow: 0 18px 44px rgba(10, 20, 40, .18); padding: 8px;
}
.more-panel[hidden] { display: none; }
.more-panel a {
  display: flex; align-items: center; gap: 12px;
  color: #5c6775; text-decoration: none; font-weight: 700; font-size: 1rem;
  padding: 12px 12px; border-radius: 10px;
}
.more-panel a:hover { background: #f3f5f8; }
.more-panel svg { width: 22px; height: 22px; flex: 0 0 auto; }
.socials { display: flex; align-items: center; gap: 2px; }
.socials a, .socials span {
  width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center;
  color: #fff; border-radius: 8px;
}
.socials a:hover { background: rgba(255,255,255,.16); }
.socials .is-empty { opacity: .45; }
.socials svg { width: 16px; height: 16px; }
.topbar { background: var(--ink); color: #fff; font-size: .92rem; }
.topbar .wrap { padding: 8px 0; }
.topbar a { color: var(--gold); }
.cookie, .popup { position: fixed; z-index: 40; }
.cookie { left: 16px; right: 16px; bottom: 16px; display: flex; gap: 16px; align-items: center; justify-content: space-between; background: #fff; color: var(--text); border-radius: 16px; padding: 16px; box-shadow: var(--shadow); border-top: 4px solid var(--cookie-accent, var(--blue)); }
.cookie[hidden], .popup[hidden] { display: none; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-links { display: flex; gap: 12px; margin: 8px 0 0; font-size: .9rem; }
.cookie button, .popup button { border: 0; border-radius: 999px; padding: 10px 14px; font: inherit; font-weight: 700; background: var(--cookie-accent, var(--blue)); color: #fff; cursor: pointer; }
.cookie-ghost { background: transparent !important; color: var(--text) !important; border: 1px solid var(--line) !important; }
.popup { inset: 0; background: rgba(7,8,12,.55); display: flex; align-items: center; justify-content: center; padding: 20px; }
.popup-card { background: #fff; color: var(--text); border-radius: 18px; padding: 22px; width: min(560px, 100%); display: grid; gap: 12px; }
.popup-image { width: 100%; max-height: 220px; object-fit: cover; border-radius: 12px; }
.popup-side_image, .popup-split_promo { grid-template-columns: 180px 1fr; align-items: center; }
.popup-side_image .popup-image, .popup-split_promo .popup-image { max-height: 240px; height: 100%; }
.footer-extra { background: #1c1f26; color: rgba(255,255,255,.82); padding: 0 0 28px; }
.footer-extra a { color: #fff; }
.brand-mark {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 650;
  letter-spacing: .04em;
  background: linear-gradient(180deg, #fff6dc, var(--gold) 48%, #8d6230);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-sub { display: block; color: rgba(255,255,255,.82); font-size: .78rem; letter-spacing: .01em; text-transform: none; font-weight: 600; line-height: 1.2; margin-top: 6px; white-space: nowrap; }
.lang-switch {
  display: inline-flex;
  flex-wrap: nowrap;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 8px;
  overflow: hidden;
  flex: 0 0 auto;
}
.page-block { margin: 12px 0 20px; }
.lang-switch a {
  color: #fff;
  text-decoration: none;
  padding: 9px 11px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.lang-switch a.is-active { background: var(--gold); color: #24180a; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
  border-radius: 8px;
  padding: 0;
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-drawer-extra { display: none; }
.site-nav {
  display: flex; align-items: center; justify-content: flex-start; flex-wrap: wrap;
  gap: 8px 34px; flex: 1 1 auto; min-width: 0;
  margin-left: clamp(36px, 6vw, 96px);
}
.nav-link {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: .04em;
  border: 0;
  border-radius: 0;
  padding: 8px 0 12px;
  line-height: 1.15;
  background: transparent;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 2px;
  height: 2px; background: #fff; border-radius: 2px;
  transform: scaleX(.28); transform-origin: left center; opacity: .5;
  transition: transform .16s ease, opacity .16s ease;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); opacity: 1; }
.nav-caret { width: 16px; height: 16px; margin-left: 4px; vertical-align: -2px; }
.mega { position: relative; }
.mega > .nav-link { display: inline-flex; align-items: center; }
.mega > .nav-link::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 100%; height: 36px;
}
.mega-panel {
  display: none;
  position: absolute; left: 0; top: calc(100% + 8px); z-index: 40;
  width: min(660px, calc(100vw - 40px));
  background: #fff; color: var(--text);
  border-radius: 16px;
  box-shadow: 0 22px 48px rgba(10, 20, 40, .18);
  padding: 12px;
}
.mega-network .mega-panel { width: min(440px, calc(100vw - 40px)); }
.mega-steps { position: relative; }
.mega-steps .mega-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  transform: none;
  width: min(1180px, calc(100vw - 32px));
  padding: 18px 18px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 60px rgba(8, 12, 24, .22);
}
.mega-steps .mega-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px 22px; }
.mega-steps .mega-shot { position: relative; display: block; }
.mega-steps .mega-next {
  position: absolute; z-index: 2; pointer-events: none;
  top: 50%; right: 0; transform: translate(50%, -50%);
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: #004593; color: #fff;
  box-shadow: 0 4px 12px rgba(0, 69, 147, .28);
}
.mega-steps .mega-next svg { width: 16px; height: 16px; }
.mega-steps .mega-card:last-child .mega-next { display: none; }
.mega-steps .mega-card {
  display: flex; flex-direction: column; height: 100%;
  background: transparent; padding: 0; gap: 8px; border-radius: 0;
}
.mega-steps .mega-main { display: grid; gap: 8px; flex: 1 1 auto; text-decoration: none; color: inherit; }
.mega-foot {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(154, 107, 47, .45);
}
.mega-product {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  width: 100%; box-sizing: border-box;
  min-height: 26px; padding: 3px 8px; border-radius: 999px;
  background: #004593; color: #fff; text-decoration: none;
  font-size: .66rem; font-weight: 700; line-height: 1.15; text-align: center;
}
.mega-product svg { width: 11px; height: 11px; flex: 0 0 auto; }
.mega-product:hover { background: #00356f; color: #fff; }
.mega-steps .mega-card:hover { background: transparent; box-shadow: none; }
.mega-steps .mega-card img {
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(10, 20, 40, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.mega-steps .mega-card:hover img { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(10, 20, 40, .16); }
.mega-steps .mega-lead { margin-bottom: 14px; }
.mega-network .mega-lead { margin-bottom: 14px; }
.mega-copy strong { color: var(--blue); font-size: .84rem; line-height: 1.25; font-weight: 700; }
.mega-copy span { color: var(--muted); font-size: .72rem; font-weight: 600; }
.mega:hover .mega-panel,
.mega:focus-within .mega-panel,
.mega.is-open .mega-panel { display: block; }
.mega-kind {
  margin: 0 0 4px; color: var(--blue); font-size: .75rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
}
.mega-lead { margin: 0 0 12px; color: var(--muted); font-weight: 600; font-size: .92rem; }
.mega-network .mega-grid { grid-template-columns: 1fr 1fr; }
.mega-network .mega-card { min-height: 0; padding: 16px 18px; background: #fff; border: 1px solid var(--line); }
.mega-copy em {
  display: block; color: var(--blue); font-style: normal; font-size: .75rem;
  font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px;
}
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mega-card {
  display: grid; gap: 6px; text-decoration: none; color: var(--text);
  background: var(--paper); border-radius: 12px; padding: 6px;
}
.mega-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 8px;
}
.mega-steps .mega-card:nth-child(1) img { object-position: 36% 40%; }
.mega-steps .mega-card:nth-child(2) img { object-position: 40% 36%; }
.mega-steps .mega-card:nth-child(3) img { object-position: center 24%; }
.mega-steps .mega-card:nth-child(4) img { object-position: center 22%; }
.mega-steps .mega-card:nth-child(5) img { object-position: center 34%; }
.mega-steps .mega-card:nth-child(6) img { object-position: center 16%; }
.mega-copy { display: grid; gap: 2px; padding: 0 4px 4px; }
.mega-card:hover { background: #fff; box-shadow: 0 8px 24px rgba(10, 20, 40, .08); }
.mega-all { display: inline-block; margin-top: 12px; font-weight: 800; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.nav-pdf { margin-left: auto; }
.nav-cta, .nav-pdf {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; white-space: nowrap;
  border-radius: 8px; padding: 9px 14px;
  font-weight: 700; font-size: .92rem; letter-spacing: .01em; line-height: 1.2;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.nav-cta:hover {
  background: var(--gold);
  color: #24180a;
  border-color: var(--gold);
}
.nav-pdf {
  gap: 8px;
  background: var(--gold);
  color: #24180a;
  border: 1px solid var(--gold);
  letter-spacing: .02em;
}
.nav-pdf svg { width: 16px; height: 16px; flex: 0 0 auto; }
.nav-pdf:hover {
  background: #fff;
  color: #004593;
  border-color: #fff;
}

.hero {
  background:
    linear-gradient(90deg, rgba(8, 8, 10, .78) 0%, rgba(8, 8, 10, .42) 42%, rgba(8, 8, 10, .2) 100%),
    url("/assets/img/hero-bg.jpg") center 62% / cover no-repeat;
  color: #f7f4ee;
  padding: 32px 0 0;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px 40px; align-items: start; }
.hero-copy { padding-top: 36px; }
.eyebrow { margin: 0 0 8px; letter-spacing: .16em; text-transform: uppercase; font-size: .78rem; color: var(--blue); font-weight: 700; }
.hero .eyebrow { color: #fff; text-transform: lowercase; letter-spacing: .02em; font-weight: 600; font-size: .95rem; }
.eyebrow-gold { color: var(--gold); }
.hero h1, .cta h2, .network h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: .95;
  letter-spacing: .04em;
  margin: 0 0 16px;
}
.hero h1 {
  background: linear-gradient(180deg, #fff6dc, var(--gold) 48%, #8d6230);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead { font-size: clamp(1.2rem, 2vw, 1.6rem); margin: 0 0 12px; white-space: nowrap; }
.hero-intro {
  display: inline-block;
  max-width: 34rem;
  margin: 6px 0 0;
  padding: 12px 16px;
  color: #fff;
  background: rgba(7, 8, 12, .62);
  border: 1px solid rgba(228, 194, 122, .8);
  border-radius: 16px;
  font-size: clamp(.92rem, 1.25vw, 1.05rem);
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
}
.hero-guarantee {
  position: relative;
  display: block;
  width: min(250px, 100%);
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  line-height: 0;
  text-decoration: none;
  container-type: inline-size;
}
.hero-guarantee img { display: block; width: 100%; height: auto; }
.hero-guarantee-logo {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 51%;
  height: 24%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8.4cqi;
  font-weight: 650;
  letter-spacing: .04em;
  line-height: 1;
  background: linear-gradient(180deg, #fff6dc, var(--gold) 48%, #8d6230);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-guarantee:hover img { filter: brightness(1.06); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.hero-figure {
  margin: 0;
  position: relative;
}
.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .28));
}
.hero-figure figcaption {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(7,8,12,.72);
  color: #fff;
  border: 1px solid rgba(228,194,122,.5);
  border-radius: 14px;
  padding: 8px 12px;
  letter-spacing: .14em;
  font-size: .78rem;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 18px; border-radius: 999px;
  text-decoration: none; font-weight: 700; border: 0; cursor: pointer;
}
.btn-gold { background: linear-gradient(180deg, #f3ddaa, var(--gold)); color: #24180a; }
.btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.35); background: transparent; }
.btn-blue { background: var(--blue); color: #fff; }

.band { background: #fff; padding: 64px 0; }
.band-grid, .contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: start; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.1; margin: 0 0 12px; color: var(--ink); }
.lead { font-size: 1.15rem; color: var(--muted); }
.lead p, .steps-lead p, .hero-intro p { margin: 0 0 .4em; }
.lead p:last-child, .steps-lead p:last-child, .hero-intro p:last-child { margin-bottom: 0; }
.pillars { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.pillars li {
  background: var(--paper);
  border-radius: 16px;
  padding: 16px 18px 16px 46px;
  position: relative;
  font-weight: 700;
}
.pillars li::before {
  content: "";
  position: absolute; left: 18px; top: 22px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--blue);
}

.steps { padding: 28px 0 72px; }
.section-head { max-width: 40rem; margin-bottom: 28px; }
.section-head h2 { color: var(--blue); }
.steps .section-head { margin-bottom: 16px; }
.steps-lead {
  width: 100%;
  max-width: none;
  margin: 0 0 32px;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.5;
}
.step-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.step-card {
  display: grid; grid-template-columns: 1.16fr .84fr; gap: 0;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.step-card:nth-child(even) { grid-template-columns: .84fr 1.16fr; }
.step-card:nth-child(even) .step-media { order: 2; }
.step-media { display: block; height: 100%; min-height: 100%; overflow: hidden; background: #eef2f6; }
.step-media img {
  width: 100%; height: 100%; min-height: 300px;
  object-fit: cover; object-position: 68% 46%;
}
.step-body { padding: 28px; }
.step-kicker { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 8px; }
.step-kicker span, .optional {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--blue); color: var(--blue);
  border-radius: 12px; padding: 4px 10px; font-weight: 800; font-size: .85rem;
}
.optional { background: #eef3ff; }
.step-body h3 { margin: 0 0 8px; font-size: 1.45rem; }
.step-body h3 a { color: var(--blue); text-decoration: none; }
.step-lead { font-weight: 800; margin: 0 0 8px; }
.text-link { font-weight: 700; }
.step-copy p { margin: 0 0 10px; }
.step-copy p:last-child { margin-bottom: 0; }
.step-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin: 16px 0 0; }
.step-actions .btn { min-height: 42px; padding: 0 16px; gap: 8px; }
.step-actions .btn svg { width: 15px; height: 15px; flex: 0 0 auto; }

.network {
  background:
    radial-gradient(80% 80% at 50% 120%, rgba(228,194,122,.25), transparent 50%),
    var(--ink);
  color: #f7f4ee;
  padding: 72px 0;
}
.network h2 { color: #fff; }
.network .eyebrow,
.network .lead { color: #e4c27a; }
.flow { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.flow a {
  display: block; color: #fff; text-decoration: none;
  border: 1px solid rgba(228,194,122,.35);
  border-radius: 16px; padding: 16px; min-height: 112px;
  background: rgba(255,255,255,.03);
}
.flow a span { display: block; color: var(--gold); font-size: .8rem; letter-spacing: .08em; margin-bottom: 6px; }
.flow a:hover { border-color: var(--gold); }
.flow a img { width: 100%; height: 92px; object-fit: cover; border-radius: 10px; margin-bottom: 10px; }

.wheel-caption { text-align: center; }
.wheel-hint {
  width: fit-content;
  max-width: min(34rem, 100%);
  margin: 18px auto 0;
  padding: 8px 14px;
  border: 1px solid rgba(228, 194, 122, .55);
  border-radius: 12px;
  background: rgba(228, 194, 122, .12);
  color: #e4c27a;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.wheel-caption { color: rgba(255,255,255,.9); max-width: 40rem; margin: 18px auto 0; font-size: 1.05rem; }
.wheel-stage { position: relative; width: min(980px, 100%); margin: 8px auto 0; }
.wheel {
  position: relative;
  width: min(560px, 58%);
  margin: 48px auto 128px;
  aspect-ratio: 1;
  container-type: inline-size;
}
.wheel-art {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; border-radius: 50%;
  background: url("/assets/img/circle-wheel.jpg?v=3") center / 100% 100% no-repeat;
  transition: filter .2s ease;
}
.wheel-focus {
  position: absolute; z-index: 3; left: 50%; top: 50%;
  width: 40%; height: 40%; border-radius: 50%; pointer-events: none;
  background: url("/assets/img/circle-wheel.jpg?v=3") center / 250% 250% no-repeat;
  box-shadow: 0 0 0 5px #fff, 0 12px 28px rgba(0, 0, 0, .28);
  transform: translate(-50%, -50%) scale(.96);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.wheel-badge {
  position: absolute; z-index: 5; top: 0; left: 50%;
  transform: translate(-50%, -46%);
  display: grid; justify-items: center; gap: 2px;
  min-width: 168px; padding: 8px 16px 10px;
  background: #fff; color: #004593; text-decoration: none; text-align: center;
  border: 3px solid #004593; border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  font-weight: 800; line-height: 1.1;
}
.wheel-badge small { color: #0f172a; font-size: .72rem; letter-spacing: .04em; font-weight: 800; }
.wheel-badge:hover { background: #004593; color: #fff; }
.wheel-badge:hover small { color: #fff; }
.slice {
  position: absolute; inset: 0; display: block;
  text-decoration: none; color: #fff;
  background: transparent;
}
.slice::before {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: 0;
  background: url("/assets/img/circle-wheel.jpg?v=3") center / 100% 100% no-repeat;
}
html[lang="en"] .wheel-art,
html[lang="en"] .slice::before {
  background-image: url("/assets/img/circle-wheel-en.jpg?v=1");
}
html[lang="en"] .wheel-focus {
  background-image: url("/assets/img/circle-wheel-en.jpg?v=1");
}
.slice::after { content: none; }
.slice-name { display: none; }
.wheel-num {
  position: absolute; z-index: 6; pointer-events: none;
  box-sizing: border-box;
  min-width: 7.4%; height: 7.4%;
  padding: 0 1.2cqi;
  display: grid; place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #fff; color: #004593;
  border: .45cqi solid #004593;
  font-weight: 800; font-size: 3.1cqi; line-height: 1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .28);
}
.wheel-num-p5 { left: 24%; top: 86%; }
.wheel-num-magellan { left: 9%; top: 54%; }
.wheel-num-implant { left: 84%; top: 76%; }
.wheel-num-denta { left: 79%; top: 13%; }
.wheel-num-master { left: 27%; top: 9%; }
.slice-master { --tone: #667084; clip-path: polygon(1.50% 34.24%, 2.71% 30.90%, 4.16% 27.64%, 5.83% 24.50%, 7.72% 21.48%, 9.81% 18.60%, 12.10% 15.87%, 14.57% 13.31%, 17.22% 10.93%, 20.02% 8.74%, 22.97% 6.75%, 26.06% 4.97%, 29.26% 3.41%, 32.56% 2.08%, 35.94% 0.98%, 39.40% 0.11%, 42.90% -0.50%, 46.44% -0.88%, 50.00% -1.00%, 50.00% 20.50%, 47.94% 20.57%, 45.89% 20.79%, 43.87% 21.14%, 41.87% 21.64%, 39.91% 22.28%, 38.00% 23.05%, 36.15% 23.95%, 36.48% 31.39%, 29.51% 28.78%, 28.08% 30.26%, 26.75% 31.84%, 25.54% 33.50%, 24.45% 35.25%, 23.49% 37.07%, 22.65% 38.95%, 21.94% 40.88%); }
.slice-denta { --tone: #7b8494; clip-path: polygon(50.00% -1.00%, 53.56% -0.88%, 57.10% -0.50%, 60.60% 0.11%, 64.06% 0.98%, 67.44% 2.08%, 70.74% 3.41%, 73.94% 4.97%, 77.03% 6.75%, 79.98% 8.74%, 82.78% 10.93%, 85.43% 13.31%, 87.90% 15.87%, 90.19% 18.60%, 92.28% 21.48%, 94.17% 24.50%, 95.84% 27.64%, 97.29% 30.90%, 98.50% 34.24%, 78.06% 40.88%, 77.35% 38.95%, 76.51% 37.07%, 75.55% 35.25%, 74.46% 33.50%, 73.25% 31.84%, 71.92% 30.26%, 70.49% 28.78%, 63.52% 31.39%, 63.85% 23.95%, 62.00% 23.05%, 60.09% 22.28%, 58.13% 21.64%, 56.13% 21.14%, 54.11% 20.79%, 52.06% 20.57%, 50.00% 20.50%); }
.slice-implant { --tone: #004593; clip-path: polygon(98.50% 34.24%, 99.49% 37.66%, 100.23% 41.14%, 100.72% 44.67%, 100.97% 48.22%, 100.97% 51.78%, 100.72% 55.33%, 100.23% 58.86%, 99.49% 62.34%, 98.50% 65.76%, 97.29% 69.10%, 95.84% 72.36%, 94.17% 75.50%, 92.28% 78.52%, 90.19% 81.40%, 87.90% 84.13%, 85.43% 86.69%, 82.78% 89.07%, 79.98% 91.26%, 67.34% 73.87%, 68.96% 72.60%, 70.49% 71.22%, 71.92% 69.74%, 73.25% 68.16%, 74.46% 66.50%, 75.55% 64.75%, 76.51% 62.93%, 71.87% 57.11%, 79.05% 55.12%, 79.34% 53.08%, 79.48% 51.03%, 79.48% 48.97%, 79.34% 46.92%, 79.05% 44.88%, 78.62% 42.86%, 78.06% 40.88%); }
.slice-p5 { --tone: #6d7686; clip-path: polygon(79.98% 91.26%, 77.03% 93.25%, 73.94% 95.03%, 70.74% 96.59%, 67.44% 97.92%, 64.06% 99.02%, 60.60% 99.89%, 57.10% 100.50%, 53.56% 100.88%, 50.00% 101.00%, 46.44% 100.88%, 42.90% 100.50%, 39.40% 99.89%, 35.94% 99.02%, 32.56% 97.92%, 29.26% 96.59%, 26.06% 95.03%, 22.97% 93.25%, 20.02% 91.26%, 32.66% 73.87%, 34.37% 75.02%, 36.15% 76.05%, 38.00% 76.95%, 39.91% 77.72%, 41.87% 78.36%, 43.87% 78.86%, 45.89% 79.21%, 50.00% 73.00%, 54.11% 79.21%, 56.13% 78.86%, 58.13% 78.36%, 60.09% 77.72%, 62.00% 76.95%, 63.85% 76.05%, 65.63% 75.02%, 67.34% 73.87%); }
.slice-magellan { --tone: #003b82; clip-path: polygon(20.02% 91.26%, 17.22% 89.07%, 14.57% 86.69%, 12.10% 84.13%, 9.81% 81.40%, 7.72% 78.52%, 5.83% 75.50%, 4.16% 72.36%, 2.71% 69.10%, 1.50% 65.76%, 0.51% 62.34%, -0.23% 58.86%, -0.72% 55.33%, -0.97% 51.78%, -0.97% 48.22%, -0.72% 44.67%, -0.23% 41.14%, 0.51% 37.66%, 1.50% 34.24%, 21.94% 40.88%, 21.38% 42.86%, 20.95% 44.88%, 20.66% 46.92%, 20.52% 48.97%, 20.52% 51.03%, 20.66% 53.08%, 20.95% 55.12%, 28.13% 57.11%, 23.49% 62.93%, 24.45% 64.75%, 25.54% 66.50%, 26.75% 68.16%, 28.08% 69.74%, 29.51% 71.22%, 31.04% 72.60%, 32.66% 73.87%); }
.slice-master .slice-name { left: 30.6%; top: 23.3%; }
.slice-denta .slice-name { left: 69.4%; top: 23.3%; }
.slice-implant .slice-name { left: 81.4%; top: 60.2%; }
.slice-p5 .slice-name { left: 50%; top: 78%; }
.slice-magellan .slice-name { left: 18.6%; top: 60.2%; }
.wheel:has(.slice:hover) .wheel-art,
.wheel:has(.slice:focus-visible) .wheel-art,
.wheel:has(.slice.is-on) .wheel-art { filter: brightness(.62); }
.wheel:has(.slice:hover) .wheel-focus,
.wheel:has(.slice:focus-visible) .wheel-focus,
.wheel:has(.slice.is-on) .wheel-focus {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.12);
}
.slice:hover::before, .slice:focus-visible::before, .slice.is-on::before { opacity: 1; }
.wheel-core { display: none; }
.wheel-core strong, .wheel-core span {
  display: inline-block; padding: 4px 8px; border-radius: 4px;
  font-size: .72rem; font-weight: 800; letter-spacing: .04em; line-height: 1.1;
}
.wheel-core strong { background: #fff; color: #004593; }
.wheel-core span { background: #004593; }
.callout {
  position: absolute; z-index: 4; width: min(230px, 26%);
  margin: 0; padding: 12px 14px; background: #fff; color: #172033;
  border-radius: 14px; box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.callout strong { display: block; color: #004593; margin-bottom: 4px; }
.wheel-stage:has(.slice-master:hover) .callout-master,
.wheel-stage:has(.slice-master:focus-visible) .callout-master,
.wheel-stage:has(.slice-denta:hover) .callout-denta,
.wheel-stage:has(.slice-denta:focus-visible) .callout-denta,
.wheel-stage:has(.slice-implant:hover) .callout-implant,
.wheel-stage:has(.slice-implant:focus-visible) .callout-implant,
.wheel-stage:has(.slice-magellan:hover) .callout-magellan,
.wheel-stage:has(.slice-magellan:focus-visible) .callout-magellan {
  opacity: 1; transform: none;
}
.wheel-stage:has(.slice-p5:hover) .callout-p5,
.wheel-stage:has(.slice-p5:focus-visible) .callout-p5 { opacity: 1; transform: translateX(-50%); }
.callout-master { top: 8%; left: 0; }
.callout-denta { top: 8%; right: 0; }
.callout-implant { top: 46%; right: 0; }
.callout-magellan { top: 46%; left: 0; }
.callout-p5 { bottom: 12px; left: 50%; width: min(320px, 70%); text-align: center; transform: translateX(-50%); }
.wheel-panel {
  background: #fff; color: var(--text); border-radius: 16px;
  padding: 16px; margin-top: 8px; text-align: left;
}
.wheel-panel-title { margin: 0 0 6px; font-weight: 800; color: #004593; font-size: 1.05rem; }
.wheel-panel-text { margin: 0 0 12px; }
.theme-preview {
  position: fixed; z-index: 45; left: 50%; bottom: calc(16px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 6px;
  width: max-content; max-width: calc(100% - 24px);
  padding: 6px 8px 6px 12px;
  background: #14110c; color: #e4c27a;
  border: 1px solid rgba(228, 194, 122, .45);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
  font-size: .78rem; font-weight: 700;
}
.theme-preview a {
  color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; padding: 6px 10px;
}
.theme-preview a.is-on { background: #e4c27a; color: #24180a; border-color: #e4c27a; }
.topic summary { align-items: center; }
.topic-thumb { width: 72px; height: 52px; object-fit: cover; border-radius: 10px; flex: 0 0 auto; }
.topic summary span { flex: 1; }
.to-top {
  position: fixed; z-index: 30;
  right: calc(16px + env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; padding: 0;
  border-radius: 999px; background: #004593; color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 30, 80, .28);
}
.to-top[hidden] { display: none; }
.to-top svg { width: 18px; height: 18px; }
.to-top:hover { background: var(--gold); color: #24180a; }
.to-top:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
body:has(.popup:not([hidden])) .to-top { visibility: hidden; }

.topics { background: #fff; padding: 28px 0 72px; }
.topics h2 { max-width: 18em; }
.topic-list { display: grid; gap: 12px; margin-top: 22px; }
.topic { border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.topic summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; font-weight: 800; font-size: 1.15rem;
}
.topic summary::-webkit-details-marker { display: none; }
.topic summary::after { content: "+"; color: var(--blue); font-size: 1.6rem; line-height: 1; }
.topic[open] summary::after { content: "–"; }
.topic-body { padding: 0 20px 18px; max-width: 46rem; }
.topic-body p { margin: 0 0 12px; }
.reasons { background: var(--paper); padding: 72px 0 80px; }
.reason-condition {
  background:
    linear-gradient(100deg, rgba(7, 8, 12, .92), rgba(7, 8, 12, .78)),
    url("/assets/img/hero-bg.jpg") center 70% / cover no-repeat;
  color: #f7f4ee;
  border: 1px solid rgba(228, 194, 122, .45);
  border-radius: 24px;
  padding: 28px 32px 26px;
  margin-bottom: 40px;
}
.reason-condition h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin: 0 0 10px;
}
.reason-condition .reason-copy,
.reason-condition .reason-copy p { margin: 0; color: rgba(247, 244, 238, .86); }
.reason-condition .reason-copy p + p { margin-top: 10px; }
.reason-link {
  display: inline-flex; margin-top: 14px;
  color: var(--gold); font-weight: 700; text-decoration: none;
}
.reason-link:hover { color: #fff6dc; }
.reason-head { margin-bottom: 18px; }
.reason-head h2 { margin-bottom: 6px; }
.reason-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.reason-card {
  background: #fff; border-radius: 20px; padding: 22px 22px 8px;
  box-shadow: var(--shadow);
}
.reason-card h3 { margin: 0 0 8px; color: #004593; font-size: 1.25rem; }
.reason-card ul { list-style: none; margin: 0; padding: 0; }
.reason-card li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
}
.reason-card li::before {
  content: "";
  position: absolute; left: 4px; top: 12px;
  width: 7px; height: 12px;
  border-right: 2px solid #9a6b2f;
  border-bottom: 2px solid #9a6b2f;
  transform: rotate(45deg);
}
.reason-note, .reason-close { width: 100%; max-width: none; }
.reason-note { margin: 28px 0 0; font-size: 1.05rem; }
.reason-note p { margin: 0 0 12px; }
.reason-note p:last-child { margin-bottom: 0; }
.reason-close { margin: 14px 0 0; font-size: 1.28rem; font-weight: 700; color: var(--ink); }
.reason-close p { margin: 0; }
.cta {
  background:
    linear-gradient(180deg, rgba(7, 8, 12, .78), rgba(7, 8, 12, .94)),
    url("/assets/img/hero-bg.jpg") center 78% / cover no-repeat;
  color: #f7f4ee;
  padding: 96px 0 88px;
  text-align: center;
}
.cta-inner { max-width: 760px; }
.cta .eyebrow { margin-bottom: 14px; }
.cta h2 {
  background: linear-gradient(180deg, #fff6dc, var(--gold) 48%, #8d6230);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.cta .prose { color: rgba(247, 244, 238, .84); font-size: 1.12rem; }
.cta .prose p { max-width: 38rem; margin: 0 auto 8px; }
.cta-question {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  margin: 28px 0 16px;
  color: #fff;
}
.cta-contact { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 0; }
.cta-contact a {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; text-decoration: none; font-weight: 600;
  border: 1px solid rgba(228, 194, 122, .55);
  border-radius: 999px; padding: 10px 16px;
  background: rgba(255, 255, 255, .06);
}
.cta-contact a svg { width: 16px; height: 16px; color: var(--gold); flex: 0 0 auto; }
.cta-contact a:hover { background: rgba(228, 194, 122, .18); }
.detail .cta-contact { justify-content: flex-start; margin-top: 20px; }
.detail .cta-contact a {
  color: var(--text);
  background: #fff;
  border-color: #c4a15a;
}
.detail .cta-contact a:hover { background: #fff8ea; color: var(--blue); }
.cta .btn { margin-top: 22px; }

.detail { padding: 36px 0 80px; }
.detail h1 { color: var(--blue); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; margin: 8px 0 12px; }
.detail-lead { font-size: 1.2rem; }
.detail-figure { margin: 24px 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.detail-figure img { width: 100%; height: auto; object-fit: contain; }
.crumb { color: var(--muted); }
.crumb a { color: inherit; }
.pager { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.pager a { text-decoration: none; color: var(--ink); font-weight: 800; }
.pager a span, .pager .next { display: block; font-weight: 600; color: var(--muted); font-size: .85rem; }
.pager .next { text-align: right; color: var(--ink); }
.detail-copy { max-width: 46rem; font-size: 1.12rem; line-height: 1.65; }
.detail-copy p { margin: 0 0 14px; }
.detail .step-actions { margin-top: 8px; }
.prose { font-size: 1.05rem; }
.prose a { font-weight: 700; }
.form { display: grid; gap: 12px; background: #fff; padding: 22px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form label { display: grid; gap: 6px; font-weight: 700; }
.form .req { color: #9a2b2b; font-weight: 800; }
.form-required { margin: 2px 0 0; font-size: .92rem; font-weight: 600; color: var(--text); }
.form input, .form textarea, .form select, .admin-main input, .admin-main textarea, .admin-main select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font: inherit;
}
.hp { position: absolute; left: -9999px; }
.notice { background: #e8f7ee; border-radius: 12px; padding: 12px 14px; }
.notice-error { background: #fdecec; }

.site-footer {
  background: #1c1f26;
  color: rgba(255,255,255,.82);
  padding: 0;
}
.site-footer::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 194, 122, .2) 18%, #e4c27a 50%, rgba(228, 194, 122, .2) 82%, transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 24px;
  padding-top: 36px;
  padding-bottom: 32px;
}
.footer-legal {
  margin: 0;
  background: #12141a;
  color: rgba(255,255,255,.62);
  text-align: center;
  font-size: .82rem;
  letter-spacing: .02em;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-label { color: var(--gold); letter-spacing: .12em; text-transform: uppercase; font-size: .75rem; }
.footer-mark { font-size: 1.3rem; }

body.theme-modern .site-header { background: #fff; color: var(--ink); border-bottom: 1px solid var(--line); }
body.theme-modern .brand-mark {
  background: none;
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
}
body.theme-modern .brand-sub { color: var(--muted); }
body.theme-modern .lang-switch { border-color: var(--line); }
body.theme-modern .lang-switch a { color: var(--ink); }
body.theme-modern .lang-switch a.is-active { background: var(--blue); color: #fff; }
body.theme-modern .nav-toggle { color: var(--ink); border-color: var(--line); }
body.theme-modern .nav-link { color: var(--ink); }
body.theme-modern .nav-link::after { background: var(--blue); }
body.theme-modern .nav-link:hover { color: var(--blue); }
body.theme-modern .nav-cta { color: var(--blue); border-color: var(--blue); background: #fff; }
body.theme-modern .nav-cta:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
body.theme-modern .nav-pdf { background: var(--blue); color: #fff; border-color: var(--blue); }
body.theme-modern .nav-pdf:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
body.theme-blue .site-header { background: #004593; color: #fff; }
body.theme-blue .nav-pdf { background: var(--gold); color: #24180a; border-color: var(--gold); }
body.theme-blue .nav-pdf:hover { background: #fff; color: #004593; border-color: #fff; }
body.theme-blue .nav-cta:hover { background: #fff; color: #004593; border-color: #fff; }
body.theme-modern .hero {
  background: linear-gradient(180deg, var(--chip), #fff 42%);
  color: var(--ink);
}
body.theme-modern .hero h1 {
  background: none;
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
}
body.theme-modern .hero-intro {
  color: var(--blue);
  background: #fff;
  border-color: rgba(0, 69, 147, .35);
  box-shadow: var(--shadow);
}
body.theme-modern .hero .eyebrow { color: var(--blue); }

@media (max-width: 860px) {
  .brand-logo, .site-header.is-scrolled .brand-logo { height: var(--logo-mobile, 48px); }
  .brand-mark { font-size: 1.7rem; font-weight: 650; }
  .brand-sub { font-size: .68rem; }
  .popup-side_image, .popup-split_promo { grid-template-columns: 1fr; }
  .cookie { flex-direction: column; align-items: stretch; }
  .callout, .hint-desktop { display: none; }
  .wheel { width: min(100%, 420px); margin: 28px auto 8px; }
  .topic-thumb { width: 56px; height: 42px; }
  .hero-grid, .band-grid, .contact-grid, .step-card, .step-card:nth-child(even), .footer-grid, .flow, .reason-grid { grid-template-columns: 1fr; }
  .step-card:nth-child(even) .step-media { order: 0; }
  .step-media img { min-height: 0; height: auto; aspect-ratio: 16 / 9; object-position: 64% 46%; }
  .hero {
    padding-top: 28px;
    background-size: auto, cover;
    background-position: 0% 0%, center -6px;
  }
  .hero-copy { padding-top: 8px; }
  .hero-lead { white-space: normal; }
  .hero-figure img { height: auto; max-width: 460px; margin: 0 auto; }
  .hero h1 { font-size: clamp(2.15rem, 12vw, 3.4rem); }
  .hero-intro { max-width: 100%; }
  .cta-contact { flex-direction: column; }
}
.info-bar {
  position: relative; z-index: 20;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 7px 22px; color: #fff; font-size: .78rem; letter-spacing: .02em;
  background: #000;
}
.info-bar > span { color: #fff; }
.info-bar > span > a,
.info-bar-end > a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.info-bar > span > a svg,
.info-bar .socials svg { width: 15px; height: 15px; flex: 0 0 auto; }
.info-bar > span, .info-bar-end { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.info-bar > span > a + a,
.info-bar-end > * + * {
  margin-left: 14px; padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,.28);
}
.info-bar .more-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff; font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  padding: 2px 0; border-bottom-width: 0;
}
.info-bar .more-toggle svg { width: 14px; height: 14px; transition: transform .15s ease; }
.info-bar .more-menu.is-open .more-toggle svg { transform: rotate(180deg); }
.info-bar .more-panel {
  display: grid; gap: 0; min-width: 158px; padding: 4px;
  border-radius: 10px; top: calc(100% + 8px);
}
.info-bar .more-panel[hidden] { display: none; }
.info-bar .more-panel a {
  display: flex; align-items: center; gap: 8px; width: auto;
  color: #334155; text-decoration: none; font-weight: 600; font-size: .78rem;
  padding: 5px 8px; border-radius: 7px; border: 0; margin: 0;
}
.info-bar .more-panel a svg { width: 15px; height: 15px; color: #64748b; }
.info-bar .more-panel a:hover { background: #f3f5f8; color: #0f172a; text-decoration: none; }
.info-bar > span > a:hover,
.info-bar-end > a:hover { text-decoration: underline; }
body.theme-classic .info-bar { background: #000; }
body.theme-blue .info-bar { background: #000; }
body.theme-modern .info-bar { background: #102544; }
body.theme-modern .info-bar > span > a:hover,
body.theme-modern .info-bar-end > a:hover { color: #fff; }

@media (max-width: 1279px) {
  .site-header { gap: 10px; min-height: 72px; padding: 8px 14px; }
  .brand > span { min-width: 0; }
  .brand-mark { font-size: clamp(1.25rem, 2.4vw, 1.85rem); }
  .brand-sub { font-size: .68rem; white-space: normal; }
  .header-actions { gap: 8px; }
  .lang-switch { border-radius: 6px; }
  .lang-switch a { padding: 4px 6px; font-size: .68rem; letter-spacing: .02em; }
  .nav-toggle { display: inline-flex; }
  .info-bar { flex-wrap: nowrap; gap: 8px; padding: 6px 14px; }
  .info-bar > span, .info-bar-end { flex-wrap: nowrap; }
  .info-bar .info-desktop-only { display: none; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 30;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    flex-wrap: nowrap;
    max-height: calc(100dvh - 7.5rem);
    overflow: auto;
    background: #12141a;
    padding: 6px 14px 22px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .35);
  }
  .site-nav.is-open { display: flex; min-height: calc(100dvh - 7.5rem); }
  .nav-link {
    font-size: 1.05rem;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .nav-link::after { display: none; }
  .nav-pdf, .nav-cta { width: 100%; margin: 10px 0 0; }
  .nav-cta { margin-bottom: 4px; }
  .mega:hover .mega-panel,
  .mega:focus-within .mega-panel { display: none; }
  .mega.is-open .mega-panel { display: block; }
  .mega > .nav-link::before { display: none; }
  .mega-panel, .mega-steps .mega-panel, .mega-network .mega-panel {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    margin: 0;
    padding: 0 0 6px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .mega-kind, .mega-lead, .mega-foot, .mega-copy > span, .mega-card img,
  .mega-steps .mega-shot, .mega-steps .mega-next { display: none; }
  .mega-grid, .mega-network .mega-grid, .mega-steps .mega-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
  .mega-card, .mega-steps .mega-card, .mega-network .mega-card {
    display: block;
    min-height: 0;
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .mega-steps .mega-main, .mega-card {
    text-decoration: none;
    color: #fff;
  }
  .mega-steps .mega-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 12px 4px 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .mega-network .mega-card, .mega-plain .mega-card {
    display: block;
    padding: 12px 4px 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .mega-copy { display: flex; align-items: baseline; gap: 10px; padding: 0; }
  .mega-copy em {
    display: inline;
    flex: 0 0 auto;
    min-width: 4.6rem;
    color: var(--gold);
    font-size: .72rem;
    letter-spacing: .03em;
  }
  .mega-copy strong, .mega-all { color: #fff; font-size: 1rem; }
  .mega-all {
    display: block;
    margin: 0;
    padding: 12px 4px 12px 14px;
    color: var(--gold);
  }
  .nav-drawer-extra {
    display: grid;
    margin-top: 14px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, .16);
  }
  .nav-drawer-label {
    margin: 10px 4px 2px;
    color: rgba(255, 255, 255, .58);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .nav-drawer-link, .nav-drawer-company {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .nav-drawer-link svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--gold); }
  .nav-drawer-company { margin-top: 4px; border-bottom: 0; }
  .hero-lead { white-space: normal; }
  body.theme-modern .site-nav { background: #fff; color: var(--ink); }
  body.theme-modern .nav-link,
  body.theme-modern .mega-copy strong,
  body.theme-modern .nav-drawer-link,
  body.theme-modern .nav-drawer-company { color: var(--ink); }
  body.theme-modern .nav-link,
  body.theme-modern .mega-steps .mega-main,
  body.theme-modern .mega-network .mega-card,
  body.theme-modern .mega-plain .mega-card,
  body.theme-modern .nav-drawer-link { border-bottom-color: var(--line); }
  body.theme-modern .mega-all,
  body.theme-modern .mega-copy em,
  body.theme-modern .nav-drawer-link svg { color: var(--blue); }
  body.theme-modern .nav-drawer-label { color: var(--muted); }
  body.theme-blue .site-nav { background: #00356f; }
}
@media (max-width: 700px) {
  .brand-sub { display: none; }
  .info-bar .info-mail { display: none; }
  .info-bar { flex-wrap: nowrap; justify-content: flex-start; align-items: center; gap: 0; font-size: .78rem; }
  .info-bar > span,
  .info-bar > span > a,
  .info-bar-end,
  .info-bar .socials { flex: 0 0 auto; }
  .info-bar > span > a { white-space: nowrap; }
  .info-bar-end {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, .28);
  }
  .hero-actions { flex-direction: column; }
}
@media (min-width: 861px) {
  .hint-mobile, .wheel-panel { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .callout, .wheel-art, .wheel-focus { transition: none; }
}
.maint-banner {
  margin: 0; padding: 8px 16px; background: #b45309; color: #fff; text-align: center; font-weight: 700;
}
.legal-list { display: grid; grid-template-columns: 11rem 1fr; gap: 8px 16px; margin: 18px 0 8px; }
.legal-list dt { font-weight: 700; }
.legal-list dd { margin: 0; }
.maintenance-page { min-height: 100vh; display: grid; place-items: center; background: #0b2a4a; color: #fff; margin: 0; }
.maintenance-card { width: min(640px, calc(100% - 40px)); }
.maintenance-card h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 8px 0 12px; }
.maintenance-card .prose { font-size: 1.05rem; line-height: 1.6; }
.maintenance-card a { color: #f2c14e; }
