@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Raleway:wght@300&display=swap');

:root {
  --bvl-navy: #071a33;
  --bvl-navy-2: #0b2747;
  --bvl-blue: #0068b7;
  --bvl-blue-bright: #0084d6;
  --bvl-aqua: #31c7c9;
  --bvl-ice: #f3faff;
  --bvl-white: #ffffff;
  --bvl-ink: #0c172a;
  --bvl-muted: #5b6b82;
  --bvl-border: #d9e8f4;
  --soft-shadow: 0 16px 42px rgba(7, 26, 51, 0.08);
  --premium-shadow: 0 22px 60px rgba(7, 26, 51, 0.14);
  --button-shadow: 0 12px 26px rgba(7, 26, 51, 0.18);
}
* {
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  overflow: auto;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--bvl-navy);
  color: var(--bvl-white);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 6px 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bvl-white);
  color: var(--bvl-ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  display: flex;
  max-width: 1240px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 34px clamp(20px, 4vw, 44px);
}

.site-header p {
  margin: 0;
  color: var(--bvl-navy);
  font-size: 15px;
  font-weight: 800;
  opacity: 0.82;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--bvl-navy);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(7, 26, 51, 0.06);
}

.language-link:hover {
  background: var(--bvl-white);
  text-decoration: none;
}

.site-header a {
  text-decoration: none;
}

.site-header a:hover {
  text-decoration: underline;
}

.bvl-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
}

.bvl-logo span {
  display: grid;
  gap: 1px;
}

.bvl-logo small,
.bvl-logo strong {
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  line-height: 0.95;
  letter-spacing: 0.18em;
}

.bvl-logo small {
  font-size: 22px;
  font-weight: 800;
}

.bvl-logo strong {
  font-size: 48px;
  font-weight: 900;
}

.bvl-logo-dark {
  color: var(--bvl-navy);
}

.bvl-logo-light {
  color: var(--bvl-white);
}

.bvl-logo-svg {
  display: block;
  height: 82px;
  width: auto;
  mix-blend-mode: multiply;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 82%, rgba(0, 132, 214, 0.2), transparent 38%),
    var(--bvl-ice);
}

.hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 70%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.18) contrast(1.16) brightness(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(255, 255, 255, 0.95) 32%,
      rgba(255, 255, 255, 0.64) 52%,
      rgba(255, 255, 255, 0.18) 76%,
      rgba(255, 255, 255, 0.06) 100%
    ),
    radial-gradient(circle at 72% 82%, rgba(0, 132, 214, 0.16), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 142px clamp(20px, 4vw, 44px) 38px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--bvl-blue);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--bvl-navy);
  font-size: clamp(58px, 5.5vw, 74px);
  font-weight: 900;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.hero-subhead {
  max-width: 470px;
  margin-bottom: 32px;
  color: var(--bvl-ink);
  font-size: 20px;
  line-height: 1.55;
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 22px;
}

.hero .app-buttons {
  width: min(100%, 416px);
  gap: 16px;
}

.app-button {
  display: inline-flex;
  min-height: 68px;
  min-width: 228px;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  border-radius: 14px;
  background: #05080d;
  color: var(--bvl-white);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: var(--button-shadow);
}

.hero .app-button {
  width: 200px;
  min-width: 0;
  min-height: 62px;
  gap: 10px;
  padding: 10px 14px;
  font-size: 20px;
}

.hero .app-button svg {
  width: 33px;
  height: 33px;
}

.hero .app-button small {
  margin-bottom: 3px;
  font-size: 9px;
  letter-spacing: 0;
}

.app-button svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: currentColor;
}

.app-button small {
  display: block;
  margin-bottom: 5px;
  color: #e4ebf3;
  font-size: 11px;
  font-weight: 700;
}

.code-card {
  display: grid;
  width: min(100%, 416px);
  max-width: 416px;
  grid-template-columns: auto minmax(0, 1fr) 154px;
  align-items: center;
  gap: 16px;
  padding: 20px 18px;
  border: 1px solid rgba(0, 104, 183, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--premium-shadow);
}

.gift-icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 999px;
  background: var(--bvl-blue);
  color: var(--bvl-white);
}

.gift-icon svg {
  width: 31px;
  height: 31px;
}

.gift-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.code-card h2 {
  margin-bottom: 7px;
  color: var(--bvl-blue);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.code-card p {
  margin: 0 0 6px;
  color: var(--bvl-ink);
  font-size: 14px;
  line-height: 1.3;
}

.code-card small {
  color: var(--bvl-muted);
  font-size: 11px;
}

.code-action {
  display: grid;
  align-self: stretch;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding-left: 16px;
  border-left: 1px solid rgba(0, 104, 183, 0.14);
}

.code-label {
  color: var(--bvl-navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.code-action strong {
  color: var(--bvl-blue);
  font-size: 43px;
  line-height: 1;
}

.code-action button {
  min-height: 36px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--bvl-navy);
  color: var(--bvl-white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.copy-status {
  min-height: 16px;
  color: var(--bvl-blue);
  font-size: 12px;
  font-weight: 800;
}

.how-it-works,
.sticker-section,
.tips-section,
.bottom-download,
.trust-strip {
  max-width: 1240px;
  margin: 0 auto;
  padding: 58px clamp(20px, 4vw, 44px);
}

.how-it-works {
  max-width: none;
  background: linear-gradient(180deg, #ffffff 0%, var(--bvl-ice) 100%);
}

.how-it-works > * {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(28px, 1fr) auto minmax(28px, 1fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}

.section-kicker span {
  height: 1px;
  background: rgba(0, 104, 183, 0.35);
}

.section-kicker h2 {
  margin: 0;
  color: var(--bvl-blue);
  font-size: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.steps-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 205px;
  align-content: start;
  padding: 24px 22px;
  border: 1px solid rgba(7, 26, 51, 0.08);
  border-radius: 22px;
  background: var(--bvl-white);
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.steps-grid article + article {
  border-left: 1px solid rgba(7, 26, 51, 0.08);
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--bvl-blue);
  color: var(--bvl-white);
  font-size: 20px;
  font-weight: 900;
}

.line-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  color: var(--bvl-navy);
}

.line-icon path,
.line-icon rect,
.line-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.steps-grid h3,
.trust-strip h3 {
  margin-bottom: 8px;
  color: var(--bvl-navy);
  font-size: 19px;
  font-weight: 900;
}

.steps-grid p,
.trust-strip p,
.sticker-card p,
.site-footer p {
  color: #4a5b71;
}

.footer-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--bvl-white);
  font-weight: 800;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.sticker-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  padding-top: 36px;
  padding-bottom: 44px;
}

.sticker-card,
.phone-section-card,
.video-card {
  overflow: hidden;
  border: 1px solid rgba(7, 26, 51, 0.06);
  border-radius: 14px;
  background: var(--bvl-white);
  box-shadow: 0 18px 44px rgba(7, 26, 51, 0.1);
}

.sticker-card {
  display: grid;
  background: var(--bvl-white);
  color: var(--bvl-navy);
}

.sticker-card > div:first-child {
  padding: 20px 24px 12px;
  background: linear-gradient(135deg, var(--bvl-navy), var(--bvl-navy-2));
  color: var(--bvl-white);
}

.sticker-card h2,
.phone-section-card h2,
.video-card h2,
.bottom-download h2 {
  margin-bottom: 4px;
  font-size: clamp(25px, 2.1vw, 31px);
  line-height: 1.03;
}

.sticker-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.35;
}

.sticker-explainer-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1122 / 1402;
  object-fit: contain;
  background: var(--bvl-white);
}

.phone-section-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.95fr);
  align-items: center;
  gap: 10px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 30px 16px 28px;
  border: 1px solid rgba(217, 232, 244, 0.78);
  background:
    radial-gradient(circle at 88% 50%, rgba(0, 132, 214, 0.05), transparent 42%),
    var(--bvl-white);
  box-shadow: 0 18px 44px rgba(7, 26, 51, 0.08);
}

.phone-card-copy {
  min-width: 0;
}

.phone-card-copy > p {
  margin: 0 0 16px;
  color: var(--bvl-muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
}

.phone-feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.phone-feature-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.phone-check {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: var(--bvl-blue);
  color: var(--bvl-white);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 104, 183, 0.16);
}

.phone-feature-list h3 {
  margin: 0 0 2px;
  color: var(--bvl-navy);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.15;
}

.phone-feature-list p {
  margin: 0;
  color: #4a5b71;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.28;
}

.phone-mockup-image {
  width: 100%;
  max-width: 190px;
  height: auto;
  justify-self: center;
  align-self: center;
  object-fit: contain;
  transform: translateX(2px);
}

.video-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(49, 199, 201, 0.18), transparent 34%),
    linear-gradient(135deg, var(--bvl-navy), var(--bvl-navy-2));
  color: var(--bvl-white);
}

.video-card-header {
  margin-bottom: 18px;
}

.video-card p {
  color: rgba(255, 255, 255, 0.78);
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #020b16;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.video-shell iframe,
.video-load-button,
.video-load-button img {
  width: 100%;
  height: 100%;
}

.video-shell iframe {
  border: 0;
}

.video-load-button {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: #020b16;
  cursor: pointer;
}

.video-load-button img {
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.08) contrast(1.05);
}

.video-load-button::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 51, 0.08), rgba(7, 26, 51, 0.38)),
    radial-gradient(circle at center, rgba(0, 132, 214, 0.18), transparent 46%);
  content: "";
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 999px;
  background: var(--bvl-white);
  color: var(--bvl-blue);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
}

.play-badge svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.video-summary {
  margin: 18px 0 18px;
  font-size: 16px;
  line-height: 1.5;
}

.youtube-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: var(--bvl-white);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.youtube-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.tips-section {
  max-width: 1180px;
  padding-top: 20px;
  padding-bottom: 34px;
}

.tips-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(0, 104, 183, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 14%, rgba(0, 132, 214, 0.1), transparent 34%),
    var(--bvl-white);
  box-shadow: var(--soft-shadow);
}

.tips-card article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 6px;
}

.tip-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: #edf7ff;
  color: var(--bvl-blue);
}

.tip-icon svg {
  width: 34px;
  height: 34px;
}

.tip-icon path,
.tip-icon rect,
.tip-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.tips-card h3 {
  margin-bottom: 6px;
  color: var(--bvl-navy);
  font-size: 21px;
  font-weight: 900;
}

.tips-card p {
  margin-bottom: 0;
  color: var(--bvl-muted);
  font-size: 16px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  max-width: 1180px;
  padding-top: 28px;
  padding-bottom: 34px;
}

.trust-strip article {
  min-width: 0;
  padding-top: 2px;
}

.trust-strip .line-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}

.bottom-download {
  max-width: none;
  padding-top: 34px;
  padding-bottom: 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 132, 214, 0.1), transparent 30%),
    linear-gradient(180deg, var(--bvl-white), var(--bvl-ice));
  text-align: center;
}

.bottom-download > * {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.bottom-download .eyebrow {
  margin-bottom: 10px;
  font-size: 13px;
}

.bottom-download h2 {
  color: var(--bvl-navy);
}

.bottom-download p {
  color: var(--bvl-muted);
  font-size: 18px;
}

.app-buttons-center {
  justify-content: center;
  margin-top: 26px;
  margin-bottom: 12px;
}

.bottom-download > small {
  display: block;
  color: var(--bvl-blue);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(290px, 1.2fr) repeat(5, minmax(128px, 0.78fr));
  gap: 34px;
  padding: 48px clamp(20px, 5vw, 70px) 24px;
  background: linear-gradient(135deg, var(--bvl-navy), var(--bvl-navy-2));
  color: var(--bvl-white);
}

.site-footer .bvl-logo small {
  font-size: 14px;
}

.site-footer .bvl-logo strong {
  font-size: 33px;
}

.site-footer h2 {
  margin: 0 0 10px;
  font-size: 16px;
  text-transform: uppercase;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .legal {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.46);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    background: var(--bvl-white);
    padding-top: 20px;
    padding-bottom: 16px;
  }

  .hero {
    min-height: 0;
    background:
      radial-gradient(circle at 92% 16%, rgba(0, 132, 214, 0.14), transparent 34%),
      var(--bvl-ice);
  }

  .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 63% center;
    filter: saturate(1.14) contrast(1.12) brightness(1.06);
  }

  .hero-overlay {
    display: block;
    background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 35%,
      rgba(255, 255, 255, 0.42) 65%,
      rgba(255, 255, 255, 0.10) 100%
    );
  }

  .hero-content {
    padding: 38px clamp(20px, 5vw, 44px) 44px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .sticker-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-card {
    grid-column: 1 / -1;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 560px) {
  .site-header {
    display: grid;
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .site-header p {
    font-size: 13px;
  }

  .header-actions {
    align-items: start;
    gap: 10px;
  }

  .language-link {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .bvl-logo small {
    font-size: 15px;
  }

  .bvl-logo strong {
    font-size: 32px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(42px, 11vw, 52px);
  }

  .hero-subhead {
    margin-bottom: 18px;
    font-size: 17px;
  }

  .app-buttons {
    gap: 10px;
    margin-bottom: 14px;
  }

  .hero .app-buttons {
    width: 100%;
    gap: 10px;
  }

  .app-button {
    min-height: 54px;
  }

  .hero .app-button {
    width: 100%;
  }

  .code-card {
    grid-template-columns: auto 1fr;
    justify-items: stretch;
    max-width: none;
    width: 100%;
    padding: 18px;
  }

  .gift-icon {
    width: 48px;
    height: 48px;
  }

  .gift-icon svg {
    width: 26px;
    height: 26px;
  }

  .code-card h2 {
    font-size: 23px;
    white-space: normal;
  }

  .code-card p {
    font-size: 14px;
  }

  .app-button {
    width: 100%;
  }

  .code-action {
    display: flex;
    width: 100%;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 12px;
    padding-left: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 104, 183, 0.14);
    border-left: 0;
  }

  .code-action strong {
    font-size: 34px;
  }

  .code-label {
    width: 100%;
  }

  .steps-grid,
  .sticker-section,
  .tips-card,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .video-card {
    grid-column: auto;
  }

  .phone-section-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(124px, 0.78fr);
    gap: 10px;
    padding: 22px 18px;
  }

  .phone-card-copy > p {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .phone-feature-list {
    gap: 10px;
  }

  .phone-feature-list li {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
  }

  .phone-check {
    width: 17px;
    height: 17px;
    font-size: 11px;
  }

  .phone-feature-list h3 {
    font-size: 11px;
  }

  .phone-feature-list p {
    font-size: 9.5px;
  }

  .phone-mockup-image {
    max-width: 148px;
  }

  .steps-grid article {
    min-height: 0;
    border-left: 1px solid rgba(7, 26, 51, 0.08) !important;
    padding: 24px 20px;
  }

  .section-kicker {
    gap: 12px;
  }

  .section-kicker h2 {
    font-size: 15px;
  }

}

.home-page .home-logo small {
  font-size: 15px;
}

.home-page .home-logo strong {
  font-size: 35px;
}

.home-page .home-footer .bvl-logo small {
  font-size: 14px;
}

.home-page .home-footer .bvl-logo strong {
  font-size: 33px;
}

@media (max-width: 720px) {
  .home-page .home-logo small {
    font-size: 11px;
  }

  .home-page .home-logo strong {
    font-size: 25px;
  }

  .home-page .home-footer .bvl-logo strong {
    font-size: 28px;
  }

  .bvl-logo-svg {
    height: 58px;
  }
}

/* Bennett Valley Laundromat homepage */
.home-page {
  background:
    linear-gradient(180deg, rgba(243, 250, 255, 0.62), rgba(255, 255, 255, 0) 360px),
    var(--bvl-white);
}

.home-header,
.home-hero,
.home-info-strip,
.home-section,
.home-visit-section,
.home-bottom-cta,
.home-footer-grid {
  width: min(1280px, calc(100% - 72px));
  margin-right: auto;
  margin-left: auto;
}

.home-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 24px 0 22px;
  background: var(--bvl-white);
}

.home-logo {
  color: var(--bvl-navy);
}

.home-logo small,
.home-logo strong {
  letter-spacing: 0.18em;
}

.home-logo small {
  font-size: 15px;
}

.home-logo strong {
  font-size: 35px;
}

.bvl-logo em {
  margin-top: 5px;
  color: var(--bvl-blue);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
}

.home-nav {
  display: flex;
  min-height: 54px;
  align-items: stretch;
  justify-content: center;
  gap: 2px;
}

.home-nav a {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 0;
  color: var(--bvl-navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 150ms ease, color 150ms ease;
}

.home-nav a::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--bvl-blue);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.home-nav a:hover {
  opacity: 0.85;
}

.home-nav a.is-active {
  color: var(--bvl-navy);
  font-weight: 900;
  opacity: 1;
}

.home-nav a.is-active::after {
  transform: scaleX(1);
}

.home-phone {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: end;
  gap: 10px;
  color: var(--bvl-navy);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.home-phone svg {
  width: 18px;
  height: 18px;
  fill: var(--bvl-blue);
}

.home-phone a {
  color: inherit;
  text-decoration: none;
}

.home-phone a:hover {
  color: var(--bvl-blue);
}

.home-lang {
  margin-left: 6px;
  padding-left: 20px;
  border-left: 1px solid rgba(7, 26, 51, 0.18);
  white-space: nowrap;
}

.home-lang:hover {
  background: transparent;
}

/* ─── Mobile navigation toggle & drawer ─────────────────────────────── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--bvl-navy);
  flex-shrink: 0;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: none;
  background: rgba(7, 26, 51, 0.45);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: opacity 280ms ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 455px;
  grid-template-columns: minmax(520px, 0.95fr) minmax(520px, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-top: 1px solid rgba(217, 232, 244, 0.7);
  background: var(--bvl-white);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--bvl-white) 0%, rgba(255, 255, 255, 0.98) 31%, rgba(255, 255, 255, 0.72) 46%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(circle at 43% 64%, rgba(255, 255, 255, 0.95), transparent 33%);
  content: "";
}

.home-hero-copy {
  position: relative;
  z-index: 3;
  padding: 48px 0 0;
}

.home-eyebrow {
  margin: 0 0 18px;
  color: var(--bvl-blue);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-page h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--bvl-navy);
  font-size: clamp(46px, 4vw, 62px);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.01;
}

.home-title-main {
  display: block;
  white-space: nowrap;
}

.home-title-place {
  display: block;
  margin-top: 5px;
  font-size: 0.72em;
  letter-spacing: -0.02em;
  line-height: 1.08;
  white-space: nowrap;
}

.home-hero-copy > p:not(.home-eyebrow) {
  max-width: 500px;
  margin-bottom: 24px;
  color: var(--bvl-ink);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.62;
}

.home-hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 41%;
  z-index: 1;
}

.home-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
  filter: saturate(1.18) contrast(1.08) brightness(1.04);
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero > .home-hero-actions {
  position: relative;
  z-index: 3;
  grid-column: 1;
  align-self: start;
  margin-top: 8px;
  padding-bottom: 88px;
}

.home-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--bvl-blue);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.home-button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.home-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.home-button-primary {
  background: linear-gradient(135deg, var(--bvl-blue), var(--bvl-blue-bright));
  color: var(--bvl-white);
  box-shadow: var(--button-shadow);
}

.home-button-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--bvl-blue);
  box-shadow: 0 10px 24px rgba(7, 26, 51, 0.06);
}

.home-button-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: var(--bvl-white);
  color: var(--bvl-blue);
}

.home-info-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.04fr 1.25fr 1.08fr 1.25fr;
  gap: 0;
  margin-top: -52px;
  padding: 20px 24px;
  border: 1px solid rgba(217, 232, 244, 0.86);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(14px);
}

.home-info-strip article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 0 24px;
  border-left: 1px solid var(--bvl-border);
}

.home-info-strip article:first-child {
  border-left: 0;
  padding-left: 0;
}

.home-info-strip h2 {
  margin: 0 0 4px;
  color: var(--bvl-navy);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.15;
}

.home-info-strip p,
.home-info-strip small {
  margin: 0;
  color: var(--bvl-ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.home-info-strip small {
  display: block;
  max-width: 200px;
  margin-top: 4px;
  color: var(--bvl-muted);
  font-size: 12px;
}

.home-line-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.home-info-strip .home-line-icon {
  width: 52px;
  height: 52px;
  color: var(--bvl-navy);
}

.home-section {
  padding-top: 38px;
}

.home-section-heading {
  margin-bottom: 20px;
  text-align: center;
}

.home-section-heading h2 {
  margin: 0;
  color: var(--bvl-blue);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0.26em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-section-heading p {
  margin: 10px auto 0;
  color: var(--bvl-muted);
  font-size: 16px;
  font-weight: 650;
}

.home-benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.home-benefit-grid article {
  display: grid;
  min-height: 156px;
  align-content: start;
  justify-items: center;
  padding: 18px 16px;
  border: 1px solid var(--bvl-border);
  border-radius: 14px;
  background: var(--bvl-white);
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.home-icon-bubble,
.payment-icon,
.cta-icon {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--bvl-blue);
  background:
    radial-gradient(circle at 35% 30%, rgba(49, 199, 201, 0.18), transparent 48%),
    #eaf5ff;
}

.home-icon-bubble {
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
}

.home-benefit-grid .home-line-icon {
  width: 42px;
  height: 42px;
}

.home-benefit-grid h3,
.home-payment-grid h3,
.home-faq-grid h3 {
  margin: 0 0 8px;
  color: var(--bvl-navy);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
}

.home-benefit-grid p,
.home-payment-grid p,
.home-faq-grid p {
  margin: 0;
  color: var(--bvl-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.42;
}

.home-payment-section {
  margin-top: 22px;
  padding: 22px 26px 26px;
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 132, 214, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(243, 250, 255, 0.96), rgba(255, 255, 255, 0.82));
}

.home-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.home-payment-grid article {
  position: relative;
  display: grid;
  min-height: 140px;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px;
  overflow: hidden;
  border: none;
  border-radius: 16px;
  background: var(--bvl-white);
  box-shadow:
    0 0 0 1px rgba(7, 26, 51, 0.07),
    0 4px 10px rgba(7, 26, 51, 0.05),
    0 20px 48px rgba(7, 26, 51, 0.1);
}

.payment-icon {
  width: 56px;
  height: 56px;
  color: var(--bvl-white);
  background: linear-gradient(135deg, var(--bvl-navy), var(--bvl-blue));
}

.payment-icon .home-line-icon {
  width: 32px;
  height: 32px;
}

.coin-visual {
  display: none;
  position: absolute;
  right: 28px;
  bottom: 22px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.coin-visual span {
  display: block;
  width: 28px;
  height: 9px;
  border: 1px solid #8793a0;
  border-radius: 50%;
  background: linear-gradient(180deg, #f7f8f9, #aeb5bd 55%, #f4f5f6);
  box-shadow: 0 -8px 0 #d1d5da, 0 -16px 0 #bfc6cd;
}

.coin-visual span:nth-child(2) {
  margin-bottom: 12px;
  transform: translateX(-4px);
}

.coin-visual span:nth-child(3) {
  margin-bottom: 24px;
  transform: translateX(-8px);
}

.card-brands {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.card-brand-icon {
  width: 50px;
  height: 31px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(7, 26, 51, 0.1),
    0 2px 5px rgba(7, 26, 51, 0.08);
  flex-shrink: 0;
}

.dexterpay-option a {
  grid-column: 2;
  align-self: end;
  color: var(--bvl-blue);
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
}

.dexterpay-option a:hover {
  text-decoration: underline;
}

.mobile-label {
  position: absolute;
  top: 18px;
  right: 20px;
  padding: 3px 10px;
  border: 1px solid rgba(0, 132, 214, 0.28);
  border-radius: 999px;
  background: rgba(0, 132, 214, 0.07);
  color: var(--bvl-blue-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 22px;
  max-width: 1040px;
  margin: 0 auto;
}

.home-faq-grid a {
  display: grid;
  min-height: 86px;
  grid-template-columns: 44px 1fr 16px;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--bvl-border);
  border-radius: 10px;
  background: var(--bvl-white);
  box-shadow: 0 10px 30px rgba(7, 26, 51, 0.045);
  text-decoration: none;
}

.home-faq-grid span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: #edf6ff;
  color: var(--bvl-blue);
  font-size: 24px;
  font-weight: 900;
}

.home-faq-grid strong {
  color: var(--bvl-blue);
  font-size: 30px;
  line-height: 1;
}

.home-centered-action {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.home-visit-section {
  padding-top: 32px;
}

.visit-card {
  display: grid;
  grid-template-columns: 1.04fr 1.08fr 1.42fr;
  gap: 20px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--bvl-border);
  border-radius: 14px;
  background: var(--bvl-white);
  box-shadow: var(--soft-shadow);
}

.visit-details {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 14px 10px 14px 16px;
}

.visit-details article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
}

.visit-details .home-line-icon {
  color: var(--bvl-navy);
}

.visit-details p {
  margin: 0;
  color: var(--bvl-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.visit-photo {
  overflow: hidden;
  border-radius: 8px;
  background: var(--bvl-ice);
}

.visit-photo img {
  width: 100%;
  height: 100%;
  min-height: 156px;
  object-fit: cover;
  object-position: center 64%;
}

.map-panel {
  position: relative;
  display: block;
  min-height: 156px;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  background:
    radial-gradient(circle at 63% 46%, rgba(0, 132, 214, 0.16), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.2)),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(196, 219, 234, 0.62) 43px 45px),
    repeating-linear-gradient(90deg, #fbfdff 0 48px, #edf7ff 49px 51px);
  box-shadow: inset 0 0 0 1px rgba(217, 232, 244, 0.8);
}

.real-map-panel {
  background: #f7fbff;
  box-shadow:
    inset 0 0 0 1px rgba(217, 232, 244, 0.9),
    0 16px 34px rgba(7, 26, 51, 0.06);
}

.real-map-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.94) contrast(1.04);
}

.local-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-road-major,
.map-road-minor,
.map-road-small {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-road-major {
  stroke: #ffffff;
  stroke-width: 34;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.map-road-major + .map-road-major {
  stroke-width: 30;
}

.map-road-minor {
  stroke: #ffffff;
  stroke-width: 24;
}

.map-road-small {
  stroke: #ffffff;
  stroke-width: 16;
  opacity: 0.96;
}

.map-road-label {
  fill: rgba(7, 26, 51, 0.64);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.map-label-yulupa {
  transform: rotate(-21deg);
  transform-origin: 300px 208px;
}

.map-label-sonoma {
  transform: rotate(-19deg);
  transform-origin: 118px 282px;
}

.map-label-hoen {
  transform: rotate(-7deg);
  transform-origin: 594px 204px;
}

.map-label-bethards {
  transform: rotate(-15deg);
  transform-origin: 403px 132px;
}

.map-label-montgomery {
  transform: rotate(3deg);
  transform-origin: 170px 116px;
}

.map-location-card rect {
  fill: rgba(255, 255, 255, 0.94);
  stroke: rgba(0, 108, 184, 0.18);
  stroke-width: 1.5;
}

.map-location-card text:first-of-type {
  fill: var(--bvl-navy);
  font-size: 16px;
  font-weight: 950;
}

.map-location-card text:last-of-type {
  fill: var(--bvl-muted);
  font-size: 14px;
  font-weight: 850;
}

.map-pin-real circle:first-child {
  fill: rgba(255, 255, 255, 0.94);
}

.map-pin-real path {
  fill: var(--bvl-blue);
}

.map-pin-real circle:last-child {
  fill: #fff;
}

.map-area-name {
  fill: rgba(7, 26, 51, 0.56);
  font-size: 14px;
  font-weight: 950;
}

.map-area-name-secondary {
  opacity: 0.58;
}

.real-map-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(240, 248, 255, 0.2)),
    radial-gradient(circle at 76% 48%, rgba(0, 132, 214, 0.12), transparent 26%);
  pointer-events: none;
  content: "";
}

.map-open-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 10px 12px;
  border: 1px solid rgba(0, 108, 184, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(7, 26, 51, 0.12);
  color: var(--bvl-navy);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.map-open-link:hover {
  color: var(--bvl-blue);
}

.map-panel::before,
.map-panel::after {
  position: absolute;
  z-index: 1;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 0 0 2px rgba(210, 228, 241, 0.48);
  content: "";
}

.real-map-panel::after {
  content: none;
}

.map-panel::before {
  top: 28px;
  right: -20px;
  width: 230px;
  transform: rotate(-16deg);
}

.map-panel::after {
  right: 72px;
  bottom: 30px;
  width: 190px;
  transform: rotate(18deg);
}

.map-road {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 0 2px rgba(199, 221, 236, 0.72),
    0 12px 28px rgba(7, 26, 51, 0.04);
}

.map-road-primary {
  top: 48%;
  left: -8%;
  width: 116%;
  height: 34px;
  transform: rotate(-23deg);
}

.map-road-secondary {
  top: 4%;
  left: 39%;
  width: 31px;
  height: 116%;
  transform: rotate(18deg);
}

.map-road-tertiary {
  top: 62%;
  left: 2%;
  width: 72%;
  height: 22px;
  opacity: 0.85;
  transform: rotate(7deg);
}

.map-area-label,
.map-street-label,
.map-address-label {
  position: absolute;
  z-index: 5;
  color: var(--bvl-navy);
}

.map-area-label {
  top: 18px;
  left: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(217, 232, 244, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--bvl-muted);
  font-size: 12px;
  font-weight: 900;
}

.map-street-label {
  top: 54%;
  left: 13%;
  color: rgba(7, 26, 51, 0.58);
  font-size: 12px;
  font-weight: 900;
  transform: rotate(-23deg);
}

.map-address-label {
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(217, 232, 244, 0.92);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(7, 26, 51, 0.08);
}

.map-address-label strong {
  font-size: 13px;
  font-weight: 950;
  line-height: 1.05;
}

.map-address-label small {
  color: var(--bvl-muted);
  font-size: 11px;
  font-weight: 800;
}

.map-pin {
  position: absolute;
  top: 48%;
  left: 58%;
  z-index: 6;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(7, 26, 51, 0.12);
  transform: translate(-50%, -50%);
}

.map-pin svg {
  width: 38px;
  height: 38px;
  fill: var(--bvl-blue);
}

.real-map-panel::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(240, 248, 255, 0.2)),
    radial-gradient(circle at 76% 48%, rgba(0, 132, 214, 0.12), transparent 26%);
  box-shadow: none;
  transform: none;
}

.about-photo-stack {
  position: relative;
  min-height: 430px;
  overflow: visible;
  border: 0;
  background: linear-gradient(135deg, #eef8ff, #fff);
}

.about-photo-stack img {
  position: absolute;
  display: block;
  object-fit: cover;
  box-shadow: 0 24px 54px rgba(7, 26, 51, 0.16);
}

.about-stack-main {
  inset: 0 8% 18% 0;
  width: 82%;
  height: 76%;
  border-radius: 8px;
}

.about-stack-small {
  right: 0;
  bottom: 0;
  width: 52%;
  height: 44%;
  border: 8px solid #fff;
  border-radius: 8px;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-feature-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(205, 225, 239, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(7, 26, 51, 0.06);
}

.about-feature-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.about-feature-grid h3,
.machine-feature-copy h2,
.machine-payment-layout h3,
.tips-card-grid h3,
.es-info-card h2 {
  margin: 0;
  color: var(--bvl-navy);
}

.about-feature-grid p,
.machine-feature-copy p,
.machine-feature-copy li,
.machine-payment-layout p,
.tips-card-grid p,
.es-info-card p {
  margin: 0;
  color: var(--bvl-muted);
  font-weight: 750;
  line-height: 1.55;
}

.machines-hero .content-hero-copy {
  max-width: 680px;
}

.machine-photo-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(7, 26, 51, 0.16);
}

.machine-photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center 58%;
}

.machine-highlight-grid .expect-card {
  min-height: 250px;
}

.machine-feature-section,
.machine-amenities-section {
  display: grid;
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 70px 32px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 44px;
}

.machine-feature-section-alt,
.machine-amenities-section {
  background:
    linear-gradient(135deg, rgba(239, 248, 255, 0.94), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(217, 232, 244, 0.9);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(7, 26, 51, 0.06);
}

.machine-feature-copy {
  display: grid;
  gap: 18px;
}

.machine-feature-copy h2 {
  max-width: 760px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.95;
  letter-spacing: 0;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 28px;
}

.clean-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--bvl-blue);
  content: "";
}

.machine-feature-photo {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bvl-ice);
  box-shadow: 0 24px 60px rgba(7, 26, 51, 0.12);
}

.machine-feature-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.machine-feature-section .machine-feature-photo img {
  object-position: center 58%;
}

/* ── Washer feature — premium ice-blue card redesign ── */
.washer-feature-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 52px;
  align-items: center;
  max-width: var(--home-max);
  margin: 0 auto 32px;
  padding: 56px 52px;
  background: linear-gradient(140deg, rgba(232, 245, 255, 0.98) 0%, rgba(247, 252, 255, 0.98) 100%);
  border: 1px solid rgba(0, 108, 184, 0.13);
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(7, 26, 51, 0.05);
}

.washer-card-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.washer-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgba(0, 108, 184, 0.09);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(7, 26, 51, 0.06);
}

.washer-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 108, 184, 0.09);
}

.washer-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--bvl-blue);
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.washer-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  color: var(--bvl-navy);
  letter-spacing: 0;
  line-height: 1.2;
}

.washer-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: rgba(7, 26, 51, 0.58);
  line-height: 1.5;
}

.washer-feature-photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(7, 26, 51, 0.12);
}

.washer-feature-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center 58%;
}

.machine-payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: stretch;
  gap: 24px;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.payment-method-grid article,
.tips-card-grid article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  border: 1px solid rgba(0, 108, 184, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(7, 26, 51, 0.06);
}

.machine-amenities-section {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  margin-top: 8px;
}

.amenity-grid span {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(7, 26, 51, 0.07);
  border-radius: 0;
  background: none;
  color: var(--bvl-navy);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.amenity-grid span::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bvl-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4.5 9l3 3 6-6' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

.tips-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

/* ── Machines page premium polish ──────────────────────────── */
.payment-icon,
.tip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 108, 184, 0.09);
  flex-shrink: 0;
}

.payment-icon svg,
.tip-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--bvl-blue);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--bvl-text);
  line-height: 1.5;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bvl-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5L19 7'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

.amenity-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.amenity-group {
  padding: 26px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 108, 184, 0.1);
}

.amenity-group-title {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bvl-blue);
}

.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenity-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--bvl-text);
  border-bottom: 1px solid rgba(0, 108, 184, 0.07);
}

.amenity-list li:last-child {
  border-bottom: none;
}

.amenity-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bvl-blue);
}

.tips-section-intro {
  color: var(--bvl-muted);
  font-size: 15px;
  margin: -12px 0 22px;
}

/* ── Machines page: larger top feature-card icons ─────────── */
.machines-page .machine-highlight-grid .home-icon-bubble {
  width: 70px;
  height: 70px;
  margin-bottom: 14px;
}

.machines-page .machine-highlight-grid .home-line-icon {
  width: 46px;
  height: 46px;
}

.machines-page .machine-highlight-grid .expect-card {
  min-height: 280px;
  padding: 30px 20px;
}

/* ── Amenity group icons ───────────────────────────────────── */
.amenity-group-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 108, 184, 0.09);
  margin-bottom: 14px;
}

.amenity-group-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--bvl-blue);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Dryer section timing note ─────────────────────────────── */
.dryer-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(0, 108, 184, 0.07);
  border: 1px solid rgba(0, 108, 184, 0.18);
  font-size: 14px;
  line-height: 1.55;
  color: var(--bvl-text);
}

.dryer-note svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  stroke: var(--bvl-blue);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Payment section: full-width 4-card row on desktop ────── */
.machine-payment-section .machine-payment-layout {
  display: block;
}

.machine-payment-section .payment-method-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.machine-payment-section .machine-feature-photo {
  display: none;
}

/* ── Amenities: full-width 3-card row (heading on top) ────── */
.machine-amenities-section {
  display: block;
}

.machine-amenities-section .machine-feature-copy {
  width: 100%;
}

.machine-amenities-section .machine-feature-photo {
  display: none;
}

.machine-amenities-section .amenity-groups {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.machine-cta {
  max-width: var(--home-max);
  margin: 70px auto;
  grid-template-columns: minmax(0, 1fr) auto;
}

.machine-cta > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.machine-cta .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.machine-cta .cta-actions .home-button {
  min-width: 170px;
}

.es-hero {
  align-items: stretch;
}

.es-info-card {
  display: grid;
  gap: 18px;
  align-content: center;
}

.visit-button {
  grid-column: 2;
  min-height: 46px;
  margin-top: -64px;
  align-self: end;
}

.home-bottom-cta {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  margin-bottom: 0;
  padding: 24px 28px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 2% 20%, rgba(49, 199, 201, 0.26), transparent 24%),
    linear-gradient(135deg, var(--bvl-blue), var(--bvl-navy));
  color: var(--bvl-white);
  box-shadow: var(--premium-shadow);
}

.home-bottom-cta > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-bottom-cta > div:nth-child(2) {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.cta-icon {
  width: 64px;
  height: 64px;
  color: var(--bvl-white);
  background: rgba(255, 255, 255, 0.13);
}

.cta-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.home-bottom-cta h2 {
  margin: 0 0 4px;
  color: var(--bvl-white);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.1;
}

.home-bottom-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 650;
}

.home-bottom-cta .cta-actions {
  gap: 12px;
}

.home-footer {
  margin-top: 16px;
  padding: 38px 0 24px;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 132, 214, 0.26), transparent 28%),
    linear-gradient(135deg, var(--bvl-navy), var(--bvl-navy-2));
  color: var(--bvl-white);
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(5, minmax(0, 1fr));
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.home-footer h2 {
  margin: 0 0 10px;
  color: var(--bvl-white);
  font-size: 14px;
  font-weight: 950;
}

.home-footer p,
.home-footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
  text-decoration: none;
}

.home-footer a:hover {
  color: var(--bvl-white);
  text-decoration: underline;
}

.home-footer .bvl-logo strong {
  font-size: 33px;
}

.home-footer .bvl-logo small {
  font-size: 14px;
}

.home-footer .bvl-logo em {
  color: rgba(255, 255, 255, 0.72);
}

.footer-legal {
  width: min(1280px, calc(100% - 72px));
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1100px) {
  .home-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .home-phone {
    justify-self: center;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: 560px;
  }

  .home-hero-copy {
    padding-top: 48px;
  }

  .home-page h1 {
    max-width: 680px;
    font-size: clamp(42px, 5.8vw, 52px);
  }

  .home-hero-visual {
    left: 46%;
  }

  .home-title-main,
  .home-title-place {
    white-space: nowrap;
  }

  .home-info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -50px;
  }

  .home-info-strip article:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .home-info-strip article:nth-child(n + 3) {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--bvl-border);
  }

  .home-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-payment-grid,
  .home-faq-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .visit-card {
    grid-template-columns: 1fr 1fr;
  }

  .map-panel {
    grid-column: 1 / -1;
  }

  .visit-button {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .home-bottom-cta {
    grid-template-columns: 1fr;
  }

  .home-bottom-cta > div:nth-child(2) {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    border-left: 0;
  }

  .home-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .home-header,
  .home-hero,
  .home-info-strip,
  .home-section,
  .home-visit-section,
  .home-bottom-cta,
  .home-footer-grid,
  .footer-legal {
    width: min(100% - 32px, 1160px);
  }

  .home-header {
    position: sticky;
    top: 0;
    z-index: 201;
    padding: 14px 0;
    background: var(--bvl-white);
    grid-template-columns: 1fr auto auto;
    gap: 0 4px;
  }

  .home-logo small {
    font-size: 11px;
  }

  .home-logo strong {
    font-size: 25px;
  }

  .bvl-logo em {
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-overlay {
    display: block;
  }

  .home-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: min(300px, 82vw);
    height: 100dvh;
    min-height: unset;
    gap: 0;
    flex-wrap: nowrap;
    padding: 80px 28px 40px;
    background: #fff;
    box-shadow: -8px 0 40px rgba(7, 26, 51, 0.15);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .home-nav.is-open {
    transform: translateX(0);
  }

  .home-nav a {
    display: flex;
    width: 100%;
    min-height: unset;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(7, 26, 51, 0.08);
    border-radius: 0;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    opacity: 1;
  }

  .home-nav a.is-active {
    color: var(--bvl-blue);
    font-weight: 800;
    background: transparent;
    border-color: rgba(7, 26, 51, 0.08);
  }

  .home-nav a::after {
    display: none;
  }

  .home-nav .home-lang {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-bottom: none;
    margin-top: 12px;
    font-size: 14px;
    opacity: 0.5;
  }

  .home-phone {
    min-height: 36px;
    font-size: 12px;
  }

  .home-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .home-hero::before {
    display: none;
  }

  .home-hero-copy {
    padding: 38px 0 0;
  }

  .home-hero-visual {
    position: static;
    height: auto;
    margin: 22px 0 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(7, 26, 51, 0.16);
  }

  .home-hero-visual img {
    width: 100%;
    height: 230px;
    min-height: 0;
    object-fit: cover;
    object-position: center 52%;
  }

  .home-hero > .home-hero-actions {
    margin-top: 22px;
    padding-bottom: 0;
  }

  .home-eyebrow {
    font-size: 12px;
    letter-spacing: 0.24em;
  }

  .home-page h1 {
    max-width: 350px;
    margin-bottom: 16px;
    font-size: clamp(36px, 11vw, 48px);
    letter-spacing: -0.035em;
  }

  .home-title-main,
  .home-title-place {
    white-space: normal;
  }

  .home-hero-copy > p:not(.home-eyebrow) {
    max-width: 330px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .home-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 330px;
    gap: 10px;
  }

  .home-hero > .home-hero-actions {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    gap: 10px;
  }

  .home-hero > .home-hero-actions .home-button {
    flex-direction: column;
    gap: 7px;
    width: 100%;
    min-height: 78px;
    padding: 12px 6px;
    font-size: 12px;
    line-height: 1.15;
    text-align: center;
  }

  .home-hero > .home-hero-actions .home-button svg {
    width: 22px;
    height: 22px;
  }

  .home-button {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
  }

  .home-info-strip {
    grid-template-columns: 1fr;
    margin-top: 28px;
    padding: 22px 20px;
    border-radius: 18px;
  }

  .home-info-strip article,
  .home-info-strip article:first-child,
  .home-info-strip article:nth-child(3) {
    padding: 16px 0 0;
    border-top: 1px solid var(--bvl-border);
    border-left: 0;
  }

  .home-info-strip article:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .home-info-strip article:nth-child(n + 3) {
    margin-top: 0;
  }

  .home-info-strip .home-line-icon {
    width: 44px;
    height: 44px;
  }

  .home-section {
    padding-top: 42px;
  }

  .home-section-heading h2 {
    font-size: 14px;
    letter-spacing: 0.22em;
  }

  .home-benefit-grid {
    grid-template-columns: 1fr;
  }

  .home-benefit-grid article {
    min-height: 0;
    padding: 24px 20px;
  }

  .home-payment-section {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    border-radius: 0;
  }

  .home-payment-grid article {
    grid-template-columns: 54px 1fr;
    padding: 24px 20px;
  }

  .coin-visual {
    display: none;
  }

  .home-faq-grid a {
    grid-template-columns: 38px 1fr 14px;
    gap: 12px;
    padding: 16px 14px;
  }

  .home-faq-grid span {
    width: 36px;
    height: 36px;
  }

  .visit-card {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .visit-details {
    padding: 8px 4px;
  }

  .visit-photo img,
  .map-panel {
    min-height: 210px;
  }

  .home-bottom-cta {
    padding: 22px 18px;
  }

  .home-bottom-cta > div {
    align-items: flex-start;
  }

  .cta-icon {
    width: 52px;
    height: 52px;
  }

  .home-bottom-cta .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-footer .bvl-logo strong {
    font-size: 28px;
  }
}

/* Lightweight navigation for the DexterPay QR page */
.pay-header-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pay-mini-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pay-mini-nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--bvl-navy);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(7, 26, 51, 0.06);
}

.pay-mini-nav a:hover {
  background: var(--bvl-white);
  text-decoration: none;
}

.pay-mini-nav a.is-active {
  border-color: rgba(0, 108, 184, 0.28);
  background: rgba(0, 108, 184, 0.1);
  color: var(--bvl-blue-dark);
}

.pay-phone-status {
  white-space: nowrap;
}

.pay-phone-status a {
  color: var(--bvl-navy);
  text-decoration: none;
}

.pay-phone-status a:hover {
  color: var(--bvl-blue);
}

@media (max-width: 900px) {
  .pay-mini-nav {
    flex-wrap: wrap;
    gap: 6px;
  }

  .pay-mini-nav a {
    padding: 5px 10px;
    font-size: 12px;
  }
}

@media (max-width: 560px) {
  .pay-header-actions {
    justify-content: flex-start;
  }

  .pay-mini-nav a {
    min-height: 32px;
    padding: 5px 8px;
  }
}

/* Trust and service content pages */
.content-page {
  background:
    linear-gradient(180deg, rgba(243, 250, 255, 0.72), rgba(255, 255, 255, 0) 620px),
    var(--bvl-white);
}

.content-hero,
.content-section,
.visit-cta-card {
  width: min(1280px, calc(100% - 72px));
  margin-right: auto;
  margin-left: auto;
}

.content-hero {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1fr);
  align-items: center;
  gap: 54px;
  padding: 66px 0 58px;
  border-top: 1px solid rgba(217, 232, 244, 0.72);
}

.content-hero-copy {
  min-width: 0;
}

.content-page h1 {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--bvl-navy);
  font-size: clamp(48px, 5.1vw, 72px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.wash-fold-page .wash-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  padding: 30px 0 26px;
  min-height: 640px;
  gap: 48px;
}

.wash-fold-page .wash-hero h1 {
  max-width: 790px;
  font-size: clamp(52px, 5.4vw, 76px);
  line-height: 0.92;
  margin-bottom: 20px;
}

.wash-fold-page .wash-hero h1 span {
  display: block;
}

.wash-fold-page .wash-hero .content-hero-copy > p:not(.home-eyebrow) {
  font-size: 19px;
  margin-bottom: 34px;
}

.wash-fold-page .locker-photo-card {
  min-height: 600px;
}

.wash-fold-page .locker-photo-card img {
  min-height: 600px;
  object-position: center 62%;
}

.content-hero-copy > p:not(.home-eyebrow) {
  max-width: 620px;
  margin: 0 0 30px;
  color: var(--bvl-ink);
  font-size: 18px;
  font-weight: 680;
  line-height: 1.64;
}

.content-hero-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(217, 232, 244, 0.92);
  border-radius: 24px;
  background: var(--bvl-white);
  box-shadow: var(--premium-shadow);
}

.content-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.12) contrast(1.08) brightness(1.04);
}

.content-hero-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--bvl-navy);
  box-shadow: 0 18px 42px rgba(7, 26, 51, 0.16);
}

.content-hero-badge strong {
  font-size: 18px;
  font-weight: 950;
}

.content-hero-badge span {
  color: var(--bvl-muted);
  font-size: 14px;
  font-weight: 800;
}

.content-section {
  padding-top: 58px;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.content-section-heading h2,
.content-copy-card h2,
.philosophy-panel h2,
.visit-cta-card h2,
.locker-location-panel h2,
.pickup-section h2 {
  margin: 0;
  color: var(--bvl-navy);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.content-section-heading p:not(.home-eyebrow),
.locker-location-panel p,
.pickup-section p,
.care-section p {
  color: var(--bvl-muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.64;
}

.content-copy-card {
  padding: 34px 38px;
  border: 1px solid rgba(217, 232, 244, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--soft-shadow);
}

.content-copy-card p {
  margin: 0 0 18px;
  color: var(--bvl-ink);
  font-size: 18px;
  font-weight: 680;
  line-height: 1.7;
}

.content-copy-card p:last-child {
  margin-bottom: 0;
}

.content-card-grid {
  display: grid;
  gap: 18px;
}

.content-card-grid.five-up {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.expect-card {
  display: grid;
  min-height: 220px;
  align-content: start;
  justify-items: center;
  padding: 26px 18px;
  border: 1px solid var(--bvl-border);
  border-radius: 18px;
  background: var(--bvl-white);
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.expect-card h3 {
  margin: 18px 0 10px;
  color: var(--bvl-navy);
  font-size: 19px;
  font-weight: 950;
  line-height: 1.12;
}

.expect-card p {
  margin: 0;
  color: var(--bvl-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.48;
}

.service-overview {
  margin-top: 22px;
  padding: 34px 34px 38px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 22%, rgba(0, 132, 214, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(243, 250, 255, 0.98), rgba(255, 255, 255, 0.86));
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-overview-grid article {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 26px 24px;
  border: 1px solid rgba(217, 232, 244, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(7, 26, 51, 0.06);
}

.service-overview-grid h3 {
  margin: 0 0 10px;
  color: var(--bvl-navy);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.12;
}

.service-overview-grid p {
  margin: 0 0 22px;
  color: var(--bvl-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

.service-overview-grid a {
  align-self: end;
  color: var(--bvl-blue);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

.service-overview-grid a:hover {
  text-decoration: underline;
}

.philosophy-panel,
.visit-cta-card,
.locker-location-panel,
.pickup-section,
.payment-rules {
  border: 1px solid rgba(217, 232, 244, 0.9);
  box-shadow: var(--premium-shadow);
}

.philosophy-panel {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 26px;
  align-items: start;
  margin-top: 58px;
  padding: 38px 42px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 6% 18%, rgba(49, 199, 201, 0.18), transparent 28%),
    linear-gradient(135deg, var(--bvl-navy), var(--bvl-navy-2));
  color: var(--bvl-white);
}

.philosophy-panel h2,
.philosophy-panel .home-eyebrow {
  color: var(--bvl-white);
}

.philosophy-panel p {
  max-width: 900px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.68;
}

.visit-cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 58px;
  margin-bottom: 22px;
  padding: 34px 38px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 2% 20%, rgba(49, 199, 201, 0.26), transparent 24%),
    linear-gradient(135deg, var(--bvl-blue), var(--bvl-navy));
  color: var(--bvl-white);
}

.visit-cta-card h2,
.visit-cta-card .home-eyebrow {
  color: var(--bvl-white);
}

.visit-cta-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.visit-cta-card p a {
  color: var(--bvl-white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  text-underline-offset: 3px;
}

.locker-visual {
  position: relative;
  min-height: 430px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(217, 232, 244, 0.92);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 12%, rgba(0, 132, 214, 0.2), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef8ff);
  box-shadow: var(--premium-shadow);
}

.locker-photo-card {
  min-height: 430px;
  padding: 0;
  background: var(--bvl-white);
}

.locker-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(1.06) contrast(1.04) brightness(1.02);
}

.locker-photo-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--bvl-navy);
  box-shadow: 0 18px 40px rgba(7, 26, 51, 0.18);
  backdrop-filter: blur(10px);
}

.locker-photo-note strong {
  font-size: 17px;
  font-weight: 950;
}

.locker-photo-note span {
  color: var(--bvl-muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.42;
}

.locker-flow-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-height: 300px;
  padding-bottom: 80px;
}

.locker-flow-card {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  min-height: 300px;
  padding: 28px 24px;
  border: 2px solid rgba(7, 26, 51, 0.11);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 250, 255, 0.97)),
    var(--bvl-white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 18px 36px rgba(7, 26, 51, 0.08);
}

.locker-flow-card::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 20px;
  width: 28px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--bvl-blue), var(--bvl-blue-bright));
}

.locker-flow-card span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 132, 214, 0.12);
  color: var(--bvl-blue);
  font-size: 17px;
  font-weight: 950;
}

.locker-flow-card strong {
  max-width: 190px;
  color: var(--bvl-navy);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.locker-flow-card small {
  color: var(--bvl-muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.locker-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  height: 100%;
  min-height: 300px;
}

.locker-unit {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 300px;
  padding: 28px 22px;
  border: 3px solid rgba(7, 26, 51, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(243, 250, 255, 0.96)),
    var(--bvl-white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 18px 36px rgba(7, 26, 51, 0.08);
  text-align: center;
}

.locker-unit::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 22px;
  width: 28px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--bvl-blue), var(--bvl-blue-bright));
}

.locker-unit span {
  color: var(--bvl-blue);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.locker-unit strong {
  margin-top: 12px;
  color: var(--bvl-navy);
  font-size: clamp(28px, 3.3vw, 42px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.locker-unit small {
  margin-top: 14px;
  color: var(--bvl-muted);
  font-size: 14px;
  font-weight: 800;
}

.locker-note-card {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--bvl-navy);
  box-shadow: 0 16px 38px rgba(7, 26, 51, 0.12);
}

.locker-note-card strong {
  font-size: 18px;
  font-weight: 950;
}

.locker-note-card span {
  color: var(--bvl-muted);
  font-size: 14px;
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 28px 24px;
  border: 1px solid var(--bvl-border);
  border-radius: 18px;
  background: var(--bvl-white);
  box-shadow: var(--soft-shadow);
}

.process-grid span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bvl-blue), var(--bvl-blue-bright));
  color: var(--bvl-white);
  font-size: 17px;
  font-weight: 950;
}

.process-grid h3,
.instruction-card h3,
.price-card h3,
.care-grid h3 {
  margin: 18px 0 10px;
  color: var(--bvl-navy);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.12;
}

.process-grid p,
.instruction-card li,
.price-card p,
.care-grid p,
.pickup-steps li {
  color: var(--bvl-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.56;
}

.before-dropoff-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
  padding: 30px 34px;
  border: 1px solid rgba(217, 232, 244, 0.95);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 255, 0.78)),
    var(--bvl-white);
  box-shadow: var(--soft-shadow);
}

.before-dropoff-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: rgba(0, 116, 204, 0.1);
  color: var(--bvl-blue);
}

.before-dropoff-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.before-dropoff-card h2 {
  margin: 0;
  color: var(--bvl-navy);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.before-dropoff-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.before-dropoff-list li {
  position: relative;
  padding-left: 28px;
  color: var(--bvl-ink);
  font-size: 16px;
  font-weight: 780;
  line-height: 1.42;
}

.before-dropoff-list li::before {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 8px;
  height: 14px;
  border-right: 3px solid var(--bvl-blue);
  border-bottom: 3px solid var(--bvl-blue);
  content: "";
  transform: rotate(45deg);
}

.locker-location-panel,
.pickup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
  margin-top: 58px;
  padding: 36px 38px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 8%, rgba(0, 132, 214, 0.1), transparent 30%),
    var(--bvl-white);
}

.instruction-card {
  padding: 28px 30px;
  border: 1px solid rgba(217, 232, 244, 0.95);
  border-radius: 16px;
  background: rgba(243, 250, 255, 0.72);
}

.instruction-card ol,
.pickup-steps {
  margin: 0;
  padding-left: 22px;
}

.important-note,
.payment-rules p:first-child {
  color: var(--bvl-navy);
  font-weight: 950;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.price-card {
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(217, 232, 244, 0.95);
  border-radius: 20px;
  background: var(--bvl-white);
  box-shadow: var(--premium-shadow);
}

.price-card h3 {
  margin-top: 0;
  margin-bottom: 18px;
}

.price-row {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--bvl-border);
}

.price-row span,
.minimum-order span {
  color: var(--bvl-muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-row strong,
.minimum-order strong {
  color: var(--bvl-blue);
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.price-row.is-soft strong {
  color: var(--bvl-navy);
}

.minimum-order {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--bvl-border);
}

.care-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 34px;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.care-grid article,
.payment-rules {
  padding: 28px 30px;
  border-radius: 18px;
  background: var(--bvl-white);
}

.care-grid article {
  border: 1px solid var(--bvl-border);
  box-shadow: var(--soft-shadow);
}

.care-list {
  margin: 0;
  padding-left: 22px;
}

.care-intro {
  margin: 0 0 12px;
  color: var(--bvl-navy) !important;
  font-weight: 900 !important;
}

.care-list li {
  margin-bottom: 10px;
  color: var(--bvl-ink);
  font-size: 16px;
  font-weight: 800;
}

.care-note {
  padding-top: 14px;
  border-top: 1px solid var(--bvl-border);
}

.pickup-steps {
  display: grid;
  gap: 12px;
  padding: 26px 28px 26px 52px;
  border: 1px solid rgba(217, 232, 244, 0.95);
  border-radius: 16px;
  background: rgba(243, 250, 255, 0.72);
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.payment-method-card {
  appearance: none;
  display: grid;
  min-height: 112px;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 20px 18px;
  border: 1px solid var(--bvl-border);
  border-radius: 18px;
  background: var(--bvl-white);
  color: var(--bvl-navy);
  cursor: pointer;
  font: inherit;
  box-shadow: var(--soft-shadow);
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.payment-method-card:hover,
.payment-method-card[aria-expanded="true"] {
  border-color: rgba(0, 116, 204, 0.42);
  box-shadow: 0 18px 42px rgba(7, 26, 51, 0.11);
  transform: translateY(-2px);
}

.payment-method-card[aria-expanded="true"] {
  background:
    linear-gradient(180deg, rgba(243, 250, 255, 0.94), rgba(255, 255, 255, 0.98)),
    var(--bvl-white);
}

.payment-method-card strong {
  font-size: 22px;
  font-weight: 950;
}

.payment-method-card span {
  color: var(--bvl-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.payment-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.payment-detail-grid[hidden],
.payment-detail-card[hidden] {
  display: none !important;
}

.payment-detail-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 250px;
  padding: 34px 28px 28px;
  scroll-margin-top: 110px;
  border: 1px solid rgba(217, 232, 244, 0.95);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 255, 0.72)),
    var(--bvl-white);
  box-shadow: var(--soft-shadow);
}

.payment-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(0, 116, 204, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--bvl-navy);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.payment-detail-close:hover {
  border-color: rgba(0, 116, 204, 0.48);
  color: var(--bvl-blue);
}

.payment-detail-card h3 {
  margin: 0;
  color: var(--bvl-navy);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.payment-detail-card p {
  margin: 0;
  color: var(--bvl-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.58;
}

.payment-detail-card strong,
.payment-detail-card a {
  color: var(--bvl-navy);
}

.payment-kicker {
  color: var(--bvl-blue) !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.qr-detail-card,
.cash-photo-card {
  grid-template-columns: minmax(0, 0.82fr) minmax(180px, 0.7fr);
  align-items: center;
}

.qr-detail-card img {
  width: min(100%, 260px);
  justify-self: center;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(7, 26, 51, 0.12);
}

.cash-photo-card img {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(7, 26, 51, 0.12);
}

.payment-link-button {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bvl-blue);
  color: var(--bvl-white) !important;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 116, 204, 0.2);
}

.payment-link-button:hover {
  background: var(--bvl-navy);
}

.payment-rules {
  margin-top: 22px;
  background:
    linear-gradient(135deg, rgba(243, 250, 255, 0.9), rgba(255, 255, 255, 0.98)),
    var(--bvl-white);
}

.payment-rules p {
  margin: 0 0 10px;
  color: var(--bvl-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.payment-rules p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .content-hero,
  .content-split,
  .locker-location-panel,
  .pickup-section,
  .care-section,
  .visit-cta-card {
    grid-template-columns: 1fr;
  }

  .wash-fold-page .wash-hero {
    grid-template-columns: 1fr;
  }

  .content-card-grid.five-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-overview-grid,
  .process-grid,
  .locker-flow-cards,
  .payment-method-grid,
  .payment-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qr-detail-card,
  .cash-photo-card {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .content-hero,
  .content-section,
  .visit-cta-card {
    width: min(100% - 32px, 1160px);
  }

  .content-hero {
    min-height: 0;
    gap: 28px;
    padding: 38px 0 30px;
  }

  .content-page h1 {
    font-size: clamp(40px, 11vw, 52px);
    line-height: 1;
  }

  .wash-fold-page .wash-hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .content-hero-copy > p:not(.home-eyebrow) {
    font-size: 16px;
  }

  .content-hero-visual,
  .locker-visual {
    min-height: 330px;
    border-radius: 20px;
  }

  .locker-photo-card {
    min-height: 460px;
  }

  .locker-photo-card img {
    min-height: 460px;
    object-position: center 50%;
  }

  .locker-photo-note {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 15px 16px;
  }

  .content-hero-visual img {
    min-height: 330px;
  }

  .content-section {
    padding-top: 42px;
  }

  .content-card-grid.five-up,
  .service-overview-grid,
  .process-grid,
  .locker-flow-cards,
  .care-grid,
  .payment-method-grid,
  .payment-detail-grid,
  .qr-detail-card,
  .cash-photo-card {
    grid-template-columns: 1fr;
  }

  .content-copy-card,
  .service-overview,
  .philosophy-panel,
  .visit-cta-card,
  .before-dropoff-card,
  .locker-location-panel,
  .pickup-section,
  .instruction-card,
  .price-card,
  .care-grid article,
  .payment-rules {
    padding: 24px 20px;
  }

  .philosophy-panel {
    grid-template-columns: 1fr;
  }

  .locker-visual {
    padding: 22px;
  }

  .locker-flow-cards {
    min-height: 0;
    padding-bottom: 0;
  }

  .locker-flow-card {
    min-height: 165px;
  }

  .locker-stack {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .locker-unit {
    min-height: 190px;
  }

  .locker-note-card {
    position: static;
    margin-top: 18px;
  }

  .qr-detail-card img {
    width: min(100%, 250px);
  }

  .pickup-steps {
    padding-left: 42px;
  }

  .visit-cta-card .home-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .before-dropoff-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 720px) {
  .wash-fold-page .locker-photo-card {
    min-height: 0;
  }

  .wash-fold-page .locker-photo-card img {
    height: auto;
    min-height: 0;
  }
}

@media (min-width: 900px) {
  .wash-fold-page .wash-hero h1 span {
    white-space: nowrap;
  }
}

/* FAQ page */
.faq-page {
  background:
    linear-gradient(180deg, rgba(243, 250, 255, 0.7), rgba(255, 255, 255, 0) 560px),
    var(--bvl-white);
}

.faq-hero,
.faq-quick-grid,
.faq-categories,
.faq-info-section,
.faq-help-cta {
  width: min(1280px, calc(100% - 72px));
  margin-right: auto;
  margin-left: auto;
}

.faq-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1fr);
  align-items: center;
  gap: 52px;
  padding: 70px 0 56px;
  overflow: hidden;
}

.faq-hero::before {
  position: absolute;
  top: 44px;
  right: 26%;
  width: 180px;
  height: 130px;
  background-image: radial-gradient(rgba(0, 104, 183, 0.18) 2px, transparent 2px);
  background-size: 18px 18px;
  content: "";
}

.faq-hero-copy {
  position: relative;
  z-index: 2;
}

.faq-page h1 {
  max-width: 660px;
  margin: 0 0 24px;
  color: var(--bvl-navy);
  font-size: clamp(50px, 5vw, 72px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.faq-hero-copy > p:not(.home-eyebrow) {
  max-width: 560px;
  margin: 0 0 34px;
  color: var(--bvl-ink);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.65;
}

.faq-hero-art {
  position: relative;
  display: flex;
  align-items: stretch;
}

.faq-machine-visual {
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--premium-shadow);
}

.faq-machine-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(1.08) contrast(1.05);
}

.faq-map-visual {
  position: absolute;
  top: 74px;
  right: 4%;
  z-index: 1;
  width: min(330px, 50%);
  height: 252px;
  overflow: hidden;
  border: 1px solid rgba(217, 232, 244, 0.95);
  border-radius: 22px;
  background:
    linear-gradient(32deg, transparent 44%, rgba(250, 205, 90, 0.42) 45%, rgba(250, 205, 90, 0.42) 49%, transparent 50%),
    linear-gradient(124deg, transparent 44%, rgba(170, 210, 235, 0.7) 45%, rgba(170, 210, 235, 0.7) 49%, transparent 50%),
    linear-gradient(90deg, rgba(0, 104, 183, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 104, 183, 0.08) 1px, transparent 1px),
    var(--bvl-white);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
  box-shadow: var(--soft-shadow);
}

.faq-map-pin {
  position: absolute;
  top: 90px;
  right: 88px;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(7, 26, 51, 0.12);
}

.faq-map-pin svg {
  width: 42px;
  height: 42px;
  fill: var(--bvl-blue);
}

.faq-help-bubble {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  max-width: 210px;
  min-height: 70px;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(217, 232, 244, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--bvl-navy);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.18;
  box-shadow: var(--soft-shadow);
}

.faq-help-bubble span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 104, 183, 0.1);
  color: var(--bvl-blue);
  font-size: 18px;
}

.faq-help-bubble svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-help-bubble-one {
  top: 10px;
  left: 18%;
}

.faq-help-bubble-two {
  top: 214px;
  left: 0;
}

.faq-help-bubble-three {
  right: 7%;
  bottom: 36px;
}

.faq-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 8px;
  margin-bottom: 40px;
}

.faq-quick-grid a {
  display: grid;
  min-height: 116px;
  grid-template-columns: 58px 1fr 18px;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--bvl-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--bvl-navy);
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(7, 26, 51, 0.06);
}

.faq-quick-grid a:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.faq-quick-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 132, 214, 0.12);
}

.faq-quick-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--bvl-blue);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-quick-grid h2 {
  margin: 0 0 2px;
  font-size: 18px;
  font-weight: 950;
}

.faq-quick-grid p {
  margin: 0;
  color: var(--bvl-muted);
  font-size: 14px;
  font-weight: 800;
}

.faq-quick-grid strong {
  color: var(--bvl-blue);
  font-size: 30px;
}

.faq-categories {
  display: grid;
  gap: 22px;
}

.faq-category {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  padding: 32px 34px;
  border: 1px solid var(--bvl-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(7, 26, 51, 0.055);
}

.faq-category-icon {
  display: grid;
  align-self: stretch;
  place-items: start center;
  padding-top: 12px;
  border-right: 1px solid var(--bvl-border);
}

.faq-category-icon svg {
  width: 96px;
  height: 96px;
  padding: 24px;
  border-radius: 50%;
  background: rgba(0, 132, 214, 0.1);
  fill: none;
  stroke: var(--bvl-blue);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-category-body h2 {
  margin: 0 0 14px;
  color: var(--bvl-blue);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.015em;
}

.faq-accordion {
  border-top: 1px solid var(--bvl-border);
}

.faq-item {
  position: relative;
  border-bottom: 1px solid var(--bvl-border);
  scroll-margin-top: 112px;
  transition: background 180ms ease;
}

.faq-item.is-targeted {
  background: linear-gradient(90deg, rgba(0, 132, 214, 0.09), rgba(255, 255, 255, 0) 72%);
}

.faq-item.is-targeted::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: -16px;
  width: 4px;
  border-radius: 999px;
  background: var(--bvl-blue);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: var(--bvl-navy);
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.28;
  text-align: left;
}

.faq-question svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--bvl-navy);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-question:focus-visible {
  outline: 3px solid rgba(0, 104, 183, 0.34);
  outline-offset: 4px;
  border-radius: 8px;
}

.faq-answer {
  max-width: 920px;
  padding: 0 44px 20px 0;
  color: var(--bvl-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.68;
}

.faq-answer p,
.faq-answer ul {
  margin: 0 0 12px;
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--bvl-navy);
}

.faq-answer ul {
  padding-left: 22px;
}

.faq-info-section {
  margin-top: 54px;
  margin-bottom: 26px;
}

.faq-info-section > h2 {
  margin: 0 0 24px;
  color: var(--bvl-blue);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.28em;
  text-align: center;
  text-transform: uppercase;
}

.faq-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.faq-info-grid article {
  display: grid;
  min-height: 112px;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px 30px;
  border: 1px solid var(--bvl-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(7, 26, 51, 0.055);
}

.faq-info-grid h3 {
  margin: 0 0 4px;
  color: var(--bvl-navy);
  font-size: 17px;
  font-weight: 950;
}

.faq-info-grid p {
  margin: 0;
  color: var(--bvl-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.faq-help-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  margin-bottom: 44px;
  padding: 28px 34px;
  border-radius: 12px;
  background:
    linear-gradient(115deg, rgba(0, 132, 214, 0.98), rgba(7, 26, 51, 0.98) 66%),
    var(--bvl-navy);
  color: var(--bvl-white);
  box-shadow: var(--premium-shadow);
}

.faq-help-cta > div:first-child {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 22px;
}

.faq-help-cta h2 {
  margin: 0 0 4px;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.faq-help-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.faq-help-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  align-items: center;
  gap: 14px;
}

.faq-help-actions p {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 14px;
}

.faq-help-actions .home-button {
  width: 100%;
}

@media (max-width: 1100px) {
  .faq-hero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 48px;
  }

  .faq-hero-art {
    min-height: 360px;
  }

  .faq-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-category {
    grid-template-columns: 150px 1fr;
  }

  .faq-category-icon svg {
    width: 82px;
    height: 82px;
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .faq-info-grid {
    grid-template-columns: 1fr;
  }

  .faq-info-grid article {
    min-height: 96px;
  }

  .faq-help-cta {
    grid-template-columns: 1fr;
  }

  .faq-help-actions {
    grid-template-columns: repeat(2, minmax(190px, 1fr));
  }
}

@media (max-width: 720px) {
  .faq-hero,
  .faq-quick-grid,
  .faq-categories,
  .faq-info-section,
  .faq-help-cta {
    width: calc(100% - 32px);
  }

  .faq-hero {
    min-height: 0;
    padding: 36px 0 28px;
  }

  .faq-page h1 {
    max-width: 360px;
    margin-bottom: 16px;
    font-size: clamp(38px, 12vw, 48px);
    letter-spacing: -0.04em;
  }

  .faq-hero-copy > p:not(.home-eyebrow) {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .faq-hero-art {
    min-height: 310px;
  }

  .faq-machine-visual {
    top: 48px;
    left: 6%;
    width: 68%;
    height: 230px;
    border-width: 8px;
  }

  .faq-map-visual {
    top: 72px;
    right: 0;
    width: 48%;
    height: 190px;
  }

  .faq-map-pin {
    top: 68px;
    right: 40px;
    width: 54px;
    height: 54px;
  }

  .faq-map-pin svg {
    width: 32px;
    height: 32px;
  }

  .faq-help-bubble {
    max-width: 168px;
    min-height: 52px;
    gap: 8px;
    padding: 10px 12px;
    font-size: 11px;
  }

  .faq-help-bubble span {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .faq-help-bubble-one {
    top: 0;
    left: 13%;
  }

  .faq-help-bubble-two {
    top: 205px;
    left: 0;
  }

  .faq-help-bubble-three {
    right: 0;
    bottom: 0;
  }

  .faq-quick-grid,
  .faq-info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .faq-quick-grid {
    margin-bottom: 28px;
  }

  .faq-quick-grid a {
    min-height: 92px;
    grid-template-columns: 50px 1fr 14px;
    gap: 14px;
    padding: 18px;
  }

  .faq-quick-icon {
    width: 50px;
    height: 50px;
  }

  .faq-quick-icon svg {
    width: 28px;
    height: 28px;
  }

  .faq-category {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .faq-category-icon {
    display: none;
  }

  .faq-category-body h2 {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .faq-question {
    min-height: 58px;
    padding: 15px 0;
    font-size: 15px;
  }

  .faq-answer {
    padding-right: 0;
    font-size: 14px;
    line-height: 1.62;
  }

  .faq-info-section {
    margin-top: 34px;
  }

  .faq-info-section > h2 {
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .faq-info-grid article {
    min-height: 96px;
    padding: 20px 18px;
  }

  .faq-help-cta {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 18px;
  }

  .faq-help-cta > div:first-child {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }

  .faq-help-cta h2 {
    font-size: 24px;
  }

  .faq-help-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .home-nav a {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px;
  }
}

@media (min-width: 721px) and (max-width: 1060px) {
  .about-feature-grid,
  .tips-card-grid,
  .machine-payment-section .payment-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .machine-feature-section,
  .machine-feature-section-alt,
  .machine-amenities-section,
  .machine-payment-layout {
    grid-template-columns: 1fr;
  }

  .machine-cta {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .machine-cta > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .about-photo-stack {
    min-height: 320px;
  }

  .about-stack-main {
    inset: 0 0 22% 0;
    width: 100%;
    height: 70%;
  }

  .about-stack-small {
    width: 62%;
    height: 38%;
    border-width: 6px;
  }

  .about-feature-grid,
  .payment-method-grid,
  .tips-card-grid,
  .amenity-groups,
  .machine-payment-section .payment-method-grid,
  .machine-amenities-section .amenity-groups {
    grid-template-columns: 1fr;
  }

  .machine-feature-section,
  .machine-feature-section-alt,
  .machine-amenities-section,
  .machine-payment-layout {
    grid-template-columns: 1fr;
  }

  .machine-feature-section,
  .machine-amenities-section {
    padding: 42px 18px;
    gap: 24px;
  }

  .washer-feature-section {
    grid-template-columns: 1fr;
    padding: 36px 22px;
    gap: 28px;
  }

  .washer-feature-photo img {
    min-height: 280px;
  }

  .machine-feature-section-alt .machine-feature-photo {
    order: 2;
  }

  .machine-feature-section-alt .machine-feature-copy {
    order: 1;
  }

  .machine-feature-copy h2 {
    font-size: clamp(32px, 12vw, 46px);
  }

  .machine-photo-frame img,
  .machine-feature-photo,
  .machine-feature-photo img {
    min-height: 280px;
  }

  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .machine-cta {
    grid-template-columns: 1fr;
    margin: 44px auto;
  }

  .machine-cta > div {
    align-items: flex-start;
  }
}

/* ============================================================
   ADDED JUNE 2026 — New homepage components
   1) Announcement banner (hidden by default)
   2) Wash & Fold homepage section
   3) Customer reviews section
   ============================================================ */

/* --- Announcement banner ---
   To show the banner: in index.html, find <div class="announce-banner" hidden>
   and REMOVE the word: hidden
   To hide it again, put the word hidden back. */
.announce-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--bvl-navy);
  color: var(--bvl-white);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.announce-banner[hidden] {
  display: none;
}

.announce-banner a {
  color: var(--bvl-aqua);
  font-weight: 800;
}

/* --- Wash & Fold homepage section --- */
.home-washfold {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  margin-top: 22px;
  padding: 26px clamp(20px, 4vw, 40px);
  border: 1px solid var(--bvl-border);
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(49, 199, 201, 0.10), transparent 46%),
    linear-gradient(180deg, var(--bvl-ice), var(--bvl-white));
  box-shadow: var(--soft-shadow);
}

.home-washfold-copy .home-eyebrow {
  margin-bottom: 8px;
}

.home-washfold-copy h2 {
  margin: 0 0 12px;
  color: var(--bvl-navy);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 950;
  line-height: 1.08;
}

.home-washfold-copy > p {
  margin: 0 0 16px;
  color: var(--bvl-muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
}

.home-washfold-steps {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.home-washfold-steps li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--bvl-ink);
  font-size: 15px;
  font-weight: 700;
}

.home-washfold-steps strong {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--bvl-blue);
  color: var(--bvl-white);
  font-size: 14px;
  font-weight: 900;
}

.home-washfold-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-washfold-visual img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--premium-shadow);
}

/* --- Customer reviews section --- */
.home-reviews-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 20px;
}

.review-stars {
  display: inline-flex;
  gap: 3px;
  color: #f5a623;
}

.review-stars svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.home-reviews-intro p {
  margin: 0;
  color: var(--bvl-muted);
  font-size: 16px;
  font-weight: 700;
}

.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-reviews-grid article {
  padding: 20px 18px;
  border: 1px solid var(--bvl-border);
  border-radius: 14px;
  background: var(--bvl-white);
  box-shadow: var(--soft-shadow);
}

.home-reviews-grid h3 {
  margin: 0 0 8px;
  color: var(--bvl-navy);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
}

.home-reviews-grid p {
  margin: 0;
  color: var(--bvl-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.42;
}

.home-reviews-link {
  margin-top: 18px;
  text-align: center;
}

/* ── Google reviews: live badge + curated cards ─────────────── */
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 26px;
  padding: 14px 22px;
  border: 1px solid var(--bvl-border);
  border-radius: 999px;
  background: var(--bvl-white);
  box-shadow: var(--soft-shadow);
}

.reviews-badge-stars {
  display: inline-flex;
  gap: 2px;
}

.rv-star {
  width: 22px;
  height: 22px;
}

.rv-star path {
  fill: currentColor;
}

.rv-star-full {
  color: #f5a623;
}

.rv-star-empty {
  color: #d8dee8;
}

.reviews-badge-text {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
}

.reviews-badge-text strong {
  font-size: 22px;
  font-weight: 950;
  color: var(--bvl-navy);
  line-height: 1;
}

.reviews-badge-text span {
  font-size: 15px;
  font-weight: 700;
  color: var(--bvl-muted);
}

.reviews-badge-google {
  display: inline-flex;
  align-items: center;
  padding-left: 14px;
  border-left: 1px solid var(--bvl-border);
}

.reviews-badge-google svg {
  width: 20px;
  height: 20px;
}

.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rv-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px;
  border: 1px solid var(--bvl-border);
  border-radius: 16px;
  background: var(--bvl-white);
  box-shadow: var(--soft-shadow);
}

.rv-card-stars {
  display: inline-flex;
  gap: 2px;
}

.rv-card-stars .rv-star {
  width: 18px;
  height: 18px;
}

.rv-card-text {
  margin: 0;
  flex: 1;
  color: var(--bvl-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.rv-card-meta {
  margin: 0;
  font-size: 14px;
  color: var(--bvl-navy);
}

.rv-card-meta strong {
  font-weight: 900;
}

.rv-card-date {
  color: var(--bvl-muted);
  font-weight: 600;
}

.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

/* --- Responsive adjustments for new sections --- */
@media (max-width: 860px) {
  .home-washfold {
    grid-template-columns: 1fr;
  }

  .home-reviews-grid,
  .rv-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Spanish video transcript disclosure --- */
.video-es-details {
  margin-top: 0.875rem;
  border-top: 1px solid rgba(7, 26, 51, 0.12);
  padding-top: 0.75rem;
}

.video-es-details summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bvl-blue, #1a6fc4);
  user-select: none;
}

.video-es-details summary::-webkit-details-marker { display: none; }

.video-es-details summary::after {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%231a6fc4' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.2s;
}

.video-es-details[open] summary::after {
  transform: rotate(180deg);
}

.video-es-body {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--bvl-navy, #071a33);
}

.video-es-body p { margin: 0 0 0.5rem; }

.video-es-body ol {
  margin: 0.375rem 0 0.75rem;
  padding-left: 1.25rem;
}

.video-es-body li { margin-bottom: 0.4rem; }
