:root {
  --color-navy: #13233f;
  --color-navy-deep: #0c1a31;
  --color-charcoal: #2a3342;
  --color-text: #344055;
  --color-muted: #647085;
  --color-gold: #c9a55c;
  --color-gold-soft: #f2e4c2;
  --color-line: #d8dee8;
  --color-bg: #ffffff;
  --color-bg-soft: #f6f8fb;
  --color-bg-alt: #eff3f8;
  --color-success: #0f5f5a;
  --shadow-sm: 0 10px 30px rgba(19, 35, 63, 0.08);
  --shadow-md: 0 18px 50px rgba(19, 35, 63, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", "Yu Gothic UI", "Meiryo", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
}

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

a:hover {
  opacity: 0.9;
}

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

svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--color-navy);
  color: #fff;
  padding: 12px 16px;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

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

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

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

.benefits .section-heading,
.support .section-heading {
  margin-inline: auto;
  text-align: center;
}

/* benefits section heading / image alignment */
.benefits .split-layout {
  align-items: start;
  column-gap: 48px;
  row-gap: 14px;
}

.benefits .split-content {
  display: contents;
}

.benefits .section-heading {
  display: contents;
}

.benefits .section-heading .eyebrow {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  text-align: center;
}

.benefits .section-heading h2 {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.benefits .section-heading > p:last-child {
  grid-column: 1;
  grid-row: 3;
  max-width: 620px;
  margin-top: 18px;
  text-align: left;
}

.benefits .benefit-list {
  grid-column: 1;
  grid-row: 4;
  margin-top: 20px;
}

.benefits .inline-cta {
  grid-column: 1;
  grid-row: 5;
}

.benefits .split-visual {
  grid-column: 2;
  grid-row: 3 / span 3;
  align-self: start;
  margin-top: 8px;
}

.eyebrow,
.mini-label,
.eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.mini-label {
  color: var(--color-navy);
}

.eyebrow::before,
.mini-label::before,
.eyebrow-light::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--color-gold);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.88);
}

.section h2,
.hero h1,
.site-footer h2 {
  margin: 0;
  color: var(--color-charcoal);
  line-height: 1.35;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  color: var(--color-navy-deep);
  letter-spacing: -0.02em;
}

.section h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.section h3,
.site-footer h2,
.related-card h3,
.compare-card h3,
.icon-card h3,
.check-item h3,
.support-card h3,
.industry-card h3,
.timeline h3 {
  margin: 0 0 8px;
  color: var(--color-charcoal);
  font-size: 1.1rem;
}

p,
ul,ol {
  margin: 0;
}

.lead {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--color-text);
}

.hero-last {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-header {
  color: #fff;
  background: #17324d;
  box-shadow: 0 10px 24px rgba(15, 23, 40, 0.08);
}

.btn-header {
  flex-shrink: 0;
  min-width: 140px;
  white-space: nowrap;
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-header:hover,
.btn-header:focus-visible {
  background: #0d2237;
}

.btn-secondary {
  background: linear-gradient(135deg, #c8a86c 0%, #b08a44 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 40, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: linear-gradient(135deg, #b99656 0%, #a67d36 100%);
  color: #fff;
}

.btn-on-dark.btn-secondary {
  background: linear-gradient(135deg, #c8a86c 0%, #b08a44 100%);
  color: #fff;
  border-color: transparent;
}

.btn-on-dark.btn-primary {
  background: linear-gradient(135deg, #c8a86c 0%, #b08a44 100%);
  color: #fff;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.inline-cta {
  margin-top: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(19, 35, 63, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  min-height: 86px;
}

.site-logo {
  flex-shrink: 0;
}

.site-nav {
  margin-left: auto;
}

.site-logo img,
.footer-logo img {
  width: auto;
  max-height: 48px;
}

.site-nav ul,
.footer-links,
.mobile-menu ul,
.checked-list,
.compare-card ul,
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  font-size: 0.94rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  position: relative;
  color: #5b6573;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a[aria-current="page"] {
  background: rgba(184, 150, 85, 0.14);
  color: #17324d;
  font-weight: 700;
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  content: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #17324d;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(19, 35, 63, 0.12);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid rgba(19, 35, 63, 0.08);
  background: #fff;
}

.mobile-menu-inner {
  padding: 18px 0 24px;
}

.mobile-menu ul li + li {
  border-top: 1px solid rgba(19, 35, 63, 0.08);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-weight: 600;
}

.btn-mobile-cta {
  width: 100%;
  margin-top: 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 88px;
  background:
    radial-gradient(circle at top right, rgba(201, 165, 92, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 72%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(19, 35, 63, 0.14), transparent);
}

.breadcrumb {
  margin-bottom: 26px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 10px;
  color: #9aa3b3;
}

.hero-grid,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy .eyebrow {
  gap: 0;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(19, 35, 63, 0.06);
  letter-spacing: 0.03em;
}

.hero-copy .eyebrow::before {
  display: none;
}

.hero-highlight {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--color-gold);
  border-radius: 18px;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  color: var(--color-navy-deep);
  font-size: 1.08rem;
  line-height: 1.8;
  box-shadow: var(--shadow-sm);
}

.hero-highlight strong {
  font-weight: 800;
}

.hero-copy .lead {
  max-width: 60ch;
}

.hero-copy .lead strong {
  color: var(--color-navy-deep);
  font-weight: 800;
}

.hero-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badge-list li {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(19, 35, 63, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(19, 35, 63, 0.05);
  color: var(--color-navy-deep);
  font-size: 0.93rem;
  font-weight: 700;
}

.hero-figure,
.section-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #dfe6ef;
}

.hero-figure::before,
.section-figure::before {
  content: "";
  position: absolute;
  inset: auto auto 12px 12px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.45), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-figure img,
.section-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.comparison-hero {
  margin-top: 34px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(19, 35, 63, 0.08);
  box-shadow: var(--shadow-sm);
}

.comparison-heading {
  margin: 0 auto 22px;
  max-width: 760px;
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.compare-card {
  padding: 26px 22px;
  border-radius: 22px;
}

.compare-card h3 {
  margin-bottom: 16px;
}

.compare-card ul {
  display: grid;
  gap: 12px;
}

.compare-card li {
  position: relative;
  padding-left: 22px;
}

.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.compare-card-muted {
  background: linear-gradient(180deg, #f7f8fb 0%, #eef2f7 100%);
  border: 1px solid rgba(19, 35, 63, 0.08);
}

.compare-card-muted li::before {
  background: #b8c1cf;
}

.compare-card-accent {
  color: #fff;
  background: linear-gradient(135deg, var(--color-navy-deep) 0%, #1d365e 100%);
  border: 1px solid rgba(201, 165, 92, 0.4);
}

.compare-card-accent h3 {
  color: #fff;
}

.compare-card-accent li::before {
  background: var(--color-gold);
}

.compare-vs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  align-self: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, #e3cd9d 100%);
  color: var(--color-navy-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-sm);
}

.cost-pain {
  background: var(--color-bg-soft);
}

.icon-card-grid,
.support-grid,
.related-grid {
  display: grid;
  gap: 18px;
}

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

.icon-card,
.support-card,
.related-card,
.check-item,
.industry-card {
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(19, 35, 63, 0.08);
  box-shadow: var(--shadow-sm);
}

.icon-wrap {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 18px;
  color: var(--color-navy);
  background: linear-gradient(180deg, rgba(201, 165, 92, 0.22), rgba(19, 35, 63, 0.06));
}

.split-layout {
  gap: 48px;
}

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

.checked-list li {
  position: relative;
  padding-left: 34px;
}

.checked-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(15, 95, 90, 0.12);
  color: var(--color-success);
  font-weight: 800;
}

.caution {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

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

.check-item {
  padding: 22px 20px;
  background: linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
}

.check-item h3 {
  position: relative;
  padding-left: 18px;
}

.check-item h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--color-gold);
}

.section-note,
.footer-note {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.industries {
  background: var(--color-bg-soft);
}

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

.industry-card {
  text-align: center;
}

.industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(19, 35, 63, 0.08), rgba(201, 165, 92, 0.2));
  font-size: 2rem;
}

.support {
  background: #fff;
}

.support .split-layout {
  align-items: start;
  column-gap: 48px;
  row-gap: 18px;
}

.support .split-content {
  display: contents;
}

.support .section-heading {
  grid-column: 1 / -1;
  grid-row: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

.support .split-visual {
  grid-column: 1;
  grid-row: 2 / span 2;
  align-self: start;
  margin-top: 0;
}

.scope-note {
  grid-column: 1 / -1;
  grid-row: 3;
  width: 100%;
  margin-top: 20px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%);
  border: 1px solid rgba(19, 35, 63, 0.08);
}

.audience-box {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border: 1px solid rgba(19, 35, 63, 0.08);
  box-shadow: var(--shadow-sm);
}

.two-column-checklist {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 26px;
}

.flow {
  background: var(--color-bg-soft);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(201, 165, 92, 0.7), rgba(19, 35, 63, 0.2));
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
  padding: 0 0 0 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy) 0%, #274677 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.timeline li > div {
  padding: 20px 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(19, 35, 63, 0.08);
  box-shadow: var(--shadow-sm);
}

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

.faq-list details {
  padding: 0 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(19, 35, 63, 0.08);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 34px 20px 0;
  position: relative;
  font-weight: 700;
  color: var(--color-charcoal);
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.5rem;
  color: var(--color-navy);
}

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

.faq-list details p {
  padding: 0 0 20px;
}

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

.related-card {
  display: block;
  min-height: 100%;
}

.related-card h3 {
  margin-bottom: 10px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-navy-deep) 0%, #16315a 55%, #1f426f 100%);
  color: #fff;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-cta::before {
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 165, 92, 0.2), transparent 26%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255, 255, 255, 0.08) calc(100% - 1px)),
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(255, 255, 255, 0.06) calc(100% - 1px));
  background-size: auto, 80px 80px, 80px 80px;
  opacity: 0.75;
}

.final-cta::after {
  background:
    radial-gradient(circle at 85% 28%, rgba(201, 165, 92, 0.18), transparent 20%),
    radial-gradient(circle at 75% 78%, rgba(255, 255, 255, 0.1), transparent 16%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta-copy {
  max-width: 760px;
}

.final-cta-buttons {
  justify-content: flex-end;
}

.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.84);
  padding: 72px 0 24px;
}

.site-footer h2 {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 36px;
}

.footer-brand p {
  margin-top: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.92);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .six-grid,
  .industry-grid,
  .related-grid,
  .checklist-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .header-inner {
    min-height: 74px;
  }

  .btn-header {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .benefits .section-heading .eyebrow,
  .benefits .section-heading h2,
  .benefits .section-heading > p:last-child,
  .benefits .benefit-list,
  .benefits .inline-cta,
  .benefits .split-visual {
    grid-column: 1;
    grid-row: auto;
  }

  .benefits .split-visual {
    margin-top: 8px;
  }

  .support .section-heading,
  .support .split-visual,
  .support .support-grid,
  .support .scope-note {
    grid-column: 1;
    grid-row: auto;
  }

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

  .compare-vs {
    justify-self: center;
  }

  .support-grid,
  .two-column-checklist,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .hero-highlight {
    padding: 16px 16px;
    border-radius: 16px;
    font-size: 1rem;
  }

  .hero-badge-list {
    gap: 8px;
  }

  body {
    line-height: 1.72;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 22px 0 64px;
  }

  .hero-copy,
  .section-heading.narrow,
  .benefits .section-heading,
  .support .section-heading,
  .final-cta-copy {
    max-width: none;
  }

  .cta-group,
  .final-cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .comparison-hero,
  .icon-card,
  .support-card,
  .related-card,
  .check-item,
  .industry-card,
  .audience-box,
  .scope-note,
  .timeline li > div,
  .faq-list details {
    border-radius: 18px;
  }

  .six-grid,
  .industry-grid,
  .related-grid,
  .checklist-board {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-step {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .industry-icon {
    width: 62px;
    height: 62px;
  }

  .site-logo img,
  .footer-logo img {
    max-height: 42px;
  }
}


/* buyer self-contained compatibility patch */
.hero-buyer,
.comparison,
.audience,
.faq,
.related-links {
  position: relative;
}

.hero-visual,
.split-visual {
  display: block;
}

.split-content {
  display: flex;
  flex-direction: column;
}

.benefit-list {
  display: grid;
  gap: 12px;
}

/* buyer hero portrait adjustment */
.hero-buyer .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.hero-buyer .hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-buyer .hero-figure {
  width: min(100%, 410px);
  aspect-ratio: 3 / 4;
  margin-left: auto;
}

.hero-buyer .hero-figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 920px) {
  .reverse-mobile > .split-visual {
    order: -1;
  }

  .hero-buyer .hero-visual {
    justify-content: center;
  }

  .hero-buyer .hero-figure {
    width: min(100%, 420px);
    margin-inline: auto;
  }
}


/* unified buyer-style footer override 20260707 */
.site-footer {
  background: #121e33;
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 24px;
}

.site-footer .container.footer-grid,
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: start;
}

.site-footer .footer-brand p {
  margin-top: 18px;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .footer-logo img {
  width: auto;
  height: 48px;
  max-height: 48px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.35;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer .footer-links li {
  margin: 0;
  padding: 0;
}

.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer .footer-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.94rem;
  line-height: 1.9;
}

.site-footer .footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .footer-bottom p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-footer .container.footer-grid,
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
