:root {
  --color-ink: #14304a;
  --color-ink-soft: #4d6479;
  --color-background: #fffaf4;
  --color-surface: #ffffff;
  --color-surface-alt: #f5fbff;
  --color-line: rgba(20, 48, 74, 0.12);
  --color-primary: #ff6b4a;
  --color-primary-dark: #db4d2f;
  --color-secondary: #1bb8a6;
  --color-secondary-soft: #dffaf6;
  --color-accent: #ffd166;
  --color-dark: #10263b;
  --color-dark-soft: #173854;
  --color-dark-copy: rgba(255, 255, 255, 0.84);
  --color-shadow: 0 24px 60px rgba(16, 54, 84, 0.12);
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
  --container-width: 1180px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(27, 184, 166, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 107, 74, 0.12), transparent 26%),
    var(--color-background);
  line-height: 1.6;
}

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

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

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

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  background: #fff;
  color: var(--color-ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: none;
  border-color: rgba(27, 184, 166, 0.45);
  box-shadow: 0 0 0 4px rgba(27, 184, 166, 0.14);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: var(--color-ink);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

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

.container--wide {
  width: min(calc(100% - 2rem), 1460px);
}

.section {
  padding: 4.75rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading--center {
  text-align: center;
  margin-inline: auto;
}

.section-heading--wide {
  max-width: 100%;
}

.section-heading--with-action > p:last-of-type {
  margin-bottom: 1.1rem;
}

.section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-heading__content {
  max-width: 900px;
}

.section-heading__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
}

.section-mobile-cta {
  display: none;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

p {
  margin: 0;
  color: var(--color-ink-soft);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), #ff8a5f);
  box-shadow: 0 12px 26px rgba(255, 107, 74, 0.28);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(255, 107, 74, 0.32);
}

.button--secondary {
  background: #fff;
  color: var(--color-ink);
  box-shadow: inset 0 0 0 1px var(--color-line);
}

.button--nav,
.button--small {
  min-height: 46px;
  padding-inline: 1.2rem;
}

.section-heading__cta {
  gap: 0.55rem;
  margin-top: 0.2rem;
  padding-inline: 1.15rem 1.05rem;
}

.section-heading__cta span {
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--transition);
}

.section-heading__cta:hover span,
.section-heading__cta:focus-visible span {
  transform: translateX(2px);
}

.button--full {
  width: 100%;
}

.utility-bar {
  padding: 0.8rem 0;
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.88);
}

.utility-bar p,
.utility-bar a {
  color: rgba(255, 255, 255, 0.88);
}

.utility-bar__inner,
.utility-bar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.utility-bar__inner {
  justify-content: space-between;
}

.utility-bar__actions {
  justify-content: flex-end;
}

.utility-bar__actions a[href^="tel:"] {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.utility-bar__actions a[href^="tel:"]::before {
  content: "";
  width: 0.92rem;
  height: 0.92rem;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.78.63 2.62a2 2 0 0 1-.45 2.11L8 9.91a16 16 0 0 0 6.09 6.09l1.46-1.29a2 2 0 0 1 2.11-.45c.84.3 1.72.51 2.62.63A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.78.63 2.62a2 2 0 0 1-.45 2.11L8 9.91a16 16 0 0 0 6.09 6.09l1.46-1.29a2 2 0 0 1 2.11-.45c.84.3 1.72.51 2.62.63A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.utility-bar__actions > a:last-of-type {
  color: #fff;
  font-weight: 700;
}

.utility-bar__actions > .lang-switcher {
  margin-left: 0.4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(20, 48, 74, 0.08);
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}

.site-header__mobile-tools {
  display: none;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}

.mobile-header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(20, 48, 74, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 250, 0.94));
  box-shadow: 0 8px 18px rgba(20, 48, 74, 0.08);
  color: var(--color-ink);
}

.mobile-header-phone::before {
  content: "";
  width: 0.92rem;
  height: 0.92rem;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.78.63 2.62a2 2 0 0 1-.45 2.11L8 9.91a16 16 0 0 0 6.09 6.09l1.46-1.29a2 2 0 0 1 2.11-.45c.84.3 1.72.51 2.62.63A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.78.63 2.62a2 2 0 0 1-.45 2.11L8 9.91a16 16 0 0 0 6.09 6.09l1.46-1.29a2 2 0 0 1 2.11-.45c.84.3 1.72.51 2.62.63A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-ink);
}

.brand img {
  width: auto;
  height: 52px;
  flex: 0 0 auto;
}

.brand--lockup img {
  height: 54px;
}

.brand--header-lockup img {
  height: 48px;
}

.brand span {
  display: grid;
  gap: 0.16rem;
}

.brand strong {
  font-family: var(--font-body);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.brand small {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav > a:not(.button),
.nav-dropdown__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0 0.55rem;
  border: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  color: var(--color-ink-soft);
  transition: color var(--transition);
}

.nav-dropdown__toggle {
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  vertical-align: middle;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible,
.site-nav > a.is-active:not(.button),
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle:focus-visible,
.nav-dropdown.is-active > .nav-dropdown__toggle,
.nav-dropdown:hover > .nav-dropdown__toggle,
.nav-dropdown:focus-within > .nav-dropdown__toggle {
  color: var(--color-ink);
}

.site-nav > a:not(.button)::after,
.nav-dropdown__toggle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  opacity: 0.92;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition), opacity var(--transition);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after,
.site-nav > a.is-active:not(.button)::after,
.nav-dropdown__toggle:hover::before,
.nav-dropdown__toggle:focus-visible::before,
.nav-dropdown.is-active > .nav-dropdown__toggle::before,
.nav-dropdown:hover > .nav-dropdown__toggle::before,
.nav-dropdown:focus-within > .nav-dropdown__toggle::before {
  transform: scaleX(1);
}

.site-nav > a.is-active:not(.button),
.nav-dropdown.is-active > .nav-dropdown__toggle {
  font-weight: 800;
  color: var(--color-ink);
}

.site-nav > a.is-active:not(.button)::after,
.nav-dropdown.is-active > .nav-dropdown__toggle::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 0.4rem;
  margin-bottom: -0.4rem;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
}

.nav-dropdown__toggle {
  cursor: pointer;
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  margin-left: auto;
  padding: 0.14rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 6px 16px rgba(6, 20, 33, 0.12);
}

.lang-switcher::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 62%);
  pointer-events: none;
}

.lang-switcher a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.78rem;
  min-height: 2rem;
  padding: 0.28rem 0.78rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  transition:
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
}

.lang-switcher a:hover,
.lang-switcher a:focus-visible {
  color: #fff;
  opacity: 1;
}

.lang-switcher a.is-active {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 247, 0.9));
  color: var(--color-ink);
  box-shadow:
    0 4px 12px rgba(6, 20, 33, 0.14),
    inset 0 0 0 1px rgba(20, 48, 74, 0.05);
}

.nav-dropdown__toggle::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--transition);
}

.nav-dropdown:hover > .nav-dropdown__toggle::after,
.nav-dropdown:focus-within > .nav-dropdown__toggle::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 240px;
  padding: 0.8rem;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 42px rgba(20, 48, 74, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  color: var(--color-ink-soft);
  font-weight: 700;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible,
.nav-dropdown__menu a.is-active {
  background: rgba(27, 184, 166, 0.08);
  color: var(--color-ink);
  transform: translateX(2px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0.7rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--color-line);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--color-ink);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-open {
  background: linear-gradient(135deg, rgba(27, 184, 166, 0.18), rgba(255, 223, 154, 0.24));
  box-shadow:
    inset 0 0 0 1px rgba(27, 184, 166, 0.18),
    0 10px 24px rgba(20, 48, 74, 0.08);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding: 4rem 0 2.4rem;
}

.hero--freeway-inspired {
  padding-top: 2.6rem;
}

.hero-freeway {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 1.5rem;
  align-items: center;
}

.hero-freeway__content {
  padding-top: 0.25rem;
  max-width: 980px;
}

.hero-freeway__content h1 {
  max-width: 17.2ch;
  font-size: clamp(2.15rem, 3.65vw, 3.35rem);
  line-height: 1.08;
}

.page-hero__grid,
.split-layout,
.contact-layout,
.story-grid,
.faq-layout {
  display: grid;
  gap: 1.5rem;
}

.hero__lead,
.page-hero__content p {
  max-width: 640px;
  margin-top: 1.1rem;
  font-size: 0.95rem;
}

.hero__inline-link {
  color: #1d5fd0;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.hero__actions,
.cta-panel__actions,
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.steps-cta {
  justify-content: center;
  margin-top: 1.5rem;
}

.hero__benefits {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__benefits li,
.feature-list li,
.detail-list li {
  position: relative;
  padding-left: 1.6rem;
}

.hero__benefits li {
  font-weight: 600;
  color: var(--color-ink);
}

.hero__benefits li::before,
.feature-list li::before,
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-secondary), #60d7c4);
  box-shadow: 0 0 0 6px rgba(27, 184, 166, 0.12);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero__stats article,
.highlight-card,
.contact-card,
.step-card,
.article-card,
.info-card {
  padding: 1.4rem;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(20, 48, 74, 0.06);
}

.hero__stats strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(20, 48, 74, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 251, 255, 0.96));
  box-shadow: var(--color-shadow);
}

.media-card img {
  width: 100%;
  height: auto;
}

.media-card--motorcycle {
  display: grid;
  place-items: center;
  padding: 2.5rem;
}

.media-card--motorcycle img {
  width: min(100%, 360px);
  margin: 0 auto;
  object-fit: contain;
}

.media-card--dark {
  background: linear-gradient(180deg, rgba(16, 38, 59, 0.9), rgba(23, 56, 84, 0.94));
}

.quote-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 1));
  box-shadow: var(--color-shadow);
  border: 1px solid rgba(20, 48, 74, 0.08);
}

.quote-card__label {
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-weight: 800;
}

.quote-card--hero {
  margin-top: 1.55rem;
  max-width: 860px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.quote-card p + .product-pills,
.quote-card p + .lead-form {
  margin-top: 1.5rem;
}

.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.pill {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #fff4ef;
  color: var(--color-primary-dark);
  font-weight: 800;
}

.pill--active {
  background: linear-gradient(135deg, var(--color-primary), #ff8a5f);
  color: #fff;
}

.lead-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.lead-form__grid {
  display: grid;
  gap: 0.85rem;
}

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

.form-field--full {
  grid-column: 1 / -1;
}

.lead-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--color-ink);
}

.product-selector {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.product-card {
  display: grid;
  justify-items: center;
  gap: 0.62rem;
  min-height: 124px;
  padding: 0.95rem 0.8rem 0.9rem;
  border-radius: 18px;
  background: #fff;
  color: var(--color-ink);
  box-shadow: 0 16px 30px rgba(20, 48, 74, 0.08);
  box-shadow: inset 0 0 0 1px rgba(20, 48, 74, 0.08), 0 16px 30px rgba(20, 48, 74, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(20, 48, 74, 0.12), 0 20px 34px rgba(20, 48, 74, 0.12);
}

.product-card--active {
  box-shadow: inset 0 0 0 2px var(--color-primary), 0 16px 30px rgba(20, 48, 74, 0.08);
}

.product-card__icon {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  padding: 0;
}

.product-card__icon svg {
  width: 46px;
  height: 46px;
  overflow: visible;
  fill: none;
  stroke: #171717;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.product-card[role="tab"][aria-selected="true"] .product-card__icon svg {
  stroke: var(--color-primary-dark);
}

.product-card span:last-child {
  font-size: 0.96rem;
  font-weight: 800;
}

.hero-form-row {
  display: grid;
  grid-template-columns: minmax(0, 308px) minmax(220px, 264px);
  gap: 0.85rem;
  align-items: end;
  margin-top: 0.1rem;
}

.form-field--zip input {
  min-height: 78px;
  border-color: #2d66e8;
  border-radius: 16px;
  font-size: 1.05rem;
}

.form-field--submit .button {
  min-height: 78px;
}

.form-field__label-hidden {
  opacity: 0;
}

.button--hero {
  min-width: 100%;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  border-radius: 999px;
  box-shadow: 0 14px 24px rgba(255, 107, 74, 0.28);
}

.lead-form__success {
  padding: 1.15rem;
  border-radius: 18px;
  background: var(--color-secondary-soft);
  color: var(--color-ink);
  border: 1px solid rgba(27, 184, 166, 0.18);
}

.lead-form__success strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
}

.quote-card__note {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.quote-card__note--hero {
  max-width: 720px;
  color: var(--color-ink);
  font-size: 0.88rem;
}

.quote-card__note--hero a {
  color: #1d5fd0;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.hero-freeway__image-card {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 100%;
  padding: 1.2rem 0 0;
  background: transparent;
}

.hero-freeway__image-card img {
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  height: auto;
  border-radius: 32px;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 24px 48px rgba(20, 48, 74, 0.16);
}

.hero-review {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.hero-review strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-ink);
}

.hero-review p {
  color: var(--color-ink);
  font-size: 0.95rem;
}

.hero-review p a {
  color: var(--color-ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

.hero-review__badges {
  display: flex;
  gap: 0.25rem;
}

.hero-review__badges span {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #15b77d;
  position: relative;
}

.hero-review__badges span::before {
  content: "★";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.95rem;
}

.hero-review__badges--partial::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 100%;
  background: rgba(255, 255, 255, 0.72);
}

.hero-proof__rating,
.hero-proof__quote {
  padding: 1.15rem 1.3rem;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
}

.hero-proof__stars {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: #ffb938;
  letter-spacing: 0.08em;
}

.hero-proof__rating strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.hero-proof__quote {
  display: flex;
  align-items: center;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.4;
}

.trust-strip {
  padding: 1.2rem 0;
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.trust-strip__inner p {
  font-weight: 700;
  color: var(--color-ink);
}

.trust-strip__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trust-strip__badges span {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: var(--color-surface-alt);
  color: var(--color-ink);
  font-weight: 800;
}

.partner-network {
  padding-top: 0.6rem;
  padding-inline: 0;
}

.partner-network__bleed {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 clamp(1rem, 2.4vw, 1.6rem);
  background:
    radial-gradient(circle at 18% 22%, rgba(27, 184, 166, 0.08), transparent 12%),
    radial-gradient(circle at 82% 26%, rgba(255, 209, 102, 0.1), transparent 11%),
    radial-gradient(circle at 68% 74%, rgba(255, 107, 74, 0.08), transparent 12%),
    radial-gradient(circle at 32% 84%, rgba(27, 184, 166, 0.07), transparent 10%),
    radial-gradient(circle at 92% 58%, rgba(23, 71, 158, 0.06), transparent 10%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 12%, transparent 12% 100%),
    linear-gradient(180deg, rgba(237, 245, 255, 0.84), rgba(255, 255, 255, 0.96));
  border-top: 1px solid rgba(20, 48, 74, 0.08);
  border-bottom: 1px solid rgba(20, 48, 74, 0.08);
}

.partner-network__bleed::before,
.partner-network__bleed::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
}

.partner-network__bleed::before {
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  transform: translate(-18%, -18%);
  background: radial-gradient(circle, rgba(27, 184, 166, 0.22), rgba(27, 184, 166, 0.08) 56%, transparent 74%);
}

.partner-network__bleed::after {
  right: 0;
  bottom: 0;
  width: 440px;
  height: 440px;
  transform: translate(18%, 18%);
  background: radial-gradient(circle, rgba(255, 107, 74, 0.22), rgba(255, 107, 74, 0.08) 54%, transparent 74%);
}

.partner-network__panel {
  position: relative;
  z-index: 1;
  padding: 3.25rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.partner-network__panel::before,
.partner-network__panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

.partner-network__panel::before {
  top: 2.2rem;
  right: 12%;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 28px;
  transform: rotate(18deg);
  background: rgba(255, 255, 255, 0.22);
}

.partner-network__panel::after {
  left: 10%;
  bottom: 2.4rem;
  width: 140px;
  height: 140px;
  border: 1px dashed rgba(27, 184, 166, 0.2);
  border-radius: 999px;
}

.partner-network__brands::before,
.partner-network__brands::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.partner-network__brands {
  position: relative;
}

.partner-network__brands::before {
  top: -1.4rem;
  left: 8%;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 209, 102, 0.26);
  border-radius: 22px;
  transform: rotate(-14deg);
  background: rgba(255, 255, 255, 0.18);
}

.partner-network__brands::after {
  right: 9%;
  bottom: -1.2rem;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(23, 71, 158, 0.08), transparent 66%);
}

.partner-network__panel > * {
  position: relative;
  z-index: 1;
}

.partner-network__brands {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.partner-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.05rem 1rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  text-align: left;
  box-shadow: 0 10px 22px rgba(20, 48, 74, 0.05);
}

.partner-brand__mark {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(27, 184, 166, 0.18), rgba(255, 209, 102, 0.38));
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ink);
}

.partner-brand__mark svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-brand strong,
.partner-brand small {
  display: block;
}

.partner-brand strong {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1;
}

.partner-brand--progressive strong,
.partner-brand--allstate strong,
.partner-brand--farmers strong,
.partner-brand--geico strong,
.partner-brand--liberty strong {
  letter-spacing: -0.03em;
}

.partner-brand--progressive strong {
  color: #2f90ea;
  font-style: italic;
}

.partner-brand--allstate strong {
  color: #17479e;
}

.partner-brand--farmers strong {
  color: #1d4fa8;
}

.partner-brand--geico strong {
  color: #17479e;
  letter-spacing: -0.04em;
}

.partner-brand--liberty strong {
  color: #6b7481;
}

.partner-brand--progressive .partner-brand__mark {
  background: linear-gradient(135deg, rgba(47, 144, 234, 0.18), rgba(27, 184, 166, 0.2));
  color: #2f90ea;
}

.partner-brand--allstate .partner-brand__mark,
.partner-brand--geico .partner-brand__mark {
  background: linear-gradient(135deg, rgba(23, 71, 158, 0.16), rgba(27, 184, 166, 0.18));
  color: #17479e;
}

.partner-brand--farmers .partner-brand__mark {
  background: linear-gradient(135deg, rgba(29, 79, 168, 0.16), rgba(255, 107, 74, 0.16));
  color: #1d4fa8;
}

.partner-brand--liberty .partner-brand__mark {
  background: linear-gradient(135deg, rgba(107, 116, 129, 0.16), rgba(255, 209, 102, 0.18));
  color: #6b7481;
}

.partner-brand small {
  margin-top: 0.22rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

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

.partner-stat {
  padding: 1rem 1.4rem 0.4rem;
}

.partner-stat + .partner-stat {
  border-left: 1px solid rgba(20, 48, 74, 0.12);
}

.partner-stat strong {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-ink);
}

.partner-stat h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.15;
}

.partner-stat p {
  margin: 0;
  color: var(--color-ink-soft);
}

.coverage-grid,
.steps-grid,
.article-grid,
.gallery-strip,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.coverage-grid .info-card:not(.info-card--accent) {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "body body"
    "link link";
  align-items: center;
  column-gap: 0.95rem;
  row-gap: 0.6rem;
}

.coverage-grid .info-card:not(.info-card--accent) > .icon-badge {
  grid-area: icon;
  margin-bottom: 0;
  align-self: center;
}

.coverage-grid .info-card:not(.info-card--accent) > h3 {
  grid-area: title;
  margin: 0;
  align-self: center;
}

.coverage-grid .info-card:not(.info-card--accent) > p {
  grid-area: body;
  margin: 0.05rem 0 0;
}

.coverage-grid .info-card:not(.info-card--accent) > a {
  grid-area: link;
  margin-top: 0.15rem;
}

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

.steps-grid--five .step-card {
  grid-column: span 2;
}

.steps-grid--five .step-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.steps-grid--five .step-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.info-card a,
.article-card a,
.contact-card a {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 184, 166, 0.16), rgba(255, 209, 102, 0.4));
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-ink);
}

.icon-badge svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.info-card--accent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(27, 184, 166, 0.12), rgba(255, 255, 255, 0.96));
}

.coverage-detail-hero {
  padding-bottom: 1.5rem;
}

.coverage-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 1.5rem;
  align-items: center;
}

.coverage-detail-hero .page-hero__content h1 {
  max-width: 14.5ch;
  font-size: clamp(2.2rem, 3.35vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.coverage-detail-hero .page-hero__content > p {
  max-width: 60ch;
  font-size: 1.03rem;
  line-height: 1.6;
}

.coverage-detail-hero .coverage-detail-hero__grid {
  align-items: start;
}

.coverage-detail-hero .page-hero__content {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.coverage-detail-hero .hero__actions {
  margin-top: 1.45rem;
}

.coverage-detail-hero .hero__benefits {
  margin-top: 1.45rem;
}

.coverage-detail-hero .coverage-detail-visual {
  align-self: start;
  height: 100%;
}

.coverage-detail-hero--auto .coverage-detail-hero__grid {
  align-items: start;
}

.coverage-detail-hero--auto .page-hero__content h1 {
  max-width: 16.5ch;
  font-size: clamp(2.35rem, 3.85vw, 3.45rem);
  line-height: 1.03;
}

.coverage-detail-hero--auto .page-hero__content > p {
  max-width: 58ch;
}

.coverage-detail-hero--auto .hero__actions {
  margin-top: 1.45rem;
}

.coverage-detail-hero--auto .hero__benefits {
  margin-top: 1.6rem;
}

.coverage-detail-hero--auto .coverage-detail-visual {
  align-self: start;
}

.coverage-detail-hero--auto .coverage-detail-visual__media img {
  aspect-ratio: 1.22 / 1;
  object-position: center;
}

.coverage-detail-hero--home .coverage-detail-hero__grid {
  align-items: start;
}

.coverage-detail-hero--home .page-hero__content h1 {
  max-width: 16.5ch;
  font-size: clamp(2.35rem, 3.85vw, 3.45rem);
  line-height: 1.03;
}

.coverage-detail-hero--home .page-hero__content > p {
  max-width: 58ch;
}

.coverage-detail-hero--home .hero__actions {
  margin-top: 1.45rem;
}

.coverage-detail-hero--home .hero__benefits {
  margin-top: 1.6rem;
}

.coverage-detail-hero--home .coverage-detail-visual {
  align-self: start;
}

.coverage-detail-hero--renters .coverage-detail-hero__grid,
.coverage-detail-hero--motorcycle .coverage-detail-hero__grid,
.coverage-detail-hero--business .coverage-detail-hero__grid {
  align-items: start;
}

.coverage-detail-hero--renters .page-hero__content h1,
.coverage-detail-hero--motorcycle .page-hero__content h1,
.coverage-detail-hero--business .page-hero__content h1 {
  max-width: 16.5ch;
  font-size: clamp(2.35rem, 3.85vw, 3.45rem);
  line-height: 1.03;
}

.coverage-detail-hero--renters .page-hero__content > p,
.coverage-detail-hero--motorcycle .page-hero__content > p,
.coverage-detail-hero--business .page-hero__content > p {
  max-width: 58ch;
}

.coverage-detail-hero--renters .page-hero__content,
.coverage-detail-hero--motorcycle .page-hero__content,
.coverage-detail-hero--business .page-hero__content {
  gap: 0.15rem;
}

.coverage-detail-hero--renters .hero__actions,
.coverage-detail-hero--motorcycle .hero__actions,
.coverage-detail-hero--business .hero__actions {
  margin-top: 1.3rem;
}

.coverage-detail-hero--renters .hero__benefits,
.coverage-detail-hero--motorcycle .hero__benefits,
.coverage-detail-hero--business .hero__benefits {
  margin-top: 1.35rem;
}

.coverage-detail-hero--renters .coverage-detail-visual,
.coverage-detail-hero--motorcycle .coverage-detail-visual,
.coverage-detail-hero--business .coverage-detail-visual {
  align-self: start;
}

.coverage-detail-hero--auto ~ .section--dark .split-layout--dark,
.coverage-detail-hero--home ~ .section--dark .split-layout--dark,
.coverage-detail-hero--renters ~ .section--dark .split-layout--dark,
.coverage-detail-hero--motorcycle ~ .section--dark .split-layout--dark,
.coverage-detail-hero--business ~ .section--dark .split-layout--dark {
  grid-template-columns: 1fr;
}

.coverage-detail-hero--auto ~ .section--dark .visual-panel--rich,
.coverage-detail-hero--home ~ .section--dark .visual-panel--rich,
.coverage-detail-hero--renters ~ .section--dark .visual-panel--rich,
.coverage-detail-hero--motorcycle ~ .section--dark .visual-panel--rich,
.coverage-detail-hero--business ~ .section--dark .visual-panel--rich {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.1), transparent 18%),
    radial-gradient(circle at 88% 86%, rgba(255, 209, 102, 0.16), transparent 18%),
    radial-gradient(circle at 76% 20%, rgba(96, 215, 196, 0.14), transparent 16%),
    linear-gradient(135deg, #234565 8%, #2c5473 45%, #33b8ab 100%);
}

.coverage-detail-hero--auto ~ .section--dark .visual-panel--rich::before,
.coverage-detail-hero--home ~ .section--dark .visual-panel--rich::before,
.coverage-detail-hero--renters ~ .section--dark .visual-panel--rich::before,
.coverage-detail-hero--motorcycle ~ .section--dark .visual-panel--rich::before,
.coverage-detail-hero--business ~ .section--dark .visual-panel--rich::before {
  content: "";
  position: absolute;
  inset: auto auto 4rem 52%;
  width: 180px;
  height: 180px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transform: rotate(16deg);
}

.coverage-detail-band .visual-panel h2 {
  max-width: 100%;
  margin-right: 0;
  font-size: clamp(1.95rem, 3vw, 2.75rem);
}

.policy-showcase {
  position: relative;
  display: grid;
  gap: 1.75rem;
}

.policy-showcase__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.policy-showcase__intro h2 {
  margin: 0.45rem 0 0;
}

.policy-showcase__note {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.policy-showcase__note span {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.policy-showcase__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.policy-showcase__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.policy-showcase__card {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  grid-column: span 4;
  height: 100%;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.policy-showcase__card--wide {
  grid-column: span 6;
}

.policy-showcase__card-head {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
}

.policy-showcase__card .icon-badge {
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 209, 102, 0.16));
}

.policy-showcase__card-head strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.05;
  color: #fff;
}

.policy-showcase__card span:last-child {
  color: rgba(255, 255, 255, 0.88);
}

.coverage-compare {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(27, 184, 166, 0.08), transparent 18%),
    radial-gradient(circle at 88% 82%, rgba(255, 120, 88, 0.08), transparent 16%),
    linear-gradient(180deg, rgba(247, 252, 255, 0.98), rgba(255, 251, 246, 0.96));
}

.coverage-compare::before {
  content: "";
  position: absolute;
  inset: auto auto 2rem -2rem;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 184, 166, 0.1), rgba(27, 184, 166, 0));
  pointer-events: none;
}

.coverage-compare__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.35rem;
  align-items: start;
}

.coverage-compare__intro {
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 251, 255, 0.88));
}

.coverage-compare__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.coverage-compare__card {
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 255, 0.9));
}

.coverage-compare__card .icon-badge {
  margin-bottom: 0.9rem;
}

.coverage-compare__card h3 {
  min-height: 0;
  margin-bottom: 0.7rem;
  transform: none;
}

.coverage-bind {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 22%, rgba(27, 184, 166, 0.08), transparent 18%),
    radial-gradient(circle at 90% 80%, rgba(255, 209, 102, 0.1), transparent 16%),
    linear-gradient(180deg, rgba(244, 251, 255, 0.96), rgba(255, 249, 243, 0.98));
}

.coverage-bind::before,
.coverage-bind::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.coverage-bind::before {
  top: 3rem;
  right: -2rem;
  width: 180px;
  height: 180px;
  border-radius: 36px;
  background: rgba(27, 184, 166, 0.08);
  transform: rotate(18deg);
}

.coverage-bind::after {
  left: -2.5rem;
  bottom: 2rem;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 120, 88, 0.08), rgba(255, 120, 88, 0));
}

.coverage-bind__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 1.35rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.coverage-bind__callout {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 251, 255, 0.82));
  box-shadow: 0 12px 24px rgba(14, 30, 45, 0.06);
}

.coverage-bind__callout span {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.coverage-bind__callout p {
  margin: 0;
}

.coverage-bind__intro h2 {
  font-size: clamp(1.9rem, 2.75vw, 2.65rem);
}

.coverage-bind__columns,
.coverage-bind__profiles {
  position: relative;
  z-index: 1;
}

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

.coverage-bind__columns .content-panel {
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 251, 255, 0.88));
}

.coverage-bind__columns .content-panel h2,
.coverage-bind__profiles .info-card h3 {
  font-size: 1.25rem;
}

.coverage-bind__columns .content-panel h2 {
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.08;
  white-space: normal;
}

.coverage-bind__profiles {
  margin-top: 1.2rem;
}

.coverage-bind__profiles .info-card {
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.88));
}

.coverage-detail-visual {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background:
    radial-gradient(circle at top left, rgba(27, 184, 166, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 120, 88, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 255, 0.98));
}

.coverage-detail-visual__media {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(244, 251, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.coverage-detail-visual__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
}

.coverage-detail-visual__summary {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
}

.coverage-detail-visual__summary span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.coverage-detail-visual__summary strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--color-ink);
}

.coverage-detail-visual__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.coverage-detail-visual__stats article,
.coverage-detail-mini {
  height: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
}

.coverage-detail-visual__stats strong,
.coverage-detail-mini strong {
  display: block;
  margin-bottom: 0.32rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.2;
}

.coverage-detail-visual__stats p,
.coverage-detail-mini p,
.coverage-detail-note p {
  margin: 0;
}

.coverage-detail-columns,
.coverage-detail-checklist {
  display: grid;
  gap: 1.2rem;
}

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

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

.detail-grid {
  align-items: stretch;
}

.detail-grid .info-card {
  height: 100%;
}

.detail-grid .icon-badge {
  margin-bottom: 1.15rem;
}

.detail-grid .info-card h3 {
  min-height: 0;
  margin-bottom: 0;
  line-height: 1.08;
  transform: none;
}

.coverage-card__heading {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  align-items: center;
  column-gap: 0.9rem;
  margin-bottom: 1.1rem;
  min-height: 3.1rem;
}

.coverage-card__heading .icon-badge {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0;
  align-self: center;
  justify-self: center;
}

.coverage-card__heading h3 {
  align-self: center;
  min-height: 0;
  margin-bottom: 0;
  line-height: 1.08;
  transform: none;
}

.coverage-detail-columns .content-panel h2,
.coverage-detail-columns .cta-panel h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.coverage-compare .content-panel h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}

.coverage-detail-columns .detail-list,
.coverage-detail-columns .feature-list {
  margin-top: 1rem;
}

.coverage-detail-note {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-left: 4px solid var(--color-secondary);
  border-radius: 18px;
  background: rgba(244, 251, 255, 0.95);
}

.coverage-detail-band {
  position: relative;
  overflow: hidden;
  padding-block: 4.75rem;
  background:
    radial-gradient(circle at 10% 18%, rgba(96, 215, 196, 0.18), transparent 18%),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.06), transparent 14%),
    radial-gradient(circle at 92% 82%, rgba(255, 209, 102, 0.16), transparent 16%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0) 26%),
    linear-gradient(135deg, #102a43 8%, #173a57 42%, #1f5865 76%, #1fb5a7 100%);
}

.coverage-detail-band--home {
  background:
    radial-gradient(circle at 10% 18%, rgba(96, 215, 196, 0.18), transparent 18%),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.06), transparent 14%),
    radial-gradient(circle at 92% 82%, rgba(255, 209, 102, 0.16), transparent 16%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0) 26%),
    linear-gradient(135deg, #102a43 8%, #173a57 42%, #1f5865 76%, #1fb5a7 100%);
}

.coverage-detail-band--renters,
.coverage-detail-band--motorcycle,
.coverage-detail-band--business {
  background:
    radial-gradient(circle at 10% 18%, rgba(96, 215, 196, 0.18), transparent 18%),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.06), transparent 14%),
    radial-gradient(circle at 92% 82%, rgba(255, 209, 102, 0.16), transparent 16%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0) 26%),
    linear-gradient(135deg, #102a43 8%, #173a57 42%, #1f5865 76%, #1fb5a7 100%);
}

.coverage-detail-band--renters .policy-showcase,
.coverage-detail-band--motorcycle .policy-showcase,
.coverage-detail-band--business .policy-showcase {
  gap: 1.55rem;
}

.coverage-detail-band--renters .policy-showcase__intro,
.coverage-detail-band--motorcycle .policy-showcase__intro,
.coverage-detail-band--business .policy-showcase__intro {
  gap: 1.2rem;
  align-items: start;
}

.coverage-detail-band--renters .policy-showcase__note,
.coverage-detail-band--motorcycle .policy-showcase__note,
.coverage-detail-band--business .policy-showcase__note {
  align-self: start;
}

.section--dark.coverage-detail-band--home {
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}

.section--dark.coverage-detail-band--renters,
.section--dark.coverage-detail-band--motorcycle,
.section--dark.coverage-detail-band--business {
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}

.coverage-detail-band--renters .visual-panel--rich,
.coverage-detail-band--motorcycle .visual-panel--rich,
.coverage-detail-band--business .visual-panel--rich {
  padding: 1.9rem;
}

.coverage-detail-band--renters .policy-showcase__grid,
.coverage-detail-band--motorcycle .policy-showcase__grid,
.coverage-detail-band--business .policy-showcase__grid {
  gap: 0.95rem;
}

.coverage-detail-band--renters .policy-showcase__card,
.coverage-detail-band--motorcycle .policy-showcase__card,
.coverage-detail-band--business .policy-showcase__card {
  padding: 1.05rem;
}

.coverage-detail-hero--renters ~ .coverage-compare .coverage-compare__grid,
.coverage-detail-hero--motorcycle ~ .coverage-compare .coverage-compare__grid,
.coverage-detail-hero--business ~ .coverage-compare .coverage-compare__grid {
  gap: 1.15rem;
}

.coverage-detail-hero--renters ~ .coverage-bind .coverage-bind__intro,
.coverage-detail-hero--motorcycle ~ .coverage-bind .coverage-bind__intro,
.coverage-detail-hero--business ~ .coverage-bind .coverage-bind__intro {
  gap: 1.15rem;
  margin-bottom: 1.3rem;
}

.coverage-detail-hero--renters ~ .coverage-bind .coverage-bind__profiles,
.coverage-detail-hero--motorcycle ~ .coverage-bind .coverage-bind__profiles,
.coverage-detail-hero--business ~ .coverage-bind .coverage-bind__profiles {
  margin-top: 1.05rem;
}

.coverage-detail-cta--business .cta-panel__actions .button {
  white-space: nowrap;
}

.section--dark.coverage-detail-band {
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}

.coverage-detail-band::before,
.coverage-detail-band::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.coverage-detail-band::before {
  top: -2rem;
  left: -4rem;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(27, 184, 166, 0.22), rgba(27, 184, 166, 0));
  filter: blur(2px);
}

.coverage-detail-band::after {
  right: -5rem;
  bottom: -2rem;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 120, 88, 0.18), rgba(255, 120, 88, 0));
  filter: blur(4px);
}

.coverage-detail-band .visual-panel--rich {
  position: relative;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 48px rgba(8, 24, 38, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.coverage-detail-band .visual-panel--rich::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 14% 20%, rgba(27, 184, 166, 0.12), transparent 18%),
    radial-gradient(circle at 84% 82%, rgba(255, 209, 102, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 32%);
  pointer-events: none;
}

.coverage-detail-band .visual-panel--rich::after {
  width: 220px;
  height: 220px;
  right: -2rem;
  bottom: -4rem;
  background:
    radial-gradient(circle, rgba(27, 184, 166, 0.16), rgba(27, 184, 166, 0));
}

.coverage-detail-band .visual-panel__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
}

.coverage-detail-band .visual-panel h2,
.coverage-detail-band .visual-panel__grid span,
.coverage-detail-band .visual-panel--rich p {
  color: #fff;
}

.coverage-detail-band .visual-panel__grid article {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
}

.coverage-detail-band .visual-panel__grid article::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 184, 166, 0.1), rgba(27, 184, 166, 0));
  pointer-events: none;
}

.policy-showcase::before {
  content: "";
  position: absolute;
  inset: 7rem 18% auto auto;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  border: 1px solid rgba(20, 48, 74, 0.08);
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(12deg);
  pointer-events: none;
}

.policy-showcase::after {
  content: "";
  position: absolute;
  inset: auto auto 1rem -1rem;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.1), rgba(255, 209, 102, 0));
  pointer-events: none;
}

.section--dark {
  padding-top: 1rem;
}

.split-layout--dark {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.visual-panel,
.content-panel,
.cta-panel {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.visual-panel--rich {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #10263b 10%, #173854 44%, #1bb8a6 100%);
}

.visual-panel--rich::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.22);
}

.visual-panel__label {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.visual-panel h2,
.page-hero__content--light h1,
.page-hero__content--light p {
  color: #fff;
}

.visual-panel h2 {
  max-width: 12ch;
  margin: 0.5rem 0 2rem;
}

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

.visual-panel__grid article {
  padding: 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.visual-panel__grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
}

.visual-panel__grid span,
.visual-panel--rich p {
  color: rgba(255, 255, 255, 0.88);
}

.content-panel--light {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--color-line);
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.step-card span {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(20, 48, 74, 0.12);
}

.highlight-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 251, 255, 0.96));
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero--about .page-hero__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 1.75rem;
}

.page-hero--about {
  padding-bottom: 1.2rem;
}

.page-hero--about h1 {
  max-width: 720px;
  font-size: clamp(2.35rem, 4.2vw, 3.8rem);
}

.page-hero--about .page-hero__content p {
  max-width: 720px;
}

.page-hero--about .hero__actions {
  margin-top: 1.4rem;
}

.about-hero-media {
  overflow: hidden;
}

.about-section {
  padding: 2.4rem 0;
}

.about-story-card {
  max-width: none;
}

.about-story-card h2,
.about-feature-card h2 {
  max-width: none;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-card-grid .highlight-card {
  min-height: 100%;
}

.about-card-grid .highlight-card h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

.about-card-grid .highlight-card p {
  margin-top: 0.7rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.about-services-grid {
  margin-top: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-services-grid .info-card,
.about-team-card {
  min-height: 100%;
}

.about-services-grid .info-card {
  display: flex;
  flex-direction: column;
}

.about-services-grid .info-card p {
  flex: 1 1 auto;
}

.about-why-heading {
  max-width: 860px;
}

.about-why-shell {
  display: grid;
  gap: 1.2rem;
}

.about-why-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
  gap: 1.5rem;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(27, 184, 166, 0.12), rgba(255, 107, 74, 0.08)),
    #fff;
}

.about-why-intro h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
}

.about-why-intro__content p {
  max-width: 60ch;
}

.about-why-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 0;
  padding: 1.25rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
}

.about-why-grid {
  margin-top: 0;
}

.about-why-card {
  position: relative;
}

.about-why-card strong {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.about-team-grid {
  margin-top: 1.5rem;
}

.about-team-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-team-card__media {
  display: grid;
  place-items: end center;
  width: 100%;
  min-height: 310px;
  margin-bottom: 1rem;
  padding: 1rem 1rem 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(27, 184, 166, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(245, 251, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.about-team-card img {
  width: 100%;
  max-width: 180px;
  max-height: 290px;
  object-fit: contain;
}

.about-team-card__role {
  margin-top: 0.2rem;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.about-team-card__social {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.about-team-card__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 48, 74, 0.1);
  background: rgba(245, 251, 255, 0.95);
  color: var(--color-ink);
  transition: transform var(--transition), background var(--transition), color var(--transition),
    border-color var(--transition), box-shadow var(--transition);
}

.about-team-card__social a:hover,
.about-team-card__social a:focus-visible {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 12px 24px rgba(20, 48, 74, 0.12);
  transform: translateY(-2px);
}

.about-team-card__social svg {
  width: 1rem;
  height: 1rem;
}

.about-testimonials-grid {
  align-items: stretch;
  margin-top: 0.5rem;
}

.about-support-stack {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.about-feature-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: 1.75rem;
  align-items: center;
}

.about-feature-card--reverse .about-feature-card__media {
  order: 2;
}

.about-feature-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

.process-intro,
.process-step,
.process-callout,
.workflow-intro,
.workflow-step,
.workflow-callout {
  padding: 3.2rem 0;
}

.process-step__grid,
.workflow-step__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 2rem;
  align-items: center;
}

.process-step--reverse .process-step__media,
.workflow-step--reverse .workflow-step__media {
  order: 2;
}

.process-step__media img,
.workflow-step__media img {
  width: 100%;
  height: auto;
}

.process-step__content h2,
.workflow-step__content h2 {
  max-width: none;
}

.process-step__content p + p,
.workflow-step__content p + p {
  margin-top: 1rem;
}

.process-step__index,
.workflow-step__index {
  margin: 0 0 0.8rem;
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-step__cards,
.workflow-step__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.workflow-step__cards-wrap {
  margin-top: 1.25rem;
}

.process-step__cards .highlight-card h3,
.workflow-step__cards .highlight-card h3 {
  font-size: 1.08rem;
  line-height: 1.18;
}

.process-step__cards .highlight-card p,
.workflow-step__cards .highlight-card p {
  margin-top: 0.7rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.process-callout .cta-panel,
.workflow-callout .cta-panel {
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.14), rgba(27, 184, 166, 0.14)), #fff;
}

.page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
}

.page-hero--dark .page-hero__grid {
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #10263b, #173854);
}

.page-hero__content--light .eyebrow {
  color: #86e4d7;
}

.blog-hero .page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 1.6rem;
}

.blog-hero .page-hero__content h1 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 3.8vw, 3.25rem);
}

.blog-hero__visual {
  display: grid;
  gap: 1rem;
}

.blog-hero__highlights {
  display: grid;
  gap: 0.9rem;
}

.blog-hero__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.blog-hero__row .blog-hero-post {
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.blog-hero__row .blog-hero-post__media {
  aspect-ratio: 16 / 10;
}

.blog-hero__row .blog-hero-post__content {
  align-content: start;
}

.blog-hero__row .blog-hero-post__content h2 {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.blog-hero-post {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: stretch;
  padding: 0.9rem;
  border: 1px solid var(--color-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 32px rgba(20, 48, 74, 0.06);
}

.blog-hero-post--lead {
  grid-template-columns: 170px minmax(0, 1fr);
  padding: 1rem;
}

.blog-hero-post--lead .blog-hero-post__content h2 {
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
}

.blog-hero-post__media {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(245, 251, 255, 0.96);
}

.blog-hero-post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-post__content {
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.blog-hero-post__content h2 {
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.blog-hero-post__content h2 a {
  color: var(--color-ink);
}

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

.page-hero--contact .page-hero__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 1.4rem;
  align-items: start;
}

.page-hero--contact {
  padding: 3.3rem 0 0.8rem;
}

.page-hero--contact h1 {
  max-width: 13ch;
  font-size: clamp(2.25rem, 4.2vw, 3.4rem);
}

.page-hero--contact .page-hero__content {
  max-width: 700px;
  display: grid;
  align-content: center;
  min-height: 100%;
}

.page-hero--contact .page-hero__content > p {
  max-width: 620px;
}

.contact-hero-panel {
  display: grid;
  gap: 0;
  align-content: start;
  justify-items: center;
}

.contact-hero-panel__media {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-hero-panel__media img {
  width: min(100%, 470px);
  max-height: 330px;
  object-fit: contain;
}

.contact-detail-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: var(--color-ink);
}

.contact-detail-list a {
  font-weight: 800;
  color: var(--color-primary-dark);
}

.contact-page-shell {
  padding: 1rem 0 4rem;
}

.contact-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.9fr);
  gap: 1.35rem;
  align-items: start;
}

.contact-detail-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 0;
  max-width: none;
}

.contact-detail-list > div {
  padding: 1rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 18px;
  background: rgba(245, 251, 255, 0.6);
}

.contact-form-panel__media {
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(223, 250, 246, 0.82), rgba(255, 240, 232, 0.8));
  overflow: hidden;
}

.contact-form-panel__media img {
  width: min(100%, 320px);
  max-height: 200px;
  object-fit: contain;
}

.contact-form-panel {
  width: 100%;
  padding: 1.8rem;
}

.contact-form-panel h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.contact-form-panel .product-pills {
  margin-top: 1.2rem;
}

.contact-form-panel .lead-form {
  margin-top: 1.15rem;
}

.contact-form-panel .lead-form__submit {
  padding-top: 0.2rem;
}

.contact-form-panel__note {
  margin-top: 0.25rem;
  font-size: 0.92rem;
  color: var(--color-ink-soft);
}

.contact-form-panel__note a {
  color: var(--color-primary-dark);
  font-weight: 800;
}

.contact-form-panel .quote-card__label {
  margin-bottom: 0.55rem;
}

.contact-form-panel > h2 + p {
  max-width: 34ch;
}

.contact-info-panel {
  padding: 1.8rem;
}

.contact-info-panel h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
  max-width: 13ch;
}

.contact-info-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.contact-info-card {
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.contact-info-card--accent {
  background: linear-gradient(135deg, rgba(27, 184, 166, 0.12), rgba(255, 107, 74, 0.08)), #fff;
}

.contact-info-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.contact-info-card a,
.contact-info-card span {
  display: inline-flex;
  margin-top: 0.75rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.contact-map-section {
  padding-top: 0;
}

.contact-map-section__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  padding: 1.5rem;
  border: 1px solid var(--color-line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 30px rgba(20, 48, 74, 0.05);
}

.contact-map-section__info {
  padding: 1.6rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 26px;
  background: rgba(245, 251, 255, 0.72);
}

.contact-map-section__info h2 {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  margin-bottom: 0.8rem;
}

.contact-map-section__frame {
  overflow: hidden;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-map-section__frame iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.contact-next-steps {
  padding-top: 0;
}

.contact-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-next-card {
  padding: 1.5rem;
  border: 1px solid var(--color-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 30px rgba(20, 48, 74, 0.05);
}

.faq-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.faq-help-page {
  position: relative;
}

.faq-help-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 1rem;
}

.faq-help-hero::before,
.faq-help-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.faq-help-hero::before {
  left: -6rem;
  top: 2rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.16), transparent 72%);
}

.faq-help-hero::after {
  right: -5rem;
  top: 3rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(27, 184, 166, 0.16), transparent 72%);
}

.faq-help-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 1.75rem;
  align-items: center;
}

.faq-help-hero__content h1 {
  max-width: 12.3ch;
}

.faq-help-hero__content > p {
  max-width: 39rem;
}

.faq-help-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  margin-top: 1.4rem;
  padding: 0.65rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(20, 48, 74, 0.06);
}

.faq-help-search input {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding-inline: 1.3rem;
  background: rgba(247, 251, 250, 0.9);
}

.faq-help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-top: 1.1rem;
}

.faq-help-links a {
  font-weight: 700;
  color: var(--color-ink-soft);
  text-decoration: underline;
  text-decoration-color: rgba(27, 184, 166, 0.28);
  text-underline-offset: 0.22em;
}

.faq-help-hero__media {
  position: relative;
  min-height: 34rem;
}

.faq-help-hero__image {
  position: relative;
  min-height: 32rem;
  padding: 1.9rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 107, 74, 0.14), transparent 22%),
    radial-gradient(circle at 88% 82%, rgba(27, 184, 166, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 249, 0.94));
  box-shadow: 0 26px 58px rgba(20, 48, 74, 0.08);
}

.faq-help-hero__image::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(20, 48, 74, 0.08);
}

.faq-help-hero__image img {
  width: 100%;
  max-width: 33rem;
  margin: 0 auto;
  display: block;
}

.faq-help-hero__photo-card {
  position: absolute;
  left: -1rem;
  bottom: 2rem;
  width: min(100%, 14rem);
  padding: 0.8rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 42px rgba(20, 48, 74, 0.09);
}

.faq-help-hero__photo-card img {
  width: 100%;
  display: block;
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 107, 74, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(246, 252, 251, 0.98), rgba(255, 255, 255, 0.96));
}

.faq-help-hero__mini-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(100%, 18rem);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(20, 48, 74, 0.08);
}

.faq-help-hero__mini-card .eyebrow {
  margin-bottom: 0.6rem;
}

.faq-help-hero__mini-card ul {
  display: grid;
  gap: 0.6rem;
}

.faq-help-hero__mini-card li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.94rem;
  color: var(--color-ink);
}

.faq-help-hero__mini-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-secondary), #60d7c4);
}

.faq-help-categories {
  padding-top: 0.8rem;
}

.faq-help-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.faq-help-category-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem 1.3rem 1.45rem;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 250, 0.92));
  box-shadow: 0 18px 38px rgba(20, 48, 74, 0.05);
}

.faq-help-category-card::before {
  content: "";
  position: absolute;
  top: -3rem;
  right: -2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 184, 166, 0.12), transparent 72%);
}

.faq-help-category-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(27, 184, 166, 0.18), rgba(255, 223, 154, 0.44));
  color: var(--color-ink);
}

.faq-help-category-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.faq-help-category-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
  line-height: 1.16;
}

.faq-help-category-card p {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  line-height: 1.68;
}

.faq-help-category-card__media {
  overflow: hidden;
  min-height: 9.5rem;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(20, 48, 74, 0.06);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 107, 74, 0.12), transparent 20%),
    radial-gradient(circle at 88% 84%, rgba(27, 184, 166, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(244, 252, 250, 0.98), rgba(255, 255, 255, 0.96));
}

.faq-help-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-help-category-card a {
  font-weight: 800;
  color: var(--color-primary);
}

.faq-help-guides {
  padding-top: 0.9rem;
}

.faq-help-guides__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 1.25rem;
}

.faq-help-featured-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.74fr);
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--color-line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 107, 74, 0.1), transparent 20%),
    radial-gradient(circle at 88% 86%, rgba(27, 184, 166, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 251, 248, 0.92));
  box-shadow: 0 22px 50px rgba(20, 48, 74, 0.06);
}

.faq-help-featured-guide__content h2 {
  max-width: 14ch;
  margin-bottom: 0.8rem;
}

.faq-help-featured-guide__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-help-featured-guide__media img {
  width: 100%;
  max-width: 22rem;
}

.faq-help-guide-list {
  display: grid;
  gap: 1rem;
}

.faq-help-guide-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(20, 48, 74, 0.05);
}

.faq-help-guide-card::before {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 184, 166, 0.1), transparent 72%);
}

.faq-help-guide-card__media {
  overflow: hidden;
  margin: -1.25rem -1.3rem 1rem;
  min-height: 9.5rem;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 107, 74, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(247, 252, 251, 0.98), rgba(255, 255, 255, 0.96));
}

.faq-help-guide-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-help-guide-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.16rem;
  line-height: 1.2;
}

.faq-help-guide-card p {
  font-size: 0.94rem;
  line-height: 1.66;
}

.faq-help-answers {
  position: relative;
  overflow: hidden;
}

.faq-help-answers::before,
.faq-help-answers::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.faq-help-answers::before {
  left: -5rem;
  top: 5rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(27, 184, 166, 0.12), transparent 70%);
}

.faq-help-answers::after {
  right: -6rem;
  bottom: 0;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.12), transparent 72%);
}

.faq-help-answers__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 1.25rem;
  align-items: start;
}

.faq-help-answers__sidebar {
  display: grid;
  gap: 1rem;
}

.faq-help-sidebar-card,
.faq-help-sidebar-visual {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(244, 252, 251, 0.9));
  box-shadow: 0 22px 52px rgba(20, 48, 74, 0.07);
}

.faq-help-sidebar-card {
  padding: 1.35rem 1.4rem 1.45rem;
}

.faq-help-sidebar-card h2 {
  margin-bottom: 0.8rem;
}

.faq-help-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.faq-help-sidebar-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(27, 184, 166, 0.1);
  color: var(--color-ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.faq-help-sidebar-visual {
  padding: 1.25rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 107, 74, 0.12), transparent 22%),
    radial-gradient(circle at 86% 80%, rgba(27, 184, 166, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(246, 252, 250, 0.98), rgba(255, 255, 255, 0.96));
}

.faq-help-sidebar-visual img {
  width: 100%;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.faq-list--help details {
  overflow: hidden;
  padding: 1.35rem 1.45rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 251, 0.92));
  box-shadow: 0 18px 40px rgba(20, 48, 74, 0.05);
}

.faq-list--help details[open] {
  border-color: rgba(27, 184, 166, 0.24);
  background:
    linear-gradient(180deg, rgba(235, 251, 248, 0.95), rgba(255, 255, 255, 0.98));
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 800;
  color: var(--color-ink);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  flex: 0 0 auto;
  width: 0.75rem;
  height: 0.75rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list details p {
  padding-top: 0.85rem;
}

.faq-help-support {
  padding-top: 0.9rem;
}

.faq-help-support__panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  align-items: center;
  padding: 1.8rem;
  border: 1px solid var(--color-line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 107, 74, 0.12), transparent 21%),
    radial-gradient(circle at 92% 84%, rgba(27, 184, 166, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 251, 249, 0.94));
  box-shadow: 0 22px 50px rgba(20, 48, 74, 0.06);
}

.faq-help-support__panel::before {
  content: "";
  position: absolute;
  right: 19%;
  top: -3rem;
  width: 8rem;
  height: 8rem;
  border-radius: 26px;
  transform: rotate(24deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.faq-help-support__content h2 {
  max-width: 14ch;
  margin-bottom: 0.8rem;
}

.faq-help-support__content > p {
  max-width: 42rem;
}

.faq-help-support__media {
  flex: 0 0 15rem;
  width: 15rem;
  padding: 0.85rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 107, 74, 0.12), transparent 22%),
    radial-gradient(circle at 88% 84%, rgba(27, 184, 166, 0.15), transparent 26%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(20, 48, 74, 0.08);
}

.faq-help-support__media img {
  width: 100%;
  display: block;
}

.faq-orbit-page {
  position: relative;
}

.faq-orbit-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 1.1rem;
}

.faq-orbit-hero::before,
.faq-orbit-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.faq-orbit-hero::before {
  top: -8rem;
  left: -10rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.22), transparent 68%);
}

.faq-orbit-hero::after {
  right: -9rem;
  bottom: -6rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(27, 184, 166, 0.22), transparent 70%);
}

.faq-orbit-hero__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(18, 46, 73, 0.98), rgba(31, 128, 136, 0.96));
  box-shadow: 0 32px 80px rgba(20, 48, 74, 0.12);
}

.faq-orbit-hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.12), transparent 22%),
    radial-gradient(circle at 84% 78%, rgba(255, 223, 154, 0.12), transparent 20%);
  pointer-events: none;
}

.faq-orbit-hero__content,
.faq-orbit-hero__visual {
  position: relative;
  z-index: 1;
}

.faq-orbit-hero__content .eyebrow,
.faq-orbit-signal-card .eyebrow {
  color: #8ef0e1;
}

.faq-orbit-hero__content h1 {
  max-width: 11ch;
  color: #fff;
}

.faq-orbit-hero__content > p {
  max-width: 37rem;
  color: rgba(255, 255, 255, 0.78);
}

.faq-orbit-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  margin-top: 1.4rem;
  padding: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 36px rgba(7, 19, 41, 0.24);
}

.faq-orbit-search input {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  padding-inline: 1.35rem;
  background: rgba(247, 251, 250, 0.94);
}

.faq-orbit-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  margin-top: 1.1rem;
}

.faq-orbit-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 0.22em;
}

.faq-orbit-hero__visual {
  position: relative;
  min-height: 34rem;
}

.faq-orbit-visual-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 22px 44px rgba(7, 19, 41, 0.18);
}

.faq-orbit-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.faq-orbit-visual-card--main {
  top: 0;
  right: 0;
  width: min(100%, 28rem);
  min-height: 23rem;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 107, 74, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 251, 249, 0.94));
}

.faq-orbit-visual-card--side {
  left: 0;
  bottom: 4rem;
  width: 12.5rem;
  min-height: 12.5rem;
  padding: 0.85rem;
  background:
    radial-gradient(circle at 20% 18%, rgba(27, 184, 166, 0.16), transparent 26%),
    rgba(255, 255, 255, 0.94);
}

.faq-orbit-signal-card {
  position: absolute;
  right: 1rem;
  bottom: 0;
  width: min(100%, 20rem);
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(10, 29, 49, 0.54);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 36px rgba(7, 19, 41, 0.22);
}

.faq-orbit-signal-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.12;
}

.faq-orbit-signal-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.faq-orbit-paths {
  padding-top: 0.9rem;
}

.faq-orbit-paths__grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.04fr) minmax(0, 0.96fr);
  gap: 1.25rem;
}

.faq-orbit-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--color-line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 107, 74, 0.1), transparent 18%),
    radial-gradient(circle at 90% 86%, rgba(27, 184, 166, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 252, 250, 0.94));
  box-shadow: 0 24px 54px rgba(20, 48, 74, 0.06);
}

.faq-orbit-spotlight__content h2 {
  max-width: 14ch;
  margin-bottom: 0.9rem;
}

.faq-orbit-spotlight__content .detail-list {
  margin: 1rem 0 1.2rem;
}

.faq-orbit-spotlight__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 107, 74, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(250, 253, 252, 0.98), rgba(255, 255, 255, 0.96));
}

.faq-orbit-spotlight__media img {
  width: 100%;
  max-width: 20rem;
}

.faq-orbit-path-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-orbit-path-card {
  position: relative;
  overflow: hidden;
  min-height: 15rem;
  padding: 1.3rem 1.25rem;
  border: 1px solid var(--color-line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 250, 0.92));
  box-shadow: 0 18px 38px rgba(20, 48, 74, 0.05);
}

.faq-orbit-path-card::before {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 184, 166, 0.12), transparent 72%);
}

.faq-orbit-path-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(27, 184, 166, 0.18), rgba(255, 223, 154, 0.44));
}

.faq-orbit-path-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.faq-orbit-path-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
  line-height: 1.14;
}

.faq-orbit-path-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-orbit-answers {
  position: relative;
  overflow: hidden;
}

.faq-orbit-answers::before,
.faq-orbit-answers::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.faq-orbit-answers::before {
  left: -8rem;
  top: 4rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.12), transparent 70%);
}

.faq-orbit-answers::after {
  right: -7rem;
  bottom: -3rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(27, 184, 166, 0.14), transparent 72%);
}

.faq-orbit-answers__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 1.25rem;
  align-items: start;
}

.faq-orbit-aside {
  display: grid;
  gap: 1rem;
}

.faq-orbit-aside__card,
.faq-orbit-aside__image,
.faq-orbit-aside__cta {
  border: 1px solid var(--color-line);
  border-radius: 30px;
  box-shadow: 0 22px 48px rgba(20, 48, 74, 0.06);
}

.faq-orbit-aside__card {
  padding: 1.4rem 1.4rem 1.5rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 250, 0.92));
}

.faq-orbit-aside__card h2 {
  margin-bottom: 0.8rem;
}

.faq-orbit-aside__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.faq-orbit-aside__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(27, 184, 166, 0.1);
  font-size: 0.84rem;
  font-weight: 700;
}

.faq-orbit-aside__image {
  overflow: hidden;
  padding: 1rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 107, 74, 0.12), transparent 22%),
    radial-gradient(circle at 86% 82%, rgba(27, 184, 166, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(246, 252, 250, 0.98), rgba(255, 255, 255, 0.96));
}

.faq-orbit-aside__image img {
  width: 100%;
  display: block;
}

.faq-orbit-aside__cta {
  padding: 1.25rem 1.3rem;
  background: linear-gradient(135deg, rgba(20, 48, 74, 0.98), rgba(28, 106, 119, 0.98));
  color: #fff;
}

.faq-orbit-aside__cta h3 {
  margin-bottom: 0.45rem;
  color: #fff;
}

.faq-orbit-aside__cta p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.76);
}

.faq-orbit-answer-stage {
  display: grid;
  gap: 1rem;
}

.faq-orbit-answer-stage__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr);
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--color-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 107, 74, 0.12), transparent 20%),
    radial-gradient(circle at 88% 80%, rgba(27, 184, 166, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 251, 0.94));
  box-shadow: 0 20px 44px rgba(20, 48, 74, 0.05);
}

.faq-orbit-answer-stage__intro h2 {
  max-width: 15ch;
  margin-bottom: 0;
}

.faq-orbit-answer-stage__intro img {
  width: 100%;
  border-radius: 22px;
  display: block;
}

.faq-list--orbit {
  gap: 1rem;
}

.faq-list--orbit details {
  overflow: hidden;
  padding: 1.35rem 1.45rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 251, 0.93));
  box-shadow: 0 18px 40px rgba(20, 48, 74, 0.05);
}

.faq-list--orbit details[open] {
  border-color: rgba(27, 184, 166, 0.24);
  background:
    linear-gradient(180deg, rgba(235, 251, 248, 0.96), rgba(255, 255, 255, 0.98));
}

.faq-orbit-resources {
  padding-top: 0.9rem;
}

.faq-orbit-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-orbit-resource-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(20, 48, 74, 0.05);
}

.faq-orbit-resource-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.faq-orbit-resource-card > div {
  padding: 1.15rem 1.2rem 1.25rem;
}

.faq-orbit-resource-card h3 {
  margin-bottom: 0;
  font-size: 1.12rem;
  line-height: 1.22;
}

.faq-simple-page {
  display: grid;
  gap: 0;
}

.faq-simple-hero {
  position: relative;
  overflow: hidden;
}

.faq-simple-hero::before,
.faq-simple-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.faq-simple-hero::before {
  left: -10rem;
  top: -5rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.12), transparent 72%);
}

.faq-simple-hero::after {
  right: -8rem;
  top: 1rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(27, 184, 166, 0.14), transparent 74%);
}

.faq-simple-hero__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.9rem;
  border: 1px solid var(--color-line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 251, 0.94));
  box-shadow: 0 24px 54px rgba(20, 48, 74, 0.06);
}

.faq-simple-hero__content h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
}

.faq-simple-hero__content > p {
  max-width: 56ch;
  margin-bottom: 1.15rem;
}

.faq-simple-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.faq-simple-search input {
  min-height: 3.5rem;
  padding: 0 1.1rem;
  border: 1px solid rgba(20, 48, 74, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  font: inherit;
}

.faq-simple-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
}

.faq-simple-links a {
  color: var(--color-ink-soft);
  font-weight: 700;
}

.faq-simple-hero__media {
  display: grid;
  gap: 1rem;
}

.faq-simple-hero__image,
.faq-simple-hero__mini {
  border: 1px solid var(--color-line);
  border-radius: 28px;
  box-shadow: 0 20px 42px rgba(20, 48, 74, 0.05);
}

.faq-simple-hero__image {
  padding: 1.25rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 107, 74, 0.1), transparent 22%),
    radial-gradient(circle at 84% 84%, rgba(27, 184, 166, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(250, 253, 252, 0.98), rgba(255, 255, 255, 0.96));
}

.faq-simple-hero__image img {
  display: block;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
}

.faq-simple-hero__mini {
  padding: 1.2rem 1.25rem;
  background: rgba(255, 255, 255, 0.96);
}

.faq-simple-hero__mini h2 {
  margin-bottom: 0.55rem;
  font-size: 1.3rem;
  line-height: 1.12;
}

.faq-simple-hero__mini p:last-child {
  margin-bottom: 0;
}

.faq-simple-topics {
  padding-top: 1rem;
}

.faq-simple-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.faq-simple-topic-card {
  min-height: 13rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--color-line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 252, 251, 0.92));
  box-shadow: 0 18px 36px rgba(20, 48, 74, 0.05);
}

.faq-simple-topic-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
  line-height: 1.16;
}

.faq-simple-topic-card p {
  margin-bottom: 0;
}

.faq-simple-answers__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 1.25rem;
  align-items: start;
}

.faq-simple-support {
  display: grid;
  gap: 1rem;
}

.faq-simple-support__card,
.faq-simple-support__image,
.faq-simple-answer-panel {
  border: 1px solid var(--color-line);
  border-radius: 30px;
  box-shadow: 0 22px 46px rgba(20, 48, 74, 0.05);
}

.faq-simple-support__card {
  padding: 1.45rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(27, 184, 166, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 251, 0.94));
}

.faq-simple-support__card h2 {
  margin-bottom: 0.8rem;
}

.faq-simple-support__card .detail-list {
  margin: 1rem 0 1.15rem;
}

.faq-simple-support__image {
  overflow: hidden;
  padding: 1rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 107, 74, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(250, 253, 252, 0.98), rgba(255, 255, 255, 0.96));
}

.faq-simple-support__image img {
  display: block;
  width: 100%;
}

.faq-simple-answer-panel {
  padding: 1.45rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(27, 184, 166, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 251, 0.94));
}

.faq-simple-answer-panel__intro {
  margin-bottom: 1rem;
}

.faq-simple-answer-panel__intro h2 {
  margin-bottom: 0.65rem;
  max-width: 14ch;
}

.faq-simple-answer-panel__intro p:last-child {
  margin-bottom: 0;
}

.faq-list--simple {
  display: grid;
  gap: 0.85rem;
}

.faq-list--simple details {
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(20, 48, 74, 0.04);
}

.faq-list--simple details[open] {
  border-color: rgba(27, 184, 166, 0.2);
  background: linear-gradient(180deg, rgba(235, 251, 248, 0.9), rgba(255, 255, 255, 0.98));
}

.faq-simple-guides {
  padding-top: 0.9rem;
}

.faq-simple-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-simple-guide-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(20, 48, 74, 0.05);
}

.faq-simple-guide-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.faq-simple-guide-card > div {
  padding: 1.1rem 1.15rem 1.2rem;
}

.faq-simple-guide-card h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.22;
}

.faq-stack-page {
  display: grid;
  gap: 0;
}

.faq-stack-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 107, 74, 0.08), transparent 20%),
    radial-gradient(circle at 86% 18%, rgba(27, 184, 166, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 248, 243, 0.55), rgba(255, 255, 255, 0));
}

.faq-stack-hero::before,
.faq-stack-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.faq-stack-hero::before {
  left: -9rem;
  top: -5rem;
  width: 23rem;
  height: 23rem;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.1), transparent 72%);
}

.faq-stack-hero::after {
  right: -8rem;
  top: 1rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(27, 184, 166, 0.12), transparent 74%);
}

.faq-stack-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding: 1.15rem 0 0.25rem;
}

.faq-stack-hero__inner h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.faq-stack-hero__inner > p {
  max-width: 48rem;
  margin: 0 auto 1.2rem;
}

.faq-stack-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  max-width: 44rem;
  margin: 0 auto 1rem;
}

.faq-stack-search input {
  min-height: 3.6rem;
  padding: 0 1.15rem;
  border: 1px solid rgba(20, 48, 74, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 251, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font: inherit;
}

.faq-stack-shortcuts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.faq-stack-shortcuts a,
.faq-stack-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-ink);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(20, 48, 74, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.faq-stack-shortcuts a:hover,
.faq-stack-shortcuts a:focus-visible,
.faq-stack-pills a:hover,
.faq-stack-pills a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(27, 184, 166, 0.18);
  box-shadow: 0 14px 28px rgba(20, 48, 74, 0.08);
}

.faq-stack-intro {
  padding-top: 0.9rem;
  position: relative;
  overflow: hidden;
}

.faq-stack-intro::before,
.faq-stack-intro::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.faq-stack-intro::before {
  left: -8rem;
  bottom: -5rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.08), transparent 72%);
}

.faq-stack-intro::after {
  right: -6rem;
  top: -3rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(27, 184, 166, 0.1), transparent 72%);
}

.faq-stack-intro__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.faq-stack-highlight {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--color-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 107, 74, 0.08), transparent 20%),
    radial-gradient(circle at 88% 80%, rgba(27, 184, 166, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 251, 0.94));
  box-shadow: 0 22px 48px rgba(20, 48, 74, 0.05);
}

.faq-stack-highlight::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 38px;
  transform: rotate(18deg);
  background: linear-gradient(135deg, rgba(27, 184, 166, 0.1), rgba(255, 223, 154, 0.1));
}

.faq-stack-highlight__content h2 {
  max-width: 17ch;
  margin-bottom: 0.8rem;
}

.faq-stack-highlight__content p:last-child {
  margin-bottom: 0;
}

.faq-stack-highlight__media {
  display: flex;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 252, 250, 0.9));
}

.faq-stack-highlight__media img {
  width: 100%;
  max-width: 22rem;
}

.faq-stack-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.faq-stack-group + .faq-stack-group {
  margin-top: 1.35rem;
}

.faq-stack-group {
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
  border: 1px solid var(--color-line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(20, 48, 74, 0.04);
}

.faq-stack-group::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, rgba(27, 184, 166, 0.85), rgba(255, 107, 74, 0.72));
}

.faq-stack-group:nth-of-type(2) {
  background:
    radial-gradient(circle at 88% 20%, rgba(27, 184, 166, 0.08), transparent 18%),
    rgba(255, 255, 255, 0.8);
}

.faq-stack-group:nth-of-type(3) {
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 107, 74, 0.08), transparent 18%),
    rgba(255, 255, 255, 0.8);
}

.faq-stack-group--support {
  background:
    linear-gradient(135deg, rgba(242, 252, 250, 0.9), rgba(255, 247, 242, 0.92));
}

.faq-stack-group__heading {
  max-width: 44rem;
  margin-bottom: 1rem;
  padding-left: 0.2rem;
}

.faq-stack-group__heading h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.faq-list--stack {
  display: grid;
  gap: 0.85rem;
}

.faq-list--stack details {
  position: relative;
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(20, 48, 74, 0.04);
}

.faq-list--stack details[open] {
  border-color: rgba(27, 184, 166, 0.22);
  background: linear-gradient(180deg, rgba(236, 251, 248, 0.92), rgba(255, 255, 255, 0.98));
}

.faq-list--stack details::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(27, 184, 166, 0.12), rgba(255, 223, 154, 0.18));
  opacity: 0.7;
  pointer-events: none;
}

.faq-stack-support-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.72fr);
  gap: 1rem;
  align-items: center;
  padding: 1.4rem;
  border: 1px solid var(--color-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 107, 74, 0.08), transparent 20%),
    radial-gradient(circle at 88% 82%, rgba(27, 184, 166, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 251, 0.94));
  box-shadow: 0 20px 44px rgba(20, 48, 74, 0.05);
}

.faq-stack-support-panel::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 184, 166, 0.12), transparent 72%);
}

.faq-stack-support-panel__content h3 {
  margin-bottom: 0.65rem;
}

.faq-stack-support-panel__content p {
  margin-bottom: 1rem;
}

.faq-stack-support-panel__media {
  display: flex;
  justify-content: center;
  padding: 0.6rem;
}

.faq-stack-support-panel__media img {
  width: 100%;
  max-width: 20rem;
}

.faq-stack-guides {
  padding-top: 0.9rem;
  position: relative;
  overflow: hidden;
}

.faq-stack-guides::before {
  content: "";
  position: absolute;
  left: -6rem;
  top: 2rem;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 184, 166, 0.08), transparent 72%);
  pointer-events: none;
}

.faq-stack-guide-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-stack-guide-card {
  position: relative;
  overflow: hidden;
  min-height: 12.25rem;
  padding: 1.3rem 1.25rem;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 251, 0.92));
  box-shadow: 0 16px 32px rgba(20, 48, 74, 0.04);
}

.faq-stack-guide-card::before {
  content: "";
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.08), transparent 72%);
}

.faq-stack-guide-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.12rem;
  line-height: 1.22;
}

.faq-stack-guide-card p {
  margin-bottom: 0;
}

.access-flow {
  max-width: 62rem;
}

.access-flow h2 {
  margin-bottom: 0.7rem;
}

.access-flow h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.access-flow > p:last-child,
.access-flow .detail-list:last-child {
  margin-bottom: 0;
}

.access-flow--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.access-flow--split > div {
  min-width: 0;
}

.access-flow--split .eyebrow {
  margin-bottom: 0.55rem;
}

.access-page-lite .faq-stack-hero__inner h1 {
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.access-page-lite .faq-stack-group__heading h2,
.access-page-lite .faq-stack-highlight__content h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.14;
}

.access-page-lite .access-flow h3 {
  font-size: 1.05rem;
  line-height: 1.25;
}

.access-page-lite .faq-stack-highlight {
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 18%, rgba(27, 184, 166, 0.1), transparent 16%),
    radial-gradient(circle at 84% 78%, rgba(255, 107, 74, 0.08), transparent 14%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 251, 0.94));
}

.access-page-lite .faq-stack-highlight__content h2 {
  max-width: 22ch;
}

.access-page-lite .faq-stack-group__heading,
.access-page-lite .access-flow {
  max-width: 54rem;
}

.access-page-lite .faq-stack-intro {
  padding-top: 1.25rem;
}

.access-page-lite .faq-stack-group + .faq-stack-group {
  margin-top: 2.35rem;
}

.access-page-lite .faq-stack-group {
  position: relative;
  overflow: hidden;
  padding: 1.65rem 1.55rem;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 2.9rem, transparent 3rem),
    radial-gradient(circle, rgba(27, 184, 166, 0.1), transparent 68%),
    radial-gradient(circle, rgba(255, 107, 74, 0.06), transparent 68%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 251, 0.94));
  background-repeat: no-repeat;
  background-position: right 3.6rem bottom 3.4rem, right 1.4rem bottom 1.2rem, right 0.6rem bottom 0.4rem, right 2rem bottom 1.8rem, 0 0;
  background-size: 6.2rem 6.2rem, 6rem 6rem, 11rem 11rem, 9rem 9rem, auto;
  border: 1px solid var(--color-line);
  border-radius: 30px;
  box-shadow: 0 20px 44px rgba(20, 48, 74, 0.05);
}

.access-page-lite .faq-stack-group::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, rgba(27, 184, 166, 0.85), rgba(255, 107, 74, 0.72));
  pointer-events: none;
}

.access-page-lite .faq-stack-group__heading {
  margin-bottom: 1.15rem;
}

.access-page-lite .faq-stack-sections .container {
  display: grid;
  gap: 0;
}

.access-page-lite .faq-stack-group::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 1.35rem;
  background: linear-gradient(90deg, rgba(27, 184, 166, 0.18), rgba(20, 48, 74, 0.06), rgba(255, 107, 74, 0.16));
}

.access-page-lite .faq-stack-group:last-child::after {
  display: none;
}

.access-page-lite .faq-stack-group:nth-of-type(2) {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle, rgba(255, 255, 255, 0.68) 0 2.8rem, transparent 2.9rem),
    radial-gradient(circle, rgba(255, 107, 74, 0.1), transparent 68%),
    radial-gradient(circle, rgba(255, 223, 154, 0.08), transparent 68%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 244, 0.94));
  background-repeat: no-repeat;
  background-position: right 3.6rem bottom 3.4rem, right 1.4rem bottom 1.2rem, right 0.6rem bottom 0.4rem, right 2rem bottom 1.8rem, 0 0;
  background-size: 6.2rem 6.2rem, 5.8rem 5.8rem, 11rem 11rem, 9rem 9rem, auto;
}

.access-page-lite .faq-stack-group:nth-of-type(3) {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle, rgba(255, 255, 255, 0.68) 0 2.8rem, transparent 2.9rem),
    radial-gradient(circle, rgba(255, 223, 154, 0.18), transparent 68%),
    radial-gradient(circle, rgba(27, 184, 166, 0.08), transparent 68%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 244, 0.94));
  background-repeat: no-repeat;
  background-position: right 3.6rem bottom 3.4rem, right 1.4rem bottom 1.2rem, right 0.6rem bottom 0.4rem, right 2rem bottom 1.8rem, 0 0;
  background-size: 6.2rem 6.2rem, 5.8rem 5.8rem, 11rem 11rem, 9rem 9rem, auto;
}

.access-page-lite .faq-stack-group:nth-of-type(4) {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 2.8rem, transparent 2.9rem),
    radial-gradient(circle, rgba(27, 184, 166, 0.12), transparent 68%),
    radial-gradient(circle, rgba(255, 107, 74, 0.08), transparent 68%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 251, 0.94));
  background-repeat: no-repeat;
  background-position: right 3.6rem bottom 3.4rem, right 1.4rem bottom 1.2rem, right 0.6rem bottom 0.4rem, right 2rem bottom 1.8rem, 0 0;
  background-size: 6.2rem 6.2rem, 5.8rem 5.8rem, 11rem 11rem, 9rem 9rem, auto;
}

.access-page-lite .access-flow > .eyebrow:not(:first-child) {
  margin-top: 1.7rem;
}

.access-page-lite .access-flow .button {
  margin-top: 1.15rem;
}


.article-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.blog-page {
  padding-top: 1.1rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  gap: 1.5rem;
  align-items: start;
}

.blog-feed,
.blog-sidebar {
  display: grid;
  gap: 1.25rem;
}

.blog-sidebar {
  position: sticky;
  top: 6.5rem;
  align-self: start;
}

.blog-load-status {
  justify-self: center;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(223, 250, 246, 0.9);
  color: var(--color-secondary);
  font-size: 0.9rem;
  font-weight: 800;
}

.blog-load-trigger {
  width: 100%;
  height: 1px;
}

.blog-card,
.sidebar-card {
  border: 1px solid var(--color-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(20, 48, 74, 0.06);
}

.blog-card {
  overflow: hidden;
}

.blog-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(245, 251, 255, 0.92), rgba(255, 255, 255, 0.98));
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__content {
  display: grid;
  gap: 1rem;
  padding: 1.55rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-ink-soft);
}

.blog-meta span:not(.article-card__tag) {
  position: relative;
  padding-left: 0.8rem;
}

.blog-meta span:not(.article-card__tag)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: rgba(20, 48, 74, 0.24);
  transform: translateY(-50%);
}

.blog-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}

.blog-card h2 a {
  color: var(--color-ink);
}

.blog-detail-hero {
  padding-bottom: 1.4rem;
}

.blog-detail-hero__inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.72fr);
  gap: 1.8rem;
  align-items: stretch;
  padding: 1.9rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 20%, rgba(27, 184, 166, 0.12), transparent 23%),
    radial-gradient(circle at 92% 84%, rgba(255, 107, 74, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 251, 255, 0.88));
  box-shadow: 0 22px 42px rgba(20, 48, 74, 0.07);
}

.blog-detail-hero__inner::before,
.blog-detail-hero__inner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.blog-detail-hero__inner::before {
  top: -72px;
  right: -28px;
  width: 180px;
  height: 180px;
  background: rgba(27, 184, 166, 0.08);
}

.blog-detail-hero__inner::after {
  bottom: -92px;
  left: -30px;
  width: 210px;
  height: 210px;
  background: rgba(255, 107, 74, 0.08);
}

.blog-detail-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 0.95rem;
}

.blog-detail-hero__content h1 {
  max-width: 15ch;
  font-size: clamp(1.95rem, 3.35vw, 3.25rem);
  line-height: 1.03;
  margin-bottom: 0;
}

.blog-detail-hero__content p:last-child {
  max-width: 60ch;
}

.blog-detail-hero__content .blog-meta {
  width: fit-content;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(20, 48, 74, 0.05);
}

.blog-detail-hero__media {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 18%, rgba(27, 184, 166, 0.14), transparent 21%),
    radial-gradient(circle at 84% 82%, rgba(255, 107, 74, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 38px rgba(20, 48, 74, 0.08);
}

.blog-detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-detail-page {
  padding-top: 0.4rem;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.44fr);
  gap: 1.5rem;
  align-items: start;
}

.blog-detail-article,
.blog-detail-sidebar {
  display: grid;
  gap: 1.25rem;
}

.blog-detail-sidebar {
  position: sticky;
  top: 6.5rem;
  align-self: start;
}

.blog-detail-body,
.blog-detail-summary,
.blog-detail-nav {
  padding: 1.55rem;
  border: 1px solid var(--color-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(20, 48, 74, 0.06);
}

.blog-detail-body > *:first-child,
.blog-detail-summary > *:first-child,
.blog-detail-nav > *:first-child {
  margin-top: 0;
}

.blog-detail-body > *:last-child,
.blog-detail-summary > *:last-child,
.blog-detail-nav > *:last-child {
  margin-bottom: 0;
}

.blog-detail-body h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.85rem;
  font-size: clamp(1.55rem, 2vw, 2rem);
  scroll-margin-top: 8.5rem;
}

.blog-detail-body h3 {
  margin-top: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 1.1rem;
  scroll-margin-top: 8.5rem;
}

.blog-detail-body ul,
.blog-detail-body ol {
  padding-left: 1.1rem;
}

.blog-detail-body li + li {
  margin-top: 0.45rem;
}

.blog-detail-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.15rem;
}

.blog-detail-point {
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(20, 48, 74, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(245, 251, 255, 0.92), rgba(255, 255, 255, 0.96));
}

.blog-detail-point strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.blog-detail-pullquote {
  margin: 1.35rem 0;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--color-secondary);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(27, 184, 166, 0.12), rgba(255, 107, 74, 0.08));
}

.blog-detail-pullquote p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-ink);
}

.blog-detail-nav {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.95rem;
  padding: 1.35rem;
  border: 1px solid rgba(20, 48, 74, 0.07);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 18%, rgba(27, 184, 166, 0.16), transparent 18%),
    radial-gradient(circle at 92% 84%, rgba(255, 107, 74, 0.14), transparent 20%),
    radial-gradient(circle at 54% 12%, rgba(255, 209, 102, 0.12), transparent 16%),
    linear-gradient(90deg, rgba(223, 250, 246, 0.52), transparent 34%),
    linear-gradient(135deg, rgba(245, 251, 255, 0.94), rgba(255, 255, 255, 0.98));
  box-shadow:
    0 20px 38px rgba(20, 48, 74, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.blog-detail-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.35rem;
  width: 4.8rem;
  height: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-secondary), rgba(255, 209, 102, 0.9));
}

.blog-detail-nav::after {
  content: "";
  position: absolute;
  top: 0.95rem;
  right: 1.1rem;
  width: 7rem;
  height: 7rem;
  border-radius: 28px;
  border: 1px solid rgba(20, 48, 74, 0.05);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.04));
  transform: rotate(14deg);
  pointer-events: none;
}

.blog-detail-nav__intro {
  display: grid;
  gap: 0.3rem;
}

.blog-detail-nav__intro strong {
  max-width: 48ch;
  font-size: 0.96rem;
  line-height: 1.28;
}

.blog-detail-nav__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.8rem;
  width: 100%;
}

.blog-nav-link {
  display: grid;
  gap: 0.5rem;
  min-height: 116px;
  padding: 1.1rem 1.1rem 1.05rem;
  border-radius: 26px;
  border: 1px solid rgba(20, 48, 74, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96));
  box-shadow:
    0 16px 28px rgba(20, 48, 74, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.blog-nav-link:hover,
.blog-nav-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(20, 48, 74, 0.09);
  border-color: rgba(27, 184, 166, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(242, 250, 255, 0.98));
}

.blog-nav-link--prev::before,
.blog-nav-link--next::before {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--color-secondary);
  background: rgba(223, 250, 246, 0.88);
  box-shadow: inset 0 0 0 1px rgba(27, 184, 166, 0.08);
}

.blog-nav-link--prev::before {
  content: "←";
}

.blog-nav-link--next {
  text-align: right;
}

.blog-nav-link--next::before {
  content: "→";
  justify-self: end;
}

.blog-nav-link__label {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.blog-nav-link__title {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  line-height: 1.3;
  color: var(--color-ink);
}

.blog-detail-nav__actions .blog-nav-link.is-disabled,
.blog-detail-nav__actions .blog-nav-link[aria-disabled="true"] {
  pointer-events: none;
  color: rgba(20, 48, 74, 0.48);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(20, 48, 74, 0.08);
}

.blog-detail-nav__actions .blog-nav-link.is-disabled .blog-nav-link__label,
.blog-detail-nav__actions .blog-nav-link[aria-disabled="true"] .blog-nav-link__label {
  color: rgba(20, 48, 74, 0.38);
}

.blog-detail-nav__actions .blog-nav-link.is-disabled .blog-nav-link__title,
.blog-detail-nav__actions .blog-nav-link[aria-disabled="true"] .blog-nav-link__title {
  color: rgba(20, 48, 74, 0.48);
}

.blog-author {
  display: grid;
  gap: 1rem;
}

.blog-author__meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.blog-author__avatar {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(245, 251, 255, 0.92);
}

.blog-detail-share {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.blog-detail-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 48, 74, 0.1);
  background: rgba(245, 251, 255, 0.96);
  color: var(--color-ink);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.blog-detail-share a:hover,
.blog-detail-share a:focus-visible {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(38, 202, 186, 0.85), rgba(255, 117, 76, 0.85));
  color: #fff;
  transform: translateY(-2px);
}

.blog-detail-share svg {
  width: 1rem;
  height: 1rem;
}

.blog-detail-related {
  padding-top: 0;
}

.blog-search {
  position: relative;
}

.blog-search input {
  padding-right: 4rem;
  background: rgba(255, 255, 255, 0.92);
}

.blog-search button {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), #ff8a5f);
  color: #fff;
  transform: translateY(-50%);
  box-shadow: 0 12px 24px rgba(255, 107, 74, 0.22);
}

.blog-search svg {
  width: 1rem;
  height: 1rem;
}

.sidebar-card {
  padding: 1.35rem;
}

.sidebar-card h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.sidebar-card--accent {
  background: linear-gradient(135deg, rgba(27, 184, 166, 0.12), rgba(255, 107, 74, 0.1)), #fff;
}

.sidebar-card--accent p + .button {
  margin-top: 1rem;
}

.sidebar-list {
  display: grid;
  gap: 0.75rem;
}

.sidebar-list a,
.sidebar-post {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-ink);
}

.sidebar-list a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(27, 184, 166, 0.1);
  color: var(--color-secondary);
  font-size: 0.78rem;
  font-weight: 800;
}

.sidebar-list a[data-toc-level="h3"] {
  padding-left: 0.9rem;
}

.sidebar-posts {
  display: grid;
  gap: 0.95rem;
}

.sidebar-post {
  align-items: flex-start;
}

.sidebar-post img {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  border-radius: 18px;
  object-fit: cover;
  background: rgba(245, 251, 255, 0.96);
}

.sidebar-post strong,
.sidebar-post span {
  display: block;
}

.sidebar-post strong {
  font-size: 0.98rem;
  line-height: 1.3;
}

.sidebar-post span {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-ink-soft);
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.sidebar-tags a {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(223, 250, 246, 0.9);
  color: var(--color-secondary);
  font-size: 0.86rem;
  font-weight: 800;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
  isolation: isolate;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background:
    radial-gradient(circle at 14% 18%, rgba(27, 184, 166, 0.12), transparent 18%),
    radial-gradient(circle at 86% 20%, rgba(255, 209, 102, 0.12), transparent 16%),
    radial-gradient(circle at 78% 82%, rgba(255, 107, 74, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(237, 247, 255, 0.68), rgba(255, 255, 255, 0.96));
  border-top: 1px solid rgba(20, 48, 74, 0.06);
  border-bottom: 1px solid rgba(20, 48, 74, 0.06);
}

.testimonials-section::after {
  content: "";
  position: absolute;
  inset: 1.2rem auto auto 50%;
  z-index: -1;
  width: min(1180px, calc(100% - 2rem));
  height: calc(100% - 2.4rem);
  transform: translateX(-50%);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12)),
    transparent;
  pointer-events: none;
}

.testimonials-owl {
  position: relative;
}

.testimonials-owl .owl-stage {
  display: flex;
}

.testimonials-owl .owl-item {
  display: flex;
  height: auto;
}

.testimonials-owl .owl-item .testimonial-card {
  width: 100%;
  height: 100%;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem;
  border: 1px solid var(--color-line);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(27, 184, 166, 0.12), rgba(255, 255, 255, 0.96));
  box-shadow: 0 14px 32px rgba(20, 48, 74, 0.06);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2.5rem;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(255, 107, 74, 0.08);
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-card__stars {
  display: inline-flex;
  gap: 0.4rem;
}

.testimonial-card__stars span {
  width: 0.88rem;
  height: 0.88rem;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 71%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
}

.testimonial-card blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.55;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}

.testimonial-card__meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-card__avatar {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(27, 184, 166, 0.16), rgba(255, 209, 102, 0.4));
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-ink);
}

.testimonial-card__meta strong,
.testimonial-card__meta small {
  display: block;
}

.testimonial-card__meta strong {
  font-size: 1rem;
}

.testimonial-card__meta small {
  margin-top: 0.15rem;
  color: var(--color-ink-soft);
}

.testimonials-owl .owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.testimonials-owl .owl-nav button.owl-prev,
.testimonials-owl .owl-nav button.owl-next {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin: 0;
  border: 1px solid rgba(20, 48, 74, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  box-shadow: 0 10px 22px rgba(20, 48, 74, 0.06);
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.testimonials-owl .owl-nav button.owl-prev:hover,
.testimonials-owl .owl-nav button.owl-next:hover,
.testimonials-owl .owl-nav button.owl-prev:focus-visible,
.testimonials-owl .owl-nav button.owl-next:focus-visible {
  transform: translateY(-1px);
}

.testimonials-owl .owl-nav button.owl-prev.disabled,
.testimonials-owl .owl-nav button.owl-next.disabled,
.testimonials-owl .owl-nav button.owl-prev.is-disabled,
.testimonials-owl .owl-nav button.owl-next.is-disabled {
  color: rgba(77, 100, 121, 0.45);
  border-color: rgba(20, 48, 74, 0.08);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.testimonials-owl .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.testimonials-owl .owl-dots .owl-dot span {
  width: 0.72rem;
  height: 0.72rem;
  margin: 0;
  border-radius: 999px;
  background: rgba(20, 48, 74, 0.18);
  transition: background var(--transition), transform var(--transition);
}

.testimonials-owl .owl-dots .owl-dot.active span {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  transform: scale(1.15);
}


.article-card__tag {
  width: fit-content;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--color-secondary-soft);
  color: var(--color-secondary);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-card__tag--icon {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(27, 184, 166, 0.16), rgba(255, 209, 102, 0.4));
  color: var(--color-ink);
}

.article-card__tag--icon svg,
.article-card__tag--icon img {
  width: 1.5rem;
  height: 1.5rem;
}

.article-card__tag--icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.detail-list {
  display: grid;
  gap: 0.8rem;
}

.section--cta {
  padding-top: 0.65rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.12), rgba(27, 184, 166, 0.16)), #fff;
  border: 1px solid var(--color-line);
}

.site-footer {
  padding: 4rem 0 2rem;
  margin-top: 0;
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.74);
}

.subscribe-band {
  position: relative;
  padding: 0;
  background: var(--color-dark);
}

.subscribe-band > .container {
  width: 100%;
}

.subscribe-band__inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.98fr);
  grid-template-areas: "content form";
  gap: 1.9rem;
  align-items: center;
  padding:
    2.4rem
    max(1rem, calc((100vw - var(--container-width)) / 2 + 1rem))
    2.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 7% 82%, rgba(27, 184, 166, 0.16), transparent 19%),
    radial-gradient(circle at 92% 18%, rgba(255, 107, 74, 0.15), transparent 18%),
    linear-gradient(135deg, rgba(23, 56, 84, 0.98), rgba(16, 38, 59, 0.98));
  box-shadow: none;
}

.subscribe-band__inner::before,
.subscribe-band__inner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.subscribe-band__inner::before {
  bottom: -58px;
  left: -18px;
  width: 220px;
  height: 220px;
  background: rgba(27, 184, 166, 0.12);
}

.subscribe-band__inner::after {
  top: -44px;
  right: 86px;
  bottom: auto;
  left: auto;
  width: 150px;
  height: 150px;
  background: rgba(255, 107, 74, 0.12);
}

.subscribe-band__content,
.subscribe-form {
  position: relative;
  z-index: 1;
}

.subscribe-band__content {
  grid-area: content;
}

.subscribe-band__content .eyebrow {
  width: fit-content;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.subscribe-band__content h2 {
  max-width: 31ch;
  font-size: clamp(1.62rem, 2vw, 2.3rem);
  margin-bottom: 0.85rem;
  line-height: 1.02;
  color: #fff;
}

.subscribe-band__content p:last-child {
  max-width: 78ch;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.76);
}

.subscribe-form {
  grid-area: form;
  display: grid;
  gap: 0.7rem;
  align-items: start;
  align-self: center;
  justify-self: end;
  width: min(100%, 700px);
}

.subscribe-form__row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  padding: 0.55rem;
  border: 1px solid rgba(20, 48, 74, 0.06);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.94));
  box-shadow:
    0 18px 32px rgba(20, 48, 74, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.subscribe-form__row::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(27, 184, 166, 0.05), rgba(255, 107, 74, 0.04));
  pointer-events: none;
}

.subscribe-form__row input {
  position: relative;
  z-index: 1;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding-inline: 1.3rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  font-size: 0.96rem;
}

.subscribe-form__row input::placeholder {
  color: rgba(77, 100, 121, 0.72);
}

.subscribe-form .button {
  position: relative;
  z-index: 1;
  min-height: 52px;
  min-width: 154px;
  padding-inline: 1.45rem;
  border-radius: 999px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 14px 26px rgba(255, 107, 74, 0.22),
    inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}

.subscribe-form__success {
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(27, 184, 166, 0.2);
  border-radius: 16px;
  background: rgba(223, 250, 246, 0.72);
  color: var(--color-ink);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.brand--footer {
  margin-bottom: 1rem;
  color: #fff;
}

.brand--footer img {
  height: 46px;
  filter: brightness(0) invert(1);
}

.brand--footer small {
  color: rgba(255, 255, 255, 0.72);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease,
    box-shadow 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, rgba(38, 202, 186, 0.85), rgba(255, 117, 76, 0.85));
  box-shadow: 0 14px 28px rgba(7, 19, 41, 0.28);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 1rem;
  height: 1rem;
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #fff;
}

.site-footer ul {
  display: grid;
  gap: 0.8rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 1100px) {
  .site-header__inner {
    min-height: 76px;
    gap: 1rem;
  }

  .section-heading--split {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading__content {
    max-width: 100%;
  }

  .hero-freeway,
  .page-hero__grid,
  .faq-help-hero__inner,
  .faq-orbit-hero__panel,
  .faq-simple-hero__panel,
  .faq-stack-highlight,
  .faq-stack-support-panel,
  .coverage-detail-hero__grid,
  .split-layout--dark,
  .about-feature-card,
  .blog-layout,
  .blog-detail-layout,
  .blog-detail-hero__inner,
  .process-step__grid,
  .workflow-step__grid,
  .story-grid,
  .contact-layout,
  .faq-layout,
  .testimonials-grid,
  .footer-grid,
  .coverage-grid,
  .steps-grid,
  .article-grid,
  .gallery-strip,
  .detail-grid,
  .coverage-detail-columns {
    grid-template-columns: 1fr;
  }

  .hero__stats,
  .about-card-grid,
  .about-services-grid,
  .process-step__cards,
  .workflow-step__cards,
  .partner-network__stats,
  .visual-panel__grid,
  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-hero__row {
    grid-template-columns: 1fr;
  }

  .about-why-intro {
    grid-template-columns: 1fr;
  }

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

  .page-hero--contact .page-hero__grid,
  .contact-layout--expanded,
  .contact-form-panel__details,
  .contact-contact-grid,
  .contact-story-panel__meta,
  .contact-map-section__inner,
  .subscribe-band__inner {
    grid-template-columns: 1fr;
  }

  .hero-freeway,
  .page-hero__grid,
  .coverage-detail-hero__grid,
  .blog-detail-hero__inner {
    gap: 1.25rem;
  }

  .hero-freeway__content,
  .page-hero__content,
  .contact-info-panel,
  .contact-form-panel,
  .blog-detail-hero__content {
    max-width: 100%;
  }

  .hero-freeway__content h1,
  .blog-hero .page-hero__content h1,
  .page-hero--contact h1,
  .faq-stack-hero__inner h1 {
    max-width: 100%;
  }

  .coverage-detail-hero .page-hero__content h1,
  .coverage-detail-hero--auto .page-hero__content h1,
  .coverage-detail-hero--home .page-hero__content h1,
  .coverage-detail-hero--renters .page-hero__content h1,
  .coverage-detail-hero--motorcycle .page-hero__content h1,
  .coverage-detail-hero--business .page-hero__content h1 {
    max-width: 100%;
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .coverage-detail-band,
  .section--dark.coverage-detail-band {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .coverage-bind__columns {
    grid-template-columns: 1fr;
  }

  .blog-hero-post,
  .blog-hero-post--lead {
    grid-template-columns: 1fr;
  }

  .blog-hero-post__media {
    aspect-ratio: 16 / 10;
  }

  .subscribe-band__inner {
    gap: 1.25rem;
    padding:
      2rem
      max(1rem, calc((100vw - var(--container-width)) / 2 + 1rem))
      1.85rem;
    align-items: start;
    grid-template-areas:
      "content"
      "form";
  }

  .subscribe-form {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    align-self: end;
  }

  .blog-detail-nav__actions {
    grid-template-columns: 1fr;
  }

  .blog-nav-link--next {
    text-align: left;
  }

  .blog-nav-link--next::before {
    justify-self: start;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-detail-sidebar {
    position: static;
  }

  .faq-help-hero__mini-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

  .faq-help-hero__photo-card {
    position: static;
    width: min(100%, 16rem);
    margin-top: 1rem;
  }

  .faq-help-guides__grid,
  .faq-help-answers__grid,
  .faq-help-featured-guide,
  .faq-orbit-paths__grid,
  .faq-orbit-answers__grid,
  .faq-orbit-answer-stage__intro,
  .faq-orbit-spotlight,
  .faq-simple-answers__grid {
    grid-template-columns: 1fr;
  }

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

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

  .faq-help-support__panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .access-flow--split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .faq-orbit-hero__visual {
    min-height: auto;
  }

  .faq-orbit-visual-card,
  .faq-orbit-signal-card {
    position: static;
    width: 100%;
  }

  .faq-orbit-hero__visual {
    display: grid;
    gap: 1rem;
  }

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

  .coverage-compare__grid {
    grid-template-columns: 1fr;
  }

  .coverage-bind__intro {
    grid-template-columns: 1fr;
  }

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

  .policy-showcase__intro,
  .policy-showcase__grid {
    grid-template-columns: 1fr;
  }

  .policy-showcase__card,
  .policy-showcase__card--wide {
    grid-column: auto;
  }

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

  .partner-stat {
    padding: 1.1rem;
    border: 1px solid rgba(20, 48, 74, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
  }

  .partner-stat + .partner-stat {
    border-left: 1px solid rgba(20, 48, 74, 0.08);
  }

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

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

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-freeway__image-card {
    justify-content: center;
    padding-top: 1rem;
  }

  .hero-freeway__image-card img {
    margin-left: 0;
    max-width: 560px;
  }
}

@media (max-width: 820px) {
  .utility-bar {
    display: none;
  }

  .site-header__inner {
    min-height: 64px;
    gap: 0.6rem;
  }

  .brand--header-lockup img {
    height: 36px;
  }

  .site-header__mobile-tools {
    display: inline-flex;
  }

  .site-header__mobile-tools .lang-switcher {
    margin-left: 0;
    padding: 0.1rem;
    border-color: rgba(20, 48, 74, 0.12);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 18px rgba(20, 48, 74, 0.08);
  }

  .site-header__mobile-tools .lang-switcher a {
    min-width: 2.1rem;
    min-height: 1.85rem;
    padding: 0.14rem 0.5rem;
    font-size: 0.72rem;
    color: rgba(20, 48, 74, 0.62);
  }

  .site-header__mobile-tools .lang-switcher a.is-active {
    box-shadow:
      0 4px 10px rgba(20, 48, 74, 0.12),
      inset 0 0 0 1px rgba(20, 48, 74, 0.05);
  }

  .partner-network__brands {
    grid-template-columns: 1fr;
  }

  .partner-network__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .faq-help-category-grid {
    grid-template-columns: 1fr;
  }

  .section--faq .faq-layout {
    display: grid;
    gap: 1rem;
  }

  .section--faq .section-heading--with-action {
    display: contents;
  }

  .section--faq .section-heading--with-action > .eyebrow,
  .section--faq .section-heading--with-action > h2,
  .section--faq .section-heading--with-action > p {
    order: 1;
  }

  .section--faq .faq-list {
    order: 2;
  }

  .section--faq .section-heading__cta {
    order: 3;
    justify-self: start;
    margin-top: 0.25rem;
  }

  .section--insights .section-heading__actions {
    display: none;
  }

  .section--insights .section-mobile-cta {
    display: flex !important;
    width: 100%;
    margin-top: 0.25rem;
  }

  .section--insights .section-mobile-cta .section-heading__cta {
    display: inline-flex;
    width: auto;
    justify-self: start;
  }

  .faq-orbit-path-card-grid,
  .faq-orbit-resource-grid,
  .faq-simple-topic-grid,
  .faq-simple-guide-grid,
  .faq-stack-guide-grid,
  .access-card-grid {
    grid-template-columns: 1fr;
  }

  .partner-stat + .partner-stat {
    border-left: 0;
  }

  .partner-stat {
    padding: 0.88rem 0.72rem 0.8rem;
    border: 1px solid rgba(20, 48, 74, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 8px 18px rgba(20, 48, 74, 0.04);
  }

  .partner-stat strong {
    margin-bottom: 0.42rem;
    font-size: 1.02rem;
    line-height: 1.02;
  }

  .partner-stat h3 {
    margin-bottom: 0.42rem;
    font-size: 0.6rem;
    line-height: 1.12;
  }

  .partner-stat p {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .nav-toggle {
    display: inline-block;
    width: 36px;
    height: 36px;
    padding: 0.42rem;
    border-radius: 11px;
  }

  .nav-toggle span {
    height: 1.7px;
    margin: 2.5px 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--color-line);
    border-radius: 24px;
    background: rgba(255, 250, 244, 0.98);
    box-shadow: var(--color-shadow);
    max-height: calc(100vh - 120px);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top right;
    transition:
      opacity 220ms ease,
      transform 260ms ease,
      visibility 220ms ease;
  }

  .site-nav > * {
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 220ms ease,
      transform 260ms ease;
  }

  .site-nav > *:nth-child(1) { transition-delay: 20ms; }
  .site-nav > *:nth-child(2) { transition-delay: 40ms; }
  .site-nav > *:nth-child(3) { transition-delay: 60ms; }
  .site-nav > *:nth-child(4) { transition-delay: 80ms; }
  .site-nav > *:nth-child(5) { transition-delay: 100ms; }
  .site-nav > *:nth-child(6) { transition-delay: 120ms; }
  .site-nav > *:nth-child(7) { transition-delay: 140ms; }

  .nav-dropdown {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-dropdown__toggle {
    justify-content: space-between;
    width: 100%;
  }

  .site-nav > a:not(.button),
  .nav-dropdown__toggle {
    width: 100%;
    padding: 0.65rem 0.1rem;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown__menu {
    position: static;
    display: grid;
    overflow: hidden;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-6px);
    margin-top: 0;
    max-height: 0;
    padding: 0 0.55rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    transition:
      max-height 260ms ease,
      transform 220ms ease,
      padding 220ms ease,
      margin-top 220ms ease;
  }

  .nav-dropdown__menu a {
    opacity: 0;
    transform: translateY(6px);
    transition:
      opacity 180ms ease,
      transform 220ms ease,
      background var(--transition),
      color var(--transition);
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    max-height: 420px;
    margin-top: 0.6rem;
    padding: 0.55rem;
    transform: translateY(0);
  }

  .nav-dropdown.is-open .nav-dropdown__menu a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-dropdown.is-open > .nav-dropdown__toggle::after {
    transform: rotate(225deg) translateY(-1px);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav.is-open > * {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav .button--nav {
    width: 100%;
    justify-content: center;
    margin-top: 0.2rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero--freeway-inspired {
    padding-top: 1.8rem;
  }

  .hero-freeway__content h1,
  .blog-hero .page-hero__content h1,
  .page-hero--about h1,
  .page-hero--contact h1,
  .faq-stack-hero__inner h1,
  .coverage-detail-hero .page-hero__content h1,
  .coverage-detail-hero--auto .page-hero__content h1,
  .coverage-detail-hero--home .page-hero__content h1,
  .coverage-detail-hero--renters .page-hero__content h1,
  .coverage-detail-hero--motorcycle .page-hero__content h1,
  .coverage-detail-hero--business .page-hero__content h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 2.85rem);
    line-height: 1.05;
  }

  .hero__lead,
  .page-hero__content p,
  .coverage-detail-hero .page-hero__content > p,
  .blog-detail-hero__content p:last-child {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .page-hero--about .page-hero__grid {
    gap: 1rem;
  }

  .page-hero--about .page-hero__content {
    display: grid;
    gap: 0.75rem;
  }

  .page-hero--about .page-hero__content p {
    margin-top: 0;
  }

  .page-hero--about .hero__actions {
    margin-top: 0.55rem;
  }

  .blog-hero .page-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .blog-hero .page-hero__content {
    order: 1;
    width: 100%;
    max-width: 100%;
  }

  .blog-hero .page-hero__content h1 {
    max-width: 100%;
  }

  .blog-hero__visual {
    order: 2;
    width: 100%;
    margin-top: 0;
  }

  .about-hero-media {
    max-width: 30rem;
    margin-inline: auto;
  }

  .about-hero-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
  }

  .hero--freeway-inspired .product-selector {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .hero--freeway-inspired .product-card {
    align-content: center;
    min-height: 76px;
    padding: 0.45rem 0.3rem 0.4rem;
    gap: 0.2rem;
    border-radius: 16px;
    border: 2px solid transparent;
    box-shadow: inset 0 0 0 1px rgba(20, 48, 74, 0.08), 0 12px 24px rgba(20, 48, 74, 0.08);
  }

  .hero--freeway-inspired .product-card__icon {
    width: 32px;
    height: 32px;
  }

  .hero--freeway-inspired .product-card__icon svg {
    width: 26px;
    height: 26px;
  }

  .hero--freeway-inspired .product-card__icon img {
    width: 28px;
    height: 28px;
  }

  .hero--freeway-inspired .product-card span:last-child {
    font-size: 0.72rem;
    line-height: 1.1;
    margin-top: -0.05rem;
  }

  .hero--freeway-inspired .product-card--active,
  .hero--freeway-inspired .product-card[aria-selected="true"] {
    border-color: var(--color-primary);
    box-shadow: inset 0 0 0 1px rgba(255, 107, 74, 0.12), 0 12px 24px rgba(20, 48, 74, 0.08);
  }

  .hero--freeway-inspired .hero-form-row {
    grid-template-columns: minmax(0, 1fr) 138px;
    gap: 0.6rem;
    align-items: end;
  }

  .hero--freeway-inspired .form-field--zip input,
  .hero--freeway-inspired .form-field--submit .button {
    min-height: 58px;
  }

  .hero--freeway-inspired .form-field--zip input {
    border-radius: 14px;
    font-size: 0.96rem;
  }

  .hero--freeway-inspired .button--hero {
    font-size: 1rem;
    padding-inline: 1rem;
  }

  .hero--freeway-inspired .quote-card__note--hero {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .faq-help-search {
    grid-template-columns: 1fr;
  }

  .faq-orbit-search {
    grid-template-columns: 1fr;
  }

  .faq-simple-search {
    grid-template-columns: 1fr;
  }

  .faq-stack-search {
    grid-template-columns: 1fr;
  }

  .faq-help-support__panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-help-hero__content h1,
  .faq-help-featured-guide__content h2,
  .faq-help-support__content h2 {
    max-width: 100%;
  }

  .faq-help-hero__mini-card {
    width: 100%;
  }

  .faq-help-hero__photo-card {
    width: 100%;
  }

  .faq-help-hero__image {
    min-height: auto;
  }

  .faq-help-hero__image img {
    max-width: 28rem;
  }

  .faq-orbit-hero__content h1,
  .faq-orbit-spotlight__content h2,
  .faq-orbit-answer-stage__intro h2 {
    max-width: 100%;
  }

  .faq-simple-hero__content h1,
  .faq-simple-answer-panel__intro h2 {
    max-width: 100%;
  }

  .faq-stack-highlight__content h2 {
    max-width: 100%;
  }

  .faq-stack-group,
  .faq-stack-highlight,
  .faq-stack-support-panel {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .faq-stack-group__heading h2,
  .access-page-lite .faq-stack-group__heading h2,
  .access-page-lite .faq-stack-highlight__content h2 {
    max-width: 100%;
    font-size: clamp(1.4rem, 5.2vw, 1.9rem);
  }

  .faq-orbit-visual-card--main,
  .faq-orbit-visual-card--side {
    min-height: auto;
  }

  .faq-simple-hero__image img {
    max-width: 20rem;
  }

  .faq-stack-highlight__media img,
  .faq-stack-support-panel__media img {
    max-width: 18rem;
  }

  .faq-help-category-grid,
  .faq-help-guides__grid,
  .faq-help-answers__grid {
    grid-template-columns: 1fr;
  }

  .faq-help-sidebar-card,
  .faq-help-sidebar-visual {
    max-width: none;
  }

  .faq-help-support__media {
    width: 100%;
    flex-basis: auto;
  }

  .faq-help-search .button,
  .faq-help-support__panel .button {
    width: 100%;
  }

  .faq-help-hero__stats {
    grid-template-columns: 1fr;
  }

  .partner-network__panel {
    padding: 1.75rem 1rem;
    border-radius: 28px;
  }

  .partner-stat h3 {
    font-size: 0.6rem;
  }

  .coverage-detail-hero {
    padding-bottom: 0.75rem;
  }

  .coverage-detail-hero .hero__actions .button,
  .coverage-detail-cta .cta-panel__actions .button {
    width: 100%;
  }

  .coverage-detail-visual,
  .visual-panel,
  .content-panel,
  .cta-panel {
    padding: 1.3rem;
  }

  .coverage-detail-band,
  .section--dark.coverage-detail-band {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .policy-showcase__intro h2,
  .coverage-detail-band .visual-panel h2,
  .coverage-bind__intro h2 {
    font-size: clamp(1.65rem, 6vw, 2.15rem);
  }

  .policy-showcase__card-head {
    grid-template-columns: 2.85rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .policy-showcase__card .icon-badge {
    width: 2.85rem;
    height: 2.85rem;
  }

  .coverage-compare__intro,
  .coverage-compare__card,
  .coverage-bind__columns .content-panel,
  .coverage-bind__profiles .info-card {
    padding: 1.2rem;
  }

  .coverage-detail-visual__media img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .contact-form-panel,
  .contact-info-panel {
    padding: 1.45rem;
  }

  .contact-map-section__inner {
    padding: 1rem;
    border-radius: 26px;
  }

  .contact-map-section__info {
    padding: 1.2rem;
  }

  .contact-map-section__frame iframe {
    min-height: 320px;
  }

  .blog-detail-hero__content h1 {
    max-width: 100%;
    font-size: clamp(2rem, 7vw, 2.65rem);
  }

  .blog-detail-body,
  .blog-detail-summary,
  .blog-detail-nav {
    padding: 1.35rem;
  }

  .subscribe-band__inner {
    gap: 1rem;
    padding: 2rem 1rem 1.75rem;
  }

  .subscribe-band__content {
    align-self: start;
    width: 100%;
    max-width: 100%;
  }

  .subscribe-band__content h2 {
    max-width: none;
    font-size: clamp(1.24rem, 4.3vw, 1.58rem);
    line-height: 1.1;
    text-wrap: balance;
  }

  .subscribe-band__content p:last-child {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .subscribe-band__inner::before {
    width: 150px;
    height: 150px;
    left: -42px;
    bottom: -74px;
    opacity: 0.7;
  }

  .subscribe-band__inner::after {
    width: 110px;
    height: 110px;
    top: -32px;
    right: 22px;
    opacity: 0.65;
  }
}

@media (max-width: 640px) {
  .section,
  .page-hero {
    padding: 3.2rem 0;
  }

  .site-nav {
    left: 0.75rem;
    right: 0.75rem;
    top: calc(100% + 0.5rem);
    padding: 0.85rem;
    border-radius: 20px;
  }

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

  .blog-hero-post--lead {
    grid-template-columns: 1fr;
  }

  .blog-hero .page-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .blog-hero .page-hero__content {
    order: 1;
    width: 100%;
    max-width: 100%;
  }

  .blog-hero__visual {
    order: 2;
    width: 100%;
    margin-top: 0.15rem;
  }

  .blog-hero-post,
  .blog-hero-post--lead {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0.8rem;
  }

  .blog-hero-post__media {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .blog-hero-post__content {
    gap: 0.55rem;
  }

  .blog-hero-post__content h2,
  .blog-hero-post--lead .blog-hero-post__content h2 {
    font-size: 1rem;
    line-height: 1.14;
  }

  .hero__actions,
  .cta-panel__actions,
  .cta-inline {
    flex-direction: column;
    width: 100%;
  }

  .blog-nav-link {
    padding: 0.9rem 1rem;
  }

  .blog-nav-link__title {
    font-size: 0.88rem;
  }

  .hero__actions .button,
  .cta-panel__actions .button,
  .cta-inline .button {
    width: 100%;
  }

  .hero-freeway__content h1,
  .blog-hero .page-hero__content h1,
  .page-hero--about h1,
  .page-hero--contact h1,
  .faq-stack-hero__inner h1,
  .coverage-detail-hero .page-hero__content h1,
  .coverage-detail-hero--auto .page-hero__content h1,
  .coverage-detail-hero--home .page-hero__content h1,
  .coverage-detail-hero--renters .page-hero__content h1,
  .coverage-detail-hero--motorcycle .page-hero__content h1,
  .coverage-detail-hero--business .page-hero__content h1,
  .blog-detail-hero__content h1 {
    font-size: clamp(1.82rem, 10vw, 2.35rem);
    line-height: 1.06;
  }

  .hero__lead,
  .page-hero__content p,
  .coverage-detail-hero .page-hero__content > p {
    font-size: 0.94rem;
    margin-top: 0.9rem;
  }

  .page-hero--about {
    padding-top: 2.35rem;
    padding-bottom: 0.8rem;
  }

  .page-hero--about .page-hero__grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .page-hero--about .page-hero__content {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    max-width: 100%;
  }

  .page-hero--about h1 {
    max-width: 100%;
    font-size: clamp(1.38rem, 7.8vw, 1.8rem);
    line-height: 1.06;
  }

  .page-hero--about .page-hero__content p {
    max-width: 100%;
    margin-top: 0;
    font-size: 0.92rem;
  }

  .page-hero--about .hero__actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.6rem;
    margin-top: 0.45rem;
  }

  .page-hero--about .hero__actions .button {
    width: auto;
    min-height: 42px;
    padding: 0.75rem 0.9rem;
    font-size: 0.84rem;
    white-space: nowrap;
    flex: 1 1 0;
    justify-content: center;
  }

  .about-hero-media {
    order: 2;
    width: 100%;
    max-width: 100%;
    border-radius: 22px;
    margin-top: 0.55rem;
  }

  .about-hero-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
  }

  .visual-panel__grid {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .steps-grid--five {
    grid-template-columns: 1fr;
  }

  .steps-grid--five .step-card,
  .steps-grid--five .step-card:nth-child(4),
  .steps-grid--five .step-card:nth-child(5) {
    grid-column: auto;
  }

  .step-card {
    min-height: 0;
  }

  .step-card h3 {
    font-size: 1.45rem;
    line-height: 1.08;
  }

  .step-card p {
    font-size: 0.98rem;
  }

  .about-card-grid,
  .about-services-grid,
  .blog-detail-checklist,
  .process-step__cards,
  .workflow-step__cards,
  .contact-detail-list--two,
  .coverage-detail-checklist,
  .coverage-detail-visual__stats,
  .coverage-compare__cards {
    grid-template-columns: 1fr;
  }

  .contact-next-grid,
  .subscribe-form__row {
    grid-template-columns: 1fr;
  }

  .lead-form__grid--contact {
    grid-template-columns: 1fr;
  }

  .quote-card,
  .visual-panel,
  .content-panel,
  .cta-panel {
    padding: 1.5rem;
  }

  .faq-help-hero__image,
  .faq-help-sidebar-card,
  .faq-help-sidebar-visual,
  .faq-help-featured-guide,
  .faq-help-support__panel {
    padding: 1.4rem;
  }

  .faq-help-hero__image {
    min-height: auto;
  }

  .faq-help-hero__content h1,
  .faq-help-support__content h2 {
    max-width: 100%;
  }

  .hero-freeway__content h1 {
    max-width: none;
  }

  .partner-network__panel {
    padding: 1.3rem 0.28rem;
  }

  .partner-network__brands {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .partner-brand {
    display: grid;
    grid-template-columns: 1.95rem minmax(0, 1fr);
    gap: 0.45rem;
    min-width: 0;
    padding: 0.8rem 0.5rem;
    border-radius: 18px;
    align-items: center;
  }

  .partner-network__brands .partner-brand:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: min(100%, 18rem);
    justify-self: center;
  }

  .partner-brand__mark {
    width: 1.95rem;
    height: 1.95rem;
    border-radius: 12px;
  }

  .partner-brand__mark svg {
    width: 0.92rem;
    height: 0.92rem;
  }

  .partner-brand strong {
    font-size: 0.8rem;
    line-height: 1.04;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .partner-brand--progressive strong {
    font-size: 0.72rem;
    letter-spacing: -0.05em;
  }

  .partner-brand small {
    margin-top: 0.12rem;
    font-size: 0.48rem;
    letter-spacing: 0.07em;
    line-height: 1.15;
  }

  .coverage-detail-band,
  .section--dark.coverage-detail-band {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }

  .policy-showcase__grid {
    gap: 0.8rem;
  }

  .policy-showcase__card-head strong {
    font-size: 1.05rem;
  }

  .coverage-bind__intro {
    margin-bottom: 1.1rem;
  }

  .coverage-bind__columns .content-panel h2 {
    font-size: 0.98rem;
    line-height: 1.16;
    white-space: normal;
  }

  .contact-map-section__frame iframe {
    min-height: 280px;
  }

  .blog-card,
  .sidebar-card,
  .blog-detail-body,
  .blog-detail-summary,
  .blog-detail-nav {
    border-radius: 22px;
  }

  .brand--lockup img {
    height: 46px;
  }

  .site-header__mobile-tools {
    gap: 0.32rem;
  }

  .mobile-header-phone {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .site-header__mobile-tools .lang-switcher {
    padding: 0.08rem;
  }

  .site-header__mobile-tools .lang-switcher a {
    min-width: 1.9rem;
    min-height: 1.7rem;
    padding: 0.1rem 0.42rem;
    font-size: 0.68rem;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
    padding: 0.38rem;
    border-radius: 10px;
  }

  .hero-freeway__image-card img {
    max-width: 100%;
    border-radius: 24px;
  }

  .subscribe-band__inner {
    gap: 0.9rem;
    padding: 1.55rem 1rem 1.4rem;
  }

  .subscribe-band__content h2 {
    max-width: 21ch;
    font-size: clamp(1.18rem, 6vw, 1.5rem);
    line-height: 1.1;
    margin-bottom: 0.95rem;
  }

  .subscribe-band__content p:last-child {
    max-width: none;
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .subscribe-form {
    width: 100%;
    margin-top: 0.2rem;
  }

  .subscribe-form__row {
    padding: 0.4rem;
    border-radius: 24px;
  }

  .subscribe-form__row input {
    min-height: 46px;
    padding-inline: 1rem;
    font-size: 0.92rem;
  }

  .subscribe-form .button {
    min-height: 46px;
    min-width: 0;
    font-size: 0.82rem;
  }

  .subscribe-form__row .button {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    padding-top: 3rem;
  }

  .footer-grid > div:first-child {
    display: contents;
  }

  .footer-grid > div:first-child .brand--footer,
  .footer-grid > div:first-child > p {
    order: 1;
  }

  .footer-grid > div:first-child .brand--footer {
    margin-bottom: 0.45rem;
  }

  .footer-grid > div:first-child > p {
    margin-top: 0;
  }

  .footer-grid > div:not(:first-child) {
    order: 2;
  }

  .footer-social {
    order: 3;
    margin-top: 0.35rem;
  }
}
