:root {
  --font-text: "Yandex Sans Text", "Yandex Sans Display", Arial, Helvetica, sans-serif;
  --font-display: "Yandex Sans Display", "Yandex Sans Text", Arial, Helvetica, sans-serif;
  --bg: #f6f7f9;
  --surface: #edeff1;
  --surface-strong: #ffffff;
  --surface-soft: #fffdf3;
  --text: #141414;
  --text-muted: #5f6672;
  --line: #d8dde3;
  --primary: #ffe033;
  --primary-hover: #f5d317;
  --dark: #171717;
  --dark-soft: #232323;
  --shadow-lg: 0 24px 70px rgba(17, 17, 17, 0.16);
  --shadow-md: 0 18px 40px rgba(17, 17, 17, 0.12);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-cream {
  background: var(--surface-soft);
}

.section-copy {
  padding-top: 48px;
}

.fade-up {
  animation: fade-up 0.7s ease both;
}

.fade-delay {
  animation-delay: 0.12s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 221, 227, 0.7);
}

.header-row {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.logo-image {
  width: min(100%, 298px);
  height: auto;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.header-city {
  display: grid;
  gap: 2px;
}

.header-city > span {
  font-size: 13px;
  color: var(--text-muted);
}

.city-trigger {
  justify-self: start;
  padding: 0 18px 0 0;
  border: 0;
  background: none;
  color: var(--text);
  font-weight: 500;
  text-decoration: underline;
  position: relative;
}

.city-trigger::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.site-nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.site-nav a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: #000;
  box-shadow: 0 16px 30px rgba(255, 224, 51, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-hover);
}

.button-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 54px;
  padding-bottom: 74px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 224, 51, 0.25), transparent 22%),
    radial-gradient(circle at 68% 70%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(112deg, #111 0%, #141414 46%, #2b2b2b 100%);
}

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

.hero::before {
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -180px;
  background: rgba(255, 224, 51, 0.14);
  filter: blur(20px);
}

.hero::after {
  width: 280px;
  height: 280px;
  right: -80px;
  top: 60px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 36px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #9ca5b4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.faq-intro h2,
.cta-copy h2,
.prose h2 {
  margin: 0;
  line-height: 1.05;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
}

.hero-copy {
  color: #fff;
}

.hero-copy h1 span {
  color: var(--primary);
}

.hero-text {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-pills li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-art-wrap {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 46px 32px 28px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 224, 51, 0.54), transparent 35%),
    linear-gradient(180deg, #fff6c4 0%, #fff 100%);
  box-shadow: var(--shadow-lg);
}

.hero-art {
  width: min(100%, 480px);
}

.hero-stat {
  position: absolute;
  max-width: 260px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.hero-stat strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.hero-stat-top {
  top: 18px;
  right: -12px;
}

.hero-stat-bottom {
  left: -8px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-mini-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--primary);
  color: #000;
  font-weight: 900;
  flex-shrink: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.calculator-heading {
  max-width: 920px;
}

.calculator-heading h2 span {
  color: #7b4a18;
}

.section-heading h2,
.faq-intro h2,
.cta-copy h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--text);
}

.calculator-panel {
  display: grid;
  gap: 18px;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 224, 51, 0.12), transparent 24%),
    linear-gradient(135deg, #20110d 0%, #2a130d 48%, #171212 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.calculator-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.calculator-label {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-city-trigger {
  width: 100%;
  min-height: 74px;
  padding: 0 22px;
  border: 0;
  border-radius: 20px;
  background: #fff;
  color: var(--text);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  text-align: left;
  position: relative;
}

.calculator-city-trigger::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 13px;
  height: 13px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

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

.transport-button {
  min-height: 64px;
  padding: 0 12px;
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  font-size: 19px;
  font-weight: 900;
  text-align: center;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.transport-button:hover,
.transport-button:focus-visible {
  transform: translateY(-1px);
}

.transport-button.is-active {
  background: var(--primary);
}

.calculator-range-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.calculator-slider {
  --track-fill: 100%;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 18px;
  margin-top: 18px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--primary) 0%,
      var(--primary) var(--track-fill),
      rgba(255, 255, 255, 0.18) var(--track-fill),
      rgba(255, 255, 255, 0.18) 100%
    );
  outline: none;
}

.calculator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border: 4px solid #111;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.calculator-slider::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border: 4px solid #111;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.calculator-slider::-moz-range-track {
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.calculator-bonus {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 26px;
  background: #fff;
  color: var(--text);
}

.calculator-bonus-copy strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
}

.calculator-bonus-copy p {
  max-width: 520px;
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.35;
}

.calculator-stepper {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  gap: 12px;
  align-items: center;
}

.stepper-button {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 16px;
  background: #f2f0ea;
  color: var(--text);
  font-size: 38px;
  line-height: 1;
}

.stepper-value {
  display: grid;
  place-items: center;
  min-width: 70px;
  height: 58px;
  padding: 0 18px;
  border-radius: 16px;
  background: var(--primary);
  color: #000;
  font-size: 28px;
  font-weight: 900;
}

.calculator-bonus-total {
  min-width: 124px;
  color: var(--text);
  font-size: 30px;
  font-weight: 900;
  text-align: right;
}

.calculator-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px 26px;
  border-radius: 28px;
  background: var(--primary);
  color: #000;
}

.calculator-summary-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calculator-summary-total {
  display: block;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  font-weight: 900;
}

.calculator-summary-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.calculator-meta-card {
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.08);
}

.calculator-meta-card span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-meta-card strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.1;
}

.calculator-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
}

.calculator-cta {
  justify-self: start;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.benefit-card {
  grid-column: span 4;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.benefit-card-wide {
  grid-column: span 8;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: var(--primary);
  font-size: 28px;
  font-weight: 900;
}

.benefit-card h3,
.step-card h3,
.prose h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.benefit-card p,
.step-card p,
.faq-item p,
.cta-copy p,
.prose p,
.prose li,
.footer-copy p,
.section-note {
  margin: 12px 0 0;
  color: var(--text-muted);
}

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

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.step-number {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--primary);
  font-size: 28px;
  font-weight: 900;
  flex-shrink: 0;
}

.section-actions {
  margin-top: 30px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

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

.faq-item {
  padding: 0 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(216, 221, 227, 0.7);
}

.faq-item summary {
  position: relative;
  padding: 22px 40px 22px 0;
  list-style: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 32px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 22px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 224, 51, 0.4), transparent 26%),
    linear-gradient(135deg, #181818 0%, #242424 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-copy {
  max-width: 720px;
}

.cta-copy h2 {
  color: #fff;
  max-width: 11ch;
}

.cta-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.45;
}

.cta-copy h2 span {
  display: block;
  margin-top: 12px;
  color: var(--primary);
}

.cta-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  min-height: 360px;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 224, 51, 0.14), transparent 26%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: flex-start;
}

.cta-chip {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.cta-art {
  align-self: flex-end;
  width: min(100%, 350px);
  margin-top: auto;
}

.prose {
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.prose h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.prose h3 {
  margin-top: 34px;
  font-size: 24px;
}

.prose ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.info-grid,
.detail-grid {
  display: grid;
  gap: 20px;
}

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

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

.info-card,
.detail-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(216, 221, 227, 0.72);
}

.info-card-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 224, 51, 0.18);
  color: #7b5a07;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-card h3,
.detail-card h3 {
  margin: 16px 0 0;
  font-size: 28px;
  line-height: 1.12;
}

.info-card p,
.detail-card p {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.55;
}

.detail-card-wide {
  grid-column: 1 / -1;
}

.detail-list {
  margin: 18px 0 0;
  padding-left: 22px;
}

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

.seo-hero {
  position: relative;
  overflow: clip;
  padding-top: 54px;
  padding-bottom: 74px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 224, 51, 0.25), transparent 22%),
    radial-gradient(circle at 68% 70%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(112deg, #111 0%, #141414 46%, #2b2b2b 100%);
}

.seo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 32px;
  align-items: start;
}

.seo-hero-copy {
  color: #fff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
}

.seo-hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  font-weight: 900;
}

.seo-lead {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.seo-hero-side {
  display: grid;
}

.seo-side-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.seo-side-card h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

.seo-side-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.seo-side-list li + li {
  margin-top: 10px;
}

.seo-side-button {
  margin-top: 24px;
}

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

.seo-card,
.seo-link-card {
  display: block;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(216, 221, 227, 0.72);
}

.seo-card h3,
.seo-link-card strong {
  display: block;
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.seo-card p,
.seo-link-card p {
  margin: 12px 0 0;
  color: var(--text-muted);
}

.seo-link-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.seo-link-card:hover,
.seo-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 224, 51, 0.52);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.16);
}

.site-footer {
  padding: 56px 0;
  background: #333;
  color: #c7c9cd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.logo-badge-footer .logo-image,
.logo-badge-drawer .logo-image {
  width: min(100%, 240px);
}

.city-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  pointer-events: none;
}

.city-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.city-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.city-drawer.is-open .city-drawer-backdrop {
  opacity: 1;
}

.city-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 480px);
  height: 100%;
  padding: 32px 24px 24px;
  background: #111;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow: auto;
}

.city-drawer.is-open .city-drawer-panel {
  transform: translateX(0);
}

.city-drawer-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.city-drawer-brand {
  display: grid;
  gap: 14px;
  align-items: start;
  margin-bottom: 20px;
}

.city-drawer-brand h2 {
  margin: 4px 0 0;
  font-size: 28px;
  line-height: 1.05;
}

.city-drawer-brand p,
.footer-copy code {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.city-search input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.city-list button {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
  text-align: left;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.city-list button:hover,
.city-list button:focus-visible,
.city-list button.is-active {
  border-color: rgba(255, 224, 51, 0.5);
  background: rgba(255, 224, 51, 0.16);
  color: #fff;
}

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

body.drawer-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .header-row {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-grid,
  .faq-grid,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .benefit-card,
  .benefit-card-wide {
    grid-column: span 6;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 72px 0;
  }

  .header-row {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 14px 0;
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-stat {
    max-width: 220px;
    padding: 16px 18px;
  }

  .benefit-card,
  .benefit-card-wide {
    grid-column: span 12;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .calculator-panel {
    padding: 24px;
  }

  .transport-button {
    font-size: 16px;
  }

  .calculator-range-head {
    font-size: 22px;
  }

  .calculator-bonus,
  .calculator-summary {
    grid-template-columns: 1fr;
  }

  .calculator-bonus-total,
  .calculator-cta {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 60px 0;
  }

  .logo-image {
    width: min(100%, 240px);
  }

  .hero-copy h1,
  .section-heading h2,
  .faq-intro h2,
  .cta-copy h2,
  .prose h2 {
    font-size: 34px;
  }

  .button {
    width: 100%;
  }

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

  .hero-art-wrap,
  .cta-band,
  .prose {
    padding: 24px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-stat-top {
    top: 12px;
    right: 6px;
  }

  .hero-stat-bottom {
    left: 6px;
    right: 6px;
    bottom: 12px;
    max-width: none;
  }

  .benefit-card h3,
  .step-card h3 {
    font-size: 24px;
  }

  .faq-item {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq-item summary {
    font-size: 18px;
  }

  .city-list {
    grid-template-columns: 1fr;
  }

  .calculator-card,
  .calculator-bonus,
  .calculator-summary {
    padding: 18px;
  }

  .calculator-city-trigger {
    min-height: 66px;
    padding-left: 18px;
    padding-right: 50px;
    font-size: 22px;
  }

  .transport-switch {
    gap: 10px;
  }

  .transport-button {
    min-height: 58px;
    padding: 0 10px;
    font-size: 14px;
  }

  .calculator-range-head {
    font-size: 18px;
  }

  .calculator-bonus-copy strong {
    font-size: 24px;
  }

  .calculator-bonus-copy p {
    font-size: 16px;
  }

  .calculator-stepper {
    justify-self: start;
  }

  .stepper-button {
    width: 52px;
    height: 52px;
    font-size: 34px;
  }

  .stepper-value {
    min-width: 62px;
    height: 52px;
    font-size: 24px;
  }

  .calculator-summary-meta {
    grid-template-columns: 1fr;
  }

  .calculator-meta-card {
    min-width: 0;
  }
}

/* Redesign 20260406-6 */
:root {
  --bg: #f4ecdf;
  --surface: rgba(255, 251, 245, 0.86);
  --surface-strong: #fff9ef;
  --surface-soft: rgba(248, 237, 215, 0.78);
  --surface-muted: #eadcc5;
  --text: #17130f;
  --text-muted: #685f54;
  --line: rgba(67, 49, 20, 0.12);
  --primary: #ffde59;
  --primary-hover: #f4ce2d;
  --dark: #171411;
  --dark-soft: #2a221b;
  --accent: #8e6424;
  --shadow-xl: 0 34px 86px rgba(29, 20, 8, 0.16);
  --shadow-lg: 0 28px 64px rgba(29, 20, 8, 0.14);
  --shadow-md: 0 18px 36px rgba(29, 20, 8, 0.1);
  --shadow-sm: 0 10px 20px rgba(29, 20, 8, 0.08);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 999px;
  --container: 1240px;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-text);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 222, 89, 0.28), transparent 18%),
    radial-gradient(circle at 100% 16%, rgba(255, 255, 255, 0.7), transparent 24%),
    linear-gradient(180deg, #f6efe4 0%, #f2eadc 54%, #f7f2e8 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(78, 58, 26, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 58, 26, 0.03) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.fade-up,
.fade-delay {
  animation: none;
  opacity: 1;
  transform: none;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

::selection {
  background: rgba(255, 222, 89, 0.48);
  color: #000;
}

.container {
  width: min(100% - 40px, var(--container));
}

.section {
  padding: 96px 0;
}

.section-cream {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.66), rgba(250, 240, 221, 0.5));
}

.section-copy {
  padding-top: 64px;
}

.eyebrow,
.section-kicker,
.calculator-label,
.calculator-summary-label,
.calculator-meta-card span,
.info-card-kicker {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  color: var(--accent);
}

.hero-copy h1,
.section-heading h2,
.faq-intro h2,
.cta-copy h2,
.prose h2,
.seo-hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.benefit-card h3,
.step-card h3,
.prose h3,
.info-card h3,
.detail-card h3,
.seo-card h3,
.seo-link-card strong,
.seo-side-card h2,
.calculator-bonus-copy strong,
.hero-stat strong,
.calculator-city-trigger,
.calculator-summary-total,
.calculator-meta-card strong {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-header {
  top: 0;
  padding: 16px 0 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.header-row {
  grid-template-columns: minmax(0, 260px) 220px minmax(0, 1fr) auto;
  min-height: 84px;
  padding: 14px 18px;
  gap: 18px;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(24px);
}

.logo-image {
  width: min(100%, 260px);
}

.logo-badge {
  padding: 14px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.header-city {
  justify-self: start;
  align-self: center;
  min-width: 0;
  width: 220px;
  max-width: 220px;
  padding: 10px 14px;
  gap: 4px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(67, 49, 20, 0.08);
}

.header-city > span {
  margin: 0;
  color: var(--text-muted);
}

.city-trigger {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding-right: 20px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.city-trigger span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.city-trigger::after {
  width: 8px;
  height: 8px;
  border-right-width: 2.5px;
  border-bottom-width: 2.5px;
}

.site-nav {
  min-width: 0;
  justify-self: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(67, 49, 20, 0.08);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 222, 89, 0.24);
}

.button {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-sm);
}

.button-primary {
  background: linear-gradient(180deg, #ffe36a 0%, #f3cb2f 100%);
  color: #111;
  box-shadow: 0 18px 36px rgba(243, 203, 47, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(180deg, #ffe978 0%, #f0c51d 100%);
}

.button-secondary {
  background: linear-gradient(180deg, #fffaf2 0%, #fff 100%);
  border: 1px solid var(--line);
  color: var(--text);
}

.header-cta.button-secondary {
  background: linear-gradient(180deg, #1d1812 0%, #2f271d 100%);
  border-color: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero,
.seo-hero {
  background: transparent;
  overflow: visible;
  padding-top: 28px;
  padding-bottom: 22px;
}

.hero::before,
.hero::after,
.seo-hero::before,
.seo-hero::after {
  display: none;
}

.hero-grid,
.seo-hero-grid {
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.seo-hero-copy {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  border-radius: 40px;
  color: #fff;
  background: linear-gradient(140deg, #171411 0%, #201a15 52%, #2d261e 100%);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.hero-copy::before,
.seo-hero-copy::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 222, 89, 0.32), transparent 72%);
  pointer-events: none;
}

.hero-copy::after,
.seo-hero-copy::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -90px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-copy h1,
.seo-hero-copy h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 1.02;
  font-size: clamp(38px, 5vw, 64px);
}

.hero-copy h1 span,
.calculator-heading h2 span,
.cta-copy h2 span {
  color: #ffe36a;
}

.hero-text,
.seo-lead {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.56;
}

.hero-actions {
  position: relative;
  z-index: 1;
  gap: 12px;
  margin-top: 32px;
}

.hero-pills {
  position: relative;
  z-index: 1;
  gap: 12px;
  margin-top: 34px;
}

.hero-pills li {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.hero-visual {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: auto;
  padding: 18px;
  border-radius: 40px;
  background: linear-gradient(180deg, #f8efcf 0%, #f3e0a3 100%);
  border: 1px solid rgba(67, 49, 20, 0.12);
  box-shadow: var(--shadow-xl);
}

.hero-art-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
  padding: 38px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(67, 49, 20, 0.1);
  overflow: hidden;
}

.hero-art-wrap::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 28px;
  width: 120px;
  height: 12px;
  border-radius: 999px;
  background: rgba(94, 73, 33, 0.12);
  box-shadow:
    0 30px 0 rgba(94, 73, 33, 0.1),
    0 60px 0 rgba(94, 73, 33, 0.08);
}

.hero-art {
  width: min(100%, 500px);
  margin: auto;
}

.hero-stat {
  position: static;
  max-width: none;
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid rgba(67, 49, 20, 0.12);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.hero-stat strong {
  display: block;
  font-size: 22px;
  line-height: 1.05;
}

.hero-stat span {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
}

.hero-stat-top {
  justify-self: stretch;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 22px;
  align-items: end;
  max-width: none;
  padding: 26px 28px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.96), rgba(255, 247, 229, 0.94));
}

.hero-stat-top strong,
.hero-stat-top span {
  margin: 0;
}

.hero-stat-top strong {
  max-width: 420px;
}

.hero-stat-top span {
  align-self: center;
  max-width: 340px;
}

.hero-stat-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.hero-mini-badge {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(180deg, #1a1713 0%, #2b241d 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2,
.faq-intro h2,
.cta-copy h2,
.prose h2 {
  color: var(--text);
  font-size: clamp(30px, 4vw, 50px);
}

.section-note {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
}

.calculator-heading {
  max-width: 960px;
}

.calculator-panel {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "city city"
    "transport transport"
    "hours days"
    "bonus bonus"
    "summary summary"
    "note cta";
  gap: 16px;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 222, 89, 0.18), transparent 22%),
    linear-gradient(145deg, #1f1712 0%, #2b2118 58%, #17120e 100%);
  border: 1px solid rgba(255, 222, 89, 0.12);
  box-shadow: var(--shadow-xl);
}

.calculator-panel > .calculator-card:nth-of-type(1) {
  grid-area: city;
}

.calculator-panel > .calculator-card:nth-of-type(2) {
  grid-area: transport;
}

.calculator-panel > .calculator-card:nth-of-type(3) {
  grid-area: hours;
}

.calculator-panel > .calculator-card:nth-of-type(4) {
  grid-area: days;
}

.calculator-card {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.calculator-label {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.calculator-city-trigger {
  min-height: 66px;
  border-radius: 20px;
  padding: 0 20px;
  background: linear-gradient(180deg, #fffdf7 0%, #fff 100%);
  border: 1px solid rgba(67, 49, 20, 0.08);
  color: var(--text);
  font-size: clamp(21px, 2.3vw, 27px);
}

.calculator-city-trigger::after {
  right: 24px;
  width: 11px;
  height: 11px;
  border-right-width: 2.5px;
  border-bottom-width: 2.5px;
}

.transport-switch {
  gap: 12px;
}

.transport-button {
  min-height: 54px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(67, 49, 20, 0.08);
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
}

.transport-button.is-active {
  background: linear-gradient(180deg, #ffe36a 0%, #f4cd2e 100%);
  color: #111;
}

.calculator-range-head {
  font-size: 18px;
  font-weight: 700;
}

.calculator-slider {
  height: 12px;
  margin-top: 16px;
}

.calculator-slider::-webkit-slider-thumb {
  width: 26px;
  height: 26px;
  border-width: 2px;
}

.calculator-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-width: 2px;
}

.calculator-bonus {
  grid-area: bonus;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

.calculator-bonus-copy strong {
  font-size: 22px;
}

.calculator-bonus-copy p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.45;
}

.calculator-stepper {
  gap: 10px;
}

.stepper-button,
.stepper-value {
  border-radius: 18px;
}

.stepper-button {
  background: #efe8d7;
  color: var(--text);
  font-size: 30px;
}

.stepper-value {
  background: linear-gradient(180deg, #ffe36a 0%, #f4cd2e 100%);
  color: #111;
  font-size: 23px;
}

.calculator-bonus-total {
  color: var(--text);
  font-size: 24px;
}

.calculator-summary {
  grid-area: summary;
  padding: 22px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffe36a 0%, #f2c72a 100%);
  box-shadow: 0 22px 36px rgba(242, 199, 42, 0.26);
}

.calculator-summary-total {
  font-size: clamp(30px, 4.2vw, 48px);
}

.calculator-summary-meta {
  gap: 12px;
}

.calculator-meta-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.08);
}

.calculator-meta-card strong {
  font-size: 19px;
}

.calculator-note {
  grid-area: note;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
}

.calculator-cta {
  grid-area: cta;
  justify-self: end;
  align-self: stretch;
  min-width: 300px;
  padding-inline: 36px;
}

.benefits-grid {
  gap: 20px;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 251, 245, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.benefit-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, #f2c72a 0%, #ffe98d 100%);
}

.benefit-card-wide {
  background: linear-gradient(145deg, #171411 0%, #25201a 100%);
  border-color: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.benefit-card:nth-child(odd):not(.benefit-card-wide) {
  background: rgba(255, 255, 255, 0.9);
}

.benefit-card h3,
.step-card h3,
.info-card h3,
.detail-card h3,
.seo-card h3,
.seo-link-card strong,
.prose h3 {
  font-size: 24px;
  line-height: 1.16;
}

.benefit-card p,
.step-card p,
.faq-item p,
.cta-copy p,
.prose p,
.prose li,
.footer-copy p,
.section-note,
.info-card p,
.detail-card p,
.seo-card p,
.seo-link-card p {
  color: var(--text-muted);
}

.benefit-card-wide p {
  color: rgba(255, 255, 255, 0.72);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #1a1713 0%, #2b241d 100%);
  color: #ffe36a;
  font-size: 26px;
}

.benefit-card-wide .benefit-icon {
  background: linear-gradient(180deg, #ffe36a 0%, #f2c72a 100%);
  color: #111;
}

.steps-grid {
  gap: 20px;
}

.step-card {
  position: relative;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 240, 221, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  border-radius: 32px 0 0 32px;
  background: linear-gradient(180deg, #ffe36a 0%, #f2c72a 100%);
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: linear-gradient(180deg, #171411 0%, #2a241d 100%);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.section-actions {
  margin-top: 34px;
}

.faq-grid {
  gap: 24px;
  align-items: start;
}

.faq-intro {
  padding: 38px;
  border-radius: 36px;
  background: linear-gradient(145deg, #171411 0%, #2a231c 100%);
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: 112px;
}

.faq-intro .section-kicker,
.faq-intro h2 {
  color: #fff;
}

.faq-intro .section-note {
  color: rgba(255, 255, 255, 0.76);
}

.faq-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-point {
  display: grid;
  gap: 6px;
  padding: 18px 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.faq-point strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.faq-point span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.45;
}

.faq-list {
  gap: 16px;
}

.faq-item {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.faq-item summary {
  padding: 22px 48px 22px 0;
  font-size: 19px;
  font-weight: 800;
}

.faq-item summary::after {
  color: var(--accent);
  font-size: 28px;
}

.faq-action-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(145deg, #171411 0%, #25201a 100%);
  border: 1px solid rgba(255, 222, 89, 0.14);
  box-shadow: var(--shadow-xl);
}

.faq-action-card strong {
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
}

.faq-action-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cta-band {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  padding: 24px;
  border-radius: 32px;
  background: linear-gradient(140deg, #171411 0%, #241d18 100%);
  box-shadow: var(--shadow-xl);
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -120px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 222, 89, 0.28), transparent 72%);
}

.cta-band::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 0;
  width: 286px;
  height: 182px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 222, 89, 0.28), transparent 16%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    url("../images/courier-hero.svg") 56% 32% / 154% no-repeat,
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0.96;
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  min-height: 0;
  padding: 4px 4px 4px 8px;
}

.cta-copy h2 {
  color: #fff;
  max-width: 18ch;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.02;
}

.cta-copy h2 span {
  display: inline;
}

.cta-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.45;
}

.cta-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.9fr);
  align-content: start;
  align-items: start;
  gap: 12px 14px;
  min-height: 0;
  width: 100%;
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 222, 89, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta-badges {
  grid-column: 1 / 2;
  gap: 8px;
}

.cta-chip {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
}

.cta-signal-grid {
  display: grid;
  grid-column: 2 / 3;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cta-signal-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-signal-card span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-signal-card strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}

.cta-checklist {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  max-width: 560px;
}

.cta-checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.42;
}

.cta-checklist li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe36a 0%, #f3cb2f 100%);
  color: #15110c;
  font-size: 12px;
  font-weight: 900;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.cta-process {
  display: grid;
  grid-column: 1 / 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.cta-process-step {
  display: grid;
  gap: 6px;
  height: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-process-step span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe36a 0%, #f3cb2f 100%);
  color: #15110c;
  font-size: 13px;
  font-weight: 900;
}

.cta-process-step strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.cta-process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.42;
}

.cta-art-shell {
  display: grid;
  grid-column: 2 / 3;
  min-height: 0;
  align-self: stretch;
  place-items: center;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-art {
  width: min(100%, 168px);
}

.prose {
  padding: 38px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.prose h3 {
  margin-top: 28px;
}

.prose ul,
.detail-list {
  padding-left: 20px;
}

.info-grid,
.detail-grid {
  gap: 20px;
}

.info-card,
.detail-card,
.seo-card,
.seo-link-card {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.info-card-kicker {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 222, 89, 0.26);
  color: var(--accent);
}

.info-card p,
.detail-card p {
  font-size: 17px;
}

.detail-card-wide {
  background: linear-gradient(145deg, #fff8eb 0%, #fff 100%);
}

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

.seo-hero-copy {
  background: linear-gradient(140deg, #171411 0%, #211a14 54%, #2d261e 100%);
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.56);
  font-weight: 600;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.86);
}

.seo-hero-side {
  display: block;
}

.seo-side-card {
  height: 100%;
  padding: 34px;
  border-radius: 40px;
  background: linear-gradient(180deg, #f8efcf 0%, #f2dfa7 100%);
  border: 1px solid rgba(67, 49, 20, 0.12);
  box-shadow: var(--shadow-xl);
  color: var(--text);
}

.seo-side-list {
  color: var(--text-muted);
}

.seo-side-button {
  margin-top: 26px;
}

.seo-card-grid,
.seo-link-grid {
  gap: 20px;
}

.seo-link-card:hover,
.seo-link-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 222, 89, 0.6);
  box-shadow: 0 24px 42px rgba(27, 20, 11, 0.14);
}

.site-footer {
  margin-top: 32px;
  padding: 72px 0;
  background: linear-gradient(180deg, #171411 0%, #221c16 100%);
  color: #d5cec2;
  border-radius: 42px 42px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: 24px;
}

.footer-brand,
.footer-links,
.footer-copy {
  min-height: 100%;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-brand-kicker,
.footer-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand-text {
  margin: 0;
  color: rgba(213, 206, 194, 0.84);
  font-size: 17px;
  line-height: 1.58;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff2b2 0%, #f3cb2f 100%);
  color: #15110c;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(243, 203, 47, 0.18);
}

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

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 700;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff1a5;
}

.footer-copy p,
.footer-copy code {
  color: rgba(213, 206, 194, 0.8);
}

.city-drawer-backdrop {
  background: rgba(20, 16, 11, 0.72);
  backdrop-filter: blur(10px);
}

.city-drawer-panel {
  width: min(100%, 500px);
  padding: 32px 24px 24px;
  background: linear-gradient(180deg, #16120e 0%, #221b15 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.24);
}

.city-drawer-close {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.city-drawer-brand h2 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.03em;
}

.city-search input,
.city-list button {
  border-radius: 18px;
}

.city-search input {
  background: rgba(255, 255, 255, 0.06);
}

.city-list button {
  font-weight: 700;
}

/* Conversion uplift 20260406-8 */

.hero-text {
  max-width: 700px;
}

.hero-checklist {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  max-width: 700px;
}

.hero-checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.5;
}

.hero-checklist li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe36a 0%, #f3cb2f 100%);
  color: #111;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(243, 203, 47, 0.28);
}

.hero-pills {
  margin-top: 24px;
}

.hero-funnel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin-top: 20px;
}

.hero-funnel-step {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-funnel-step span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe36a 0%, #f3cb2f 100%);
  color: #15110c;
  font-size: 14px;
  font-weight: 900;
}

.hero-funnel-step strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.conversion-panel {
  padding: 30px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 242, 223, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.conversion-copy {
  max-width: 760px;
}

.conversion-copy .section-note {
  margin-bottom: 0;
}

.conversion-card-kicker {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 222, 89, 0.18);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.conversion-card {
  padding: 22px;
  border-radius: 26px;
  background: rgba(23, 20, 17, 0.04);
  border: 1px solid rgba(67, 49, 20, 0.08);
}

.conversion-card strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.conversion-card p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.58;
}

.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sticky-apply {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(23, 20, 17, 0.96);
  border: 1px solid rgba(255, 222, 89, 0.18);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  z-index: 140;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sticky-apply-copy {
  min-width: 0;
  display: grid;
}

.sticky-apply-kicker {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticky-apply-copy strong {
  margin-top: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
}

.sticky-apply-button {
  flex: none;
  min-width: 188px;
  padding-inline: 20px;
}

body.drawer-open .sticky-apply {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.hero,
.seo-hero,
#calculator,
#benefits,
#steps,
#faq {
  scroll-margin-top: 118px;
}

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

.format-card,
.docs-card,
.story-card {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.format-card {
  display: grid;
  align-content: start;
  gap: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.format-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(255, 222, 89, 0.52);
  box-shadow: 0 26px 42px rgba(27, 20, 11, 0.16);
}

.format-badge,
.story-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 222, 89, 0.22);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.format-card h3,
.docs-card h3,
.story-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.format-card p,
.docs-card p,
.story-card p {
  margin: 0;
  color: var(--text-muted);
}

.format-meta,
.docs-grid {
  display: grid;
  gap: 16px;
}

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

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

.format-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.48;
}

.format-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe36a 0%, #f3cb2f 100%);
  box-shadow: 0 0 0 4px rgba(255, 222, 89, 0.14);
}

.format-metric,
.story-meta {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(23, 20, 17, 0.04);
  border: 1px solid rgba(67, 49, 20, 0.08);
}

.format-metric span,
.story-meta span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.format-metric strong,
.story-meta strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
}

.format-cta {
  width: 100%;
}

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

.docs-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.docs-card-wide {
  background: linear-gradient(145deg, #171411 0%, #25201a 100%);
  border-color: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.docs-card-wide p,
.docs-card-wide li {
  color: rgba(255, 255, 255, 0.78);
}

.docs-card-wide .detail-list {
  margin: 0;
}

.story-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.story-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
}

.story-fit {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 222, 89, 0.12);
  border: 1px solid rgba(67, 49, 20, 0.08);
}

.story-fit span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-fit strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.45;
}

.seo-link-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
}

.guide-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.guide-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 222, 89, 0.22);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.seo-link-card p {
  margin: 0;
}

.seo-link-card-featured {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 222, 89, 0.18), transparent 26%),
    linear-gradient(140deg, #171411 0%, #2a231b 100%);
  border-color: rgba(255, 222, 89, 0.14);
  box-shadow: var(--shadow-lg);
}

.seo-link-card-featured::before {
  content: "";
  position: absolute;
  inset: auto -28px -52px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 222, 89, 0.22), transparent 70%);
  pointer-events: none;
}

.seo-link-card-featured strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 30px;
}

.seo-link-card-featured p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
  max-width: 44ch;
}

.seo-link-card-featured .guide-chip {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.seo-link-card-featured .guide-link-label {
  position: relative;
  z-index: 1;
  color: #ffe36a;
}

.guide-link-label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  margin-top: auto;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.guide-link-label::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.18s ease;
}

.seo-link-card:hover .guide-link-label::after,
.seo-link-card:focus-visible .guide-link-label::after {
  transform: translateX(4px);
}

/* Fixes 20260406-13 */

.city-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}

.city-drawer.is-open {
  display: block;
  visibility: visible;
  pointer-events: auto;
}

.city-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100dvh;
  max-height: 100dvh;
  transform: none;
  transition: none;
  overflow: auto;
}

.hero-copy h1,
.seo-hero-copy h1 {
  font-size: clamp(34px, 4.4vw, 54px);
}

.section-heading h2,
.faq-intro h2,
.cta-copy h2,
.prose h2 {
  font-size: clamp(26px, 3.2vw, 40px);
}

.benefit-card h3,
.step-card h3,
.info-card h3,
.detail-card h3,
.seo-card h3,
.seo-link-card strong,
.prose h3 {
  font-size: 22px;
}

.seo-link-card strong {
  line-height: 1.2;
}

.faq-action-card strong {
  font-size: 24px;
}

.section-heading .section-note {
  max-width: 760px;
}
