:root {
  --color-red: #8b1e1e;
  --color-red-dark: #651414;
  --color-gold: #c99a4a;
  --color-blue: #102a43;
  --color-blue-soft: #183b58;
  --color-cream: #f8f3e8;
  --color-paper: #fffaf0;
  --color-text: #222222;
  --color-muted: #666666;
  --color-line: #e6d8c3;
  --color-white: #ffffff;
  --shadow: 0 24px 70px rgba(34, 24, 16, 0.15);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-cream);
  font-family:
    Inter, "Segoe UI", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(16, 42, 67, 0.92);
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.tag-row,
.hero-facts,
.mobile-cta,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--color-blue);
  background: var(--color-gold);
  border-radius: 50%;
  font-size: 13px;
  letter-spacing: 0;
}

.nav-links {
  gap: clamp(12px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--color-gold);
}

.header-cta {
  min-width: max-content;
  padding: 10px 16px;
  color: var(--color-blue);
  background: var(--color-gold);
  border-radius: var(--radius);
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: clamp(80px, 10vw, 140px) clamp(18px, 5vw, 74px) 170px;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-blue);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 24, 31, 0.88) 0%, rgba(18, 24, 31, 0.62) 42%, rgba(18, 24, 31, 0.08) 100%),
    linear-gradient(0deg, rgba(18, 24, 31, 0.72) 0%, rgba(18, 24, 31, 0.12) 48%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 950;
}

h2 {
  margin-bottom: 12px;
  color: var(--color-blue);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 930;
}

h3 {
  margin-bottom: 10px;
  color: var(--color-blue);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.16;
}

h4 {
  margin-bottom: 8px;
  color: var(--color-blue);
  font-size: 22px;
}

.hero-cn,
.cn-title {
  color: var(--color-gold);
  font-weight: 800;
}

.hero-cn {
  margin-bottom: 22px;
  font-size: clamp(21px, 3vw, 34px);
}

.hero-subtitle {
  max-width: 790px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 2.6vw, 30px);
  line-height: 1.34;
}

.hero-note {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.tag-row {
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.tag-row span {
  padding: 8px 12px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.tag-row.small {
  margin: 20px 0 28px;
}

.tag-row.small span {
  color: var(--color-blue);
  background: #f5ead7;
  border-color: #ecd6b0;
}

.price-teaser {
  display: grid;
  gap: 3px;
  margin: 0 0 24px;
  padding: 16px;
  background: #fff6e4;
  border: 1px solid #ead2a5;
  border-radius: var(--radius);
}

.price-teaser span,
.price-card span {
  color: var(--color-red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.price-teaser strong {
  color: var(--color-blue);
  font-size: 22px;
  line-height: 1.15;
}

.price-teaser small {
  color: var(--color-muted);
  font-weight: 800;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(33, 24, 16, 0.16);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  color: var(--color-white);
  background: var(--color-red);
}

.btn-primary:hover {
  background: var(--color-red-dark);
}

.btn-secondary {
  color: var(--color-blue);
  background: var(--color-gold);
}

.btn-ghost {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.hero-facts {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 74px);
  bottom: 34px;
  left: clamp(18px, 5vw, 74px);
  justify-content: space-between;
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-facts div {
  flex: 1;
  min-height: 118px;
  padding: 20px;
  color: var(--color-blue);
  background: rgba(255, 255, 255, 0.35);
}

.hero-facts span {
  display: block;
  color: var(--color-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.2;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 74px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

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

.section-heading p:not(.eyebrow):not(.cn-title),
.lead,
.cn-copy,
.fine-print,
.source-note {
  color: var(--color-muted);
  font-size: 18px;
}

.cn-title {
  margin-bottom: 14px;
}

.overview-section,
.highlights-section,
.audience-section,
.trust-section {
  background: var(--color-paper);
}

.product-grid,
.cabin-grid,
.service-grid,
.audience-grid {
  display: grid;
  gap: 18px;
}

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

.product-card,
.benefit-card,
.cabin-card,
.service-grid article,
.audience-grid article,
details {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(48, 35, 19, 0.06);
}

.product-card {
  min-height: 420px;
  padding: clamp(24px, 4vw, 38px);
}

.product-card.featured {
  background:
    linear-gradient(135deg, rgba(139, 30, 30, 0.08), rgba(201, 154, 74, 0.16)),
    var(--color-white);
}

.product-kicker {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 10px;
  color: var(--color-red);
  background: #f7eadb;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-section,
.route-section,
.faq-section {
  background: var(--color-cream);
}

.pricing-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(201, 154, 74, 0.18), transparent 30%),
    var(--color-paper);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 18px;
}

.pricing-panel {
  padding: clamp(22px, 4vw, 34px);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-panel h3 {
  margin-bottom: 4px;
}

.pricing-note,
.departure-note {
  color: var(--color-muted);
}

.price-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

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

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

.price-card {
  min-height: 170px;
  padding: 20px;
  background: #fffaf0;
  border: 1px solid #ead2a5;
  border-radius: var(--radius);
}

.price-card.premium {
  background: linear-gradient(135deg, rgba(139, 30, 30, 0.08), rgba(201, 154, 74, 0.18)), #fffaf0;
}

.price-card strong {
  display: block;
  margin: 8px 0 2px;
  color: var(--color-blue);
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1;
}

.price-card small {
  color: var(--color-muted);
  font-weight: 900;
}

.price-card p {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.departure-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  background: rgba(16, 42, 67, 0.06);
  border-radius: var(--radius);
  font-size: 15px;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow);
}

.table-row {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1.2fr;
  border-bottom: 1px solid var(--color-line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row > div {
  padding: 20px;
  border-right: 1px solid var(--color-line);
}

.table-row > div:last-child {
  border-right: 0;
}

.table-head {
  color: var(--color-white);
  background: var(--color-blue);
  font-weight: 900;
}

.table-row a {
  color: var(--color-red);
  font-weight: 900;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.product-detail {
  background: var(--color-paper);
}

.anyi-section {
  background: #f2ecdf;
}

.image-frame {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(139, 30, 30, 0.08), rgba(201, 154, 74, 0.18)),
    #efe4d2;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.image-frame::after {
  content: attr(data-image-label);
  position: absolute;
  inset: auto 18px 16px;
  display: none;
  color: var(--color-blue);
  font-weight: 900;
}

.image-frame.is-missing::after {
  display: block;
}

.image-frame.tall {
  min-height: 440px;
}

.image-frame img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 48px;
}

.feature-grid.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-grid article {
  min-height: 108px;
  padding: 20px;
  color: var(--color-blue);
  background: var(--color-white);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius);
}

.subsection-heading {
  margin: 42px 0 22px;
}

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

.cabin-card {
  overflow: hidden;
}

.cabin-card .image-frame {
  aspect-ratio: 3 / 4;
  min-height: 0;
}

.cabin-card .image-frame img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--color-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}

.timeline-block {
  margin-top: 36px;
}

.visual-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 44px;
}

.visual-card-grid article {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(48, 35, 19, 0.06);
}

.visual-card-grid img {
  height: 250px;
  object-fit: cover;
}

.visual-card-grid div {
  padding: 18px;
}

.visual-card-grid span {
  color: var(--color-red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.visual-card-grid h4 {
  margin: 8px 0 2px;
}

.visual-card-grid p {
  margin: 0;
  color: var(--color-muted);
}

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

.timeline.two-column {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline li {
  position: relative;
  min-height: 78px;
  padding: 18px 18px 18px 76px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.timeline span {
  position: absolute;
  left: 16px;
  top: 18px;
  color: var(--color-red);
  font-weight: 950;
}

.fine-print,
.source-note {
  padding: 16px 18px;
  background: rgba(201, 154, 74, 0.12);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius);
}

.route-map {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px;
  background: var(--color-blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.route-map span {
  position: relative;
  padding: 10px 13px;
  color: var(--color-blue);
  background: var(--color-cream);
  border-radius: var(--radius);
  font-weight: 900;
}

.route-map span:not(:last-child)::after {
  content: "→";
  margin-left: 12px;
  color: var(--color-gold);
}

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

.highlight-card {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.highlight-card img {
  height: 210px;
  object-fit: cover;
  background: #efe4d2;
}

.highlight-card div {
  padding: 18px;
}

.highlight-card span {
  color: var(--color-red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.highlight-card h3 {
  margin: 8px 0 2px;
  font-size: 22px;
}

.highlight-card p:last-child {
  color: var(--color-muted);
  font-size: 15px;
}

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

.service-grid article {
  min-height: 230px;
  padding: 24px;
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-red);
  font-weight: 950;
}

.service-grid p,
.audience-grid p,
details p {
  color: var(--color-muted);
}

.notes-section {
  background: var(--color-paper);
}

.warning-box {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 48px);
  background: #fff3d8;
  border: 1px solid #eccb8d;
  border-left: 8px solid var(--color-red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.warning-box h2 {
  color: var(--color-red-dark);
}

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

.audience-grid article {
  padding: 22px;
}

.audience-grid h3 {
  font-size: 21px;
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  background: var(--color-blue);
  color: var(--color-white);
}

.inquiry-section h2 {
  color: var(--color-white);
}

.inquiry-section .section-heading p:not(.eyebrow):not(.cn-title) {
  color: rgba(255, 255, 255, 0.74);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--color-blue);
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 900;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  color: var(--color-text);
  background: #fffdf8;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 154, 74, 0.34);
  border-color: var(--color-gold);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--color-red);
  font-weight: 900;
}

.form-status.success {
  color: #0d6b45;
}

.form-status a {
  display: inline-block;
  margin: 8px 10px 0 0;
  color: var(--color-red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  padding: 20px 22px;
}

summary {
  color: var(--color-blue);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

.trust-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-line);
}

.trust-list dt {
  color: var(--color-red);
  font-weight: 900;
}

.trust-list dd {
  margin: 0;
  color: var(--color-muted);
}

.image-frame.license {
  display: flex;
  align-items: center;
  min-height: 320px;
  background: #f7efe2;
}

.image-frame.license img {
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.floating-consult {
  position: fixed;
  top: 50%;
  right: 0;
  bottom: auto;
  z-index: 40;
  max-width: 54px;
  padding: 14px 12px;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: var(--shadow);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

.floating-consult:hover {
  transform: translateY(-50%) translateX(-2px);
}

.mobile-cta {
  display: none;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 38px clamp(18px, 5vw, 74px);
  color: rgba(255, 255, 255, 0.76);
  background: #091b2b;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-white);
}

.site-footer p {
  margin-bottom: 6px;
}

.site-footer nav {
  flex-wrap: wrap;
  gap: 18px;
  color: var(--color-gold);
  font-weight: 800;
}

.disclaimer {
  max-width: 1080px;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .feature-grid.compact,
  .audience-grid,
  .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px 18px 20px;
    background: rgba(16, 42, 67, 0.98);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-bottom: 28px;
  }

  .hero-facts {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    flex-direction: column;
    margin-top: 40px;
  }

  .hero-facts div {
    width: 100%;
    min-height: auto;
  }

  .product-grid,
  .pricing-layout,
  .split-layout,
  .cabin-grid,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .feature-grid.compact,
  .service-grid,
  .visual-card-grid,
  .highlight-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-table {
    display: grid;
    gap: 14px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .table-row,
  .table-head {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-white);
  }

  .table-head {
    display: none;
  }

  .table-row > div {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .table-row > div:first-child {
    color: var(--color-white);
    background: var(--color-blue);
    font-weight: 900;
  }

  .table-row > div:last-child {
    border-bottom: 0;
  }

  .floating-consult {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--color-white);
    border-top: 1px solid var(--color-line);
    box-shadow: 0 -10px 24px rgba(15, 21, 28, 0.1);
  }

  .mobile-cta a {
    display: grid;
    min-height: 58px;
    place-items: center;
    color: var(--color-blue);
    border-right: 1px solid var(--color-line);
    font-weight: 900;
  }

  .mobile-cta a:last-child {
    color: var(--color-white);
    background: var(--color-red);
    border-right: 0;
  }

  .site-footer {
    padding-bottom: 90px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    max-width: 178px;
    line-height: 1.15;
  }

  .nav-links {
    top: 68px;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-actions,
  .tag-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .feature-grid,
  .feature-grid.compact,
  .service-grid,
  .price-grid.two,
  .price-grid.four,
  .visual-card-grid,
  .highlight-grid,
  .audience-grid,
  .timeline,
  .timeline.two-column,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .route-map {
    padding: 18px;
  }

  .route-map span {
    width: 100%;
  }

  .route-map span:not(:last-child)::after {
    content: "";
  }

  .highlight-card img {
    height: 220px;
  }

  .trust-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
