.reasons { background: var(--color-subtle-background); }

.section-heading {
  display: flex;
  max-width: var(--container-narrow);
  margin: 0 auto 80px;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.section-heading > * { margin-bottom: 0; }
.section-heading__eyebrow { color: var(--color-accent-orange); font-size: 20px; font-weight: 700; line-height: 1.3; }
.section-heading h2 { font-size: 36px; }
.section-heading > p:last-child { font-size: 16px; }

.reason-grid { display: grid; gap: 32px; }
.reason-card {
  position: relative;
  display: flex;
  min-height: 272px;
  padding: 24px;
  overflow: hidden;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: var(--radius-large);
  color: var(--color-surface);
  background-image: linear-gradient(var(--overlay-dark-40), var(--overlay-dark-40)), var(--card-image);
  background-position: center;
  background-size: cover;
  text-shadow: 0 2px 10px rgb(0 0 0 / 45%);
}
.reason-card--featured { min-height: 412px; }
.reason-card__body { position: relative; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.reason-card__body > * { margin-bottom: 0; }
.reason-card__icon { width: 48px; height: 48px; margin-bottom: 4px; object-fit: contain; }
.reason-card__eyebrow { font-size: 18px; font-weight: 700; line-height: 1.4; }
.reason-card h3 { color: inherit; font-size: 20px; line-height: 1.3; }
.reason-card--featured h3 { font-size: 32px; line-height: 1.2; }
.reason-card__body > p:last-child { font-size: 16px; }
.reason-card .button { position: relative; text-shadow: none; }

@media (min-width: 768px) and (max-width: 1023px) {
  .reason-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reason-card--featured { grid-column: span 2; }
}

@media (min-width: 1024px) {
  .section-heading { gap: 16px; }
  .section-heading__eyebrow { font-size: 32px; }
  .section-heading h2 { font-size: 60px; }
  .section-heading > p:last-child { font-size: 20px; }

  .reason-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .reason-card { min-height: 0; }
  .reason-card--featured { grid-column: span 2; grid-row: span 2; min-height: 520px; padding: clamp(24px, 3.34vw, 48px); gap: 32px; justify-content: center; }
  .reason-card:nth-child(2), .reason-card:nth-child(3) { min-height: 244px; }
  .reason-card:nth-child(4) { grid-column: span 2; min-height: 244px; }
  .reason-card__eyebrow { font-size: clamp(20px, 1.81vw, 26px); }
  .reason-card h3 { font-size: clamp(20px, 1.81vw, 26px); line-height: 1.4; }
  .reason-card--featured h3 { font-size: clamp(34px, 3.34vw, 48px); line-height: 1.2; }
  .reason-card__body > p:last-child { font-size: clamp(16px, 1.25vw, 18px); }
}

/* Features */
.features-hero {
  position: relative;
  display: grid;
  min-height: 244px;
  place-items: center;
  color: var(--color-reverse-text);
  background-image: linear-gradient(var(--overlay-dark-40), var(--overlay-dark-40)), var(--features-hero-image);
  background-position: center;
  background-size: cover;
}
.features-hero__inner { display: grid; min-height: inherit; place-items: center; }
.features-hero__copy { max-width: var(--container-narrow); text-align: center; }
.features-hero h1 { margin-bottom: 20px; color: inherit; font-size: 40px; }
.features-hero p { margin-bottom: 0; }

.feature-pillar { padding-block: var(--section-large); overflow: hidden; }
.feature-pillar--safety { background: var(--color-subtle-background); }
.feature-pillar--flexibility { padding-bottom: 0; background: var(--color-surface); }
.feature-pillar__inner { display: grid; gap: 48px; }
.feature-pillar__copy { display: flex; flex-direction: column; gap: 20px; }
.feature-pillar__copy > * { margin-bottom: 0; }
.features-eyebrow { color: var(--color-accent-orange); font-size: 18px; font-weight: 700; line-height: 1.4; }
.features-eyebrow--light { color: var(--color-accent-orange-lite); }
.feature-pillar h2 { font-size: 36px; }
.feature-pillar__note { color: #597587; font-size: 14px; }
.feature-pillar__media { margin: 0; overflow: hidden; }
.feature-pillar__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-pillar--safety .feature-pillar__media { aspect-ratio: 335 / 357; border-radius: var(--radius-large); }
.feature-pillar--safety .feature-pillar__media img { object-position: center; }
.feature-pillar--flexibility .feature-pillar__media { aspect-ratio: 375 / 411; margin-inline: calc(var(--padding-global) * -1); }

.feature-benefits { background: var(--color-subtle-background); }
.feature-benefits__inner { display: flex; flex-direction: column; gap: 48px; }
.feature-benefits__heading { display: flex; max-width: var(--container-narrow); margin-inline: auto; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
.feature-benefits__heading > * { margin-bottom: 0; }
.feature-benefits__heading h2 { display: flex; flex-direction: column; font-size: 36px; }
.feature-benefits__heading h2 span { font-size: 20px; line-height: 1.3; }
.feature-benefits__grid { display: grid; gap: 24px; }
.feature-benefit-card { display: flex; min-height: 207px; padding: 20px 10px; flex-direction: column; gap: 20px; align-items: center; justify-content: center; border: 1px solid #d8dee2; border-radius: 5px; background: var(--color-surface); text-align: center; }
.feature-benefit-card > * { margin-bottom: 0; }
.feature-benefit-card h3 { font-size: 24px; line-height: 1.3; }

.feature-options { color: var(--color-reverse-text); background: var(--color-main-blue); }
.feature-options__inner { display: flex; flex-direction: column; gap: 64px; }
.feature-options__heading { display: flex; max-width: 1024px; margin-inline: auto; flex-direction: column; gap: 12px; text-align: left; }
.feature-options__heading > * { margin-bottom: 0; }
.feature-options__heading h2 { display: flex; flex-direction: column; color: inherit; font-size: 36px; }
.feature-options__heading h2 span { margin-bottom: 4px; }
.feature-options__description p { margin-bottom: 0; }
.feature-products { display: grid; gap: 24px; }
.feature-product-card { overflow: hidden; border: 1px solid #d8dee2; border-radius: var(--radius-large); color: var(--color-text); background: var(--color-surface); }
.feature-product-card > img { width: calc(100% - 32px); height: 170px; margin: 16px 16px 0; border-radius: var(--radius-medium); object-fit: cover; }
.feature-product-card__body { display: flex; padding: 12px 16px 16px; flex-direction: column; gap: 12px; }
.feature-product-card__body > * { margin-bottom: 0; }
.feature-product-card h3 { display: flex; flex-direction: column; font-size: 20px; line-height: 1.3; }
.feature-videos { display: flex; padding-top: 64px; flex-direction: column; gap: 24px; }
.feature-videos > h2 { display: flex; margin-bottom: 0; flex-direction: column; color: inherit; font-size: 24px; line-height: 1.3; }
.feature-videos__grid { display: grid; gap: 24px; }
.feature-video-card { overflow: hidden; border-radius: var(--radius-medium); background: rgb(255 255 255 / 6%); }
.feature-video-card__trigger { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; background: #000; cursor: pointer; }
.feature-video-card__trigger img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 240ms ease; }
.feature-video-card__trigger:hover img { transform: scale(1.025); }
.feature-video-card__play { position: absolute; top: 50%; left: 50%; width: 58px; height: 58px; transform: translate(-50%, -50%); border-radius: 50%; background: rgb(212 62 9 / 92%); box-shadow: 0 8px 24px rgb(0 0 0 / 28%); }
.feature-video-card__play::after { position: absolute; top: 50%; left: 53%; transform: translate(-42%, -50%); border-width: 9px 0 9px 15px; border-style: solid; border-color: transparent transparent transparent #fff; content: ""; }
.feature-video-card h3 { margin: 0; padding: 5px 10px 12px; color: inherit; font-size: 18px; line-height: 1.4; }

@media (min-width: 768px) {
  .feature-benefits__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-videos__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .features-hero { min-height: 368px; }
  .features-hero h1 { font-size: 60px; }
  .features-hero p { font-size: 20px; }
  .feature-pillar__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(56px, 7.8vw, 112px); align-items: center; }
  .feature-pillar__copy { gap: 24px; }
  .features-eyebrow { font-size: 26px; }
  .feature-pillar h2 { font-size: clamp(42px, 3.34vw, 48px); }
  .feature-pillar__copy > p:not(.features-eyebrow):not(.feature-pillar__note) { font-size: 18px; }
  .feature-pillar__media { min-height: 540px; }
  .feature-pillar--safety .feature-pillar__copy { grid-column: 2; }
  .feature-pillar--safety .feature-pillar__media { grid-row: 1; grid-column: 1; aspect-ratio: 4 / 5; }
  .feature-pillar--flexibility { padding-bottom: var(--section-large); }
  .feature-pillar--flexibility .feature-pillar__media { aspect-ratio: 720 / 790; margin-inline: 0; }
  .feature-benefits__inner { gap: 80px; }
  .feature-benefits__heading { gap: 16px; }
  .feature-benefits__heading h2 { font-size: 60px; }
  .feature-benefits__heading h2 span { font-size: 30px; }
  .feature-benefits__heading > p:last-child { font-size: 18px; }
  .feature-benefit-card { min-height: 245px; padding: 32px 20px; }
  .feature-options__inner { gap: 80px; }
  .feature-options__heading { align-items: center; text-align: center; }
  .feature-options__heading h2 { font-size: 60px; }
  .feature-options__heading h2 span { font-size: 32px; }
  .feature-options__description { font-size: 18px; }
  .feature-products { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 48px; }
  .feature-product-card > img { height: 200px; }
  .feature-product-card__body { min-height: 190px; padding: 24px 20px 20px; gap: 24px; }
  .feature-product-card h3 { font-size: 28px; }
  .feature-videos { padding-top: 80px; gap: 40px; }
  .feature-videos > h2 { font-size: 32px; }
  .feature-video-card h3 { padding: 10px 16px 16px; font-size: 20px; }
}

/* Story */
.story-hero {
  position: relative;
  display: grid;
  min-height: 244px;
  place-items: center;
  color: var(--color-reverse-text);
  background-image: linear-gradient(var(--overlay-dark-40), var(--overlay-dark-40)), var(--story-hero-image);
  background-position: center;
  background-size: cover;
}
.story-hero__inner { display: grid; min-height: inherit; place-items: center; }
.story-hero__copy { max-width: var(--container-narrow); text-align: center; }
.story-hero h1 { margin-bottom: 20px; color: inherit; font-size: 40px; }
.story-hero p { margin-bottom: 0; }

.story-development { overflow: hidden; background: var(--color-subtle-background); }
.story-development__inner { display: grid; gap: 48px; }
.story-development__copy { display: flex; flex-direction: column; gap: 20px; }
.story-development__copy > * { margin-bottom: 0; }
.story-eyebrow { color: var(--color-accent-orange); font-size: 18px; font-weight: 700; line-height: 1.4; }
.story-eyebrow--light { color: var(--color-accent-orange-lite); }
.story-development h2 { font-size: 36px; }
.story-development__media { margin: 0; overflow: hidden; border-radius: var(--radius-large); }
.story-development__media img { width: 100%; aspect-ratio: 335 / 357; object-fit: cover; object-position: center; }
.story-timeline { display: grid; gap: 24px; }
.story-timeline article { display: flex; flex-direction: column; gap: 8px; }
.story-timeline article > * { margin-bottom: 0; }
.story-timeline h3 { font-size: 32px; }
.story-research-start { display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; }
.story-research-start > * { margin-bottom: 0; }
.story-research-start > p { min-width: 140px; padding: 5px 25px 7px; background: var(--color-accent-orange-lite); font-size: 18px; font-weight: 500; }
.story-research-start h3 { font-size: 20px; line-height: 1.3; }
.story-research-start span { font-size: 42px; line-height: 1; }

.story-research { background: var(--color-main-blue); }
.story-research__intro { padding: 56px 24px; color: var(--color-reverse-text); }
.story-research__intro-inner { display: flex; max-width: 576px; margin-inline: auto; flex-direction: column; gap: 16px; }
.story-research__intro-inner > * { margin-bottom: 0; }
.story-research__intro h2 { color: inherit; font-size: 36px; }
.story-video { position: relative; display: block; width: 100%; margin-top: 16px; padding: 0; overflow: hidden; border: 0; border-radius: var(--radius-small); background: #000; cursor: pointer; }
.story-video img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 240ms ease; }
.story-video:hover img { transform: scale(1.025); }
.story-video__play { position: absolute; top: 50%; left: 50%; width: 58px; height: 58px; transform: translate(-50%, -50%); border-radius: 50%; background: rgb(212 62 9 / 92%); box-shadow: 0 8px 24px rgb(0 0 0 / 28%); }
.story-video__play::after { position: absolute; top: 50%; left: 53%; transform: translate(-42%, -50%); border-width: 9px 0 9px 15px; border-style: solid; border-color: transparent transparent transparent #fff; content: ""; }

.story-evidence-stack { background: var(--color-surface); }
.story-evidence { display: flex; min-width: 0; padding: 64px 24px; overflow: hidden; flex-direction: column; gap: 32px; }
.story-evidence__header { display: flex; flex-direction: column; gap: 10px; }
.story-evidence__header > * { margin-bottom: 0; }
.story-evidence__tag { align-self: flex-start; padding: 3px 8px; color: var(--color-surface); background: var(--color-accent-orange); font-weight: 700; }
.story-evidence h2 { font-size: 28px; line-height: 1.3; }
.story-evidence__header > p:not(.story-evidence__tag) { color: var(--color-text); font-size: 14px; }
.story-range-slide { display: grid; gap: 10px; }
.story-range-slide > img { width: 100%; border-radius: var(--radius-small); }
.story-range-slide figcaption { font-size: 14px; font-weight: 700; }

.story-chart-group { display: flex; min-width: 0; flex-direction: column; gap: 12px; }
.story-chart-group__heading { display: flex; align-items: center; gap: 12px; }
.story-chart-group h3 { margin-bottom: 0; font-size: 20px; line-height: 1.4; }
.story-chart-legend { display: flex; margin-left: auto; gap: 16px; }
.story-chart-legend__item { display: flex; align-items: center; gap: 5px; color: #156082; font-size: 14px; }
.story-chart-legend__item::before { width: 18px; height: 18px; background: #156082; content: ""; }
.story-chart-legend__item--post::before { background: #e97132; }
.evidence-carousel { min-width: 0; }
.evidence-carousel__track { display: flex; width: calc(100% + 24px); padding-right: 58px; overflow-x: auto; gap: 16px; overscroll-behavior-x: contain; scroll-padding-left: 0; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; }
.evidence-carousel__track::-webkit-scrollbar { display: none; }
.evidence-carousel__slide { width: min(290px, 86vw); margin: 0; flex: 0 0 min(290px, 86vw); scroll-snap-align: start; }
.evidence-carousel__slide figcaption { margin-bottom: 6px; font-size: 13px; }
.evidence-carousel__slide img { width: 100%; border-radius: var(--radius-small); }
.evidence-carousel__controls { display: flex; margin-top: 12px; align-items: center; justify-content: flex-end; gap: 12px; }
.evidence-carousel__controls p { min-width: 48px; margin: 0; color: #597587; font-size: 13px; text-align: center; }
.evidence-carousel__controls button { display: grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 1px solid var(--color-main-blue); border-radius: 50%; color: var(--color-main-blue); background: var(--color-surface); cursor: pointer; }
.evidence-carousel__controls button:disabled { opacity: 0.35; cursor: default; }
.evidence-carousel__controls button img { width: 16px; height: 16px; }
.evidence-carousel__controls button[data-carousel-next] img { transform: rotate(180deg); }

.story-evidence__wide-image { margin: 0; text-align: center; }
.story-evidence__wide-image img { width: 100%; border-radius: var(--radius-small); }
.story-evidence__wide-image figcaption { margin-top: 6px; color: #597587; font-size: 13px; }
.story-table-block { display: flex; flex-direction: column; gap: 10px; }
.story-table-block h3 { margin-bottom: 0; font-size: 18px; line-height: 1.4; }
.story-table-scroll { max-width: 100%; overflow-x: clip; }
.story-data-table { width: 100%; min-width: 0; border-spacing: 1px; border-collapse: separate; table-layout: fixed; font-size: 10px; text-align: center; }
.story-data-table--wide { min-width: 0; }
.story-data-table th, .story-data-table td { padding: 4px 2px; overflow-wrap: anywhere; background: var(--color-subtle-background); font-weight: 500; }
.story-data-table thead tr:first-child th, .story-data-table tbody th { color: var(--color-surface); background: var(--color-main-blue); }
.story-data-table .story-data-table__accent { color: var(--color-accent-orange); }
.story-definitions { display: grid; margin: 0; gap: 10px; }
.story-definitions > div { display: grid; grid-template-columns: 48px 1fr; gap: 8px; align-items: start; }
.story-definitions dt { padding: 2px 8px; color: var(--color-surface); background: var(--color-main-blue); font-weight: 700; text-align: center; }
.story-definitions dd { margin: 0; font-size: 14px; }
.story-activity-groups { display: grid; gap: 32px; }
.story-activity-group { display: grid; gap: 14px; }
.story-activity-group__heading > * { margin-bottom: 0; }
.story-activity-group__heading > p { font-size: 14px; }
.story-activity-group__heading h3 { font-size: 24px; }
.story-activity-group__heading h3 span,
.story-activity-group__heading h3 strong { display: block; }
.story-activity-group__heading h3 strong { color: var(--color-accent-orange); }
.story-activity-note { padding: 5px; border: 1px solid var(--color-main-blue); }
.story-activity-note p { margin: 0; font-size: 14px; }
.story-activity-group figure { margin: 0; }
.story-activity-group figcaption { margin-bottom: 4px; font-size: 14px; font-weight: 500; }
.story-activity-group img { width: 100%; border-radius: var(--radius-small); }

@media (min-width: 768px) {
  .story-development__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
  .story-development__media { grid-column: 2; grid-row: 1 / span 2; }
  .story-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-research-start { grid-column: 1 / -1; }
  .story-data-table { font-size: 12px; }
  .story-data-table th, .story-data-table td { padding: 5px 4px; }
}

@media (min-width: 1024px) {
  .story-hero { min-height: 368px; }
  .story-hero h1 { font-size: 60px; }
  .story-hero p { font-size: 20px; }
  .story-development__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px; }
  .story-eyebrow { font-size: 26px; }
  .story-development h2 { font-size: 60px; }
  .story-development__copy > p:last-child { font-size: 20px; }
  .story-development__media img { min-height: 640px; aspect-ratio: 600 / 640; }
  .story-timeline h3 { font-size: 48px; }
  .story-timeline p { font-size: 18px; }
  .story-research-start h3 { font-size: 32px; }

  .story-research { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
  .story-research__intro { position: sticky; top: var(--header-height); display: grid; min-height: calc(100vh - var(--header-height)); padding: 64px; place-items: center; }
  .story-research__intro h2 { font-size: 60px; }
  .story-research__intro-inner > p:not(.story-eyebrow) { font-size: 20px; }
  .story-evidence { height: 900px; min-height: 900px; padding: 40px; gap: 30px; justify-content: center; }
  .story-evidence > * { flex-shrink: 0; }
  .story-evidence__header { gap: 0; }
  .story-evidence__tag { margin-bottom: 7px; font-size: 16px; line-height: 1.5; }
  .story-evidence h2 { font-size: 32px; }
  .story-evidence__header h2 { margin-bottom: 16px; }
  .story-evidence__header > p:not(.story-evidence__tag) { font-size: 16px; }
  .story-evidence__header > p:not(.story-evidence__tag) { line-height: 1.5; }
  .story-evidence--range .story-evidence__header { max-width: 560px; }
  .story-chart-group,
  .evidence-carousel { width: 100%; }
  .evidence-carousel__controls { display: none; }

  .evidence-carousel--range { overflow: visible; }
  .evidence-carousel--range .evidence-carousel__track { display: flex; width: 100%; padding: 0; overflow: visible; flex-direction: column; gap: 30px; scroll-snap-type: none; }
  .evidence-carousel--range .story-range-slide { display: grid; width: 100%; min-width: 0; height: 243.226px; flex: 0 0 243.226px; grid-template-columns: 45.3125% 51.09375%; grid-template-rows: 24px 155.25px; align-content: center; column-gap: 3.125%; row-gap: 10px; }
  .evidence-carousel--range .story-range-slide > img:first-child { width: 100%; height: 243.226px; grid-column: 1; grid-row: 1 / span 2; object-fit: cover; }
  .evidence-carousel--range .story-range-slide figcaption { margin: 0; align-self: end; grid-column: 2; grid-row: 1; font-size: 16px; line-height: 1.5; }
  .evidence-carousel--range .story-range-slide > img:last-child { width: 100%; height: 155.25px; grid-column: 2; grid-row: 2; object-fit: cover; }

  .story-evidence--balance .story-chart-group { height: 292.731px; gap: 10px; overflow: visible; }
  .story-evidence--balance .story-chart-group__heading { height: 36px; }
  .story-evidence--balance .story-chart-group h3 { font-size: 26px; line-height: 1.4; }
  .story-evidence--balance .story-chart-legend { gap: 20px; }
  .story-evidence--balance .story-chart-legend__item { font-size: 16px; }
  .story-evidence--balance .story-chart-legend__item::before { width: 20px; height: 20px; }
  .evidence-carousel--balance { position: relative; height: 246.731px; overflow: visible; }
  .evidence-carousel--balance .evidence-carousel__track { display: flex; width: 100%; height: 246.731px; padding: 0; overflow-x: auto; gap: 14.925px; scroll-snap-type: x mandatory; }
  .evidence-carousel--balance .evidence-carousel__slide { display: flex; width: 395px; min-width: 395px; height: 246.731px; margin: 0; flex: 0 0 395px; flex-direction: column; gap: 3.731px; }
  .evidence-carousel--balance .evidence-carousel__slide figcaption { margin: 0; font-size: 12px; line-height: 1.5; }
  .evidence-carousel--balance .evidence-carousel__slide img { width: 395px; height: 225px; max-width: none; object-fit: cover; }
  .evidence-carousel--balance .evidence-carousel__controls { position: absolute; inset: 0; display: block; margin: 0; pointer-events: none; }
  .evidence-carousel--balance .evidence-carousel__controls p { display: none; }
  .evidence-carousel--balance .evidence-carousel__controls button { position: absolute; top: 50%; display: grid; width: 48px; height: 48px; transform: translateY(-50%); pointer-events: auto; }
  .evidence-carousel--balance .evidence-carousel__controls button[data-carousel-prev] { left: -30px; }
  .evidence-carousel--balance .evidence-carousel__controls button[data-carousel-next] { right: -30px; }

  .story-evidence__wide-image { position: relative; width: 500px; height: 317.731px; margin-inline: auto; }
  .story-evidence__wide-image img { width: 500px; height: 317.731px; object-fit: cover; }
  .story-evidence__wide-image figcaption { position: absolute; top: 40.682px; left: 121px; width: 256px; margin: 0; color: var(--color-text); font-size: 16px; line-height: 1.5; }
  .story-table-block h3 { font-size: 26px; line-height: 1.4; }
  .story-table-scroll { overflow: visible; }
  .story-data-table { font-size: 14px; line-height: 1.5; }
  .story-data-table th, .story-data-table td { height: 27px; padding: 3px 2px; overflow-wrap: normal; }
  .story-data-table th:first-child { width: 60px; }
  .story-definitions { gap: 10px; }
  .story-definitions > div { grid-template-columns: 45px 1fr; gap: 5px; align-items: center; }
  .story-definitions dt { height: 20px; padding: 0; font-size: 16px; font-weight: 400; line-height: 1.5; }
  .story-definitions dd { font-size: 16px; line-height: 1.5; }

  .evidence-carousel--strength { overflow: visible; }
  .evidence-carousel--strength .evidence-carousel__track { display: flex; width: 394px; margin-left: 85px; padding: 0; overflow: visible; flex-direction: column; gap: 10px; scroll-snap-type: none; }
  .evidence-carousel--strength .evidence-carousel__slide { width: 394px; height: 340px; min-width: 394px; margin: 0; flex: 0 0 340px; }
  .evidence-carousel--strength .evidence-carousel__slide img { width: 394px; height: 340px; max-width: none; object-fit: cover; }

  .story-activity-groups { display: flex; flex-direction: column; gap: 30px; }
  .story-activity-group { display: grid; width: 100%; grid-template-columns: 180px repeat(2, minmax(0, 210px)); align-items: start; gap: 20px; }
  .story-activity-group__heading { display: flex; width: 180px; flex-direction: column; gap: 10px; justify-content: center; }
  .story-activity-group__heading > p { font-size: 14px; line-height: 1.5; }
  .story-activity-group__heading h3 { font-size: 26px; line-height: 1.4; }
  .story-activity-note { width: 180px; min-height: 73px; }
  .story-activity-note p { font-size: 14px; line-height: 1.5; }
  .story-activity-group > .evidence-carousel { grid-column: 2 / span 2; }
  .evidence-carousel--activity { overflow: visible; }
  .evidence-carousel--activity .evidence-carousel__track { display: grid; width: 440px; padding: 0; overflow: visible; grid-template-columns: repeat(2, 210px); gap: 20px; scroll-snap-type: none; }
  .evidence-carousel--activity .evidence-carousel__slide { display: flex; width: 210px; min-width: 210px; margin: 0; flex: none; flex-direction: column; gap: 3.731px; }
  .evidence-carousel--activity .evidence-carousel__slide figcaption { margin: 0; font-size: 12px; line-height: 1.5; }
  .evidence-carousel--activity .evidence-carousel__slide img { width: 210px; height: 164px; max-width: none; object-fit: cover; object-position: center 42%; }
  .story-activity-group:last-child .evidence-carousel--activity .evidence-carousel__slide img { height: 151px; }
}

@media (min-width: 1400px) {
  .evidence-carousel--range .evidence-carousel__track,
  .evidence-carousel--range .story-range-slide { width: 640px; }
  .evidence-carousel--range .story-range-slide {
    grid-template-columns: 290px 327px;
    column-gap: 20px;
  }
  .story-evidence--balance .story-chart-group,
  .evidence-carousel--balance,
  .story-activity-group { width: 640px; }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .story-research { grid-template-columns: minmax(0, 1fr) 720px; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .story-research { display: block; }
  .story-research__intro {
    position: static;
    min-height: auto;
    padding-block: 80px;
  }
}

/* Cases */
.cases-hero {
  position: relative;
  display: grid;
  min-height: 244px;
  place-items: center;
  color: var(--color-reverse-text);
  background-image: linear-gradient(var(--overlay-dark-40), var(--overlay-dark-40)), var(--cases-hero-image);
  background-position: center 34%;
  background-size: cover;
}
.cases-hero__inner { display: grid; min-height: inherit; place-items: center; }
.cases-hero__copy { max-width: var(--container-narrow); text-align: center; }
.cases-hero h1 { margin-bottom: 20px; color: inherit; font-size: 40px; }
.cases-hero p { margin-bottom: 0; }
.cases-voices { padding-block: 48px; background: var(--color-subtle-background); }
.cases-voices__inner { display: flex; flex-direction: column; gap: 48px; }
.cases-section-heading { display: flex; max-width: var(--container-narrow); flex-direction: column; gap: 20px; }
.cases-section-heading > * { margin-bottom: 0; }
.cases-section-heading h2 { font-size: 36px; }
.cases-voice-grid { display: grid; gap: 20px; }
.cases-voice-card { display: flex; padding: 16px; overflow: hidden; flex-direction: column; gap: 8px; border: 1px solid #d8dee2; border-radius: 8px; background: var(--color-surface); }
.cases-voice-card__media { position: relative; width: 100%; aspect-ratio: 295 / 190; overflow: hidden; }
.cases-voice-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; transform: none; object-fit: cover; object-position: center; image-orientation: none; }
.cases-voice-card__media--rotated img { top: 50%; left: 50%; width: calc(100% * 190 / 295); height: calc(100% * 295 / 190); transform: translate(-50%, -50%) rotate(90deg); }
.cases-voice-card__body { display: flex; padding: 0; flex-direction: column; gap: 8px; }
.cases-voice-card__body > * { margin-bottom: 0; }
.cases-voice-card h3 { font-size: 18px; line-height: 1.4; }
.cases-voice-card__person { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.cases-voice-card__person p { margin-bottom: 0; }
.cases-voice-card__person p:first-child { padding: 4px 10px; color: var(--color-surface); background: var(--color-main-blue); font-size: 14px; font-weight: 700; }
.cases-voice-card__person p:last-child { font-size: 20px; }
.cases-voice-card__body > p:last-child { font-size: 14px; }

.cases-videos { padding-block: 48px; background: var(--color-surface); }
.cases-videos__inner { display: flex; flex-direction: column; gap: 48px; }
.cases-video-heading { display: flex; max-width: var(--container-narrow); margin-inline: auto; flex-direction: column; gap: 12px; text-align: center; }
.cases-video-heading > * { margin-bottom: 0; }
.cases-video-heading > p:first-child { font-size: 20px; font-weight: 700; }
.cases-video-heading h2 { font-size: 36px; }
.cases-video-heading > p:not(:first-child) { font-size: 16px; }
.cases-video-categories { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.cases-video-categories button { min-width: 0; min-height: 44px; padding: 6px 8px; border: 3px solid var(--color-main-blue); border-radius: 30px; color: var(--color-text); background: var(--color-surface); }
.cases-video-categories button[aria-pressed="true"] { color: var(--color-surface); background: var(--color-main-blue); font-weight: 700; }
.cases-video-categories button:disabled { opacity: 0.48; }
.cases-video-grid { display: grid; gap: 20px; }
.cases-video-card { display: flex; padding: 12px; flex-direction: column; gap: 8px; border: 1px solid #d8dee2; border-radius: 8px; }
.cases-video-card h3 { margin-bottom: 0; color: var(--color-main-blue); font-size: 18px; line-height: 1.4; }
.cases-video-card h3 { order: 2; }
.cases-video-card button { order: 1; }
.cases-video-card button { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; background: #000; cursor: pointer; }
.cases-video-card button img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 240ms ease; }
.cases-video-card button:hover img { transform: scale(1.025); }
.cases-video-card button span { position: absolute; top: 50%; left: 50%; width: 54px; height: 54px; transform: translate(-50%, -50%); border-radius: 50%; background: rgb(212 62 9 / 92%); box-shadow: 0 8px 24px rgb(0 0 0 / 28%); }
.cases-video-card button span::after { position: absolute; top: 50%; left: 53%; transform: translate(-42%, -50%); border-width: 8px 0 8px 14px; border-style: solid; border-color: transparent transparent transparent #fff; content: ""; }

@media (min-width: 768px) {
  .cases-voice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
  .cases-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
  .cases-video-card { padding: 0; gap: 10px; border: 0; border-radius: 0; }
  .cases-video-card h3 { order: 1; }
  .cases-video-card button { order: 2; }
}

@media (min-width: 1024px) {
  .cases-hero { min-height: 368px; }
  .cases-hero h1 { font-size: 60px; }
  .cases-hero p { font-size: 20px; }
  .cases-voices,
  .cases-videos { padding-block: 112px; }
  .cases-voices__inner { gap: 50px; }
  .cases-section-heading h2 { font-size: 60px; }
  .cases-section-heading p { font-size: 20px; }
  .cases-voice-grid { gap: 48px; }
  .cases-voice-card { display: grid; height: 400px; min-height: 0; padding: 0; grid-template-columns: 284px minmax(0, 1fr); gap: 0; }
  .cases-voice-card__media { width: 284px; height: 400px; aspect-ratio: auto; }
  .cases-voice-card__media--rotated img { width: calc(100% * 400 / 284); height: calc(100% * 284 / 400); }
  .cases-voice-card__body { padding: 20px 15px 20px 24px; }
  .cases-voice-card h3 { font-size: 26px; }
  .cases-video-heading { gap: 18px; }
  .cases-video-heading > p:first-child { font-size: 26px; }
  .cases-video-heading h2 { font-size: 60px; }
  .cases-video-heading > p:not(:first-child) { font-size: 16px; }
  .cases-video-categories button { min-width: 160px; min-height: 70px; font-size: 20px; }
  .cases-video-card h3 { font-size: 26px; }
}

/* Pricing */
.pricing-hero {
  position: relative;
  display: grid;
  min-height: 244px;
  place-items: center;
  color: var(--color-reverse-text);
  background-image: linear-gradient(var(--overlay-dark-40), var(--overlay-dark-40)), var(--pricing-hero-image);
  background-position: center;
  background-size: cover;
}
.pricing-hero__inner { display: grid; min-height: inherit; place-items: center; }
.pricing-hero__copy { max-width: var(--container-narrow); text-align: center; }
.pricing-hero h1 { margin-bottom: 20px; color: inherit; font-size: 40px; }
.pricing-hero p { margin-bottom: 0; }

.pricing-product { padding-block: 24px; background: var(--color-subtle-background); }
.pricing-product__inner { display: grid; gap: 24px; }
.pricing-product__image { width: 100%; aspect-ratio: 327 / 230; border-radius: var(--radius-medium); object-fit: cover; object-position: center; }
.pricing-product__content { display: flex; min-width: 0; flex-direction: column; gap: 24px; }
.pricing-product__content header > *,
.pricing-product__description p,
.pricing-product__price p { margin-bottom: 0; }
.pricing-product__content header p { font-size: 20px; font-weight: 700; line-height: 1.3; }
.pricing-product__content h2 { font-size: 32px; }
.pricing-product__description p { line-height: 1.5; }
.pricing-product__price { display: flex; flex-direction: column; gap: 5px; font-weight: 700; }
.pricing-product__price p:first-child { color: var(--color-accent-orange); font-size: 18px; }
.pricing-product__price p:nth-child(2) { font-size: 40px; line-height: 1.2; text-align: center; }
.pricing-product__price p:last-child { font-size: 20px; line-height: 1.3; text-align: right; }
.pricing-note { margin-bottom: 0; color: #597587; font-size: 14px; }
.pricing-product__actions { display: grid; gap: 12px; }
.pricing-product__actions .button { width: 100%; min-height: 52px; padding-inline: 12px; font-weight: 700; }
.pricing-product__actions .button--secondary { color: var(--color-surface); background: var(--color-main-blue); }

.pricing-comparison { padding-block: 24px; background: var(--color-surface); }
.pricing-comparison__inner,
.pricing-payment__inner,
.pricing-warranty__inner { display: flex; flex-direction: column; gap: 24px; }
.pricing-section-heading { display: flex; max-width: var(--container-narrow); flex-direction: column; gap: 16px; }
.pricing-section-heading > *,
.pricing-section-heading > div p { margin-bottom: 0; }
.pricing-section-heading > p:first-child { color: var(--color-accent-orange); font-size: 18px; font-weight: 700; line-height: 1.4; }
.pricing-section-heading h2 { font-size: 36px; }

.comparison-products { display: grid; gap: 12px; }
.comparison-products article { display: flex; padding: 16px; flex-direction: column; gap: 8px; border: 1px solid #d8dee2; border-radius: var(--radius-large); }
.comparison-products article > * { margin-bottom: 0; }
.comparison-products h3 { font-size: 18px; line-height: 1.4; }
.comparison-products article > p:nth-of-type(1) { font-size: 36px; font-weight: 700; line-height: 1.2; }
.comparison-products .button { width: 100%; margin-top: 8px; font-weight: 700; }

.comparison-table { display: flex; flex-direction: column; gap: 12px; }
.comparison-table__head { display: none; }
.comparison-group { display: flex; padding: 16px; flex-direction: column; gap: 8px; border: 1px solid #d8dee2; border-radius: var(--radius-large); }
.comparison-group h3 { margin-bottom: 0; font-size: 18px; line-height: 1.4; }
.comparison-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 12px; }
.comparison-row > p { margin-bottom: 0; }
.comparison-row > p:first-child { grid-column: 1 / -1; }
.comparison-row > p:not(:first-child) { color: var(--color-accent-orange); font-size: 14px; }
.comparison-row > p:not(:first-child) span { display: inline; margin-right: 4px; }

.pricing-payment { padding-block: 24px; background: var(--color-subtle-background); }
.payment-grid { display: grid; gap: 12px; }
.payment-bank-group { display: contents; }
.payment-bank-group__title { display: none; }
.payment-grid article,
.warranty-grid article { display: flex; padding: 16px; flex-direction: column; gap: 8px; border: 1px solid #d8dee2; border-radius: var(--radius-large); background: var(--color-surface); }
.payment-grid article > *,
.payment-grid article div p,
.warranty-grid article > * { margin-bottom: 0; }
.payment-method__details { display: flex; flex-direction: column; }
.payment-grid h3,
.warranty-grid h3 { font-size: 24px; line-height: 1.3; }
.payment-method--yucho h3 { font-size: 18px; line-height: 1.4; }

.pricing-warranty { padding-block: 24px; background: var(--color-surface); }
.warranty-content { display: flex; flex-direction: column; gap: 24px; }
.warranty-grid { display: grid; gap: 12px; }
.warranty-contact { display: flex; padding: 16px; flex-direction: column; gap: 8px; border: 5px solid #d8dee2; border-radius: var(--radius-large); text-align: left; }
.warranty-contact > *, .warranty-contact div p { margin-bottom: 0; }
.warranty-contact h3 { font-size: 20px; line-height: 1.3; }
.warranty-contact > p { color: #597587; font-size: 14px; }
.pricing-page .global-cta { background-image: linear-gradient(var(--overlay-dark-40), var(--overlay-dark-40)), url("/assets/images/pricing/cta.webp"); }

@media (min-width: 768px) {
  .pricing-product,
  .pricing-comparison,
  .pricing-payment,
  .pricing-warranty { padding-block: 64px; }
  .pricing-product__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 40px; }
  .pricing-product__actions { grid-column: 1 / -1; grid-template-columns: repeat(2, max-content); justify-content: center; }
  .pricing-product__actions .button { width: auto; padding-inline: 24px; }
  .comparison-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .comparison-table { gap: 16px; }
  .comparison-row { grid-template-columns: minmax(0, 1.8fr) repeat(2, minmax(80px, 1fr)); align-items: stretch; gap: 0; }
  .comparison-row > p { display: flex; min-height: 56px; padding: 12px 16px; align-items: center; background: var(--color-subtle-background); }
  .comparison-row > p:first-child { grid-column: auto; }
  .comparison-row > p:not(:first-child) { justify-content: center; color: var(--color-text); font-size: 16px; }
  .comparison-row > p:not(:first-child) span { display: none; }
  .warranty-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
  .pricing-warranty__note { order: 2; }
  .warranty-contact { order: 3; width: min(600px, 100%); margin-inline: auto; text-align: center; }
}

@media (min-width: 1024px) {
  .pricing-hero { min-height: 368px; }
  .pricing-hero h1 { font-size: 60px; }
  .pricing-hero p { font-size: 20px; }
  .pricing-product,
  .pricing-comparison,
  .pricing-payment,
  .pricing-warranty { padding-block: 112px; }
  .pricing-product__inner { grid-template-columns: minmax(0, 1.55fr) minmax(390px, 1fr); gap: 35px; }
  .pricing-product__image { min-height: 640px; aspect-ratio: 763 / 640; }
  .pricing-product__content header p { font-size: 32px; }
  .pricing-product__content h2 { font-size: 48px; }
  .pricing-product__description { font-size: 20px; }
  .pricing-product__price p:first-child { font-size: 26px; }
  .pricing-product__price p:nth-child(2) { font-size: 60px; }
  .pricing-product__price p:last-child { font-size: 32px; }
  .pricing-product__actions { gap: 16px; }
  .pricing-product__actions .button { padding-inline: 40px; font-size: 18px; font-weight: 500; }

  .pricing-comparison__inner,
  .pricing-payment__inner { gap: 80px; }
  .pricing-warranty__inner { gap: 80px; }
  .pricing-section-heading { margin-inline: auto; align-items: center; text-align: center; }
  .pricing-section-heading > p:first-child { font-size: 26px; }
  .pricing-section-heading h2 { font-size: 60px; }
  .pricing-section-heading > p:last-child,
  .pricing-section-heading > div { font-size: 20px; }
  .comparison-products { grid-template-columns: 400px repeat(2, minmax(0, 1fr)); }
  .comparison-products article:first-child { grid-column: 2; }
  .comparison-products article { padding: 0 16px; border: 0; align-items: center; text-align: center; }
  .comparison-products h3 { font-size: 26px; }
  .comparison-products article > p:nth-of-type(1) { font-size: 60px; }
  .comparison-products article > p:nth-of-type(2) { font-size: 18px; }
  .comparison-products .button { width: 300px; margin-top: 8px; }
  .comparison-table__head { display: grid; grid-template-columns: 400px repeat(2, minmax(0, 1fr)); text-align: center; }
  .comparison-table__head span { padding: 8px 16px; font-size: 18px; font-weight: 700; }
  .comparison-table__head span:first-child { color: transparent; }
  .comparison-group { padding: 0; gap: 0; border: 0; }
  .comparison-group h3 { padding-block: 20px; font-size: 26px; }
  .comparison-row { grid-template-columns: 400px repeat(2, minmax(0, 1fr)); }
  .payment-grid { width: min(890px, 100%); margin-inline: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 48px; }
  .payment-bank-group { display: grid; padding: 30px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; border: 1px solid #d8dee2; border-radius: var(--radius-large); background: var(--color-surface); }
  .payment-grid .payment-bank-group__title { display: block; grid-column: 1 / -1; margin-bottom: 0; font-size: 40px; line-height: 1.3; text-align: center; }
  .payment-bank-group .payment-method { padding: 0; gap: 15px; border: 0; border-radius: 0; background: transparent; }
  .payment-bank-group .payment-method__mobile-title { display: none; }
  .payment-bank-group .payment-method--yucho { gap: 41px; }
  .payment-bank-group .payment-method--yucho h3 { font-size: 18px; text-align: left; }
  .payment-method--chiba .payment-method__details p:first-child { font-weight: 700; }
  .payment-grid .payment-method--credit { padding: 30px; }
  .payment-method--credit h3 { font-size: 40px; text-align: center; }
  .payment-method--credit .payment-method__details { gap: 27px; }
  .warranty-grid { width: min(890px, 100%); margin-inline: auto; gap: 48px; }
  .warranty-grid article { padding: 20px; }
  .warranty-grid h3 { font-size: 40px; text-align: center; }
  .pricing-warranty__note { width: min(890px, 100%); margin-inline: auto; }
  .warranty-contact { padding: 20px; }
  .warranty-contact h3 { font-size: 32px; }
  .warranty-contact div { font-size: 26px; }
  .warranty-contact > p { font-size: 18px; }
}

/* Contact */
.contact-hero,
.contact-form-hero {
  padding-block: 64px;
  background: var(--color-subtle-background);
}
.contact-hero__inner,
.contact-form-hero__inner { display: flex; justify-content: center; }
.contact-hero__copy,
.contact-form-hero__copy { display: flex; max-width: 1024px; flex-direction: column; gap: 20px; text-align: center; }
.contact-hero__copy > *,
.contact-form-hero__copy > * { margin-bottom: 0; }
.contact-hero h1,
.contact-form-hero h1 { font-size: 40px; }

.contact-methods { padding-bottom: 64px; background: var(--color-subtle-background); }
.contact-methods__inner { display: grid; gap: 48px; }
.contact-method {
  display: flex;
  padding: 20px;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  border: 1px solid #d8dee2;
  border-radius: 15px;
  background: var(--color-surface);
}
.contact-method > img { width: 48px; height: 48px; }
.contact-method__copy { display: flex; width: 100%; flex-direction: column; gap: 24px; text-align: center; }
.contact-method__copy > div { display: flex; flex-direction: column; gap: 16px; }
.contact-method h2 { margin-bottom: 0; font-size: 24px; }
.contact-method p,
.contact-method a { margin-bottom: 0; font-size: 16px; }
.contact-method p { color: #597587; }

.contact-dealers { background: var(--color-surface); }
.contact-dealers__inner { display: flex; flex-direction: column; gap: 48px; }
.contact-dealers__heading { display: flex; flex-direction: column; gap: 12px; }
.contact-dealers__heading > * { margin-bottom: 0; }
.contact-dealers__heading p { color: var(--color-accent-orange); font-size: 18px; font-weight: 700; }
.contact-dealers__heading h2 { font-size: 36px; }
.contact-dealer-list { display: flex; flex-direction: column; gap: 48px; }
.contact-dealer { display: flex; flex-direction: column; gap: 24px; }
.contact-dealer__details { display: flex; flex-direction: column; gap: 24px; }
.contact-dealer__details h3 { margin-bottom: 0; font-size: 22px; line-height: 1.4; overflow-wrap: anywhere; }
.contact-dealer__item { display: flex; padding: 5px 0 5px 20px; flex-direction: column; gap: 8px; border-left: 2px solid #d8dee2; }
.contact-dealer__item h4 { margin: 0; color: var(--color-heading); font-size: 24px; line-height: 1.3; }
.contact-dealer__item p { margin-bottom: 0; font-size: 16px; font-weight: 700; overflow-wrap: anywhere; }
.contact-dealer__note { color: #597587; font-size: 14px !important; font-weight: 400 !important; }
.contact-dealer__social { display: flex; gap: 25px; margin: 0; list-style: none; }
.contact-dealer__social a { display: grid; width: 44px; height: 44px; place-items: center; }
.contact-dealer__social img { width: 34px; height: 34px; }

.contact-map {
  position: relative;
  display: block;
  height: 300px;
  overflow: hidden;
  border: 1px solid #d8dee2;
  border-radius: 8px;
  color: var(--color-text);
  background: var(--color-subtle-background);
  text-decoration: none;
}
.contact-map__road { position: absolute; display: block; border-radius: 999px; background: var(--color-surface); }
.contact-map__road--one { top: 26%; left: -8%; width: 116%; height: 22px; transform: rotate(7deg); }
.contact-map__road--two { top: 61%; left: -6%; width: 112%; height: 18px; transform: rotate(-6deg); }
.contact-map__road--three { top: -20%; left: 57%; width: 20px; height: 140%; transform: rotate(-12deg); }
.contact-map__pin {
  position: absolute;
  top: 43%;
  left: 50%;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 5px solid var(--color-surface);
  border-radius: 50% 50% 50% 0;
  background: var(--color-accent-orange);
  box-shadow: 0 5px 14px rgb(0 0 0 / 18%);
}
.contact-map__pin::after { position: absolute; top: 7px; left: 7px; width: 10px; height: 10px; border-radius: 50%; background: var(--color-surface); content: ""; }
.contact-map__label { position: absolute; top: 20px; left: 20px; padding: 7px 11px; border-radius: 4px; background: var(--color-surface); font-size: 14px; font-weight: 700; box-shadow: 0 3px 10px rgb(0 0 0 / 10%); }
.contact-map__address { position: absolute; right: 20px; bottom: 20px; left: 20px; padding: 10px 12px; border-radius: 4px; color: #597587; background: rgb(255 255 255 / 92%); font-size: 14px; }

/* Contact form */
.contact-form-section { padding-bottom: 56px; background: var(--color-subtle-background); }
.contact-form-section__inner { display: flex; justify-content: center; }
.contact-form-card {
  display: flex;
  width: min(100%, 335px);
  padding: 28px 20px;
  flex-direction: column;
  gap: 28px;
  border: 1px solid #d8dee2;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 10px 14px rgb(0 0 0 / 8%);
}
.contact-form-card__heading { display: flex; flex-direction: column; gap: 10px; }
.contact-form-card__heading > * { margin-bottom: 0; }
.contact-form-card__heading h2 { font-size: 24px; line-height: 1.3; }
.contact-form-card__heading p { font-size: 16px; }
.required-mark { display: inline-flex; align-items: center; min-height: 22px; padding: 1px 6px; border-radius: 3px; color: var(--color-surface); background: var(--color-accent-orange); font-size: 12px; font-weight: 700; line-height: 1.5; vertical-align: middle; }

.form-field,
.form-field-group,
.trial-fields,
.privacy-consent { display: flex; min-width: 0; flex-direction: column; gap: 10px; }
.form-field-row { display: grid; gap: 24px; }
.form-field label,
.form-field legend,
.form-group-label,
.trial-fields h4 { margin: 0; color: var(--color-accent-orange); font-size: 14px; font-weight: 700; line-height: 1.5; }
fieldset.form-field { padding: 0; border: 0; }
.form-field input:not([type="checkbox"]):not([type="radio"]),
.form-field select,
.form-field textarea,
.form-address-grid input,
.form-address-grid select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #b9c5cc;
  border-radius: 4px;
  color: var(--color-text);
  background: var(--color-surface);
}
.form-field textarea { min-height: 168px; resize: vertical; }
.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] { border-color: #b42318; background: #fff7f5; }
.choice-grid { display: grid; gap: 8px; }
.choice-card { position: relative; display: block; color: var(--color-text) !important; font-size: 16px !important; font-weight: 400 !important; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card span { display: flex; min-height: 52px; align-items: center; padding: 10px 14px 10px 44px; border: 1px solid #b9c5cc; border-radius: 4px; background: var(--color-surface); }
.choice-card span::before { position: absolute; left: 15px; width: 20px; height: 20px; border: 2px solid #8ba0ad; border-radius: 3px; content: ""; }
.choice-card input[type="radio"] + span::before { border-radius: 50%; }
.choice-card input:checked + span { border-color: var(--color-main-blue); background: #edf4f8; font-weight: 700; }
.choice-card input:checked + span::before { border-color: var(--color-main-blue); background: var(--color-main-blue); box-shadow: inset 0 0 0 4px #edf4f8; }
.choice-card input:focus-visible + span { outline: 2px solid var(--color-focus); outline-offset: 3px; box-shadow: var(--shadow-focus); }
.form-error { min-height: 0; margin: 0; color: #b42318; font-size: 14px; }
.form-error:empty { display: none; }
.form-error-summary { padding: 16px; border: 2px solid #b42318; border-radius: 6px; background: #fff7f5; }
.form-error-summary h3 { margin-bottom: 8px; font-size: 18px; }
.form-error-summary ul { margin: 0; padding-left: 22px; }
.form-address-grid { display: grid; gap: 16px; }

.trial-fields { padding: 20px; gap: 24px; border-radius: 8px; background: var(--color-subtle-background); }
.trial-fields header { display: flex; flex-direction: column; gap: 8px; }
.trial-fields header > * { margin: 0; }
.trial-fields h3 { font-size: 22px; }
.consultation-choice,
.same-address-choice,
.privacy-consent label { display: flex; align-items: flex-start; gap: 10px; font-weight: 700; }
.consultation-choice input,
.same-address-choice input,
.privacy-consent input { width: 22px; height: 22px; margin: 1px 0 0; flex: 0 0 22px; accent-color: var(--color-main-blue); }
.trial-schedule { display: flex; flex-direction: column; gap: 24px; transition: opacity 160ms ease; }
.trial-schedule.is-disabled { opacity: 0.42; }
.trial-preference__controls { display: grid; gap: 8px; }
.visit-address { display: flex; padding-top: 8px; flex-direction: column; gap: 16px; border-top: 1px solid #cbd5da; }
.visit-address h4 { font-size: 16px; }
.privacy-consent { padding: 20px; border-radius: 8px; background: var(--color-subtle-background); }
.privacy-consent > p { margin-bottom: 0; }
.contact-form-actions { display: flex; justify-content: center; }
.contact-form-actions .button { width: 100%; }
.contact-form-actions--split { flex-direction: column-reverse; gap: 12px; }

.confirmation-list { display: flex; margin: 0; flex-direction: column; }
.confirmation-row { display: flex; padding-block: 18px; flex-direction: column; gap: 6px; border-bottom: 1px solid #d8dee2; }
.confirmation-row dt { color: var(--color-accent-orange); font-size: 14px; font-weight: 700; }
.confirmation-row dd { margin: 0; font-size: 16px; white-space: normal; overflow-wrap: anywhere; }
.confirm-missing { display: flex; padding: 20px; flex-direction: column; gap: 16px; border: 1px solid #d8dee2; border-radius: 6px; }
.confirm-missing p,
.submission-status { margin: 0; }
.submission-status:empty { display: none; }
.contact-complete-message { padding: 0 var(--padding-global) 64px; background: var(--color-subtle-background); }
.contact-complete-message__inner { display: flex; max-width: 768px; padding-inline: 0; flex-direction: column; gap: 24px; }
.contact-complete-message p { margin: 0; font-size: 16px; }

@media (min-width: 768px) {
  .contact-methods__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .contact-dealer { display: grid; grid-template-columns: minmax(260px, 380px) minmax(0, 1fr); gap: 40px; }
  .contact-map { height: 450px; }
  .choice-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choice-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .form-field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-address-grid { grid-template-columns: minmax(170px, 0.7fr) minmax(170px, 0.7fr) minmax(280px, 1.6fr); }
  .trial-preference__controls { grid-template-columns: minmax(0, 1fr) minmax(180px, 0.55fr); }
  .contact-form-actions .button { width: auto; min-width: 280px; }
  .contact-form-actions--split { flex-direction: row; gap: 24px; }
}

@media (min-width: 1024px) {
  .contact-hero,
  .contact-form-hero { padding-block: 112px; }
  .contact-hero__copy,
  .contact-form-hero__copy { gap: 24px; }
  .contact-hero h1,
  .contact-form-hero h1 { font-size: 60px; }
  .contact-hero p,
  .contact-form-hero p { font-size: 20px; }
  .contact-methods { padding-bottom: 112px; }
  .contact-methods__inner { gap: 48px; }
  .contact-method { padding-block: 20px; }
  .contact-method h2 { font-size: 40px; }
  .contact-method p,
  .contact-method a { font-size: 18px; }
  .contact-dealers__inner { gap: 80px; }
  .contact-dealers__heading { align-items: center; gap: 16px; text-align: center; }
  .contact-dealers__heading p { font-size: 26px; }
  .contact-dealers__heading h2 { font-size: 60px; }
  .contact-dealer-list { gap: 80px; }
  .contact-dealer { grid-template-columns: 380px minmax(0, 820px); gap: 80px; }
  .contact-dealer__details { gap: 40px; }
  .contact-dealer__details h3 { font-size: 26px; }
  .contact-dealer__item { padding-left: 32px; gap: 16px; }
  .contact-dealer__item h4 { font-size: 32px; }
  .contact-dealer__item p { font-size: 20px; }
  .contact-map { width: 100%; height: 450px; }

  .contact-form-section { padding-bottom: 88px; }
  .contact-form-card { width: min(100%, 1040px); padding: 40px 48px; gap: 32px; }
  .contact-form-card__heading h2 { font-size: 32px; }
  .choice-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trial-fields,
  .privacy-consent { padding: 24px; }
  .confirmation-row { flex-direction: row; gap: 28px; }
  .confirmation-row dt { width: 210px; flex: 0 0 210px; }
  .confirmation-row dd { flex: 1; }
  .contact-complete-message { padding-bottom: 112px; }
  .contact-complete-message__inner { margin-inline: auto; }
  .contact-complete-message p { font-size: 18px; }
}
