:root {
  --midnight: #102542;
  --midnight-deep: #0b1830;
  --signal: #d56b44;
  --signal-deep: #b75734;
  --sunrise: #e6b78b;
  --linen: #f4f0ea;
  --ice: #ecf1f6;
  --white: #ffffff;
  --slate-900: #121d31;
  --slate-700: #39475d;
  --slate-500: #5e697d;
  --slate-300: #cfd6e2;
  --slate-200: #dfe5ee;
  --slate-100: #edf1f7;
  --canvas: #f7f8fb;
  --signal-rgb: 213, 107, 68;
  --sunrise-rgb: 230, 183, 139;
  --success: #15926a;
  --warning: #ffb347;
  --shadow-soft: 0 18px 40px rgba(16, 37, 66, 0.08);
  --shadow-deep: 0 30px 60px rgba(16, 37, 66, 0.18);
  --shadow-card-hover: 0 22px 44px rgba(16, 37, 66, 0.14);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shell: min(1200px, calc(100vw - 32px));
  --font-body: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate-700);
  line-height: 1.65;
  background:
    radial-gradient(circle at top right, rgba(var(--sunrise-rgb), 0.16), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #f3f6fa 24%, #f4f1ec 100%);
}

body.nav-open {
  overflow: hidden;
}

body.faq-modal-open {
  overflow: hidden;
}

body.cookie-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

p,
li {
  margin: 0;
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

button,
input,
select,
textarea {
  font: inherit;
}

.icon-svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.pill-icon {
  width: 16px;
  height: 16px;
  color: currentColor;
  opacity: 0.92;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.site-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-compact {
  padding: 60px 0;
}

.stack-lg > * + * {
  margin-top: 26px;
}

.stack-xs > * + * {
  margin-top: 6px;
}

.stack-md > * + * {
  margin-top: 18px;
}

.stack-sm > * + * {
  margin-top: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(var(--signal-rgb), 0.1);
  color: var(--signal);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title,
.page-hero h1,
.hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--midnight);
  letter-spacing: -0.05em;
  line-height: 1;
}

.section-title {
  font-size: clamp(2.2rem, 3.5vw, 4rem);
}

.text-on-dark {
  color: var(--white);
}

.text-on-dark-muted {
  color: rgba(255, 255, 255, 0.86);
}

.surface-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 37, 66, 0.08);
  box-shadow: var(--shadow-soft);
}

.section-subtitle,
.lead,
.page-hero p,
.hero-copy p {
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  line-height: 1.72;
  color: var(--slate-700);
  max-width: 60ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
  cursor: pointer;
}

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

.button-primary {
  background: var(--signal);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(var(--signal-rgb), 0.22);
}

.button-primary:hover {
  background: var(--signal-deep);
}

.button-secondary {
  background: var(--midnight);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(16, 37, 66, 0.2);
}

.button-secondary:hover {
  background: var(--midnight-deep);
}

.button-ghost {
  background: rgba(16, 37, 66, 0.05);
  color: var(--midnight);
  border: 1px solid rgba(16, 37, 66, 0.12);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.button-light {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.28);
}

.topbar {
  background: var(--midnight);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 31;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 10px 0;
}

.topbar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  font-size: 14px;
}

.topbar-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.92);
}

.topbar-pill-mobile,
.topbar-quote-label-mobile {
  display: none;
}

.topbar-pill-link {
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.topbar-call-cta {
  position: relative;
  gap: 12px;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top left, rgba(var(--sunrise-rgb), 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  color: var(--white);
  backdrop-filter: blur(10px);
  box-shadow:
    0 18px 28px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.topbar-call-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(var(--sunrise-rgb), 0.12);
  pointer-events: none;
}

.topbar-call-copy {
  display: grid;
  gap: 2px;
  align-items: flex-start;
  line-height: 1;
}

.topbar-call-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--sunrise-rgb), 0.94);
}

.topbar-call-number {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.topbar-call-cta .pill-icon {
  color: rgba(var(--sunrise-rgb), 0.94);
  opacity: 1;
}

.topbar-pill-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
}

.topbar-call-cta:hover {
  background:
    radial-gradient(circle at top left, rgba(var(--sunrise-rgb), 0.24), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
  color: var(--white);
}

.topbar-quote-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(246, 248, 251, 0.9);
  border-bottom: 1px solid rgba(16, 37, 66, 0.06);
  box-shadow: 0 10px 24px rgba(16, 37, 66, 0.04);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 248, 251, 0.97);
  border-bottom-color: rgba(16, 37, 66, 0.1);
  box-shadow: 0 16px 32px rgba(16, 37, 66, 0.08);
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}

.header-quicktools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 146px;
  height: auto;
}

.site-header .brand img {
  width: 132px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.04em;
  color: var(--midnight);
}

.brand-copy {
  margin: 0;
  font-size: 13px;
  color: var(--slate-700);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  padding: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 246, 250, 0.94));
  border: 1px solid rgba(16, 37, 66, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 18px 32px rgba(16, 37, 66, 0.07);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--slate-700);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

.main-nav .nav-tool-link,
.mobile-nav .nav-tool-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.main-nav .nav-tool-link {
  padding-inline: 16px;
  background: linear-gradient(180deg, rgba(var(--sunrise-rgb), 0.26), rgba(var(--sunrise-rgb), 0.16));
  border: 1px solid rgba(var(--signal-rgb), 0.18);
  color: var(--midnight);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.main-nav .nav-tool-link::after,
.mobile-nav .nav-tool-link::after {
  content: "outil";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav .nav-tool-link::after {
  min-width: 44px;
  height: 22px;
  font-size: 9px;
  background: rgba(16, 37, 66, 0.92);
  color: var(--white);
}

.main-nav a:hover,
.main-nav a.active {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  color: var(--midnight);
  box-shadow:
    0 12px 24px rgba(16, 37, 66, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.main-nav .nav-tool-link:hover,
.main-nav .nav-tool-link.active {
  background: linear-gradient(135deg, rgba(16, 37, 66, 1), rgba(25, 57, 97, 0.96));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 16px 30px rgba(16, 37, 66, 0.16);
}

.main-nav .nav-tool-link:hover::after,
.main-nav .nav-tool-link.active::after {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.header-quote-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.header-call-button {
  flex: 0 0 auto;
  white-space: nowrap;
  display: none;
}

.header-call-button .icon-svg {
  width: 16px;
  height: 16px;
}

.header-search {
  position: relative;
  flex: 0 0 auto;
}

.header-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(16, 37, 66, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 244, 249, 0.92));
  color: var(--midnight);
  box-shadow: 0 16px 28px rgba(16, 37, 66, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-search-toggle:hover,
.header-search.open .header-search-toggle {
  transform: translateY(-1px);
  border-color: rgba(var(--signal-rgb), 0.2);
  background: rgba(var(--sunrise-rgb), 0.22);
  box-shadow: 0 18px 32px rgba(16, 37, 66, 0.12);
}

.header-search-toggle .icon-svg {
  width: 18px;
  height: 18px;
}

.header-search-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(440px, calc(100vw - 40px));
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.985);
  border: 1px solid rgba(16, 37, 66, 0.1);
  box-shadow: 0 34px 70px rgba(16, 37, 66, 0.18);
  backdrop-filter: blur(14px);
  z-index: 80;
}

.header-search-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.header-search-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(var(--signal-rgb), 0.1);
  color: var(--signal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-search-copy {
  max-width: 30ch;
  color: var(--slate-500);
  font-size: 0.93rem;
  line-height: 1.5;
}

.header-search-close {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 37, 66, 0.1);
  background: rgba(16, 37, 66, 0.04);
  color: var(--midnight);
  font-weight: 700;
}

.header-search-field {
  position: relative;
}

.header-search-field-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 18px;
  height: 18px;
  color: var(--slate-500);
  transform: translateY(-50%);
}

.header-search-input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px 0 46px;
  border-radius: 16px;
  border: 1px solid rgba(16, 37, 66, 0.1);
  background: rgba(247, 249, 252, 0.96);
  color: var(--midnight);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.header-search-input:focus {
  outline: none;
  border-color: rgba(var(--signal-rgb), 0.4);
  box-shadow: 0 0 0 4px rgba(var(--signal-rgb), 0.12);
  background: var(--white);
}

.header-search-results {
  display: grid;
  gap: 10px;
  max-height: 328px;
  overflow: auto;
  padding-right: 4px;
}

.header-search-result {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(16, 37, 66, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.96));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-search-result:hover,
.header-search-result.is-match {
  transform: translateY(-1px);
  border-color: rgba(var(--signal-rgb), 0.2);
  box-shadow: 0 18px 34px rgba(16, 37, 66, 0.1);
  background: var(--white);
}

.header-search-result-type {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(16, 37, 66, 0.07);
  color: var(--midnight);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-search-result strong {
  font-family: var(--font-display);
  color: var(--midnight);
  letter-spacing: -0.03em;
}

.header-search-result span:last-child {
  color: var(--slate-700);
  font-size: 0.93rem;
  line-height: 1.5;
}

.header-search-empty {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(16, 37, 66, 0.04);
  border: 1px dashed rgba(16, 37, 66, 0.16);
  color: var(--slate-700);
  font-size: 0.94rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(16, 37, 66, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--midnight);
  box-shadow: 0 14px 28px rgba(16, 37, 66, 0.08);
  white-space: nowrap;
}

.nav-toggle-bars {
  display: inline-grid;
  gap: 4px;
}

.nav-toggle-bars span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(6, 14, 28, 0.44);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 41;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(430px, 100vw);
  background:
    radial-gradient(circle at top right, rgba(var(--sunrise-rgb), 0.14), transparent 26%),
    linear-gradient(180deg, rgba(11, 24, 48, 0.985), rgba(15, 34, 61, 0.98));
  box-shadow: var(--shadow-deep);
  opacity: 0;
  pointer-events: none;
  transform: translateX(102%);
  transition: opacity 220ms ease, transform 260ms var(--transition-smooth);
  z-index: 42;
  overflow: hidden;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-nav-shell {
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  padding: calc(18px + env(safe-area-inset-top)) 18px calc(22px + env(safe-area-inset-bottom));
  overflow-y: auto;
}

.mobile-nav-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mobile-nav-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.mobile-nav-brand span:last-child {
  display: block;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.5;
}

.mobile-nav-kicker,
.mobile-nav-section-title {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-nav-close {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 700;
}

.mobile-nav-search,
.mobile-nav-section {
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mobile-nav-search-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.5;
}

.mobile-nav-search-field {
  position: relative;
}

.mobile-nav-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  color: var(--slate-500);
  transform: translateY(-50%);
}

.mobile-nav-search-input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px 0 42px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--midnight);
}

.mobile-nav-search-input:focus {
  outline: none;
  border-color: rgba(var(--signal-rgb), 0.4);
  box-shadow: 0 0 0 4px rgba(var(--signal-rgb), 0.14);
}

.mobile-nav-search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-nav-search-chip {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.mobile-nav-search-chip.active {
  background: rgba(var(--sunrise-rgb), 0.18);
  border-color: rgba(var(--sunrise-rgb), 0.28);
}

.mobile-nav-search-results {
  display: grid;
  gap: 10px;
  max-height: 240px;
  overflow: auto;
}

.mobile-search-result {
  display: grid;
  gap: 6px;
  padding: 13px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.mobile-search-result:hover,
.mobile-search-result.is-match {
  transform: translateY(-1px);
  border-color: rgba(var(--sunrise-rgb), 0.28);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 16px 28px rgba(8, 20, 40, 0.24);
}

.mobile-search-result-type {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(var(--sunrise-rgb), 0.18);
  color: var(--sunrise);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-search-result strong {
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.mobile-search-result span:last-child {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.45;
}

.mobile-nav-search-empty {
  padding: 13px 14px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.mobile-nav-sections {
  display: grid;
  gap: 16px;
  align-content: start;
}

.mobile-nav-links {
  display: grid;
  gap: 8px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-weight: 700;
}

.mobile-nav-links a.active {
  border-color: rgba(var(--sunrise-rgb), 0.24);
  background: rgba(var(--sunrise-rgb), 0.14);
}

.mobile-nav-links .nav-tool-link {
  justify-content: space-between;
  gap: 10px;
}

.mobile-nav-links .nav-tool-link::after {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.mobile-nav-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  font-weight: 800;
  text-align: center;
}

.mobile-nav-cta.primary {
  background: var(--signal);
  color: var(--white);
}

.mobile-nav-cta.ghost {
  border: 1px solid rgba(var(--sunrise-rgb), 0.24);
  background: rgba(var(--sunrise-rgb), 0.14);
  color: var(--white);
}

.mobile-nav-cta.dark {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.mobile-nav-cta.light {
  background: rgba(255, 255, 255, 0.96);
  color: var(--midnight);
}

.mobile-nav-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-nav-footer-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  padding: 62px 0 64px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 540px;
  background:
    linear-gradient(135deg, rgba(16, 37, 66, 0.96), rgba(23, 49, 86, 0.9) 60%, rgba(var(--signal-rgb), 0.7));
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 540px;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.hero .site-shell {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.hero-panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  isolation: isolate;
  padding: 44px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(var(--sunrise-rgb), 0.2), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(155deg, rgba(11, 24, 48, 0.97), rgba(16, 37, 66, 0.93) 60%, rgba(var(--signal-rgb), 0.56));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 32px 64px rgba(6, 14, 26, 0.28);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .microcopy,
.hero-copy .hero-badges,
.hero-copy .hero-detail {
  color: var(--white);
}

.hero-copy h1 {
  font-size: clamp(2.55rem, 4.8vw, 4.9rem);
  max-width: 11.5ch;
  line-height: 0.96;
}

.hero-copy p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-proof-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  padding: 16px 18px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-proof-card strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.03em;
}

.hero-proof-card span {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
  font-size: 14px;
}

.hero-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-specialty-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.09));
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-detail {
  max-width: 60ch;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.76);
}

.hero-call-button {
  color: var(--white);
}

.hero-badges,
.inline-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badge,
.inline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(234,240,246,0.98));
  box-shadow: var(--shadow-deep);
}

.quote-panel {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 100%;
}

.quote-visual {
  position: relative;
  min-height: 260px;
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(var(--signal-rgb), 0.16), transparent 34%),
    linear-gradient(140deg, rgba(16, 37, 66, 1), rgba(19, 43, 74, 0.96));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.quote-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(8, 18, 34, 0.08), rgba(8, 18, 34, 0.22));
}

.quote-visual-card {
  position: relative;
  z-index: 2;
  max-width: 320px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  color: var(--white);
}

.quote-visual-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 10px;
}

.quote-visual-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.quote-visual-pill {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-visual-pill strong {
  font-family: var(--font-display);
  color: var(--white);
  letter-spacing: -0.03em;
}

.quote-visual-pill span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.quote-form {
  padding: 28px;
}

.quote-form h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--midnight);
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  letter-spacing: -0.04em;
}

.microcopy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.quote-form .microcopy {
  color: var(--slate-500);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--midnight);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 14px 16px;
  background: var(--white);
  color: var(--midnight);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(var(--signal-rgb), 0.64);
  box-shadow: 0 0 0 4px rgba(var(--signal-rgb), 0.12);
}

.full-span {
  grid-column: 1 / -1;
}

.form-disclaimer {
  margin: 2px 2px 0;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.7;
}

.form-disclaimer a {
  color: var(--midnight);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cookie-consent-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: min(1080px, calc(100vw - 24px));
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(16, 37, 66, 0.12);
  background:
    radial-gradient(circle at top right, rgba(var(--sunrise-rgb), 0.18), transparent 32%),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 60px rgba(16, 37, 66, 0.2);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 22px;
  align-items: end;
  z-index: 70;
}

.cookie-consent-copy h2 {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  letter-spacing: -0.05em;
}

.cookie-consent-copy p,
.cookie-settings-copy,
.cookie-settings-note span {
  color: var(--slate-700);
}

.cookie-consent-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(var(--signal-rgb), 0.1);
  color: var(--signal-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  grid-column: 1 / -1;
  font-size: 13px;
}

.cookie-consent-links a,
.footer-cookie-trigger {
  color: var(--midnight);
  font-weight: 700;
}

.footer-cookie-trigger {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.cookie-floating-trigger {
  position: fixed;
  left: 18px;
  bottom: 18px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(16, 37, 66, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--midnight);
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(16, 37, 66, 0.14);
  z-index: 58;
  cursor: pointer;
}

.cookie-settings {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  z-index: 80;
}

.cookie-settings-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 14, 27, 0.54);
  backdrop-filter: blur(10px);
}

.cookie-settings-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  justify-items: center;
  align-items: center;
  overflow-y: auto;
  padding:
    max(24px, env(safe-area-inset-top))
    24px
    max(24px, env(safe-area-inset-bottom));
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.cookie-settings-panel {
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(var(--sunrise-rgb), 0.18), transparent 32%),
    rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 37, 66, 0.1);
  box-shadow: 0 30px 70px rgba(16, 37, 66, 0.24);
  display: grid;
  gap: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  touch-action: pan-y;
}

.cookie-settings-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.cookie-settings-title {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  letter-spacing: -0.05em;
}

.cookie-settings-status,
.cookie-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cookie-settings-status-item,
.cookie-status-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(247, 249, 252, 0.92);
  border: 1px solid rgba(16, 37, 66, 0.08);
}

.cookie-status-label,
.cookie-service-panel-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-500);
}

.cookie-settings-status-item strong,
.cookie-status-card strong,
.cookie-service-row strong {
  color: var(--midnight);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.cookie-service-panel {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(247, 249, 252, 0.92);
  border: 1px solid rgba(16, 37, 66, 0.08);
}

.cookie-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
}

.cookie-policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-inline-status {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(16, 37, 66, 0.08);
}

[data-cookie-status-mode][data-state="accept_all"],
[data-cookie-status-category][data-state="granted"],
[data-cookie-status-service][data-state="granted"] {
  color: var(--success);
}

[data-cookie-status-mode][data-state="reject_all"],
[data-cookie-status-category][data-state="blocked"],
[data-cookie-status-service][data-state="blocked"] {
  color: var(--signal-deep);
}

[data-cookie-status-mode][data-state="pending"],
[data-cookie-status-category][data-state="pending"],
[data-cookie-status-service][data-state="pending"],
[data-cookie-status-updated][data-state="pending"] {
  color: var(--slate-500);
}

.cookie-settings-close {
  appearance: none;
  border: 0;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 14px;
  background: rgba(16, 37, 66, 0.08);
  color: var(--midnight);
  font-weight: 700;
  cursor: pointer;
}

.cookie-settings-grid {
  display: grid;
  gap: 14px;
}

.cookie-category-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(16, 37, 66, 0.08);
  background: rgba(247, 249, 252, 0.92);
}

.cookie-category-card strong {
  color: var(--midnight);
  font-size: 1.05rem;
}

.cookie-category-card p {
  color: var(--slate-700);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-chip.always-on {
  background: rgba(21, 146, 106, 0.12);
  color: var(--success);
}

.cookie-toggle-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cookie-toggle-wrap input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.cookie-toggle {
  width: 58px;
  height: 34px;
  border-radius: 999px;
  background: rgba(16, 37, 66, 0.16);
  box-shadow: inset 0 0 0 1px rgba(16, 37, 66, 0.08);
  transition: background 180ms ease;
}

.cookie-toggle::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 18px rgba(16, 37, 66, 0.16);
  transition: transform 180ms ease;
}

.cookie-toggle-wrap input:checked + .cookie-toggle {
  background: var(--signal);
}

.cookie-toggle-wrap input:checked + .cookie-toggle::after {
  transform: translateX(24px);
}

.cookie-settings-note {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(var(--signal-rgb), 0.08);
  border: 1px solid rgba(var(--signal-rgb), 0.18);
}

.cookie-settings-note strong {
  color: var(--signal-deep);
}

.cookie-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1100px), (max-height: 900px) {
  .cookie-settings-shell {
    align-items: start;
    padding:
      max(18px, env(safe-area-inset-top))
      18px
      max(18px, env(safe-area-inset-bottom));
  }

  .cookie-settings-panel {
    max-height: calc(100vh - 36px);
    max-height: calc(100dvh - 36px);
  }
}

.trust-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-card,
.trust-card,
.service-card,
.formula-card,
.route-card,
.review-card,
.gallery-card,
.tip-card,
.contact-card,
.method-step {
  background: var(--white);
  border: 1px solid rgba(16, 37, 66, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.metric-card,
.trust-card {
  padding: 18px;
}

.metric-value {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--midnight);
  letter-spacing: -0.05em;
}

.metric-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--signal);
  font-weight: 800;
}

.grid-2,
.grid-3,
.grid-4,
.routes-grid,
.tips-grid,
.contact-grid,
.method-grid {
  display: grid;
  gap: 20px;
}

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

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

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

.routes-grid,
.tips-grid,
.contact-grid,
.method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.formula-card,
.route-card,
.review-card,
.gallery-card,
.tip-card,
.contact-card,
.method-step {
  padding: 26px;
}

.service-card,
.formula-card,
.gallery-card,
.tip-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.formula-card::before,
.gallery-card::before,
.tip-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--signal-rgb), 0.1), transparent 72%);
}

.card-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--midnight);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
}

.service-card h3,
.formula-card h3,
.route-card h3,
.review-card h3,
.gallery-card h3,
.tip-card h3,
.contact-card h3,
.method-step h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  color: var(--midnight);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.card-tag,
.route-tag,
.formula-tag,
.review-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--signal-rgb), 0.1);
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-card ul,
.formula-card ul,
.tip-card ul,
.article-keypoints ul,
.editorial-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.formula-card li,
.tip-card li,
.article-keypoints li,
.editorial-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.72;
  color: var(--slate-700);
}

.service-card li + li,
.formula-card li + li,
.tip-card li + li,
.article-keypoints li + li,
.editorial-list li + li {
  margin-top: 10px;
}

.service-card li::before,
.formula-card li::before,
.tip-card li::before,
.article-keypoints li::before,
.editorial-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--signal), var(--sunrise));
  box-shadow: 0 0 0 4px rgba(var(--signal-rgb), 0.12);
}

.formula-card.featured {
  background:
    linear-gradient(180deg, rgba(16, 37, 66, 0.98), rgba(11, 24, 48, 1));
  color: rgba(255, 255, 255, 0.92);
}

.formula-card.featured h3,
.formula-card.featured p,
.formula-card.featured li {
  color: rgba(255, 255, 255, 0.92);
}

.formula-card.featured .formula-tag {
  background: rgba(var(--sunrise-rgb), 0.18);
  color: #f7dfc4;
}

.route-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.route-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--midnight);
}

.route-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.route-dot.start {
  background: var(--midnight);
}

.route-dot.end {
  background: var(--signal);
}

.route-path {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, var(--midnight), rgba(var(--signal-rgb), 0.55));
}

.fleet-band {
  position: relative;
  padding: 32px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(16, 37, 66, 1), rgba(16, 37, 66, 0.88));
  color: var(--white);
}

.fleet-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.22;
  pointer-events: none;
}

.fleet-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 20px;
  align-items: center;
}

.fleet-band .section-kicker,
.fleet-band h2,
.fleet-band p,
.fleet-band li,
.fleet-band strong {
  color: var(--white);
}

.fleet-band .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.fleet-band p,
.fleet-band li {
  color: rgba(255, 255, 255, 0.86);
}

.fleet-content img {
  width: min(480px, 100%);
  min-height: 300px;
  margin-left: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 24px 50px rgba(6, 14, 26, 0.28);
}

.terrain-band .fleet-content {
  align-items: stretch;
}

.terrain-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.terrain-points li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.68;
}

.terrain-points li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sunrise), var(--signal));
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.terrain-side {
  align-content: start;
}

.terrain-note {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 246, 250, 0.98));
}

.terrain-note strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  color: var(--midnight);
  letter-spacing: -0.03em;
}

.filter-wrap {
  display: flex;
  justify-content: center;
}

.filter-bar {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(16, 37, 66, 0.05);
  border: 1px solid rgba(16, 37, 66, 0.08);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--midnight);
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-chip.active,
.filter-chip:hover {
  background: var(--midnight);
  color: var(--white);
  transform: translateY(-1px);
}

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

.gallery-card-media {
  position: relative;
  height: 220px;
  margin: -26px -26px 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(16, 37, 66, 1), rgba(var(--signal-rgb), 0.62));
}

.gallery-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.gallery-illustration {
  width: 100%;
  height: 100%;
  padding: 26px;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at top right, rgba(var(--sunrise-rgb), 0.3), transparent 30%),
    linear-gradient(135deg, rgba(16, 37, 66, 1), rgba(29, 64, 111, 0.94));
}

.gallery-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

[hidden] {
  display: none !important;
}

.review-note {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(var(--sunrise-rgb), 0.18);
  border: 1px solid rgba(var(--sunrise-rgb), 0.3);
  color: var(--midnight);
  line-height: 1.72;
}

.google-reviews-shell,
.shared-knowledge-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.google-reviews-copy,
.google-reviews-map,
.shared-knowledge-copy,
.shared-knowledge-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 37, 66, 0.08);
  box-shadow: var(--shadow-soft);
}

.google-reviews-copy,
.shared-knowledge-copy {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.96));
}

.google-reviews-copy {
  position: relative;
  overflow: hidden;
}

.google-reviews-copy::before {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--signal-rgb), 0.1), transparent 70%);
  pointer-events: none;
}

.google-reviews-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.google-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(16, 37, 66, 0.04);
  border: 1px solid rgba(16, 37, 66, 0.08);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.07em;
}

.g-blue {
  color: #4285f4;
}

.g-red {
  color: #ea4335;
}

.g-yellow {
  color: #fbbc05;
}

.g-green {
  color: #34a853;
}

.google-review-glance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.google-glance-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(16, 37, 66, 0.05);
  border: 1px solid rgba(16, 37, 66, 0.08);
  color: var(--midnight);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-review-points.premium {
  gap: 14px;
}

.google-review-glance + .google-review-points {
  margin-top: 14px;
}

.google-review-points,
.shared-knowledge-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.google-review-point,
.shared-knowledge-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 18px;
  background: rgba(16, 37, 66, 0.04);
  border: 1px solid rgba(16, 37, 66, 0.08);
}

.google-review-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--signal), var(--sunrise));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
}

.google-review-point strong,
.shared-knowledge-card h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--midnight);
  letter-spacing: -0.03em;
}

.google-review-point p,
.shared-knowledge-card p {
  color: var(--slate-700);
  line-height: 1.72;
}

.google-review-actions .button-ghost {
  background: rgba(16, 37, 66, 0.05);
  border-color: rgba(16, 37, 66, 0.08);
}

.google-review-note {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(var(--sunrise-rgb), 0.2), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(var(--sunrise-rgb), 0.26);
}

.google-review-note strong {
  font-family: var(--font-display);
  color: var(--midnight);
  letter-spacing: -0.03em;
}

@media (min-width: 1101px) {
  .google-reviews-copy {
    padding: 34px 34px 40px;
  }

  .google-review-glance {
    gap: 12px;
    margin-top: 6px;
  }

  .google-glance-pill {
    min-height: 44px;
    padding: 0 16px;
  }

  .google-review-points.premium {
    gap: 18px;
  }

  .google-review-point {
    gap: 18px;
    min-height: 124px;
    padding: 22px 22px 24px;
  }

  .google-review-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 0.94rem;
  }

  .google-review-point strong {
    font-size: 1.05rem;
  }

  .google-review-point p {
    max-width: 54ch;
  }
}

.google-reviews-map,
.shared-knowledge-card {
  overflow: hidden;
  background: var(--white);
}

.google-reviews-map {
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(16, 37, 66, 1), rgba(20, 46, 80, 0.96));
  color: var(--white);
}

.google-map-shell {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.google-reviews-map-top {
  display: grid;
  gap: 14px;
}

.google-map-heading {
  max-width: 42ch;
}

.google-map-address {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.google-map-address strong {
  font-family: var(--font-display);
  color: var(--white);
  letter-spacing: -0.03em;
}

.google-map-subtle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.google-reviews-map h3,
.google-reviews-map p {
  color: var(--white);
}

.google-reviews-map p {
  color: rgba(255, 255, 255, 0.82);
}

.google-reviews-map .card-tag {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.google-map-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.google-map-stat {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.google-map-stat strong {
  font-family: var(--font-display);
  color: var(--white);
  letter-spacing: -0.03em;
}

.google-map-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.maps-embed {
  overflow: hidden;
  border-radius: 24px;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 50px rgba(7, 15, 28, 0.22);
}

.maps-embed iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.maps-disclosure-card {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(var(--sunrise-rgb), 0.16), transparent 36%),
    linear-gradient(180deg, rgba(15, 28, 51, 0.98), rgba(9, 18, 34, 0.98));
}

.maps-disclosure-inner {
  width: min(100%, 520px);
  text-align: left;
}

.maps-disclosure-inner h3 {
  margin: 0;
  color: var(--white);
  letter-spacing: -0.04em;
}

.maps-disclosure-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.maps-disclosure-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 8px;
}

.maps-disclosure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.maps-disclosure-card[data-consent-loaded="true"] {
  display: block;
  padding: 0;
  background: transparent;
}

.consent-embed-frame {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.google-map-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.google-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.google-map-link:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.google-map-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.smart-search-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(296px, 0.86fr);
  gap: 18px;
  align-items: start;
}

.smart-search-panel,
.smart-search-aside {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 37, 66, 0.08);
  box-shadow: var(--shadow-soft);
}

.smart-search-panel {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.98));
}

.smart-search-heading {
  max-width: 720px;
}

.smart-search-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--midnight);
}

.smart-search-lead {
  max-width: 62ch;
  color: var(--slate-700);
  font-size: 1rem;
  line-height: 1.65;
}

.smart-search-note {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(var(--signal-rgb), 0.08);
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.smart-search-box {
  padding: 18px;
  border-radius: 22px;
  background: rgba(16, 37, 66, 0.04);
  border: 1px solid rgba(16, 37, 66, 0.08);
}

.smart-search-label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--midnight);
}

.smart-search-input-wrap {
  display: flex;
  gap: 12px;
}

.smart-search-input {
  flex: 1;
  min-width: 0;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--midnight);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.smart-search-input:focus {
  outline: none;
  border-color: rgba(var(--signal-rgb), 0.64);
  box-shadow: 0 0 0 4px rgba(var(--signal-rgb), 0.12);
}

.smart-search-button {
  flex: 0 0 auto;
  min-width: 122px;
}

.smart-search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.smart-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 37, 66, 0.08);
  background: var(--white);
  color: var(--midnight);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.smart-chip:hover,
.smart-chip.active {
  background: var(--midnight);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-1px);
}

.smart-search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.smart-result-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(16, 37, 66, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, opacity 200ms ease;
}

.smart-result-card.is-match {
  border-color: rgba(var(--signal-rgb), 0.22);
  box-shadow: 0 18px 36px rgba(16, 37, 66, 0.1);
}

.smart-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.smart-result-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(var(--signal-rgb), 0.1);
  color: var(--signal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.smart-result-meta {
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 700;
}

.smart-result-card h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--midnight);
  letter-spacing: -0.03em;
}

.smart-result-card p {
  color: var(--slate-700);
  font-size: 0.96rem;
  line-height: 1.58;
}

.smart-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.smart-result-link {
  font-weight: 800;
  color: var(--signal);
}

.smart-result-link.muted {
  color: var(--midnight);
}

.smart-search-empty {
  grid-column: 1 / -1;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(16, 37, 66, 0.04);
  border: 1px dashed rgba(16, 37, 66, 0.16);
  color: var(--slate-700);
}

.smart-search-aside {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(160deg, rgba(16, 37, 66, 1), rgba(20, 46, 80, 0.95));
  color: var(--white);
}

.smart-search-aside h3,
.smart-search-aside p {
  color: var(--white);
}

.smart-search-checklist {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.smart-search-checklist li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  line-height: 1.6;
}

.smart-search-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sunrise), var(--signal));
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.smart-search-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.smart-search-signal {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.smart-search-signal strong {
  font-family: var(--font-display);
  color: var(--white);
  letter-spacing: -0.03em;
}

.smart-search-signal span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.shared-knowledge-card {
  display: flex;
  flex-direction: column;
}

.shared-knowledge-media {
  min-height: 290px;
  background:
    radial-gradient(circle at top right, rgba(var(--sunrise-rgb), 0.3), transparent 30%),
    linear-gradient(135deg, rgba(16, 37, 66, 1), rgba(29, 64, 111, 0.94));
}

.shared-knowledge-media img,
.blog-cover img,
.article-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.shared-knowledge-media img {
  padding: 0;
}

.shared-knowledge-body {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.shared-knowledge-body h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.shared-knowledge-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.55em;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--signal), var(--sunrise));
  box-shadow: 0 0 0 4px rgba(var(--signal-rgb), 0.12);
}

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

.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(16, 37, 66, 0.08);
  background:
    radial-gradient(circle at top right, rgba(var(--sunrise-rgb), 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
  box-shadow: var(--shadow-soft);
  transition: transform 220ms var(--transition-smooth), box-shadow 220ms ease, border-color 220ms ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--signal-rgb), 0.2);
  box-shadow: var(--shadow-card-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 88px;
  padding: 24px 26px;
  background: transparent;
  border: 0;
  color: var(--midnight);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-question > span:first-child {
  max-width: 34ch;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.35;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(var(--signal-rgb), 0.24);
  outline-offset: -3px;
}

.faq-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 37, 66, 1), rgba(25, 57, 97, 0.94));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 14px 24px rgba(16, 37, 66, 0.16);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.faq-item.is-active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(var(--signal-rgb), 1), rgba(var(--sunrise-rgb), 0.96));
  box-shadow: 0 16px 28px rgba(var(--signal-rgb), 0.24);
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  color: var(--slate-700);
  line-height: 1.8;
}

.faq-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 60;
}

.faq-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.faq-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(6, 14, 28, 0.58);
  backdrop-filter: blur(14px);
}

.faq-modal-shell {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  transform: translateY(18px) scale(0.98);
  transition: transform 260ms var(--transition-smooth);
}

.faq-modal.open .faq-modal-shell {
  transform: translateY(0) scale(1);
}

.faq-modal-panel {
  position: relative;
  overflow: auto;
  padding: 32px 32px 28px;
  border-radius: 32px;
  border: 1px solid rgba(16, 37, 66, 0.1);
  background:
    radial-gradient(circle at top right, rgba(var(--sunrise-rgb), 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.97));
  box-shadow: 0 36px 84px rgba(16, 37, 66, 0.26);
}

.faq-modal-panel::before {
  content: "";
  position: absolute;
  right: -68px;
  bottom: -88px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--signal-rgb), 0.18), transparent 68%);
  pointer-events: none;
}

.faq-modal-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.faq-modal-chip,
.faq-modal-index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-modal-chip {
  background: rgba(16, 37, 66, 0.08);
  color: var(--midnight);
}

.faq-modal-index {
  background: rgba(var(--signal-rgb), 0.14);
  color: var(--signal-deep);
}

.faq-modal-title {
  margin: 0;
  color: var(--midnight);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.faq-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 37, 66, 0.06);
  color: var(--midnight);
  flex: 0 0 auto;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-modal-close:hover {
  transform: rotate(90deg);
  background: rgba(var(--signal-rgb), 0.14);
  color: var(--signal-deep);
}

.faq-modal-answer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  color: var(--slate-700);
  font-size: 1.03rem;
  line-height: 1.85;
}

.faq-modal-answer p,
.faq-modal-answer ul,
.faq-modal-answer ol {
  margin: 0;
}

.faq-modal-answer ul,
.faq-modal-answer ol {
  padding-left: 22px;
}

.faq-modal-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 37, 66, 0.08);
}

.faq-modal-note {
  display: grid;
  gap: 6px;
}

.faq-modal-note strong {
  color: var(--midnight);
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.faq-modal-note span {
  color: var(--slate-700);
  font-size: 0.95rem;
}

.faq-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .faq-modal {
    padding: 18px;
  }

  .faq-modal-shell {
    width: min(680px, 100%);
    max-height: calc(100vh - 36px);
  }

  .faq-modal-panel {
    padding: 28px 24px 24px;
    border-radius: 28px;
  }

  .faq-modal-footer {
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .faq-question {
    min-height: 78px;
    padding: 20px 20px 22px;
  }

  .faq-question > span:first-child {
    max-width: none;
    font-size: 0.98rem;
  }

  .faq-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .faq-modal {
    padding: 12px;
  }

  .faq-modal-shell {
    width: 100%;
    max-height: calc(100vh - 24px);
  }

  .faq-modal-panel {
    padding: 22px 18px 18px;
    border-radius: 24px;
  }

  .faq-modal-top {
    margin-bottom: 18px;
  }

  .faq-modal-title {
    font-size: 1.5rem;
  }

  .faq-modal-footer,
  .faq-modal-actions {
    display: grid;
    width: 100%;
  }

  .faq-modal-actions .button {
    width: 100%;
    justify-content: center;
  }
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--signal), var(--sunrise));
  color: var(--white);
  box-shadow: var(--shadow-deep);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.cta-band > * {
  position: relative;
}

.cta-band .section-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.page-hero {
  padding: 64px 0 28px;
}

.page-hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: stretch;
}

.page-hero-copy,
.page-hero-aside {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 37, 66, 0.08);
}

.page-hero-aside {
  background: linear-gradient(180deg, rgba(16, 37, 66, 1), rgba(22, 48, 84, 0.96));
  color: var(--white);
}

.page-hero-aside h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.page-hero-aside p,
.page-hero-aside .inline-badge {
  color: rgba(255, 255, 255, 0.9);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
}

.terrain-layout {
  grid-template-columns: 1fr;
  align-items: start;
}

.terrain-layout > * {
  min-width: 0;
}

.terrain-layout .fleet-content {
  grid-template-columns: 1fr;
}

.terrain-layout .section-subtitle {
  max-width: 62ch;
}

.note-panel {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(16, 37, 66, 0.04);
  border: 1px solid rgba(16, 37, 66, 0.08);
}

.note-panel p {
  color: var(--slate-700);
  line-height: 1.72;
}

.shared-cta {
  padding-top: 0;
}

.shared-cta-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 20px;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(16, 37, 66, 1), rgba(20, 46, 80, 0.95) 60%, rgba(var(--signal-rgb), 0.78));
  color: var(--white);
  box-shadow: var(--shadow-deep);
}

.shared-cta-shell::before {
  content: "";
  position: absolute;
  inset: auto -110px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.shared-cta-copy,
.shared-cta-visual {
  position: relative;
  z-index: 1;
}

.shared-cta-copy .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.shared-cta-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.shared-cta-copy p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 58ch;
}

.shared-cta-shell .button-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.shared-cta-visual {
  display: grid;
  gap: 16px;
  align-content: center;
}

.shared-cta-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.shared-cta-card strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--white);
  letter-spacing: -0.03em;
}

.shared-cta-card span:last-child {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.68;
}

.blog-grid,
.article-hero,
.article-layout {
  display: grid;
  gap: 20px;
}

.page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 700;
}

.page-breadcrumbs a {
  transition: color 180ms ease;
}

.page-breadcrumbs a:hover {
  color: var(--signal);
}

.breadcrumb-separator {
  color: var(--slate-300);
}

.blog-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: start;
}

.blog-secondary-grid,
.resource-cluster-grid,
.article-link-grid {
  display: grid;
  gap: 16px;
}

.blog-secondary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(16, 37, 66, 0.08);
  box-shadow: var(--shadow-soft);
}

.blog-card-link {
  display: block;
}

.blog-cover {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(var(--sunrise-rgb), 0.28), transparent 30%),
    linear-gradient(135deg, rgba(16, 37, 66, 1), rgba(29, 64, 111, 0.94));
}

.blog-cover::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.blog-cover img {
  position: relative;
  z-index: 1;
  max-height: none;
  margin: 0;
  padding: 0;
}

.blog-card-body,
.blog-side-panel,
.article-hero-copy,
.article-hero-card,
.article-toc-card,
.article-section,
.article-keypoints,
.article-callout {
  padding: 24px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 700;
}

.blog-card h2,
.article-section h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--midnight);
  letter-spacing: -0.04em;
}

.blog-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.blog-card p,
.blog-side-panel p,
.article-section p,
.article-callout p,
.article-hero-note p {
  line-height: 1.72;
}

.blog-readmore,
.article-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--signal);
}

.blog-side-panel {
  border-radius: var(--radius-xl);
}

.blog-secondary-grid .blog-cover {
  min-height: 220px;
}

.blog-secondary-grid .blog-card h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.article-hero {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: stretch;
}

.article-hero-copy,
.article-hero-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 37, 66, 0.08);
  box-shadow: var(--shadow-soft);
}

.article-hero-card {
  background: linear-gradient(180deg, rgba(16, 37, 66, 1), rgba(22, 48, 84, 0.96));
  color: var(--white);
}

.article-figure {
  min-height: 320px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(var(--sunrise-rgb), 0.24), transparent 26%),
    linear-gradient(135deg, rgba(16, 37, 66, 1), rgba(29, 64, 111, 0.94));
  overflow: hidden;
}

.article-figure img {
  max-height: none;
  margin: 0;
  padding: 0;
}

.contact-showcase {
  overflow: hidden;
}

.contact-showcase img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.contact-showcase-body {
  padding: 22px 24px 24px;
}

.contact-showcase-body h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--midnight);
  letter-spacing: -0.03em;
}

.contact-showcase-body p {
  color: var(--slate-700);
  line-height: 1.72;
}

.article-hero-note strong,
.article-keypoints strong,
.article-callout strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.article-hero-note p {
  color: rgba(255, 255, 255, 0.84);
}

.article-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 118px;
}

.article-toc-card,
.article-section,
.article-keypoints,
.article-callout {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(16, 37, 66, 0.08);
  box-shadow: var(--shadow-soft);
}

.article-toc-card {
  position: relative;
  overflow: hidden;
  --toc-progress: 0%;
}

.article-toc-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: rgba(16, 37, 66, 0.08);
}

.article-toc-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 5px;
  height: var(--toc-progress);
  background: linear-gradient(180deg, var(--signal), var(--sunrise));
  box-shadow: 0 0 18px rgba(var(--signal-rgb), 0.24);
  transition: height 180ms ease;
}

.toc-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.toc-list a {
  position: relative;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(16, 37, 66, 0.05);
  color: var(--midnight);
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.toc-list a:hover {
  background: rgba(var(--signal-rgb), 0.1);
  color: var(--signal-deep);
  transform: translateY(-1px);
}

.toc-list a.active {
  background: linear-gradient(135deg, rgba(var(--signal-rgb), 0.16), rgba(var(--sunrise-rgb), 0.18));
  color: var(--signal-deep);
  box-shadow: inset 0 0 0 1px rgba(var(--signal-rgb), 0.18);
  transform: translateY(-1px);
}

.toc-list a.active::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  transform: translateY(-50%);
}

.toc-list a.active {
  padding-left: 26px;
}

.article-content {
  display: grid;
  gap: 18px;
}

.article-section {
  display: grid;
  gap: 14px;
}

.article-section h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.03;
}

.article-callout {
  background: linear-gradient(180deg, rgba(var(--signal-rgb), 0.08), rgba(255, 255, 255, 1));
}

.resource-cluster {
  display: grid;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.98));
  border: 1px solid rgba(16, 37, 66, 0.08);
  box-shadow: var(--shadow-soft);
}

.resource-cluster-grid,
.article-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-link-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(16, 37, 66, 0.04);
  border: 1px solid rgba(16, 37, 66, 0.08);
  color: var(--midnight);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.article-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--signal-rgb), 0.22);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(16, 37, 66, 0.1);
}

.article-link-card-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(var(--signal-rgb), 0.1);
  color: var(--signal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-link-card strong {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.article-link-card span:last-child {
  color: var(--slate-700);
  line-height: 1.62;
}

.footer {
  margin-top: 84px;
  padding: 64px 0 24px;
  background: var(--midnight);
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 24px;
}

.footer-brand-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer .brand-title {
  color: var(--white);
}

.footer .brand-copy {
  color: rgba(255, 255, 255, 0.68);
}

.footer-note {
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.footer .brand img {
  filter: brightness(0) invert(1);
  opacity: 0.98;
}

.designer-credit {
  color: var(--white);
  font-weight: 700;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
}

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

.footer li + li {
  margin-top: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.footer-contact-list a {
  overflow-wrap: anywhere;
}

.footer-icon {
  width: 18px;
  height: 18px;
  color: var(--sunrise);
  flex: 0 0 auto;
  margin-top: 2px;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-legal-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.footer .footer-cookie-trigger {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.legal-main .page-hero {
  padding-bottom: 28px;
}

.legal-summary-card {
  justify-self: end;
}

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

.legal-card {
  padding: 24px;
}

.legal-card h2 {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(1.3rem, 2.1vw, 1.65rem);
  letter-spacing: -0.04em;
}

.legal-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--slate-700);
}

.legal-microcopy {
  color: var(--slate-500);
  font-size: 13px;
}

.legal-alert {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(var(--signal-rgb), 0.08);
  border: 1px solid rgba(var(--signal-rgb), 0.22);
  color: var(--midnight);
  display: grid;
  gap: 6px;
}

.legal-alert strong {
  color: var(--signal-deep);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--signal);
  color: var(--white);
  box-shadow: 0 20px 40px rgba(var(--signal-rgb), 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 40;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 460ms ease,
    transform 460ms var(--transition-smooth);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .page-hero-wrap,
  .two-column,
  .terrain-layout,
  .fleet-content,
  .shared-cta-shell,
  .shared-knowledge-shell,
  .google-reviews-shell,
  .smart-search-shell,
  .blog-grid,
  .blog-secondary-grid,
  .resource-cluster-grid,
  .article-link-grid,
  .article-hero,
  .article-layout {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid,
  .grid-3,
  .tips-grid,
  .method-grid,
  .footer-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-toc {
    position: static;
  }

  .header-actions {
    display: none;
  }

  .header-search {
    display: none;
  }

  .header-quicktools .header-call-button {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 860px) {
  .cookie-consent-banner {
    width: calc(100vw - 20px);
    padding: 18px;
    border-radius: 24px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-consent-actions,
  .cookie-settings-actions {
    justify-content: stretch;
  }

  .cookie-consent-actions .button,
  .cookie-settings-actions .button {
    flex: 1 1 100%;
  }

  .cookie-settings-shell {
    padding: 14px;
    align-items: start;
  }

  .cookie-settings-panel {
    max-height: calc(100vh - 28px);
    max-height: calc(100dvh - 28px);
    padding: 22px;
    border-radius: 26px;
  }

  .cookie-settings-status,
  .cookie-status-grid {
    grid-template-columns: 1fr;
  }

  .cookie-settings-top,
  .cookie-category-card,
  .cookie-service-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-inner,
  .header-inner {
    min-height: auto;
    padding: 12px 0;
  }

  .topbar-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px 0;
  }

  .topbar-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    font-size: 11.5px;
  }

  .topbar-pill-desktop,
  .topbar-quote-label-desktop {
    display: none;
  }

  .topbar-pill-mobile,
  .topbar-quote-label-mobile {
    display: inline-flex;
  }

  .topbar-pill-mobile {
    grid-column: 1 / -1;
  }

  .pill-icon {
    width: 14px;
    height: 14px;
  }

  .topbar-pill,
  .topbar-pill-link {
    justify-content: center;
    min-width: 0;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 14px;
    text-align: center;
    line-height: 1.2;
  }

  .topbar-quote-button {
    width: 100%;
    min-height: 38px;
    border-radius: 14px;
    box-shadow: none;
    font-size: 12px;
  }

  .topbar-quote-button:hover {
    transform: none;
  }

  .topbar-call-copy {
    justify-items: center;
  }

  .topbar-call-label {
    display: none;
  }

  .trust-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .routes-grid,
  .gallery-grid,
  .tips-grid,
  .contact-grid,
  .method-grid,
  .footer-grid,
  .form-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .quote-form,
  .quote-visual,
  .page-hero-copy,
  .page-hero-aside,
  .shared-cta-shell,
  .shared-knowledge-copy,
  .shared-knowledge-card,
  .google-reviews-copy,
  .google-reviews-map,
  .smart-search-panel,
  .smart-search-aside,
  .resource-cluster,
  .blog-card-body,
  .blog-side-panel,
  .article-hero-copy,
  .article-hero-card,
  .article-toc-card,
  .article-section,
  .article-keypoints,
  .article-callout,
  .service-card,
  .formula-card,
  .route-card,
  .review-card,
  .gallery-card,
  .tip-card,
  .contact-card,
  .method-step,
  .metric-card,
  .trust-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .smart-search-results {
    grid-template-columns: 1fr;
  }

  .quote-visual-grid,
  .smart-search-signal-grid,
  .google-map-stats {
    grid-template-columns: 1fr;
  }

  .smart-search-input-wrap {
    flex-direction: column;
  }

  .smart-search-button {
    width: 100%;
  }

  .footer-bottom-links {
    width: 100%;
    justify-content: flex-start;
  }

  .maps-disclosure-card {
    min-height: 280px;
    padding: 22px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero::before,
  .hero::after {
    height: 620px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .topbar-list {
    font-size: 11.5px;
  }

  .mobile-nav {
    width: 100vw;
  }

  .mobile-nav-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mobile-nav-cta-grid {
    grid-template-columns: 1fr;
  }

  .article-figure {
    min-height: 220px;
  }

  .site-header .brand img {
    width: 112px;
  }
}

@media (min-width: 768px) and (max-width: 860px) {
  .topbar-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 10px;
  }

  .topbar-list {
    gap: 8px;
  }

  .topbar-quote-button {
    width: auto;
    min-width: 148px;
    align-self: stretch;
  }

  .topbar-call-cta {
    justify-content: flex-start;
    padding: 9px 13px 9px 11px;
  }

  .topbar-call-copy {
    justify-items: start;
  }

  .topbar-call-label {
    display: inline-flex;
    font-size: 8px;
  }

  .topbar-call-number {
    font-size: 13px;
  }
}

@media (max-width: 460px) {
  .cookie-floating-trigger {
    left: 12px;
    bottom: 12px;
  }

  .topbar-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 11px;
  }

  .topbar-pill,
  .topbar-pill-link {
    min-height: 36px;
    padding: 7px 9px;
  }

  .topbar-quote-button {
    min-height: 36px;
  }
}


/* ── Instagram Feed ─────────────────────────────────── */
.insta-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.insta-follow-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.insta-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  background: var(--slate-100);
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--transition-smooth), filter 420ms ease;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 37, 66, 0);
  transition: background 320ms ease;
}

.insta-icon {
  width: 36px;
  height: 36px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 280ms ease, transform 280ms var(--transition-smooth);
}

.insta-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.88);
}

.insta-card:hover .insta-overlay {
  background: rgba(16, 37, 66, 0.32);
}

.insta-card:hover .insta-icon {
  opacity: 1;
  transform: scale(1);
}

.insta-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--midnight), rgba(25, 57, 97, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 280ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.insta-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  color: var(--white);
}

.insta-cta-icon {
  width: 40px;
  height: 40px;
  color: var(--white);
  opacity: 0.9;
}

.insta-cta-content strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.insta-cta-content span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.insta-card-cta:hover {
  background: linear-gradient(135deg, rgba(25, 57, 97, 1), rgba(16, 37, 66, 1));
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(16, 37, 66, 0.24);
}

/* ── Media Gallery ──────────────────────────────────── */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.media-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 37, 66, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 260ms var(--transition-smooth), box-shadow 260ms ease;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.media-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.media-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--transition-smooth);
}

.media-card:hover .media-card-img img {
  transform: scale(1.04);
}

.media-card-body {
  padding: 20px 22px 24px;
  display: grid;
  gap: 8px;
}

.media-card-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--midnight);
  letter-spacing: -0.03em;
}

.media-card-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--slate-700);
}

@media (max-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .legal-card {
    padding: 20px;
  }

  .media-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .insta-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .insta-card {
    border-radius: var(--radius-sm);
  }
  .media-card {
    border-radius: var(--radius-md);
  }
}
