:root {
  --pink-main: #e20082;
  --pink-dark: #a01e69;
  --pink-middle: #ff58b8;
  --pink-sec: #f6d8ea;
  --pink-back: #f6ecf2;
  --black-main: #1d1e29;
  --black: #161a25;
  --gray-dark: #7d6c76;
  --gray-light: #9f9099;
  --gray-55: #898c90;
  --white-main: #ffffff;
  --radius-card: 30px;
  --radius-pill: 100px;
  --radius-input: 9px;
  --shadow-soft: 0 8px 24px rgba(160, 30, 105, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  color: var(--black-main);
  background: var(--white-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  color: var(--black-main);
  letter-spacing: 0.18px;
}

a { color: inherit; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--pink-main);
  outline-offset: 3px;
  border-radius: 4px;
}

img { max-width: 100%; height: auto; }

/* Container */
.container-main {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 640px) { .container-main { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 1024px) { .container-main { padding-left: 72px; padding-right: 72px; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Raleway", Helvetica, sans-serif;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 12px 30px;
  font-size: 18px;
  line-height: 1.2;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--pink-main);
  color: #fff;
}
.btn-primary:hover { background: var(--pink-dark); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-outline-pink {
  background: transparent;
  color: var(--pink-main);
  border-color: var(--pink-main);
}
.btn-outline-pink:hover { background: var(--pink-main); color: #fff; }
.prose-cta--actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.prose-cta--actions .btn { white-space: nowrap; }
.prose-page .prose-cta--actions .btn-outline-pink { color: var(--pink-main); }
.prose-page .prose-cta--actions .btn-outline-pink:hover { color: #fff; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid #f3e6ee;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px; margin: 0 auto;
  gap: 16px;
}
@media (min-width: 1024px) {
  .site-header__inner { padding: 18px 32px; }
}
.site-header__logo { flex: 0 0 auto; }
.site-header__logo img { height: 40px; width: auto; }
.site-header__nav { display: none; gap: 18px; align-items: center; }
.site-header__nav a {
  color: #a01e69;
  text-decoration: none;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.55;
  transition: color .2s ease-in-out;
  white-space: nowrap;
}
.site-header__nav a:hover { color: #e20082; }
@media (min-width: 1024px) {
  .site-header__nav { display: flex; }
}
@media (min-width: 1200px) {
  .site-header__inner { padding-left: 48px; padding-right: 48px; }
  .site-header__nav { gap: 24px; }
  .site-header__nav a { font-size: 17px; }
}

.site-header__hamburger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
  color: var(--pink-dark);
}
@media (min-width: 1024px) { .site-header__hamburger { display: none; } }
.site-header__hamburger span {
  display: block; width: 24px; height: 2.5px; background: currentColor;
  position: relative; transition: transform .2s, opacity .2s;
}
.site-header__hamburger span::before,
.site-header__hamburger span::after {
  content: ""; position: absolute; left: 0; width: 24px; height: 2.5px; background: currentColor;
  transition: transform .2s;
}
.site-header__hamburger span::before { top: -8px; }
.site-header__hamburger span::after  { top:  8px; }
.site-header__hamburger[aria-expanded="true"] span { background: transparent; }
.site-header__hamburger[aria-expanded="true"] span::before { transform: translateY(8px) rotate(45deg); }
.site-header__hamburger[aria-expanded="true"] span::after  { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 49;
  background: #fff;
  padding: 96px 24px 24px;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a, .mobile-menu nav button {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #f3e6ee;
  text-decoration: none;
  color: var(--black-main);
  font-size: 18px;
  font-weight: 500;
  background: transparent; border-left: 0; border-right: 0; border-top: 0;
  width: 100%; text-align: left; cursor: pointer;
  font-family: inherit;
}
.mobile-menu .mobile-menu__cta { margin-top: 24px; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* Footer */
.site-footer {
  background: var(--pink-back, #f6ecf2);
  color: var(--black-main, #1d1e29);
  padding: 64px 24px 48px;
  margin-top: 80px;
  font-family: 'Raleway', Arial, sans-serif;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 32px;
}
@media (min-width: 900px) {
  .site-footer__top { grid-template-columns: 1.2fr 2fr; gap: 56px; }
}
.site-footer__brand { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__logo { display: inline-block; margin-bottom: 18px; }
.site-footer__logo img { display: block; height: 40px; width: auto; }
.site-footer__tagline {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--black-main, #1d1e29);
}
.site-footer__agency {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--black-main, #1d1e29);
  max-width: 320px;
}
.site-footer__social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-direction: row;
}
.site-footer__social li { margin: 0; }
.site-footer__social a {
  display: inline-flex;
  transition: opacity .2s;
}
.site-footer__social a:hover { opacity: 0.8; }
.site-footer__social img { display: block; width: 40px; height: 40px; }
.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 600px) {
  .site-footer__cols { grid-template-columns: repeat(3, 1fr); }
}
.site-footer__cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__cols a {
  display: inline-flex;
  align-items: center;
  color: var(--pink-main, #e20082);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transition: color .2s;
}
@media (max-width: 899px) {
  .site-footer__cols ul { gap: 4px; }
  .site-footer__cols a {
    min-height: 44px;
    padding: 10px 0;
  }
  .site-footer__cta a,
  .site-footer__legal-block a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 0;
  }
}
.site-footer__cols a:hover { color: var(--pink-dark, #a01e69); text-decoration: underline; }
.site-footer__contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 13px;
  line-height: 1.6;
  color: var(--black-main, #1d1e29);
}
@media (min-width: 768px) {
  .site-footer__contact { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
}
.site-footer__contact p { margin: 0; }
.site-footer__cta a {
  color: var(--pink-main, #e20082);
  text-decoration: none;
  font-weight: 600;
}
.site-footer__cta a:hover { color: var(--pink-dark, #a01e69); text-decoration: underline; }
.site-footer__legal {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 48px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--black-main, #1d1e29);
}
@media (min-width: 768px) {
  .site-footer__legal { grid-template-columns: 1fr 1fr; }
}
.site-footer__legal-col { display: flex; flex-direction: column; }
.site-footer__legal-block {
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.site-footer__legal-col > .site-footer__legal-block:first-child { border-top: 0; padding-top: 28px; }
.site-footer__legal-block h3 {
  color: var(--black-main, #1d1e29);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 14px;
  text-transform: none;
  letter-spacing: 0;
}
.site-footer__legal-block p { margin: 0 0 14px; }
.site-footer__legal-block p:last-child { margin-bottom: 0; }
.site-footer__legal-block a { color: var(--pink-main, #e20082); text-decoration: none; }
.site-footer__legal-block a:hover { text-decoration: underline; }
.site-footer__date { color: var(--black-main, #1d1e29); font-size: 12px; }

/* Generic prose page */
.prose-page { max-width: 820px; margin: 0 auto; padding: 56px 24px 80px; }
.prose-page h1 {
  font-size: clamp(32px, 5vw, 48px); font-weight: 700; line-height: 1.2;
  margin-bottom: 16px;
}
.prose-page > p:first-of-type {
  font-size: 18px; color: var(--gray-dark); margin-bottom: 32px;
}
.prose-page h2 {
  font-size: clamp(22px, 3vw, 28px); font-weight: 700; margin-top: 40px; margin-bottom: 12px;
  color: var(--pink-dark);
}
.prose-page h3 {
  font-size: 20px; font-weight: 600; margin-top: 28px; margin-bottom: 10px;
}
.prose-page p {
  font-size: 18px; line-height: 1.55; color: #2b2c39; margin-bottom: 16px;
}
.prose-page ul, .prose-page ol { padding-left: 24px; margin-bottom: 16px; }
.prose-page li { line-height: 1.7; margin-bottom: 8px; }
.prose-page a:not(.btn) { color: var(--pink-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose-page a.btn { text-decoration: none; color: #fff; }
.prose-page hr { border: 0; border-top: 1px solid #efe4ec; margin: 40px 0; }
.prose-page img { border-radius: 16px; margin: 24px 0; }

/* Flyer PDF viewer */
.flyer-viewer { max-width: 920px; margin: 0 auto; padding: 24px 24px 80px; }
.flyer-viewer__actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.flyer-viewer__actions .btn { font-size: 16px; padding: 10px 24px; }
.flyer-viewer__frame {
  width: 100%;
  height: min(85vh, 1100px);
  border: 1px solid #efe4ec;
  border-radius: 16px;
  overflow: hidden;
  background: var(--pink-back);
  box-shadow: var(--shadow-soft);
}
.flyer-viewer__frame object,
.flyer-viewer__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.flyer-viewer__fallback { display: none; }
@media (max-width: 720px) {
  .flyer-viewer__frame { display: none; }
  .flyer-viewer__fallback {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 18px; padding: 48px 24px; text-align: center;
    background: var(--pink-back); border-radius: 16px;
    box-shadow: var(--shadow-soft);
  }
  .flyer-viewer__thumb {
    width: 120px; height: 156px; border-radius: 8px; background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--pink-dark); font-size: 22px; letter-spacing: 2px;
    box-shadow: 0 6px 18px rgba(160, 30, 105, 0.12);
    border: 1px solid #efe4ec;
  }
  .flyer-viewer__fallback p { margin: 0; color: var(--gray-dark); font-size: 16px; }
}

/* Section spacing */
.section { padding: 64px 0; }
@media (min-width: 1024px) { .section { padding: 96px 0; } }

/* Hero (homepage) */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 32px 24px;
  max-width: 1200px; margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(320px, 522px) minmax(0, 1fr);
    gap: 40px;
    padding: 56px 72px;
  }
}
.hero-card { border-radius: var(--radius-card); padding: 32px; }
@media (min-width: 1024px) { .hero-card { padding: 40px; } }
.hero-form-card { background: var(--pink-main); color: #fff; }
.hero-content-card { background: var(--pink-back); display: flex; flex-direction: column; justify-content: space-between; min-height: 420px; }
@media (min-width: 1024px) { .hero-content-card { min-height: 639px; } }
.hero-h1 {
  font-size: clamp(40px, 6vw, 58px);
  line-height: 1.1; font-weight: 600; margin-bottom: 24px;
  max-width: 587px;
}
.hero-h1 .accent { color: var(--pink-main); }
.hero-lede { font-size: clamp(18px, 2vw, 22px); line-height: 1.4; max-width: 600px; }
.hero-image { display: flex; justify-content: flex-end; }
.hero-image img { max-width: 411px; width: 100%; height: auto; }

.hero-form label { display: block; color: #fff; font-weight: 500; font-size: 18px; margin-bottom: 6px; }
.hero-form .field { display: block; width: 100%; height: 48px; padding: 0 14px; border-radius: var(--radius-input); border: 0; background: var(--pink-sec); color: var(--black-main); font-family: inherit; font-size: 16px; appearance: none; }
.hero-form .field:first-of-type { background: #f6d7e9; }
.hero-form input[type="date"] { background: var(--pink-sec); }
.hero-form .field-row { display: flex; flex-direction: column; gap: 16px; }
.hero-form .radio-row { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.hero-form .radio-row label { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 500; cursor: pointer; }
.hero-form input[type="radio"] { width: 18px; height: 18px; accent-color: #fff; }
.hero-form small { display: block; color: rgba(255,255,255,0.85); font-size: 14px; margin-top: 6px; line-height: 1.4; }
.hero-form .btn { width: 100%; font-size: 22px; padding: 14px 30px; }

/* Logo strip */
.logo-strip { padding: 48px 24px; max-width: 1200px; margin: 0 auto; }
.logo-strip h2 {
  text-align: center;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--black-main);
  margin-bottom: 32px;
}
@media (min-width: 640px) { .logo-strip h2 { font-size: 32px; } }
.logo-strip__divider { height: 1px; background: var(--gray-light); }
.logo-strip__marquee {
  overflow: hidden;
  position: relative;
  padding: 24px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.logo-strip__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: logo-scroll 40s linear infinite;
}
.logo-strip__marquee:hover .logo-strip__track,
.logo-strip__marquee:focus-within .logo-strip__track { animation-play-state: paused; }
.logo-strip__track img { height: 48px; width: auto; max-width: none; opacity: .85; flex-shrink: 0; display: block; }
@keyframes logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-strip__track { animation: none; }
}

/* Feature cards (How it works, Key benefits, Coverage) */
.feature-grid {
  display: grid; gap: 24px; padding: 0 24px;
  grid-template-columns: 1fr;
  max-width: 1200px; margin: 0 auto;
}
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  background: #fff; border: 1px solid #f3e6ee; border-radius: 24px;
  padding: 32px; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 16px;
}
.feature-card .badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--pink-back); color: var(--pink-dark);
  font-weight: 700; font-size: 22px;
}
.feature-card h3 { font-size: 22px; font-weight: 700; }
.feature-card p { color: var(--gray-dark); font-size: 16px; line-height: 1.6; }

/* Section heading */
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 48px; padding: 0 24px; }
.section-heading h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.2; margin-bottom: 14px; }
.section-heading p { color: var(--gray-dark); font-size: 18px; line-height: 1.6; }

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--pink-back, #f6ecf2);
  border-radius: var(--radius-card);
  padding: 96px 32px;
  max-width: 1200px;
  margin: 64px auto;
  text-align: center;
}
.cta-band__title {
  position: relative;
  z-index: 2;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 57px;
  margin: 0 0 36px;
}
.cta-band__title-dark { color: var(--black-main, #1d1e29); }
.cta-band__title-pink { color: var(--pink-main, #e20082); }
.cta-band__btn {
  position: relative;
  z-index: 2;
  background: var(--pink-main, #e20082);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 18px 44px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  transition: background 0.18s ease;
}
.cta-band__btn:hover { background: var(--pink-dark, #a01e69); color: #fff; }
.cta-band__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
/* Left side decorations */
.cta-band__deco--897-l   { top: 22%; left: 6%;  width: 56px; }
.cta-band__deco--648-l1  { top: 18%; left: 18%; width: 22px; }
.cta-band__deco--648-l2  { top: 64%; left: 11%; width: 18px; }
.cta-band__deco--684-l   { top: 50%; left: 22%; width: 38px; }
.cta-band__deco--903-l   { bottom: 16%; left: 7%; width: 44px; }
.cta-band__deco--940     { top: 12%; left: 32%; width: 28px; }
/* Right side decorations */
.cta-band__deco--678     { top: 14%; right: 30%; width: 26px; }
.cta-band__deco--905     { top: 20%; right: 6%;  width: 56px; }
.cta-band__deco--648-r1  { top: 28%; right: 18%; width: 22px; }
.cta-band__deco--648-r2  { top: 70%; right: 12%; width: 18px; }
.cta-band__deco--684-r   { top: 52%; right: 22%; width: 38px; }
.cta-band__deco--903-r   { bottom: 18%; right: 7%; width: 44px; }
@media (max-width: 768px) {
  .cta-band { padding: 56px 20px; margin: 32px auto; }
  .cta-band__deco--897-l, .cta-band__deco--905, .cta-band__deco--903-l, .cta-band__deco--903-r { width: 32px; }
  .cta-band__deco--684-l, .cta-band__deco--684-r { width: 24px; }
  .cta-band__deco--940, .cta-band__deco--678, .cta-band__deco--648-l1, .cta-band__deco--648-l2, .cta-band__deco--648-r1, .cta-band__deco--648-r2 { display: none; }
}

/* Other Auto Rental Options */
.other-options {
  position: relative;
  overflow: hidden;
  background: var(--pink-back, #f6ecf2);
  border-radius: var(--radius-card);
  padding: 72px 32px;
  max-width: 1200px;
  margin: 64px auto;
  text-align: center;
}
.other-options__eyebrow {
  position: relative;
  z-index: 2;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-main, #e20082);
  margin: 0 0 12px;
}
.other-options__title {
  position: relative;
  z-index: 2;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 57px;
  color: var(--black-main, #1d1e29);
  margin: 0 0 40px;
}
.other-options__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .other-options__grid { grid-template-columns: repeat(2, 1fr); }
}
.other-options__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  background-color: #ffffff;
  border-radius: 30px;
  border: 2px solid #ff58b8;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.other-options__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(226, 0, 130, 0.16);
}
.other-options__kicker {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink-main, #e20082);
}
.other-options__card-title {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: var(--black-main, #1d1e29);
  margin: 0;
}
.other-options__desc {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black-main, #1d1e29);
  margin: 0;
}
.other-options__link {
  margin-top: auto;
  padding-top: 8px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--pink-main, #e20082);
}
.other-options__card:hover .other-options__link { color: var(--pink-dark, #a01e69); }
.other-options__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.other-options__deco--897-l  { top: 20%; left: 6%;  width: 50px; }
.other-options__deco--648-l1 { top: 16%; left: 18%; width: 20px; }
.other-options__deco--684-l  { bottom: 18%; left: 9%; width: 34px; }
.other-options__deco--903-r  { top: 18%; right: 7%; width: 42px; }
.other-options__deco--905    { bottom: 16%; right: 6%; width: 50px; }
.other-options__deco--648-r1 { top: 22%; right: 19%; width: 20px; }
@media (max-width: 768px) {
  .other-options { padding: 48px 20px; margin: 32px auto; }
  .other-options__title { font-size: 32px; line-height: 38px; }
  .other-options__deco--897-l, .other-options__deco--905, .other-options__deco--903-r { width: 30px; }
  .other-options__deco--684-l { width: 22px; }
  .other-options__deco--648-l1, .other-options__deco--648-r1 { display: none; }
}

/* Testimonial card */
.testimonial-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--pink-main);
  border-radius: 32px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  color: #fff;
}
.testimonial-card__caption {
  color: #fff;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 16px;
  opacity: 0.95;
}
.testimonial-card__quote {
  color: #fff;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}
.testimonial-card__rating {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-card__rating img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
}
@media (max-width: 768px) {
  .testimonial-card {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 28px;
    border-radius: 24px;
  }
  .testimonial-card__rating img { max-width: 280px; margin: 0 auto; }
}

/* What we cover */
.what-we-cover__title {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black-main, #1d1e29);
  margin: 0 auto 48px;
  max-width: 1200px;
  padding: 0 24px;
  text-align: center;
}
.what-we-cover__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .what-we-cover__grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.what-we-cover__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  border-radius: 30px;
  background-color: #ffffff;
  background-position: center center;
  --t396-borderwidth: 2px;
  --t396-bordercolor: #ff58b8;
  border-width: var(--t396-borderwidth, 0);
  border-style: var(--t396-borderstyle, solid);
  border-color: var(--t396-bordercolor, #ff58b8);
  padding: 32px 28px;
}
.what-we-cover__icon { width: 120px; height: 120px; display: block; }
.what-we-cover__card h3 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black-main, #1d1e29);
  margin: 0;
}
.what-we-cover__card p {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-dark);
  margin: 0;
}

/* FAQ page */
.faq-page { max-width: 1120px; margin: 0 auto; padding: 40px 24px 80px; }

/* FAQ hero banner — light pink rounded card with signpost illustration */
.faq-hero {
  position: relative;
  background: #fce7ee;
  border-radius: 28px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 200px;
  overflow: hidden;
  margin: 0 auto 56px;
}
.faq-hero__title {
  color: #e20082;
  font-size: 40px;
  font-family: 'Raleway', Arial, sans-serif;
  line-height: 57px;
  font-weight: 600;
  margin: 0;
  max-width: 60%;
}
.faq-hero__art {
  flex-shrink: 0;
  width: clamp(160px, 22vw, 280px);
  height: auto;
  display: block;
}
@media (max-width: 760px) {
  .faq-hero { padding: 32px 28px; min-height: 0; gap: 12px; }
  .faq-hero__title { font-size: 28px; max-width: 65%; }
  .faq-hero__art { width: 110px; }
}
@media (max-width: 480px) {
  .faq-hero { padding: 24px 20px; }
  .faq-hero__title { font-size: 22px; max-width: 60%; }
  .faq-hero__art { width: 90px; }
}

/* FAQ accordion */
.faq-list { width: 100%; }
.faq-item { border-bottom: 1px solid #efe4ec; }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  padding: 22px 0;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700; font-size: 18px; line-height: 1.4;
  color: var(--black-main);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 26px; line-height: 1; color: var(--pink-main);
  flex-shrink: 0; transition: transform .2s; margin-top: 2px;
}
.faq-item[open] summary::after { content: "\2212"; }
/* FAQ page (/faq): always-open static layout, no accordion toggle */
.faq-page .faq-q {
  margin: 0;
  padding: 22px 0 0;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700; font-size: 18px; line-height: 1.4;
  color: var(--black-main);
}
.faq-item__body { padding: 4px 0 24px; color: #2b2c39; font-size: 16px; line-height: 1.7; }
.faq-item__body p { margin: 0 0 14px; }
.faq-item__body p:last-child { margin-bottom: 0; }
.faq-item__body ul, .faq-item__body ol { margin: 0 0 14px; padding-left: 24px; }
.faq-item__body li { margin-bottom: 6px; line-height: 1.65; }
.faq-item__body ul.faq-bullets { list-style: disc outside; }
.faq-item__body ul.faq-bullets > li { display: list-item; }
.faq-item__body ol.faq-numbers { list-style: decimal outside; }
.faq-item__body ol.faq-numbers > li { display: list-item; }
.faq-item__body h3 {
  font-size: 16px; font-weight: 700;
  margin: 18px 0 10px;
  color: var(--pink-dark);
  font-family: 'Raleway', Arial, sans-serif;
}
.faq-item__body a { color: var(--pink-dark); text-decoration: underline; text-underline-offset: 3px; }
.faq-item__body a:hover { color: var(--pink-main); }
.faq-item__body strong { color: var(--black-main); font-weight: 700; }

/* FAQ closing CTA — hot pink banner with sparkle decorations */
.faq-cta {
  position: relative;
  margin-top: 56px;
  background: #e20082;
  border-radius: 28px;
  padding: 64px 24px 56px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.faq-cta__title {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 28px;
  position: relative;
  z-index: 2;
}
.faq-cta__btn {
  position: relative;
  z-index: 2;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 14px 44px;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}
.faq-cta__btn:hover { background: #fff; color: #e20082; }

/* Decorative sparkles — recolor SVGs to white via filter */
.faq-cta__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}
.faq-cta__deco img {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.faq-cta__deco--1 { top: 26px;  left: 36px;  width: 48px; height: 50px; }
.faq-cta__deco--2 { top: 44px;  left: 220px; width: 18px; height: 22px; opacity: .85; }
.faq-cta__deco--3 { bottom: 24px; left: 90px; width: 30px; height: 36px; }
.faq-cta__deco--4 { top: 18px;   right: 36px; width: 36px; height: 36px; }
.faq-cta__deco--5 { top: 38px;   right: 220px; width: 28px; height: 28px; opacity: .85; }
.faq-cta__deco--6 { bottom: 30px; right: 60px; width: 32px; height: 32px; }
.faq-cta__deco--7 { bottom: 50px; right: 200px; width: 36px; height: 36px; opacity: .85; }
.faq-cta__deco--8 { bottom: 18px; left: 50%;   width: 18px; height: 22px; transform: translateX(-280px); opacity: .8; }

@media (max-width: 760px) {
  .faq-cta { padding: 48px 20px 44px; }
  .faq-cta__deco--2, .faq-cta__deco--5, .faq-cta__deco--7, .faq-cta__deco--8 { display: none; }
  .faq-cta__deco--1 { top: 14px; left: 14px; width: 32px; height: 34px; }
  .faq-cta__deco--3 { bottom: 14px; left: 18px; width: 22px; height: 26px; }
  .faq-cta__deco--4 { top: 14px; right: 14px; width: 26px; height: 26px; }
  .faq-cta__deco--6 { bottom: 14px; right: 18px; width: 22px; height: 22px; }
}

/* ---- Claims page ------------------------------------------------------ */
.claims-page { max-width: 1120px; margin: 0 auto; padding: 40px 24px 80px; }

/* Hero */
.claims-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: center;
  padding: 56px 56px 56px;
  border-radius: 30px;
  background-color: #f9ecf3;
}
.claims-hero__eyebrow {
  color: #e20082;
  font-size: 48px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: none;
}
.claims-hero__title {
  color: #1d1e29;
  font-size: 22px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 400;
  line-height: 31px;
  margin: 0 0 18px;
}
.claims-hero__body {
  color: #1d1e29;
  font-size: 22px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 400;
  line-height: 31px;
  margin: 0;
}
.claims-hero__art {
  width: 100%;
  max-width: 320px;
  height: auto;
  justify-self: end;
}
@media (max-width: 860px) {
  .claims-hero { grid-template-columns: 1fr; gap: 24px; padding: 40px 24px; }
  .claims-hero__art { max-width: 220px; justify-self: center; order: -1; }
}

/* Section titles */
.claims-section__title {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  margin: 0 0 48px;
  color: var(--black-main, #1d1e29);
}
.claims-section__title--light { color: #fff; }

/* Claims process */
.claims-process { padding: 56px 0 24px; }
.claims-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.claim-step {
  background: #ffffff;
  border: 1.5px solid #f3b6d2;
  border-radius: 24px;
  padding: 32px 32px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.claim-step:first-child {
  grid-column: 1 / -1;
  display: block;
  position: relative;
  padding-left: 184px;
}
.claim-step__icon {
  width: 120px;
  height: 120px;
  margin-bottom: 16px;
}
.claim-step:first-child .claim-step__icon { margin: 0; position: absolute; left: 32px; top: 32px; }
.claim-step__title {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1d1e29;
  margin: 0 0 6px;
  line-height: 1.25;
}
.claim-step p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #2b2c39;
  margin: 0 0 14px;
  text-align: left;
}
.claim-step__list {
  text-align: left;
  margin: 0 0 8px;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
  color: #2b2c39;
  list-style: disc outside;
}
.claim-step__list li { display: list-item; }
.claim-step__list li { margin-bottom: 8px; }
.claim-step a { color: var(--pink-dark, #a01e69); text-decoration: underline; text-underline-offset: 3px; }
.claim-step a:hover { color: var(--pink-main, #e20082); }
.claim-step__btn {
  display: inline-block;
  margin-top: 16px;
  background: var(--pink-main, #e20082);
  color: #fff !important;
  border-radius: 999px;
  padding: 12px 36px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none !important;
  transition: background .18s ease;
}
.claim-step__btn:hover { background: var(--pink-dark, #a01e69); color: #fff; }
.claims-steps__cta { text-align: center; margin-top: 32px; }
@media (max-width: 860px) {
  .claims-steps { grid-template-columns: 1fr; }
  .claims-page,
  .claims-page *,
  .claims-page *::before,
  .claims-page *::after { box-sizing: border-box; }
  .claim-step { min-width: 0; }
  .claim-step:first-child {
    display: flex;
    padding-left: 32px;
  }
  .claim-step:first-child .claim-step__icon {
    position: static;
    margin-bottom: 16px;
  }
  .claim-step p,
  .claim-step__list,
  .claim-step__title { overflow-wrap: anywhere; }
}
@media (max-width: 480px) {
  .claims-page { padding: 24px 16px 64px; }
  .claims-hero { padding: 32px 20px; }
  .claims-hero__eyebrow {
    font-size: 38px;
    line-height: 1.2;
  }
  .claim-step { padding: 24px 20px; }
  .claim-step:first-child { padding-left: 20px; }
  .claim-step__btn {
    max-width: 100%;
    white-space: normal;
  }
}

/* Important Information — hot pink banner */
.claims-info {
  position: relative;
  margin-top: 64px;
  background: transparent;
  border-radius: 0;
  padding: 24px 0 24px;
  overflow: hidden;
  isolation: isolate;
}
.claims-info__deco { display: none; }
.claims-section__title--light { color: #1d1e29 !important; text-align: left; }
.claims-info__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}
.claims-info__deco img {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.claims-info__deco--1 { top: 30px;  left: 36px;  width: 22px; height: 26px; }
.claims-info__deco--2 { top: 70px;  left: 200px; width: 32px; height: 32px; }
.claims-info__deco--3 { bottom: 40px; left: 56px; width: 18px; height: 22px; opacity: .85; }
.claims-info__deco--4 { top: 50px;  right: 40px; width: 36px; height: 36px; }
.claims-info__deco--5 { top: 30px;  right: 220px; width: 32px; height: 36px; opacity: .85; }
.claims-info__deco--6 { bottom: 36px; right: 60px; width: 22px; height: 26px; }
.claims-info__deco--7 { bottom: 90px; right: 200px; width: 18px; height: 22px; opacity: .8; }

.info-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 64px;
  max-width: 880px;
  margin: 0 auto;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: #1d1e29;
  padding-top: 28px;
  border-top: 1px solid #e5e5e5;
}
.info-card:nth-child(-n+2) { border-top: 0; padding-top: 0; }
.info-card__num {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: #1d1e29;
  flex-shrink: 0;
  min-width: 56px;
}
.info-card__text {
  font-size: 16px;
  line-height: 1.55;
  color: #1d1e29;
  margin: 6px 0 0;
}
@media (max-width: 760px) {
  .claims-info { padding: 48px 24px 56px; }
  .info-grid { grid-template-columns: 1fr; gap: 24px; }
  .info-card { min-width: 0; }
  .info-card__text { min-width: 0; overflow-wrap: anywhere; }
  .info-card__num { font-size: 44px; min-width: 60px; }
  .claims-info__deco--2, .claims-info__deco--5, .claims-info__deco--7 { display: none; }
}
@media (max-width: 480px) {
  .claims-info { padding: 40px 0 48px; }
  .info-card { gap: 12px; }
  .info-card__num { font-size: 36px; min-width: 48px; }
  .claims-outro { padding: 36px 20px; overflow-wrap: anywhere; }
}

/* Outro */
.claims-outro {
  max-width: 1120px;
  margin: 56px auto 0;
  background: #e20082;
  border-radius: 28px;
  padding: 48px 40px;
  font-size: 17px;
  line-height: 1.7;
  color: #fff;
  text-align: center;
}
.claims-outro a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.claims-outro a:hover { color: #fce7ee; }
.claims-outro strong { color: #fff; }

/* ---- Insurance (custom) ------------------------------------------------ */
/* Blog index — vertical list matching bonzah.com/blog */
.blog-index { max-width: 1100px; margin: 0 auto; padding: 24px 24px 80px; font-family: 'Raleway', Arial, sans-serif; }
.blog-index__header { padding: 16px 0 32px; }
.blog-index__header h1 { color: #e20082; font-size: 38px; font-family: 'Raleway', Arial, sans-serif; line-height: 57px; font-weight: 600; margin: 0; }
.blog-index__controls { display: flex; flex-wrap: wrap; gap: 12px 16px; align-items: center; padding: 0 0 24px; border-bottom: 1px solid #ececec; margin-bottom: 8px; }
.blog-index__search-label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.blog-index__search { flex: 1 1 260px; min-width: 220px; padding: 12px 16px; border: 1.5px solid #e0d6de; border-radius: 999px; font: 400 15px 'Raleway', Arial, sans-serif; color: #1d1e29; background: #fff; outline: none; transition: border-color .15s; }
.blog-index__search:focus { border-color: #e20082; }
.blog-index__status { width: 100%; margin: 0; color: #7d6c76; font: 500 14px 'Raleway', Arial, sans-serif; }
.blog-index__empty { width: 100%; margin: 16px 0 0; color: #7d6c76; font: 400 15px 'Raleway', Arial, sans-serif; }
.blog-index__list { display: flex; flex-direction: column; }
.blog-row { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 36px; align-items: start; padding: 32px 0; border-top: 1px solid #ececec; text-decoration: none; color: inherit; }
.blog-row:first-child { border-top: 0; }
.blog-row__media { position: relative; aspect-ratio: 48 / 25; border-radius: 8px; overflow: hidden; background: #c33a85; }
.blog-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 240ms ease; }
.blog-row:hover .blog-row__media img { transform: scale(1.04); }
.blog-row__placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, #e20082 0%, #a01e69 100%); }
.blog-row__tag { position: absolute; top: 14px; left: 14px; background: var(--pink-main, #e20082); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 4px; letter-spacing: 0.02em; }
.blog-row__overlay-title { position: absolute; left: 14px; right: 14px; bottom: 14px; color: #fff; font-size: 19px; font-weight: 700; line-height: 1.2; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45); }
.blog-row__body { padding-top: 4px; }
.blog-row__title { font-size: 18px; color: #1d1e29; font-weight: 600; padding-top: 0; font-family: 'Raleway', Arial, sans-serif; line-height: 1.25; margin: 0 0 14px; }
.blog-row:hover .blog-row__title { color: var(--pink-main, #e20082); }
.blog-row__date { font-size: 14px; color: #8a8a8a; margin: 0 0 18px; letter-spacing: 0.02em; }
.blog-row__excerpt { font-size: 15px; color: #2b2c39; line-height: 1.6; margin: 0; max-width: 640px; }
@media (max-width: 720px) {
  .blog-row { grid-template-columns: 1fr; gap: 18px; }
  .blog-row__media { aspect-ratio: 16 / 9; }
}

/* Individual blog post (matches bonzah.com/blog/<slug> layout) */
.blog-post { max-width: 760px; margin: 0 auto; padding: 24px 24px 96px; font-family: 'Raleway', Arial, sans-serif; color: #2b2c39; }
.blog-post__crumbs { font-size: 14px; color: #2b2c39; margin: 0 0 18px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.blog-post__crumbs a { color: inherit; text-decoration: none; }
.blog-post__crumbs a:hover { color: var(--pink-main, #e20082); }
.blog-post__crumbs-sep { color: #b9b9b9; }
.blog-post__crumbs-current { color: #2b2c39; }
.blog-post__title { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--pink-main, #e20082); line-height: 1.15; margin: 0 0 28px; }
.blog-post__hero { margin: 0 0 28px; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, #e20082 0%, #a01e69 100%); }
.blog-post__hero img { width: 100%; height: auto; display: block; }
.blog-post__hero-fallback { width: 100%; aspect-ratio: 16 / 10; }
.blog-post__date { font-size: 15px; color: #6b6b6b; margin: 0 0 24px; }
.blog-post__prose p { font-size: 16px; line-height: 1.7; margin: 0 0 18px; }
.blog-post__prose .blog-post__subhead { margin: 28px 0 14px; font-size: 18px; color: #1d1e29; }
.blog-post__prose .blog-post__subhead strong { font-weight: 700; }
.blog-post__prose a { color: var(--pink-main, #e20082); text-decoration: underline; }
@media (max-width: 720px) {
  .blog-post { padding: 16px 18px 64px; }
  .blog-post__title { margin-bottom: 20px; }
}

/* Legal pages (Privacy, Terms) — sticky TOC + long-form article */
.legal-page { max-width: 1180px; margin: 0 auto; padding: 16px 24px 80px; font-family: 'Raleway', Arial, sans-serif; }
.legal-grid { display: block; }
.legal-toc { position: sticky; top: 96px; align-self: start; font-size: 14px; max-height: calc(100vh - 120px); overflow-y: auto; padding-right: 8px; }
.legal-toc__title { margin: 0 0 14px; color: #a01e69; font-weight: 700; font-size: 20px; font-family: 'Raleway', Arial, sans-serif; }
.legal-toc__title a { color: #a01e69; font-weight: 700; font-size: 20px; font-family: 'Raleway', Arial, sans-serif; text-decoration: none; }
.legal-toc ul { list-style: none; padding: 0; margin: 0; }
.legal-toc li { margin: 0 0 10px; }
.legal-toc a { color: #2b2c39; text-decoration: none; line-height: 1.4; display: inline-block; }
.legal-toc a:hover { color: var(--pink-main, #e20082); }
.legal-main { min-width: 0; }
.legal-main__title { color: #e20082; font-size: 48px; font-family: 'Raleway', Arial, sans-serif; font-weight: 600; line-height: 1.1; margin: 0 0 22px; scroll-margin-top: 96px; }
.legal-lede { color: #1d1e29; font-size: 18px; font-family: 'Raleway', Arial, sans-serif; font-weight: 400; line-height: 1.7; margin: 0 0 56px; }
.legal-lede p { margin: 0 0 16px; }
.legal-section { margin-bottom: 48px; scroll-margin-top: 96px; }
.legal-section h2 { color: #1d1e29; font-size: 32px; font-family: 'Raleway', Arial, sans-serif; font-weight: 600; margin: 0 0 20px; letter-spacing: -0.01em; line-height: 1.2; }
.legal-section p { color: #1d1e29; font-size: 18px; font-family: 'Raleway', Arial, sans-serif; font-weight: 400; line-height: 1.7; margin: 0 0 16px; }
.legal-section a, .legal-lede a { color: #a01e69; font-size: 18px; font-family: 'Raleway', Arial, sans-serif; font-weight: 400; text-decoration: underline; }
.legal-section ul { list-style: none; padding-left: 0; margin: 0 0 16px; }
.legal-section li { position: relative; color: #1d1e29; font-size: 18px; font-family: 'Raleway', Arial, sans-serif; font-weight: 400; line-height: 1.65; margin: 0 0 8px; padding-left: 18px; }
.legal-section li::before { content: ""; position: absolute; left: 4px; top: 0.7em; width: 5px; height: 5px; border-radius: 50%; background: #1d1e29; }
.legal-section strong { color: inherit; font-weight: 700; }
@media (max-width: 860px) {
  .legal-grid { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc { position: static; max-height: none; }
}

.ins-page { max-width: 1180px; margin: 0 auto; padding: 16px 24px 80px; font-family: 'Raleway', Arial, sans-serif; }
.ins-grid { display: block; }
.ins-toc {
  position: sticky;
  top: 96px;
  align-self: start;
  font-size: 14px;
}
.ins-toc.irvt-toc { max-height: none; padding: 56px 24px 32px; font-size: 14px; }
.ins-toc__title { margin: 0 0 14px; color: #a01e69; font-weight: 700; font-size: 20px; font-family: 'Raleway', Arial, sans-serif; }
.ins-toc__title a { color: #a01e69; font-weight: 700; font-size: 20px; font-family: 'Raleway', Arial, sans-serif; text-decoration: none; }
.ins-toc ul { list-style: none; padding: 0; margin: 0; }
.ins-toc li { margin: 0 0 12px; }
.ins-toc a {
  color: #2b2c39;
  text-decoration: none;
  line-height: 1.4;
  display: inline-block;
}
.ins-toc a:hover { color: var(--pink-main, #e20082); }

.ins-main { min-width: 0; }
.ins-main__title {
  color: #e20082;
  font-size: 48px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 22px;
}
.ins-intro { color: #1d1e29; font-size: 18px; font-family: 'Raleway', Arial, sans-serif; font-weight: 400; line-height: 1.6; margin: 0 0 72px; }

.ins-section { margin-bottom: 64px; scroll-margin-top: 96px; }
.ins-main__title { scroll-margin-top: 96px; }
.ins-section h2 {
  color: #1d1e29;
  font-size: 32px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.ins-coverage-title {
  color: #a01e69;
  font-size: 20px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  margin: 28px 0 10px;
}
.ins-section p { color: #1d1e29; font-size: 18px; font-family: 'Raleway', Arial, sans-serif; font-weight: 400; line-height: 1.6; margin: 0 0 16px; }
.ins-section a { color: #a01e69; font-size: 18px; font-family: 'Raleway', Arial, sans-serif; font-weight: 400; text-decoration: underline; }
.ins-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 8px;
}
.ins-section li {
  position: relative;
  color: #a01e69;
  font-size: 18px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  margin: 0 0 6px;
  padding-left: 18px;
}
.ins-section li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a01e69;
}
.ins-section li strong { color: #a01e69; font-weight: 400; }
#when-to-choose-your-coverage li strong { font-weight: 700; }

/* License table */
.ins-table-wrap { overflow-x: auto; }
.ins-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Raleway', Arial, sans-serif;
  min-width: 640px;
}
.ins-table th {
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: #a01e69;
  padding: 18px 20px;
  border-bottom: 1px solid #e7c2d8;
  background: #ffffff;
  vertical-align: top;
  line-height: 1.25;
}
.ins-table td {
  font-size: 15px;
  font-weight: 400;
  color: #1d1e29;
  padding: 18px 20px;
  border-bottom: 1px solid #f3e3ed;
  vertical-align: top;
}
.ins-table tbody tr:nth-child(odd)  td { background: #ffffff; }
.ins-table tbody tr:nth-child(even) td { background: #fdf6fa; }

@media (max-width: 860px) {
  .ins-grid { grid-template-columns: 1fr; row-gap: 32px; gap: 32px; }
  .ins-toc { position: static; top: auto; padding-bottom: 16px; border-bottom: 1px solid #efe4ec; }
  .ins-toc ul { display: flex; flex-wrap: wrap; gap: 10px 16px; }
  .ins-toc li { margin: 0; }
  .ins-table th, .ins-table td { font-size: 14px; padding: 12px 10px; }
}

/* ---- Restricted Rental Companies -------------------------------------- */
.rrc-page { max-width: 1120px; margin: 0 auto; padding: 24px 24px 80px; font-family: 'Raleway', Arial, sans-serif; }

/* Hero banner */
.rrc-hero {
  background: #fce7ee;
  border-radius: 28px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  margin-bottom: 80px;
}
.rrc-hero__title {
  color: #e20082;
  font-size: 48px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  line-height: 57px;
  margin: 0;
}
.rrc-hero__art {
  width: 320px;
  max-width: 100%;
  height: auto;
  justify-self: end;
}

/* Table section */
.rrc-table-section { padding: 0 8px; }
.rrc-table-title {
  color: #1d1e29;
  font-size: 48px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  line-height: 58px;
  margin: 0 0 18px;
}
.rrc-lede {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #1d1e29;
  margin: 0 0 32px;
}
.rrc-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Raleway', Arial, sans-serif;
  table-layout: fixed;
}
.rrc-table th {
  text-align: left;
  font-size: 22px;
  font-weight: 600;
  color: #a01e69;
  padding: 18px 20px;
  border-bottom: 1px solid #a01e69;
  background: #ffffff;
}
.rrc-table td {
  font-size: 20px;
  font-weight: 400;
  color: #1d1e29;
  padding: 22px 20px;
  border-bottom: 1px solid #f6d8ea;
  vertical-align: top;
}
.rrc-table tbody tr:nth-child(odd)  td { background: #ffffff; }
.rrc-table tbody tr:nth-child(even) td { background: #fffafd; }

@media (max-width: 860px) {
  .rrc-hero { grid-template-columns: 1fr; padding: 36px 28px; gap: 16px; margin-bottom: 48px; }
  .rrc-hero__art { width: 200px; justify-self: center; }
  .rrc-table th { font-size: 18px; padding: 14px 12px; }
  .rrc-table td { font-size: 16px; padding: 16px 12px; }
}

/* ---- Included & Restricted Vehicle Types ------------------------------- */
.irvt-page { max-width: 1120px; margin: 0 auto; padding: 16px 24px 80px; position: relative; }
.irvt-grid { display: block; }

/* Hamburger button — fixed to left edge of viewport */
.irvt-toc-open {
  position: fixed;
  top: 96px;
  left: 0;
  z-index: 60;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid #efe4ec;
  border-left: 0;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  padding: 0;
}
.irvt-toc-open span {
  display: block;
  width: 20px;
  height: 2px;
  background: #2b2c39;
}

/* Drawer */
.irvt-toc {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  max-width: 86vw;
  height: 100vh;
  background: #fff;
  z-index: 80;
  padding: 56px 24px 32px;
  font-family: 'Raleway', Arial, sans-serif;
  transform: translateX(-100%);
  transition: transform .25s ease;
  overflow-y: auto;
  box-shadow: 2px 0 12px rgba(0,0,0,.06);
}
.irvt-toc.is-open { transform: translateX(0); }
.legal-toc.irvt-toc { max-height: none; padding: 56px 24px 32px; font-size: 14px; }
.irvt-toc-close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: #2b2c39;
  cursor: pointer;
  padding: 0;
}
.irvt-toc__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--pink-main, #e20082);
  margin: 0 0 18px;
  line-height: 1.25;
}
.irvt-toc ul { list-style: none; padding: 0; margin: 0; }
.irvt-toc li { margin: 0 0 12px; }
.irvt-toc a {
  color: #8a8d9a;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}
.irvt-toc a:hover { color: var(--pink-main, #e20082); }

/* Backdrop */
.irvt-toc-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 70;
  opacity: 0;
  transition: opacity .2s ease;
}
.irvt-toc-backdrop.is-open { opacity: 1; }
body.irvt-drawer-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mobile-menu,
  .site-header__hamburger span,
  .site-header__hamburger span::before,
  .site-header__hamburger span::after,
  .irvt-toc,
  .irvt-toc-backdrop {
    transition: none;
  }
}

.irvt-main { font-family: 'Raleway', Arial, sans-serif; color: var(--black-main, #1d1e29); }
.irvt-main__title {
  color: #e20082;
  font-size: 48px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 32px;
}
.irvt-intro {
  color: #1d1e29;
  font-size: 18px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 56px;
}
.irvt-intro strong { color: #a01e69; font-weight: 700; }
.irvt-section { margin: 0 0 56px; scroll-margin-top: 96px; }
.irvt-section h2 {
  color: #1d1e29;
  font-size: 32px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.2;
}
.irvt-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-main, #1d1e29);
  margin: 28px 0 12px;
}
.irvt-section p {
  color: #1d1e29;
  font-size: 18px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 16px;
}
.irvt-section ul {
  margin: 0 0 16px;
  padding-left: 24px;
  list-style: disc outside;
}
.irvt-section ul li { display: list-item; }
.irvt-section li {
  color: #1d1e29;
  font-size: 18px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
.irvt-section .irvt-subhead {
  font-size: 16px;
  line-height: 1.5;
  margin: 16px 0 4px;
  color: var(--black-main, #1d1e29);
}
.irvt-section .irvt-subhead strong { font-weight: 700; }
.irvt-section strong { font-weight: 700; color: var(--black-main, #1d1e29); }

@media (max-width: 860px) {
  .irvt-grid { grid-template-columns: 1fr; row-gap: 32px; }
  .irvt-page--vehicles .irvt-toc {
    position: fixed;
    top: 0;
  }
}

/* ---- About page ------------------------------------------------------- */
.about-page { max-width: 1120px; margin: 0 auto; padding: 40px 24px 80px; }

/* Hero */
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: center;
  padding: 56px 56px 56px;
  border-radius: 30px;
  background-color: #f9ecf3;
  background-position: center center;
  border-width: var(--t396-borderwidth, 0);
  border-style: var(--t396-borderstyle, solid);
  border-color: var(--t396-bordercolor, transparent);
}
.tcf-pink { color: rgb(226, 0, 130); }
.about-hero__title .tcf-pink { color: #1d1e29; }
.about-hero__eyebrow {
  color: #1d1e29;
  font-size: 48px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  line-height: 57px;
  margin: 0 0 18px;
}
.about-hero__title {
  color: #1d1e29;
  font-size: 22px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 400;
  line-height: 31px;
  margin: 0 0 18px;
}
.about-hero__bonzah {
  color: #1d1e29;
  font-size: 22px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  line-height: 31px;
  margin: 0;
}
.about-hero__art {
  width: 100%;
  max-width: 320px;
  height: auto;
  justify-self: end;
}
@media (max-width: 860px) {
  .about-hero { grid-template-columns: 1fr; gap: 24px; padding-bottom: 40px; }
  .about-hero__art { max-width: 220px; justify-self: center; order: -1; }
}

/* Origin section */
.about-origin {
  background: transparent;
  border-radius: 0;
  padding: 56px 8px 48px;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 64px;
  align-items: start;
}
.about-origin__title {
  color: #1d1e29;
  font-size: 44px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  line-height: 53px;
  margin: 0;
  text-align: left;
}
.about-origin__copy {
  max-width: none;
  margin: 0;
}
.about-origin__copy p {
  color: #1d1e29;
  font-size: 18px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 18px;
}
.about-origin__copy p:last-child { margin-bottom: 0; }
@media (max-width: 760px) {
  .about-origin { grid-template-columns: 1fr; gap: 24px; padding: 40px 16px; }
}

/* What we do */
.about-what {
  padding: 56px 8px 24px;
  text-align: left;
  border-top: 1px solid #e5e5e5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 64px;
  align-items: start;
}
.about-what__eyebrow {
  color: #1d1e29;
  font-size: 44px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  line-height: 53px;
  margin: 0;
}
.about-what__title {
  color: #1d1e29;
  font-size: 18px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  max-width: none;
}
.about-what .about-gallery { grid-column: 1 / -1; margin-top: 48px; }
@media (max-width: 760px) {
  .about-what { grid-template-columns: 1fr; gap: 24px; padding: 40px 16px; }
}
.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.about-gallery img {
  width: 100%;
  max-width: 811px;
  aspect-ratio: 811 / 1018;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  display: block;
}
@media (max-width: 860px) {
  .about-gallery { grid-template-columns: 1fr; }
  .about-gallery img { max-width: 100%; }
}

/* Form */
.form-page { max-width: 640px; margin: 0 auto; padding: 56px 24px 80px; }
.form-page h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 700; margin-bottom: 8px; }
.form-page > p { color: var(--gray-dark); margin-bottom: 32px; }

/* ---- Contact page ----------------------------------------------------- */
.contact-page { max-width: 1120px; margin: 0 auto; padding: 40px 24px 80px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Left card */
.contact-info {
  background: #fce7ee;
  border-radius: 28px;
  padding: 56px 48px 40px;
  display: flex;
  flex-direction: column;
}
.contact-info__title {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #e20082;
  margin: 0 0 28px;
  line-height: 1.1;
}
.contact-info__lede {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1d1e29;
  line-height: 1.6;
  margin: 0 0 18px;
}
.contact-info__lede strong { font-weight: 700; color: inherit; }
.contact-info__direct {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #1d1e29;
  margin: 0 0 24px;
}
.contact-info__direct a {
  color: #a01e69;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: underline;
  white-space: nowrap;
}
.contact-info__direct a:hover { text-decoration: underline; }
.contact-info__art {
  margin-top: auto;
  align-self: flex-start;
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* Right (pink) form card */
.contact-form-card {
  background: var(--pink-main, #e20082);
  border-radius: 28px;
  padding: 40px 40px 36px;
}
.contact-form__row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.contact-form__row label {
  color: #ffffff;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.contact-form__row input,
.contact-form__row textarea {
  font-family: inherit;
  font-size: 16px;
  background: #fce7ee;
  color: var(--black-main, #1d1e29);
  border: 0;
  border-radius: 14px;
  padding: 14px 18px;
  width: 100%;
  outline: none;
  box-shadow: none;
}
.contact-form__row input::placeholder,
.contact-form__row textarea::placeholder { color: #c97aa3; opacity: 1; }
.contact-form__row input:focus,
.contact-form__row textarea:focus { box-shadow: 0 0 0 2px #ffffff inset; }
.contact-form__row textarea { resize: vertical; min-height: 96px; }
.contact-form__submit {
  display: block;
  width: 100%;
  margin-top: 12px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 999px;
  padding: 14px 24px;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.contact-form__submit:hover { background: #ffffff; color: var(--pink-main, #e20082); }
.contact-form__status,
.contact-form-card .form-status { color: #ffffff; margin: 12px 0 0; min-height: 1em; font-size: 14px; }
.contact-form-card .form-status.success { color: #ffffff; font-weight: 700; }
.contact-form-card .form-status.error { color: #fff7c2; font-weight: 700; }

@media (max-width: 860px) {
  .contact-info { padding: 40px 28px 32px; }
  .contact-form-card { padding: 32px 24px 28px; }
  .contact-info__art { max-width: 240px; align-self: center; margin-top: 24px; }
}
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row label { font-weight: 500; font-size: 14px; color: var(--black-main); }
.form-row input, .form-row textarea, .form-row select {
  font-family: inherit; font-size: 16px;
  padding: 12px 14px; border: 1px solid #ddd0d8; border-radius: 9px;
  background: #fff; color: var(--black-main);
  width: 100%;
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: 2px solid var(--pink-main); outline-offset: 1px; border-color: var(--pink-main);
}
.form-status { margin-top: 16px; font-size: 14px; }
.form-status.success { color: #1f7a3a; }
.form-status.error { color: #b30033; }

/* Blog index cards */
.blog-grid {
  display: grid; gap: 24px; padding: 0 24px;
  grid-template-columns: 1fr;
  max-width: 1200px; margin: 0 auto;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 24px; border: 1px solid #f3e6ee; border-radius: 20px;
  background: #fff; box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none; color: inherit;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(160,30,105,0.12); }
.blog-card h3 { font-size: 18px; font-weight: 700; line-height: 1.35; }
.blog-card p { color: var(--gray-dark); font-size: 14px; line-height: 1.55; }
.blog-card .read { color: var(--pink-dark); font-weight: 600; font-size: 14px; margin-top: auto; }

.sr-only {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}
.skip-link {
  position: absolute; left: -9999px; top: 12px;
  background: var(--pink-main); color: #fff; padding: 8px 14px; border-radius: 6px;
  z-index: 100; font-weight: 600;
}
.skip-link:focus { left: 12px; }

/* "How Bonzah Car Rental Insurance Works for You" section */
.how-bonzah-heading { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; margin: 0 auto 48px; padding: 0 24px; max-width: 1200px; }
.how-bonzah-heading h2 { font-family: 'Raleway', Arial, sans-serif; font-weight: 600; font-size: 32px; line-height: 1.15; margin: 0; text-align: left; color: var(--gray-darkest, #111); }
.how-bonzah-heading p { color: #1d1e29; font-size: 14px; font-family: 'Raleway', Arial, sans-serif; line-height: 31px; font-weight: 400; margin: 0; max-width: 560px; }
@media (min-width: 1024px) {
  .how-bonzah-heading { flex-direction: row; align-items: center; gap: 48px; }
  .how-bonzah-heading h2 { font-size: 48px; flex: 0 1 auto; max-width: 600px; }
  .how-bonzah-heading p { flex: 1 1 auto; max-width: 480px; }
}
.feature-card--with-image { padding: 0 0 32px 0; overflow: hidden; background: #fce7ee; border: 0; box-shadow: none; border-radius: 24px; }
.feature-card--with-image > h3 { padding: 0 32px; margin: 24px 0 12px; color: #1d1e29; }
.feature-card--with-image > p { padding: 0 32px; color: #1d1e29; }
.feature-card__image { display: block; width: 100%; height: auto; aspect-ratio: 810 / 574; object-fit: cover; margin: 0; border-top-left-radius: inherit; border-top-right-radius: inherit; }

/* "Why Bonzah for Car Rental Insurance?" section */
.why-bonzah-title { font-family: 'Raleway', Arial, sans-serif; font-size: clamp(28px, 4vw, 48px); font-weight: 600; line-height: 1.2; color: var(--black-main, #1d1e29); margin: 0 auto; max-width: 1200px; padding: 0 24px; }
.why-bonzah-divider { border: 0; border-top: 1px solid #e5d8e0; max-width: 1248px; margin: 28px auto 32px; }
.why-bonzah-grid { display: grid; grid-template-columns: 1fr; gap: 28px 64px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .why-bonzah-grid { grid-template-columns: 1fr 1fr; gap: 40px 64px; } }
.why-bonzah-row-divider { display: none; border: 0; border-top: 1px solid #e5d8e0; margin: 0; width: 100%; }
@media (min-width: 768px) { .why-bonzah-row-divider { display: block; grid-column: 1 / -1; } }
.why-bonzah-grid > .why-card:not(:first-of-type) { border-top: 1px solid #e5d8e0; padding-top: 28px; }
@media (min-width: 768px) { .why-bonzah-grid > .why-card:not(:first-of-type) { border-top: 0; padding-top: 0; } }
.why-card { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; background: transparent; border: 0; box-shadow: none; padding: 0; }
.why-card__num { font-family: 'Raleway', Arial, sans-serif; font-weight: 700; font-size: 32px; color: #1d1e29; line-height: 1; min-width: 48px; padding-top: 4px; }
.why-card__body { display: flex; flex-direction: column; gap: 12px; }
.why-card__body h3 { font-family: 'Raleway', Arial, sans-serif; font-size: 22px; font-weight: 700; line-height: 1.25; color: var(--black-main, #1d1e29); margin: 0; }
.why-card__body p { font-family: 'Raleway', Arial, sans-serif; font-size: 16px; line-height: 1.6; color: var(--gray-dark); margin: 0; }
@media (min-width: 1024px) {
  .why-card__num { font-size: 40px; min-width: 56px; }
  .why-card__body h3 { font-size: 24px; }
}

/* ===== Flyer PDF viewer (Task #30) ===== */
.flyer-viewer { background: #fff; border: 1px solid #e8e2e8; border-radius: 8px; margin: 0 0 24px; overflow: hidden; }
.flyer-viewer__toolbar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: #f6ecf2; border-bottom: 1px solid #e8e2e8; flex-wrap: wrap; }
.flyer-viewer__btn { background: #fff; color: var(--pink-main, #e20082); border: 1px solid #e8c4dc; border-radius: 6px; padding: 4px 12px; font: inherit; font-weight: 600; cursor: pointer; line-height: 1; min-width: 36px; }
.flyer-viewer__btn:hover:not(:disabled) { background: var(--pink-main, #e20082); color: #fff; }
.flyer-viewer__btn:disabled { opacity: .35; cursor: default; }
.flyer-viewer__btn--zoom-out { margin-left: auto; }
.flyer-viewer__page { font-size: 14px; color: var(--black-main, #1d1e29); padding: 0 4px; }
.flyer-viewer__stage { position: relative; padding: 12px; background: #f8f5f7; min-height: 320px; display: flex; justify-content: center; align-items: flex-start; overflow: auto; max-height: 80vh; }
.flyer-viewer__canvas { max-width: 100%; box-shadow: 0 2px 8px rgba(0,0,0,.08); background: #fff; display: block; }
.flyer-viewer__loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #7d6c76; font-size: 14px; padding: 16px; text-align: center; }
@media (max-width: 600px) {
  .flyer-viewer__stage { padding: 8px; max-height: 70vh; }
  .flyer-viewer__btn--zoom-in, .flyer-viewer__btn--zoom-out { display: none; }
}
/* IRVT: live styling parity */
.irvt-section .irvt-status { color: #a01e69; font-weight: 700; }
.irvt-section .irvt-loose { margin: 0; padding-left: 24px; line-height: 1.5; color: #1d1e29; font-size: 18px; font-family: 'Raleway', Arial, sans-serif; font-weight: 400; }
.irvt-section ul:has(+ .irvt-loose) { margin-bottom: 0; }
.irvt-section .irvt-loose + ul { margin-top: 0; }

/* Public Site Map and development review hub */
.sitemap-page { max-width: 1180px; margin: 0 auto; padding: 48px 20px 88px; color: #2b2c39; }
.sitemap-section { margin: 0 0 32px; }
.sitemap-section h2 { font-size: 22px; line-height: 1.25; color: var(--black-main, #1d1e29); margin: 0 0 12px; }
.sitemap-section ul { list-style: disc outside; padding-left: 24px; margin: 0; }
.sitemap-section li { font-size: 16px; line-height: 1.6; margin: 0 0 4px; display: list-item; }
.sitemap-section a { color: var(--pink-main, #d63384); text-decoration: none; }
.sitemap-section a:hover { text-decoration: underline; }
.review-hero { background: linear-gradient(135deg, #fff 0%, var(--pink-back) 100%); border: 1px solid #ecd9e5; border-radius: 28px; padding: clamp(24px, 5vw, 48px); margin-bottom: 28px; }
.review-eyebrow { margin: 0 0 8px; color: var(--pink-dark); font-size: 13px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.sitemap-page h1 { font-size: clamp(36px, 6vw, 58px); line-height: 1.08; color: var(--black-main); margin: 0 0 16px; }
.sitemap-lede { font-size: clamp(17px, 2vw, 20px); line-height: 1.6; color: #5e5260; margin: 0 0 24px; max-width: 850px; }
.review-notice { padding: 16px 18px; background: #fff; border-left: 4px solid var(--pink-main); border-radius: 10px; line-height: 1.55; }
.review-notice a, .review-entry a { color: var(--pink-dark); text-underline-offset: 3px; }
.review-summary { display: flex; align-items: center; gap: 14px; padding: 18px 22px; margin-bottom: 24px; background: var(--black-main); color: #fff; border-radius: 16px; }
.review-summary strong { font-size: 30px; color: #fff; }
.review-section { border: 1px solid #eadde5; border-radius: 18px; overflow: hidden; margin-bottom: 22px; background: #fff; box-shadow: 0 8px 24px rgba(72, 31, 56, .05); }
.review-section__heading { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 18px 22px; background: var(--pink-back); }
.review-section__heading h2 { margin: 0; font-size: 22px; }
.review-section__heading span { color: var(--pink-dark); font-size: 14px; font-weight: 700; white-space: nowrap; }
.review-list { list-style: none; margin: 0; padding: 0; }
.review-entry { display: grid; grid-template-columns: minmax(260px, 1.2fr) minmax(280px, 1fr); gap: 18px; padding: 16px 22px; border-top: 1px solid #f0e6ec; }
.review-entry:first-child { border-top: 0; }
.review-entry__main, .review-entry__meta { min-width: 0; }
.review-entry__main a, .review-entry__title { display: block; font-weight: 700; line-height: 1.35; overflow-wrap: anywhere; }
.review-entry__title { color: var(--black-main); }
.review-entry__main code { display: block; margin-top: 6px; color: #746873; font-size: 12px; overflow-wrap: anywhere; }
.review-entry__meta { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 6px; }
.review-badge { display: inline-flex; padding: 4px 9px; border-radius: 999px; background: #edf7ef; color: #256238; font-size: 11px; font-weight: 700; line-height: 1.25; }
.review-badge--scheduled, .review-badge--temporary { background: #fff3d6; color: #754e00; }
.review-badge--noindex, .review-badge--noindex-preview-copy { background: #eef0f5; color: #4c5364; }
.review-badge--excluded-from-production, .review-badge--development-only, .review-badge--source-only { background: #fbe4f1; color: #8c195c; }
.review-badge--error-page { background: #fde9e7; color: #8a2d25; }
.review-entry__note { flex-basis: 100%; color: #6d626b; font-size: 12px; line-height: 1.45; }
.review-cleanup { margin-top: 34px; padding: 26px; border: 2px dashed var(--pink-dark); border-radius: 18px; background: #fffafd; }
.review-cleanup h2 { margin: 0 0 10px; font-size: 20px; color: var(--pink-dark); }
.review-cleanup p, .review-cleanup li { line-height: 1.55; }
@media (max-width: 720px) {
  .sitemap-page { padding-left: 14px; padding-right: 14px; }
  .review-entry { grid-template-columns: 1fr; gap: 10px; padding: 15px 16px; }
  .review-section__heading { padding: 16px; }
  .review-summary { align-items: flex-start; }
}

/* Cookie consent banner */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1000; background: #1d1e29; color: #fff; border-radius: 12px; box-shadow: 0 12px 32px rgba(0,0,0,.25); padding: 18px 22px; max-width: 1120px; margin: 0 auto; font-family: 'Raleway', Arial, sans-serif; }
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-banner__text { margin: 0; font-size: 15px; line-height: 1.5; flex: 1 1 360px; min-width: 240px; color: #fff; }
.cookie-banner__text a { color: #ff58b8; text-decoration: underline; }
.cookie-banner__text a:hover { color: #fff; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__btn { font-family: inherit; font-weight: 600; font-size: 15px; padding: 10px 20px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; line-height: 1; }
.cookie-banner__btn--accept { background: #e20082; color: #fff; }
.cookie-banner__btn--accept:hover, .cookie-banner__btn--accept:focus-visible { background: #ff58b8; outline: none; }
.cookie-banner__btn--reject { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cookie-banner__btn--reject:hover, .cookie-banner__btn--reject:focus-visible { border-color: #fff; background: rgba(255,255,255,.08); outline: none; }
.cookie-banner__btn--customize { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cookie-banner__btn--customize:hover, .cookie-banner__btn--customize:focus-visible { border-color: #fff; background: rgba(255,255,255,.08); outline: none; }
.cookie-banner__btn--save { background: #fff; color: #1d1e29; }
.cookie-banner__btn--save:hover, .cookie-banner__btn--save:focus-visible { background: #f1f1f4; outline: none; }
.cookie-banner__btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* Cookie preference center */
.cookie-prefs { position: fixed; inset: 0; z-index: 1100; display: flex; align-items: center; justify-content: center; padding: 16px; font-family: 'Raleway', Arial, sans-serif; }
.cookie-prefs[hidden] { display: none; }
.cookie-prefs__backdrop { position: absolute; inset: 0; background: rgba(15,16,24,.55); }
.cookie-prefs__panel { position: relative; background: #fff; color: #1d1e29; border-radius: 14px; box-shadow: 0 24px 48px rgba(0,0,0,.3); width: 100%; max-width: 560px; max-height: calc(100vh - 32px); overflow-y: auto; padding: 28px 28px 22px; }
.cookie-prefs__close { position: absolute; top: 10px; right: 12px; background: transparent; border: 0; font-size: 28px; line-height: 1; color: #1d1e29; cursor: pointer; padding: 6px 10px; border-radius: 6px; }
.cookie-prefs__close:hover, .cookie-prefs__close:focus-visible { background: rgba(0,0,0,.06); outline: none; }
.cookie-prefs__title { margin: 0 0 8px; font-size: 22px; font-weight: 700; color: #1d1e29; }
.cookie-prefs__intro { margin: 0 0 18px; font-size: 14px; line-height: 1.5; color: #444; }
.cookie-prefs__list { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.cookie-prefs__item { border: 1px solid #e6e6ec; border-radius: 10px; padding: 14px 16px; background: #fafafc; }
.cookie-prefs__item-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cookie-prefs__item-title { font-weight: 600; font-size: 15px; color: #1d1e29; margin: 0; }
.cookie-prefs__item-pill { display: inline-block; background: #e6e6ec; color: #555; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.cookie-prefs__item-desc { margin: 8px 0 0; font-size: 13px; line-height: 1.5; color: #555; }
.cookie-prefs__toggle { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.cookie-prefs__toggle input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.cookie-prefs__toggle-track { position: relative; display: inline-block; width: 40px; height: 22px; background: #c7c7d1; border-radius: 999px; transition: background .15s ease; }
.cookie-prefs__toggle-track::after { content: ''; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: #fff; border-radius: 50%; box-shadow: 0 1px 2px rgba(0,0,0,.2); transition: transform .15s ease; }
.cookie-prefs__toggle input:checked + .cookie-prefs__toggle-track { background: #e20082; }
.cookie-prefs__toggle input:checked + .cookie-prefs__toggle-track::after { transform: translateX(18px); }
.cookie-prefs__toggle input:focus-visible + .cookie-prefs__toggle-track { outline: 2px solid #e20082; outline-offset: 2px; }
.cookie-prefs__toggle-label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.cookie-prefs__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cookie-prefs__actions .cookie-banner__btn--reject,
.cookie-prefs__actions .cookie-banner__btn--customize { color: #1d1e29; border-color: rgba(0,0,0,.25); }
.cookie-prefs__actions .cookie-banner__btn--reject:hover,
.cookie-prefs__actions .cookie-banner__btn--reject:focus-visible,
.cookie-prefs__actions .cookie-banner__btn--customize:hover,
.cookie-prefs__actions .cookie-banner__btn--customize:focus-visible { border-color: #1d1e29; background: rgba(0,0,0,.05); }
.cookie-prefs__actions .cookie-banner__btn--save { background: #1d1e29; color: #fff; }
.cookie-prefs__actions .cookie-banner__btn--save:hover,
.cookie-prefs__actions .cookie-banner__btn--save:focus-visible { background: #2c2d3b; }
@media (max-width: 600px) {
  .cookie-prefs__panel { padding: 22px 18px 16px; }
  .cookie-prefs__actions { justify-content: stretch; }
  .cookie-prefs__actions .cookie-banner__btn { flex: 1 1 auto; }
}
@media (max-width: 600px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 14px 16px; }
  .cookie-banner__inner { gap: 12px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1 1 auto; }
}
