:root {
  --bg: #f6f8fc;
  --surface: rgba(255,255,255,0.78);
  --surface-strong: #ffffff;
  --surface-soft: #eef5ff;
  --text: #10233a;
  --muted: #5a6b7d;
  --line: rgba(16,35,58,0.09);
  --line-strong: rgba(16,35,58,0.16);
  --brand: #002e48;
  --brand-strong: #002e48;
  --brand-accent: #2e6d92;
  --brand-soft: #d7e5ee;
  --dark: #061f2f;
  --white: #ffffff;
  --warning-soft: #fff1eb;
  --success-soft: #eaf8f0;
  --shadow: 0 22px 60px rgba(13, 34, 62, 0.12);
  --shadow-soft: 0 12px 30px rgba(13, 34, 62, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 100vw;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(90,166,255,0.12), transparent 20%),
    radial-gradient(circle at 90% 15%, rgba(29,95,168,0.10), transparent 18%),
    linear-gradient(180deg, #fbfcff 0%, #f3f7fc 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.theme-dark {
  --bg: #081421;
  --surface: rgba(15, 31, 49, 0.84);
  --surface-strong: #10253b;
  --surface-soft: rgba(24, 48, 74, 0.92);
  --text: #edf4ff;
  --muted: #b7c8dd;
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.16);
  --brand-soft: rgba(31, 82, 136, 0.32);
  --warning-soft: rgba(91,54,40,0.45);
  --success-soft: rgba(22,77,53,0.45);
  background:
    radial-gradient(circle at 10% 10%, rgba(90,166,255,0.14), transparent 20%),
    radial-gradient(circle at 90% 10%, rgba(29,95,168,0.14), transparent 20%),
    linear-gradient(180deg, #07111c 0%, #0b1827 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header .container,
.hero-background-inner {
  width: calc(100% - 40px);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #07263d;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.site-header-premium {
  background: #07263d;
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-minimal {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 1040px;
  min-height: 48px;
  margin: 0 auto;
  padding-top: 6px;
  padding-bottom: 6px;
}

.header-premium {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 64px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-minimal {
  gap: 0;
}

.brand-logo,
.footer-logo,
.cta-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.cta-logo { width: 82px; height: 82px; margin-bottom: 18px; }
.footer-logo { margin-bottom: 12px; }

.brand {
  font-family: 'Manrope', 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-sub {
  font-size: 0.86rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
  color: var(--muted);
}

.nav-minimal {
  justify-content: center;
  gap: 22px;
}

.nav-premium {
  justify-content: center;
  gap: 30px;
}

.nav-minimal a,
.nav-premium a {
  position: relative;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-minimal a {
  color: rgba(255,255,255,0.9);
}

.nav-premium a {
  color: rgba(255,255,255,0.92);
}

.nav-minimal a::after,
.nav-premium a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.nav-minimal a::after {
  background: rgba(255,255,255,0.92);
}

.nav-premium a::after {
  background: rgba(255,255,255,0.92);
}

.nav-minimal a:hover::after,
.nav-premium a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  justify-content: flex-end;
}

.header-cta .btn-primary {
  background: rgba(255,255,255,0.96);
  color: var(--brand-strong);
  box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}

.header-cta-premium .btn-primary,
.btn-header-premium {
  background: rgba(255,255,255,0.96);
  color: var(--brand-strong);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}

.site-header .brand-logo {
  width: 118px;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.brand-premium .brand-logo {
  width: 112px;
  transform-origin: center;
  position: relative;
  z-index: 1;
}

.brand-logo-shine {
  position: relative;
  overflow: visible;
}

.brand-logo-shine::before,
.brand-logo-shine::after {
  content: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  box-shadow: 0 18px 38px rgba(29,95,168,0.28);
}

.btn-secondary,
.btn-outline {
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-small { min-height: 38px; padding: 0 14px; font-size: 0.88rem; }
.btn-hero-premium {
  min-height: 52px;
  padding: 0 24px;
  font-size: 0.96rem;
  box-shadow: 0 14px 34px rgba(0, 46, 72, 0.34), 0 0 0 1px rgba(255,255,255,0.08) inset;
}

.btn-hero-premium:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 42px rgba(0, 46, 72, 0.42), 0 0 0 1px rgba(255,255,255,0.12) inset;
}

.btn-hero-secondary {
  min-height: 52px;
  padding: 0 24px;
  background: rgba(255,255,255,0.92);
  font-size: 0.96rem;
  box-shadow: 0 14px 32px rgba(255,255,255,0.16), 0 8px 22px rgba(0,0,0,0.14);
}

.btn-hero-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255,255,255,1);
  box-shadow: 0 18px 36px rgba(255,255,255,0.22), 0 12px 28px rgba(0,0,0,0.18);
}

.btn-hero-overlay {
  background: rgba(255,255,255,0.92);
  border-color: rgba(16,35,58,0.12);
  color: #10233a;
  backdrop-filter: blur(8px);
}
.full { width: 100%; }

.section {
  position: relative;
  padding: 100px 0;
}

.hero { padding: 84px 0 74px; }

.hero-split {
  padding: 40px 0 40px;
  background:
    radial-gradient(circle at 18% 28%, rgba(110, 177, 233, 0.34), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(8, 78, 130, 0.30), transparent 32%),
    linear-gradient(90deg, #f7fbff 0%, #eaf4fd 34%, #d7e9f8 66%, #bdd8ee 100%);
}

.hero-split-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.hero-premium-clean {
  padding: 54px 0 86px;
}

.hero-premium-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 52px;
  align-items: center;
}

.hero-background-image {
  min-height: 500px;
  padding: 0;
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  background-color: #071928;
}

.hero-reference-style {
  border-top: 1px solid rgba(16,35,58,0.04);
}

.hero-background-inner {
  width: calc(100% - 40px);
  max-width: none;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 500px;
  padding: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  pointer-events: none;
  opacity: 0.55;
}

.hero-glow-1 { width: 280px; height: 280px; background: rgba(90,166,255,0.25); top: 60px; left: -70px; }
.hero-glow-2 { width: 320px; height: 320px; background: rgba(29,95,168,0.18); right: -90px; top: 40px; }

.hero-grid,
.editorial-grid,
.timeline-grid,
.comparison-grid,
.faq-wrap,
.cta-box,
.footer-grid,
.dual-info-grid {
  display: grid;
  gap: 24px;
}

.hero-grid,
.editorial-grid,
.faq-wrap,
.cta-box,
.dual-info-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-copy { max-width: 720px; }

.hero-copy-split {
  max-width: 640px;
  padding: 0 0 0 8px;
  margin-top: -8px;
  display: flex;
  flex-direction: column;
}

.hero-copy-premium {
  max-width: 640px;
}

.hero-copy-overlay {
  max-width: 760px;
  padding: 24px 0 8px;
  margin-left: 48px;
  transform: translate(110px, 10px);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-soft) 92%, transparent);
  color: var(--brand);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.eyebrow-premium {
  background: transparent;
  border: 1px solid rgba(16,35,58,0.1);
  color: rgba(16,35,58,0.74);
  padding: 0;
  border-radius: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: 0;
}

.eyebrow-overlay {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  margin-bottom: 12px;
  font-size: 0.72rem;
}

.kicker-light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
}

.hero-title,
.section-title,
.cta-copy h2 {
  font-family: 'Manrope', 'Poppins', sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero-title {
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  margin: 0 0 18px;
}

.hero-title-premium {
  font-size: clamp(3.4rem, 5.8vw, 6rem);
  line-height: 0.92;
  max-width: 12ch;
  color: #0f2237;
  margin-bottom: 22px;
}

.hero-title-overlay {
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  line-height: 1.02;
  max-width: 16ch;
  color: #ffffff;
  margin-bottom: 12px;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  animation: none;
  text-shadow: 0 10px 30px rgba(0,0,0,0.12);
  font-weight: 500;
}

.hero-title-custom strong {
  font-weight: 800;
}

.hero-title-custom em {
  font-style: italic;
  font-weight: 500;
}

.eyebrow-split {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: rgba(7, 38, 61, 0.92);
  border: 1px solid rgba(7, 38, 61, 0.92);
  box-shadow: 0 14px 34px rgba(13, 34, 62, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #ffffff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.eyebrow-split:hover {
  background: rgba(14, 106, 184, 0.96);
  border-color: rgba(14, 106, 184, 0.96);
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-title-split {
  color: #10233a;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 0.98;
  margin-top: 10px;
  margin-bottom: 32px;
  text-shadow: none;
}

.hero-title-top,
.hero-title-bottom {
  display: inline-block;
}

.hero-title-top {
  font-size: clamp(2.35rem, 3.65vw, 3.75rem);
  line-height: 1.05;
  font-weight: 500;
  max-width: 13ch;
}

.hero-title-top strong {
  font-weight: 800;
}

.hero-line-nowrap {
  white-space: nowrap;
}

.hero-title-bottom {
  margin-top: 10px;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 0.94;
  font-weight: 700;
}

.lead-split {
  color: #22384d;
  font-size: 1.02rem;
  font-weight: 600;
  max-width: 60ch;
}

.hero-copy-split-muted {
  color: #5e6f81;
  max-width: 58ch;
}

.hero-actions-split {
  gap: 12px;
  margin-top: 0;
  padding-top: 0;
}

.hero-media-split {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: -140px;
}

.hero-image-split {
  width: 100%;
  max-width: 840px;
  height: 670px;
  object-fit: contain;
  object-position: center top;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.hero-image-caption {
  width: min(100%, 560px);
  margin: -160px 22px 0 0;
  color: #1c3954;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 500;
  text-align: left;
}

.hero-image-caption strong {
  font-weight: 800;
}

.hero-underline-animated {
  position: relative;
  display: inline-block;
}

.hero-underline-animated::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #0e6ab8;
  transform: scaleX(0);
  transform-origin: left;
  animation: heroUnderlineDraw 1.2s ease-out 1s forwards, heroUnderlinePulse 2.4s ease-in-out 2.4s infinite;
}

.hero-emphasis-animated {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  color: #0e6ab8;
  animation: heroWordReveal 1s ease-out 0.9s forwards, heroWordPulse 2.2s ease-in-out 2s infinite;
  transform-origin: center;
  will-change: transform, opacity;
}

.section-title,
.cta-copy h2 {
  font-size: clamp(2rem, 3.25vw, 3.15rem);
  margin: 0 0 18px;
  line-height: 1.08;
  padding-bottom: 0.08em;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.02rem;
}

.lead { color: var(--text); font-weight: 600; }

.lead-premium {
  max-width: 58ch;
  font-size: 1.08rem;
  font-weight: 600;
  color: #24374b;
}

.lead-overlay {
  max-width: 72ch;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.96);
  margin-bottom: 8px;
  text-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.hero-copy-muted {
  max-width: 60ch;
  color: #5f6f80;
}

.hero-copy-overlay-muted {
  display: none;
}

.hero-reference-style .hero-copy-overlay {
  transform: translateY(8px);
}

.hero-actions,
.hero-proof,
.partner-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions { margin-top: 28px; }
.hero-proof { margin-top: 22px; }

.hero-actions-premium {
  gap: 14px;
  margin-top: 32px;
}

.hero-actions-overlay {
  gap: 10px;
  margin-top: 14px;
}

.hero-proof-premium {
  gap: 14px;
  margin-top: 28px;
}

.hero-proof span,
.partner-chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-strong) 90%, transparent);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-proof-premium span {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(16,35,58,0.08);
  color: #4f6072;
  box-shadow: 0 12px 32px rgba(15,34,55,0.06);
}

.hero-proof-premium strong {
  color: #0f2237;
  font-weight: 800;
}

.partner-chips span {
  font-weight: 700;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.glass-card,
.glass-dark {
  backdrop-filter: blur(18px);
}

.premium-shell {
  position: relative;
  padding: 18px;
  min-height: 680px;
}

.hero-editorial-frame {
  position: relative;
  min-height: 720px;
}

.hero-visual-main {
  width: 84%;
  margin-left: auto;
  padding: 12px;
  border-radius: 34px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(16,35,58,0.08);
  box-shadow: 0 30px 80px rgba(15,34,55,0.12);
}

.hero-photo-main {
  width: 78%;
  height: 620px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.hero-photo-main-premium {
  width: 100%;
  height: 690px;
  border-radius: 26px;
}

.hero-visual-detail {
  position: absolute;
  left: 0;
  bottom: 56px;
  width: 46%;
  padding: 12px;
  border-radius: 28px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 70px rgba(15,34,55,0.16);
}

.hero-detail-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 14px;
}

.hero-detail-copy {
  display: grid;
  gap: 6px;
}

.hero-detail-copy strong {
  font-size: 1rem;
  color: #0f2237;
}

.hero-detail-copy span {
  font-size: 0.92rem;
  color: #5c6d7d;
}

.hero-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(16,35,58,0.08);
  color: #24374b;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(15,34,55,0.1);
}

.hero-badge-top {
  top: 24px;
  left: 42px;
}

.hero-badge-bottom {
  right: 24px;
  bottom: 18px;
}

.hero-photo-side {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: 40%;
  padding: 10px;
}

.hero-photo-side img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 22px;
}

.floating-note {
  position: absolute;
  max-width: 240px;
  padding: 16px 18px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.floating-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.9rem;
}

.fn-1 { top: 28px; right: 22px; }
.fn-2 { left: 22px; bottom: 20px; }

.partners-strip-section {
  padding: 0;
  background: #f8fafc;
}

.partners-strip-shell {
  border-top: 1px solid rgba(30, 109, 146, 0.42);
  border-bottom: 1px solid rgba(30, 109, 146, 0.42);
  padding: 16px 0 12px;
  overflow: hidden;
}

.partners-strip-title {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  font-weight: 800;
  color: #10233a;
  margin-bottom: 10px;
}

.partners-strip-marquee {
  overflow: hidden;
  width: 100%;
}

.partners-strip-track {
  display: flex;
  align-items: center;
  gap: 54px;
  width: max-content;
  padding: 0 30px;
  animation: partnersStripScroll 34s linear infinite;
}

.partners-logo-track {
  gap: 0;
  padding: 0 4px;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  width: auto;
  height: 78px;
  padding: 0 6px;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  flex: 0 0 auto;
}

.partner-logo-item img {
  max-width: 240px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(1.02) contrast(1.02);
}

.partners-strip-track span {
  font-size: 1.02rem;
  font-weight: 600;
  color: #4f5f70;
  white-space: nowrap;
}

.editorial-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.editorial-points {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.editorial-section-text-only .container {
  max-width: 1100px;
}

.editorial-copy-full {
  max-width: 980px;
}

.editorial-points-3cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.point-item {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  background: color-mix(in srgb, var(--surface-strong) 86%, transparent);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.editorial-accent {
  font-weight: 800;
  color: #10233a !important;
  transition: color 1.8s ease .35s, text-shadow 1.8s ease .35s;
}

.editorial-section-text-only.in-view .editorial-accent {
  color: #0e6ab8 !important;
  text-shadow: 0 0 18px rgba(14, 106, 184, 0.12);
}

.editorial-points-dark {
  margin-top: 34px;
}

.point-item-dark {
  padding: 24px 24px;
  background: linear-gradient(135deg, #07263d 0%, #0d3d61 55%, #125581 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(7, 38, 61, 0.16);
  transition: background .28s ease, transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.point-item-dark:hover {
  background: linear-gradient(135deg, #0b3a5b 0%, #12639b 58%, #1a7fbe 100%);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 22px 48px rgba(7, 38, 61, 0.22);
  transform: translateY(-3px);
}

.point-item-dark strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.point-item-dark span {
  color: rgba(255,255,255,0.92);
}

.editorial-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.editorial-cta-btn {
  min-width: 260px;
  background: #ffffff;
  color: #0b3352;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.85) inset, 0 14px 30px rgba(14, 106, 184, 0.26), 0 0 42px rgba(14, 106, 184, 0.42);
}

.editorial-cta-btn:hover {
  background: #ffffff;
  color: #0b3352;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.95) inset, 0 18px 36px rgba(14, 106, 184, 0.30), 0 0 52px rgba(14, 106, 184, 0.50);
}

.contrast-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(135deg, var(--dark), var(--brand-strong));
  color: white;
  border-radius: 28px;
}

.contrast-card-overlay {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  padding: 0;
  gap: 0;
  min-height: 420px;
}

.contrast-media-side {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: stretch;
}

.contrast-media-side::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 58%;
  height: 100%;
  background: linear-gradient(90deg, rgba(6,31,47,0) 0%, rgba(6,31,47,0.16) 22%, rgba(6,31,47,0.46) 48%, rgba(6,31,47,0.78) 72%, rgba(6,31,47,0.98) 100%);
  pointer-events: none;
}

.contrast-photo-overlay {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

.contrast-overlay-copy {
  position: absolute;
  left: 34px;
  top: 34px;
  z-index: 2;
  max-width: 74%;
}

.contrast-overlay-copy,
.contrast-overlay-copy p,
.contrast-overlay-copy strong,
.contrast-overlay-copy span {
  color: #ffffff !important;
}

.contrast-overlay-copy p {
  font-size: 1.08rem;
  line-height: 1.45;
  margin: 0;
  text-shadow: 0 20px 44px rgba(0,0,0,0.62), 0 8px 22px rgba(0,0,0,0.48), 0 0 34px rgba(0,0,0,0.34), 0 0 56px rgba(0,0,0,0.18);
}

.contrast-overlay-copy strong {
  font-weight: 800;
}

.contrast-line-nowrap {
  white-space: nowrap;
}

.contrast-content-side {
  padding: 42px 42px 42px 30px;
}

.contrast-card .section-title,
.contrast-card p,
.contrast-card .kicker,
.contrast-metric {
  color: white;
}

.contrast-card .kicker {
  background: rgba(255,255,255,0.12);
}

.contrast-metric {
  display: block;
  margin-top: 12px;
  font-size: 1.25rem;
  font-weight: 800;
}

.contrast-photo-wrap {
  margin-top: 18px;
}

.contrast-photo,
.process-photo,
.partners-photo,
.locations-photo {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.contrast-photo {
  height: 220px;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.timeline-grid,
.comparison-grid,
.footer-grid,
.dual-info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-card,
.comparison-card,
.location-card,
.testimonial-card,
.info-card,
.finder-box,
.booking-options {
  padding: 28px;
}

.process-photo {
  margin-top: 18px;
  height: 180px;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  padding: 0 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-soft), color-mix(in srgb, var(--surface-strong) 86%, transparent));
  color: var(--brand-strong);
  font-weight: 800;
  margin-bottom: 0;
  margin-right: 14px;
  flex: 0 0 auto;
}

.timeline-mini {
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-accordion-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-accordion {
  padding: 0;
  overflow: hidden;
}

.process-accordion-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.process-accordion-title {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
}

.process-accordion-arrow {
  font-size: 1.2rem;
  color: var(--brand);
  transition: transform .25s ease;
}

.process-accordion.is-open .process-accordion-arrow {
  transform: rotate(180deg);
}

.process-accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height .3s ease, padding .3s ease;
}

.process-accordion.is-open .process-accordion-content {
  max-height: 220px;
  padding: 0 22px 22px;
}

.highlight-step {
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-soft) 70%, var(--surface-strong)), color-mix(in srgb, var(--surface) 94%, transparent));
  border-color: rgba(29,95,168,0.18);
}

.compare-list,
.bad-list,
.good-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.compare-list li {
  position: relative;
  padding-left: 24px;
}

.bad-list li::before,
.good-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.bad-list li::before { background: #f08b62; }
.good-list li::before { background: #34b26d; }

.comparison-bad { background: color-mix(in srgb, var(--warning-soft) 78%, var(--surface)); }
.comparison-good { background: color-mix(in srgb, var(--success-soft) 78%, var(--surface)); }

.partners-wrap {
  display: grid;
  gap: 24px;
}

.partner-group h3 {
  margin: 0 0 14px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  padding: 18px 0;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface-strong), transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface-strong), transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.brand-track {
  animation-duration: 42s;
}

.partner-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.partner-accent-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-soft) 85%, var(--surface-strong));
  border: 1px solid rgba(29,95,168,0.14);
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.partner-accent-badge.subtle {
  color: var(--muted);
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
  border-color: var(--line);
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 64px;
  padding: 0 24px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.logo-badge span {
  display: inline-block;
  letter-spacing: 0.08em;
}

.logo-hoya {
  min-width: 180px;
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
  border-color: rgba(29,95,168,0.18);
}

.logo-hoya span {
  font-family: 'Manrope', 'Poppins', sans-serif;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  color: #1462b3;
}

.text-logo span {
  font-size: 0.98rem;
  font-weight: 700;
}

.logo-vogue span,
.logo-ralph span,
.logo-armani span,
.logo-police span,
.logo-silhouette span,
.logo-guess span,
.logo-tomford span,
.logo-polaroid span {
  letter-spacing: 0.18em;
}

.logo-mk span {
  letter-spacing: 0.12em;
  font-weight: 800;
}

.logo-dg span {
  letter-spacing: 0.12em;
  font-weight: 800;
}

.logo-rayban {
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.logo-rayban span {
  font-family: 'Manrope', 'Poppins', sans-serif;
  font-weight: 800;
  font-style: italic;
  color: #c9141f;
  letter-spacing: 0.03em;
}

.partners-photo-card {
  margin-top: 18px;
  padding: 12px;
}

.partners-photo {
  height: 260px;
}

.partner-note {
  margin-top: 14px;
  font-size: 0.92rem;
}

body.theme-dark .logo-badge {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

body.theme-dark .logo-hoya,
body.theme-dark .logo-rayban {
  background: rgba(255,255,255,0.94);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes partnersStripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.finder-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.finder-result {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.locations-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  margin-bottom: 24px;
}

.locations-photo {
  height: 320px;
}

.location-detailed-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.location-card h3 {
  margin: 0 0 6px;
}

.location-card p {
  margin-bottom: 8px;
}

.location-card small {
  color: var(--muted);
  font-size: 0.88rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.stars {
  color: #f4b93b;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.faq-item p { margin-top: 12px; }

.cta-section {
  background: linear-gradient(180deg, #10233a 0%, #173a63 100%);
}

.cta-copy h2,
.cta-copy p,
.cta-copy .lead,
.booking-option p,
.booking-option strong,
.contact-line,
.site-footer,
.site-footer a,
.site-footer p,
.site-footer h4 {
  color: white;
}

.glass-dark {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

.booking-options {
  display: grid;
  gap: 18px;
}

.booking-option {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
}

.secondary-option .btn-secondary {
  background: rgba(255,255,255,0.92);
}

.site-footer {
  background: #0d1e32;
  padding: 40px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h4 {
  margin: 0 0 12px;
  font-family: 'Manrope', 'Poppins', sans-serif;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.84);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

.animate-text {
  background: linear-gradient(135deg, var(--text) 0%, var(--brand) 52%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: shimmerText 8s ease infinite;
}

body.theme-dark .animate-text,
body.theme-dark .contrast-card .animate-text,
body.theme-dark .cta-copy .animate-text {
  background: linear-gradient(135deg, #ffffff 0%, #8cc1ff 52%, #d3e7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes shimmerText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes heroWordReveal {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroWordPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    text-shadow: 0 0 0 rgba(255,255,255,0);
  }
  50% {
    transform: translateY(0) scale(1.06);
    text-shadow: 0 0 22px rgba(255,255,255,0.18);
  }
}

@keyframes heroUnderlineDraw {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes heroUnderlinePulse {
  0%, 100% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.45;
  }
}

@keyframes headerLogoLaserCore {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
  }
  15% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.9);
  }
  48% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1.25);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.9);
  }
}

@keyframes headerLogoLaserWave {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  18% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.8);
  }
  55% {
    opacity: 0.52;
    transform: translate(-50%, -50%) scale(2.6);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .animate-text,
  .btn,
  .hero-glow {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .editorial-grid,
  .faq-wrap,
  .cta-box,
  .dual-info-grid,
  .finder-box,
  .footer-grid,
  .process-grid-4,
  .location-detailed-grid,
  .testimonials-grid,
  .comparison-grid,
  .locations-intro,
  .hero-premium-layout {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .editorial-grid,
  .faq-wrap,
  .cta-box,
  .dual-info-grid,
  .finder-box,
  .locations-intro,
  .hero-premium-layout,
  .hero-split-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy-premium,
  .hero-copy-overlay {
    max-width: 100%;
  }

  .hero-background-image,
  .hero-background-inner,
  .hero-editorial-frame {
    min-height: auto;
  }

  .hero-visual-main {
    width: 100%;
    margin-left: 0;
  }

  .hero-visual-detail {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .hero-badge {
    position: static;
    margin-top: 14px;
    margin-right: 10px;
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .header-inner,
  .nav,
  .hero-actions,
  .hero-proof,
  .partner-chips,
  .partner-label-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-minimal,
  .header-premium {
    display: flex;
    gap: 18px;
  }

  .nav-minimal,
  .nav-premium {
    gap: 14px;
  }

  .header-cta {
    width: 100%;
  }

  .process-grid-4,
  .location-detailed-grid,
  .testimonials-grid,
  .comparison-grid,
  .footer-grid,
  .dual-info-grid,
  .editorial-points-3cols {
    grid-template-columns: 1fr;
  }

  .section { padding: 76px 0; }
  .site-header { position: static; }

  .premium-shell {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .hero-photo-main,
  .hero-photo-main-premium,
  .editorial-image {
    width: 100%;
    height: 380px;
  }

  .hero-photo-side,
  .hero-visual-detail {
    position: static;
    width: 100%;
  }

  .floating-note,
  .hero-badge {
    position: static;
    max-width: none;
  }

  .contrast-card {
    grid-template-columns: 1fr;
  }

  .hero-title,
  .hero-title-premium,
  .hero-title-overlay {
    font-size: clamp(2.4rem, 9vw, 3.5rem);
    max-width: none;
  }

  .hero-copy-overlay {
    padding: 64px 0;
  }

  .hero-copy-split {
    padding: 0;
  }

  .hero-image-split {
    height: 380px;
    border-radius: 22px;
  }
}

.quiz-experience-section {
  background:
    radial-gradient(circle at top right, rgba(181, 143, 74, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(15, 18, 24, 0.96), rgba(9, 11, 15, 1));
}

.quiz-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.quiz-overview-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.quiz-overview-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: rgba(181, 143, 74, 0.18);
  color: #f3d9a2;
  margin-bottom: 16px;
}

.quiz-overview-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.quiz-overview-card p,
.quiz-intent p,
.quiz-results-copy p,
.quiz-final-cta p,
.quiz-panel-head p,
.quiz-help {
  color: rgba(230, 232, 236, 0.78);
}

.quiz-intent {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
}

.quiz-builder {
  margin-top: 34px;
  padding: 0;
  overflow: hidden;
}

.quiz-builder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
}

.quiz-form-panel,
.quiz-result-panel {
  padding: 34px;
}

.quiz-form-panel {
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.quiz-panel-head h3,
.quiz-results-copy h3,
.quiz-intent h3 {
  margin-bottom: 10px;
}

.quiz-label {
  display: block;
  margin-top: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #f4f6fb;
}

.quiz-input-file,
.quiz-select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(12, 14, 19, 0.85);
  color: #f4f6fb;
  padding: 14px 16px;
}

.quiz-disc-fieldset {
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 12px 16px 18px;
}

.quiz-disc-fieldset label,
.quiz-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
  color: rgba(230, 232, 236, 0.88);
}

.quiz-consent {
  margin: 20px 0;
}

.quiz-preview-shell {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top, rgba(181, 143, 74, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(18, 21, 28, 0.95), rgba(10, 12, 18, 1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-preview-placeholder {
  max-width: 360px;
  text-align: center;
  color: rgba(230, 232, 236, 0.74);
  line-height: 1.6;
  padding: 30px;
}

.quiz-preview-image {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  display: none;
  background: #111;
}

.quiz-results-copy {
  margin-top: 24px;
}

.quiz-simulation-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quiz-sim-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.quiz-sim-visual {
  position: relative;
  aspect-ratio: 4 / 4.6;
  background: linear-gradient(180deg, #1a1f29, #0f1218);
  overflow: hidden;
}

.quiz-sim-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiz-frame-overlay {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  width: 52%;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.35));
}

.quiz-sim-copy {
  padding: 18px;
}

.quiz-sim-copy h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.quiz-sim-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 10px;
}

.quiz-sim-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(181, 143, 74, 0.14);
  color: #f3d9a2;
  font-size: 0.82rem;
}

.quiz-final-cta {
  margin-top: 22px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(181, 143, 74, 0.08);
  border: 1px solid rgba(181, 143, 74, 0.18);
}

@media (max-width: 1100px) {
  .quiz-overview-grid,
  .quiz-simulation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quiz-builder-grid {
    grid-template-columns: 1fr;
  }

  .quiz-form-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

@media (max-width: 760px) {
  .quiz-overview-grid,
  .quiz-simulation-grid {
    grid-template-columns: 1fr;
  }

  .quiz-intent {
    flex-direction: column;
    align-items: flex-start;
  }

  .quiz-form-panel,
  .quiz-result-panel {
    padding: 24px;
  }
}
