:root {
  --color-primary: #1769f0;
  --color-primary-dark: #0f4cb2;
  --color-primary-soft: #eaf2ff;
  --cta-width: 340px;
  --section-cta-spacing: 108px;
  --section-cta-spacing-mobile: 56px;
  --cta-material-image-width: 66px;
  --cta-material-image-offset: -22px;
  --cta-material-image-width-mobile: 56px;
  --cta-material-image-offset-mobile: -16px;
  --quiet-cta-min-width: 300px;
  --quiet-cta-min-height: 58px;
  --quiet-cta-inline-padding: 48px;
  --color-ink: #0f1728;
  --color-text: #31405d;
  --color-muted: #6c7891;
  --color-line: #d8e2f5;
  --color-surface: #ffffff;
  --color-surface-alt: #f5f8ff;
  --color-dark: #091224;
  --color-dark-soft: #13213d;
  --shadow-lg: 0 24px 60px rgba(17, 55, 118, 0.12);
  --shadow-md: 0 14px 34px rgba(23, 45, 92, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1160px;
  --font-main: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(23, 105, 240, 0.1), transparent 30%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 22%, #f7faff 100%);
  line-height: 1.75;
}

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

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

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

.hero-container {
  width: min(calc(100% - 28px), 1320px);
  margin: 0 auto;
}

.header-container {
  width: min(calc(100% - 56px), 1440px);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.problem-section,
.value-section {
  background: #ffffff;
}

.section-light {
  background: var(--color-surface-alt);
}

.section-dark {
  background:
    radial-gradient(circle at top, rgba(23, 105, 240, 0.18), transparent 30%),
    linear-gradient(180deg, var(--color-dark) 0%, #08101e 100%);
  color: rgba(255, 255, 255, 0.86);
}

.section-accent {
  background: linear-gradient(135deg, #0d56c8 0%, #1769f0 52%, #4e95ff 100%);
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffff;
  border-bottom: 1px solid rgba(216, 226, 245, 0.7);
}

.header-inner,
.footer-inner,
.header-actions,
.brand {
  display: flex;
  align-items: center;
}

.header-inner,
.footer-inner {
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  gap: 14px;
  min-width: 320px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
}

.brand-fallback {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.section-heading h2,
.hero-copy h1,
.info-card h3,
.wall-card h3,
.statement-card h2,
.process-card h3,
.feature-card h3,
.value-item h3,
.cta-box h3,
.integration-card h3 {
  color: var(--color-ink);
}

.section-dark .section-heading h2,
.section-dark .wall-card h3,
.section-dark .wall-summary,
.section-dark .section-heading p {
  color: #ffffff;
}

.header-actions {
  gap: 12px;
}

.button-outline {
  color: var(--color-ink);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 40, 0.14);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 12px 26px rgba(23, 105, 240, 0.2);
}

.button-primary:hover,
.button-outline:hover {
  background: #eaf2ff;
  color: var(--color-primary-dark);
  border-color: rgba(23, 105, 240, 0.22);
  box-shadow: 0 10px 24px rgba(23, 105, 240, 0.14);
}

.button-large {
  min-height: 58px;
  padding: 0 30px;
  font-size: 1rem;
}

.button-download {
  position: relative;
  justify-content: center;
  gap: 12px;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
  overflow: visible;
}

.button-download-image {
  position: absolute;
  left: -22px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: 64px;
  height: auto;
  pointer-events: none;
}

.button-download span {
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.site-header .button {
  transform: translateY(0);
}

.site-header .button-primary {
  background: #3060ce;
  box-shadow: none;
}

.site-header .button-primary:hover {
  background: #3a6ddb;
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(48, 96, 206, 0.18);
}

.site-header .button-outline {
  background: #ffffff;
  color: var(--color-ink);
  box-shadow: none;
}

.site-header .button-outline:hover {
  background: #ffffff;
  color: rgba(15, 23, 40, 0.72);
  border-color: rgba(15, 23, 40, 0.14);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 23, 40, 0.08);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.95);
}

.hero {
  position: relative;
  padding-top: 96px;
  padding-bottom: 88px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(9, 36, 84, 0.84), rgba(23, 105, 240, 0.9)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 30%);
}

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

.hero::before {
  width: 520px;
  height: 520px;
  top: -180px;
  left: -120px;
  background: rgba(255, 255, 255, 0.09);
}

.hero::after {
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -180px;
  background: rgba(121, 174, 255, 0.16);
}

.hero-grid,
.problem-layout,
.wall-grid,
.narrative-grid,
.asset-band,
.cta-panel,
.value-layout {
  display: grid;
  gap: 34px;
}

.hero-grid {
  grid-template-columns: minmax(0, 620px) minmax(460px, 1fr);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-mobile {
  display: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero-copy h1,
.hero-lead,
.hero-support,
.hero-question,
.hero .cta-note {
  color: #ffffff;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(1.62rem, 3.24vw, 2.754rem);
  line-height: 1.34;
  letter-spacing: -0.03em;
  max-width: none;
}

.hero-lead {
  margin: 0;
  max-width: 640px;
  font-size: 1.12rem;
  line-height: 1.9;
}

.hero-lead-wrap {
  display: inline-flex;
  margin-top: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-support,
.hero-question,
.section-heading p,
.statement-card p,
.process-card p,
.feature-card p,
.value-item p,
.integration-card p,
.cta-copy p,
.cta-box p,
.problem-copy p,
.section-note {
  color: var(--color-text);
}

.hero .hero-lead,
.hero .hero-question {
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 16px;
  margin-top: 28px;
  justify-content: flex-start;
}

.hero-cta > .cta-card {
  flex: 1 1 0;
  min-width: 0;
}

.hero-question {
  margin-top: 32px;
  padding-left: 18px;
  border-left: 4px solid rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 35%);
  box-shadow: 0 30px 70px rgba(5, 18, 43, 0.35);
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(23, 105, 240, 0.08);
}

.hero-visual::before {
  width: 220px;
  height: 220px;
  top: -80px;
  right: -40px;
}

.hero-visual::after {
  width: 160px;
  height: 160px;
  bottom: -50px;
  left: -30px;
}

.hero-visual-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 26px 56px rgba(0, 14, 40, 0.18);
  background: #ffffff;
}

.system-card,
.system-core,
.info-card,
.statement-card,
.process-card,
.feature-card,
.comparison-card,
.integration-card,
.cta-box,
.wall-card {
  position: relative;
  z-index: 1;
}

.system-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.system-card p,
.comparison-label,
.wall-label,
.feature-icon,
.card-index {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-weight: 800;
}

.system-card ul,
.comparison-card ul,
.chips,
.faq-list,
.value-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-card li {
  padding: 10px 0;
  border-top: 1px solid var(--color-line);
  color: var(--color-text);
  font-size: 0.95rem;
}

.system-core {
  display: grid;
  place-items: center;
  width: 192px;
  height: 192px;
  padding: 18px;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.25), transparent 38%),
    linear-gradient(160deg, #0c56c8 0%, var(--color-primary) 56%, #5ca0ff 100%);
  box-shadow: 0 20px 50px rgba(23, 105, 240, 0.35);
}

.system-core strong {
  font-size: 2rem;
  line-height: 1.1;
}

.system-core small,
.core-label {
  opacity: 0.84;
}

.core-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-height: 72px;
  flex: 0 0 auto;
  width: auto;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: none;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.cta-card-kicker {
  font-size: 0.74rem;
  font-weight: 700;
}

.cta-card strong {
  font-size: 1.2rem;
  line-height: 1.2;
}

.cta-card-download {
  position: relative;
  justify-content: center;
  align-items: center;
  padding-left: 22px;
  padding-right: 22px;
  text-align: center;
  overflow: visible;
}

.cta-card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 2px;
  text-align: center;
}

.cta-card-image {
  position: absolute;
  left: var(--cta-material-image-offset);
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: var(--cta-material-image-width);
  height: auto;
  pointer-events: none;
}

.cta-card-primary {
  color: #15203a;
  background: linear-gradient(135deg, #e9ff63 0%, #e0fb58 100%);
}

.cta-card-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(234, 242, 255, 0.34);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.cta-card-secondary {
  color: #23324d;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 40, 0.08);
}

.cta-card-accent {
  color: #ffffff;
  background: #3060ce;
  border-color: transparent;
}

.cta-card-accent .cta-card-kicker,
.cta-card-accent strong {
  color: #ffffff;
}

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

.cta-card-primary:hover::after {
  opacity: 1;
}

.cta-card-accent:hover {
  background: #3a6ddb;
  border-color: transparent;
}

.cta-card-secondary:hover {
  background: #eaf2ff;
  border-color: rgba(23, 105, 240, 0.18);
}

.cta-card-secondary.cta-card-accent:hover {
  background: #3a6ddb;
  border-color: transparent;
}

.section-cta-stack {
  justify-content: center;
}

.section-cta-stack .cta-card {
  flex: 0 0 var(--cta-width);
  width: min(100%, var(--cta-width));
  max-width: none;
}

.visual-placeholder {
  display: grid;
  place-items: center;
  gap: 8px;
  width: 100%;
  padding: 28px;
  border: 2px dashed rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.visual-placeholder-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.visual-placeholder strong {
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.3;
}

.visual-placeholder small {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.visual-placeholder-hero {
  min-height: 430px;
}

.visual-placeholder-wall {
  min-height: 360px;
  border-color: rgba(23, 105, 240, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(228, 238, 255, 0.94));
}

.visual-placeholder-wall .visual-placeholder-label {
  background: rgba(23, 105, 240, 0.1);
  color: var(--color-primary-dark);
}

.visual-placeholder-wall strong {
  color: var(--color-ink);
}

.visual-placeholder-wall small {
  color: var(--color-text);
}

.trust-bar {
  padding: 18px 0;
  border-top: 1px solid rgba(216, 226, 245, 0.6);
  border-bottom: 1px solid rgba(216, 226, 245, 0.6);
  background: rgba(255, 255, 255, 0.88);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-item {
  padding: 16px 18px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  text-align: center;
  font-weight: 700;
}

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

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.85rem);
  line-height: 1.34;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 16px 0 0;
}

.problem-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.problem-spotlight {
  max-width: 980px;
  margin: 0 auto;
}

.problem-heading {
  margin-bottom: 56px;
}

.problem-heading h2 span {
  color: var(--color-primary);
}

.problem-copy-centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.problem-copy-centered p {
  margin: 0;
  font-size: 1.28rem;
  line-height: 2.1;
  color: #22314d;
}

.problem-copy-centered p + p {
  margin-top: 22px;
}

.problem-highlight {
  max-width: 710px;
  margin: 42px auto 0;
  padding: 24px 28px;
  border-radius: 18px;
  background: #dce9ff;
}

.problem-highlight p {
  margin: 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  color: #1a2238;
}

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

.quiet-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: var(--section-cta-spacing);
}

.quiet-cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.quiet-cta-kicker {
  margin: 0;
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.cta-card-quiet {
  min-width: var(--quiet-cta-min-width);
  min-height: var(--quiet-cta-min-height);
  padding: 0 var(--quiet-cta-inline-padding);
  border-radius: 999px;
}

.cta-card-quiet strong {
  font-size: 1rem;
  line-height: 1.2;
}

.cta-card-quiet .cta-card-kicker {
  display: none;
}

.problem-cards,
.features-grid,
.comparison-grid,
.integration-grid {
  display: grid;
  gap: 18px;
}

.problem-cards {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.statement-card,
.process-card,
.feature-card,
.comparison-card,
.integration-card,
.cta-box {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.card-index {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.info-card h3,
.wall-card h3,
.process-card h3,
.feature-card h3,
.value-item h3,
.integration-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.info-card p,
.wall-card p,
.process-card p,
.feature-card p,
.integration-card p,
.comparison-card li,
.faq-item p {
  margin: 0;
}

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

.flow-step {
  position: relative;
  padding: 24px 24px 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-md);
}

.flow-step span,
.process-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-step strong {
  display: block;
  font-size: 1.1rem;
  color: var(--color-ink);
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
}

.flow-caption,
.wall-summary,
.section-note {
  margin: 24px 0 0;
  text-align: center;
}

.wall-summary {
  font-size: 1.25rem;
  line-height: 2;
}

.wall-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  gap: 34px;
  align-items: center;
}

.wall-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.wall-card p {
  color: rgba(255, 255, 255, 0.76);
}

.wall-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.wall-card-head h3 {
  margin: 0;
}

.wall-label {
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.wall-card-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-content: center;
}

.wall-visual {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0;
}

.wall-visual-image {
  display: block;
  width: 100%;
  height: auto;
}

.wall-stage {
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  text-align: center;
}

.wall-stage span {
  display: block;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.wall-stage strong {
  display: block;
  margin-top: 4px;
  font-size: 2.25rem;
  color: var(--color-ink);
}

.wall-stage.muted {
  background: #eef4ff;
}

.wall-stage.faint {
  background: #dae7ff;
}

.wall-divider {
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  background: #3f4756;
  color: #ffffff;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.core-issue-section .wall-card {
  border: 1px solid var(--color-line);
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: var(--shadow-md);
}

.core-issue-section .wall-card h3 {
  font-size: 1.5rem;
}

.core-issue-section .wall-card p {
  color: var(--color-text);
}

.core-issue-section .wall-card .wall-label {
  color: #ffffff;
}

.core-issue-section .wall-summary {
  color: var(--color-ink);
}

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

.statement-card {
  padding: 12px 44px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.statement-card.highlight {
  background: transparent;
  border-left: 1px solid var(--color-line);
}

.statement-label {
  margin: 0 0 28px;
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.statement-main {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.statement-sub {
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 1.15rem;
  line-height: 1.9;
}

.statement-sub strong {
  color: var(--color-ink);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.function-heading {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.function-heading .eyebrow {
  margin-bottom: 18px;
}

.function-heading h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.5rem);
  line-height: 1.5;
}

.accent-text {
  color: var(--color-primary);
}

.process-grid-function {
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.process-grid-function .process-card {
  padding: 36px 28px 32px;
  text-align: center;
  border-radius: 20px;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #e9f1ff;
}

.process-icon-image {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.process-grid-function .process-card span {
  margin-bottom: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
}

.process-grid-function .process-card h3 {
  margin: 0 0 16px;
  font-size: 1.15rem;
}

.process-grid-function .process-card p {
  color: var(--color-muted);
  line-height: 1.8;
}

.process-arrow {
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.function-cta {
  margin-top: var(--section-cta-spacing);
}

.comparison-cta {
  margin-top: var(--section-cta-spacing);
}

.asset-band {
  grid-template-columns: 0.78fr 0.92fr;
  align-items: center;
}

.asset-section {
  padding-top: 136px;
  padding-bottom: 136px;
}

.asset-band h2,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.3vw, 2.7rem);
  line-height: 1.16;
}

.asset-band h2 {
  margin-bottom: 24px;
  white-space: nowrap;
}

.asset-copy {
  width: 100%;
  max-width: 640px;
  justify-self: end;
  padding-left: 96px;
}

.asset-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  line-height: 1.95;
}

.asset-copy p + p {
  margin-top: 22px;
}

.function-note {
  margin: 26px 0 0;
  text-align: center;
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.9;
}

.features-grid,
.comparison-grid,
.integration-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  overflow: hidden;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--color-primary-soft);
}

.value-layout {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
}

.value-heading {
  margin-bottom: -40px;
}

.value-side {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.value-cta {
  display: flex;
  margin-top: auto;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.value-cta .cta-card {
  flex: 0 0 auto;
  width: min(100%, var(--cta-width));
  max-width: none;
}

.value-list {
  display: grid;
  gap: 36px;
}

.value-item {
  padding: 28px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 16px;
  box-shadow: none;
}

.value-item-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.value-icon-image {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.value-item h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.4;
  font-weight: 800;
  color: #111111;
}

.value-item p {
  margin: 0;
}

.comparison-card ul {
  display: grid;
  gap: 16px;
}

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

.comparison-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-line);
}

.comparison-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.comparison-card span {
  color: var(--color-muted);
}

.comparison-card strong {
  color: var(--color-ink);
  font-size: 1.15rem;
}

.comparison-card.before {
  background: #ffffff;
}

.comparison-card.after {
  border-color: rgba(47, 128, 237, 0.22);
  background: linear-gradient(180deg, #2f80ed 0%, #256fda 100%);
  box-shadow: 0 24px 50px rgba(47, 128, 237, 0.28);
}

.comparison-card.after .comparison-label,
.comparison-card.after span,
.comparison-card.after strong,
.comparison-card.after .comparison-summary span,
.comparison-card.after .comparison-summary strong {
  color: #ffffff;
}

.comparison-arrow {
  align-self: center;
  color: #2f80ed;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.comparison-summary {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--color-line);
  text-align: left;
}

.comparison-summary span {
  display: block;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.comparison-summary strong {
  display: block;
  margin-top: 4px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
}

.comparison-card.after .comparison-summary {
  border-top-color: rgba(255, 255, 255, 0.26);
}

.comparison-note {
  margin: 20px 0 0;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.price-section {
  background: #ffffff;
}

.price-lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.18rem;
  line-height: 1.9;
  color: #22314d;
}

.price-card {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
  padding: 28px 32px;
  border: 1px solid var(--color-line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.price-icon {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: #eaf3ff;
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 800;
}

.price-divider {
  width: 1px;
  min-height: 92px;
  background: rgba(23, 105, 240, 0.16);
}

.price-content {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}

.price-content span {
  color: var(--color-ink);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.3;
}

.price-content strong {
  color: var(--color-primary);
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-content strong span {
  margin-left: 8px;
  color: var(--color-ink);
  font-size: 0.54em;
  font-weight: 700;
}

.price-note {
  margin: 20px 0 0;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.price-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--section-cta-spacing);
}

.price-actions .cta-card {
  flex: 0 0 var(--cta-width);
  width: min(100%, var(--cta-width));
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.chips span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.timeline li {
  display: grid;
  gap: 8px;
  padding: 24px 18px;
  border-radius: 22px;
  border: 1px solid var(--color-line);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: var(--shadow-md);
}

.timeline strong {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.timeline span {
  color: var(--color-ink);
  font-weight: 700;
}

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

.faq-item {
  padding: 0 24px;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--color-ink);
  font-weight: 700;
  list-style: none;
  outline: none;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease;
}

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

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

.faq-item summary:focus,
.faq-item summary:active {
  outline: none;
  background: transparent;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.2s ease, opacity 0.2s ease;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 0 22px;
  color: var(--color-text);
}

.cta-section {
  background: #ffffff;
  padding-top: 84px;
  padding-bottom: 108px;
}

.cta-panel {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  padding: 56px 42px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 35%),
    linear-gradient(135deg, #0e58cc 0%, #1769f0 48%, #3b86fb 100%);
  box-shadow: 0 28px 60px rgba(23, 105, 240, 0.3);
}

.cta-copy,
.cta-copy p,
.cta-copy .eyebrow,
.cta-copy h2,
.cta-box small {
  color: #ffffff;
}

.cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(7, 18, 37, 0.24);
  backdrop-filter: blur(18px);
}

.cta-box h3,
.cta-box p {
  color: #ffffff;
}

.cta-box .button {
  width: 100%;
  margin-top: 18px;
  background: #ffffff;
  color: var(--color-primary-dark);
  box-shadow: none;
}

.cta-box .cta-card {
  width: min(100%, var(--cta-width));
  margin-top: 18px;
}

.cta-box .button-outline-light {
  background: transparent;
  color: #ffffff;
}

.button-outline-light {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.site-footer {
  padding: 56px 0 0;
  background: #f8fafc;
  border-top: 1px solid rgba(216, 226, 245, 0.9);
}

.footer-block {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 32px 96px;
  align-items: start;
}

.footer-brand {
  display: grid;
  justify-items: start;
}

.footer-logo {
  display: block;
  width: auto;
  height: 56px;
  object-fit: contain;
}

.footer-company,
.footer-address,
.footer-copy,
.footer-links a {
  margin: 0;
  color: var(--color-muted);
}

.footer-company {
  margin-top: 28px;
  color: var(--color-ink);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.4;
}

.footer-address {
  margin-top: 10px;
  font-size: 0.96rem;
  line-height: 1.9;
  color: var(--color-ink);
}

.footer-links {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding-top: 84px;
}

.footer-links a {
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 52px;
  margin: 18px calc(50% - 50vw) 0;
  padding: 0 calc((100vw - min(calc(100vw - 40px), var(--container))) / 2);
  background: #e5e7eb;
}

.footer-copy {
  font-size: 12px;
  color: #6b7280;
}

.footer-backtop {
  color: var(--color-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-backtop:hover {
  color: var(--color-primary);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 12px 20px;
}

.sticky-cta.is-hidden {
  display: none;
}

.sticky-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(23, 105, 240, 0.7);
  box-shadow: rgba(0, 0, 0, 0.4) 0 12px 27px 2px;
  border-radius: 0;
}

.sticky-cta-copy {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sticky-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 9px 20px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
}

.sticky-cta-link span {
  font-size: 0.92rem;
  font-weight: 700;
}

.sticky-cta-primary {
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, 0.96);
}

.sticky-cta-secondary {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.sticky-cta-close {
  position: absolute;
  top: 8px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sticky-cta-close:hover {
  opacity: 0.72;
  transform: scale(1.05);
}

@media (max-width: 1100px) {
  .hero-grid,
  .problem-layout,
  .wall-grid,
  .asset-band,
  .cta-panel,
  .value-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .problem-cards,
  .process-grid,
  .features-grid,
  .integration-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .comparison-arrow {
    display: none;
  }

  .price-card {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding: 28px 24px;
    text-align: center;
  }

  .price-divider {
    width: 100%;
    min-height: 1px;
    height: 1px;
  }

  .price-content {
    justify-content: center;
    gap: 10px 14px;
  }

  .narrative-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-grid-function {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-arrow {
    display: none;
  }

  .footer-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .value-side {
    min-height: auto;
    display: contents;
  }

  .value-cta {
    order: 3;
    margin: 50px 0;
    width: 100%;
    justify-self: stretch;
  }

  .value-heading {
    order: 1;
    margin-bottom: 0;
  }

  .value-list {
    order: 2;
  }

  .value-list .value-item:last-child {
    width: 100%;
    justify-self: stretch;
  }

  .footer-links {
    padding-top: 0;
  }

  .footer-bottom {
    min-height: 42px;
    margin-top: 20px;
    padding: 0 20px;
    justify-content: center;
  }

  .footer-copy {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 760px) {
  :root {
    --mobile-cta-width: min(100%, calc(100vw - 110px));
    --mobile-cta-height: 90px;
    --mobile-cta-image-width: 56px;
    --mobile-cta-image-left: -12px;
    --mobile-cta-text-left-pad: 18px;
    --mobile-cta-extra-image-shift: 38px;
  }

  .section {
    padding: 72px 0;
  }

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

  .footer-inner {
    min-height: 68px;
  }

  .site-header .brand-logo {
    height: 42px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-container {
    width: min(calc(100% - 20px), 1320px);
  }

  .hero-grid {
    display: block;
  }

  .hero-mobile {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero-copy,
  .hero-grid > .hero-visual {
    display: none;
  }

  .hero-mobile h1 {
    margin: 0;
    color: #ffffff;
    text-align: center;
    font-size: clamp(1.62rem, 7.38vw, 2.295rem);
    line-height: 1.28;
    letter-spacing: -0.03em;
  }

  .hero-cta-mobile {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 0;
  }

  .hero-cta-mobile .cta-card-secondary {
    display: none;
  }

  .hero-cta-mobile .cta-card {
    width: var(--mobile-cta-width);
    max-width: var(--mobile-cta-width);
    min-width: 0;
    margin: 0 auto;
    border-radius: 999px;
  }

  .hero-lead-wrap-mobile {
    margin-top: 0;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-mobile .hero-lead {
    max-width: none;
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.85;
  }

  .hero-visual-mobile {
    min-height: auto;
    padding: 38px 18px;
  }

  .hero-question-mobile {
    margin-top: 76px;
    padding-left: 0;
    border-left: 0;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7;
  }

  .hero .hero-question-mobile {
    color: #ffffff;
    opacity: 1;
    text-shadow: none;
  }

  .system-core {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .problem-cards,
  .flow-steps,
  .process-grid,
  .features-grid,
  .comparison-grid,
  .integration-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .flow-step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -8px;
    width: 2px;
    height: 16px;
    transform: translateX(50%);
  }

  .wall-card,
  .wall-visual,
  .info-card,
  .statement-card,
  .process-card,
  .feature-card,
  .comparison-card,
  .integration-card,
  .cta-box {
    padding: 24px;
  }

  .cta-panel {
    padding: 28px;
  }

  .cta-section {
    padding-top: 68px;
    padding-bottom: 96px;
  }

  .statement-card {
    padding: 0;
  }

  .statement-card.highlight {
    border-left: 0;
    border-top: 1px solid var(--color-line);
    padding-top: 28px;
  }

  .statement-main {
    font-size: 1.9rem;
    line-height: 1.4;
  }

  .statement-sub {
    font-size: 1rem;
    line-height: 1.8;
  }

  .hero-mobile h1 {
    max-width: none;
  }

  .problem-copy-centered p,
  .problem-highlight p {
    font-size: 1rem;
    line-height: 1.9;
  }

  .problem-highlight {
    margin-top: 28px;
    padding: 18px 20px;
  }

  .price-card {
    grid-template-columns: auto auto 1fr;
    align-items: center;
    justify-items: stretch;
    padding: 24px 20px;
    gap: 14px;
    text-align: left;
  }

  .price-icon {
    width: 78px;
    height: 78px;
    font-size: 2rem;
  }

  .price-divider {
    width: 1px;
    min-height: 78px;
    height: auto;
  }

  .price-content {
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .price-content span {
    font-size: 1.125rem;
  }

  .price-content strong {
    font-size: 2.52rem;
  }

  .cta-copy h2 {
    font-size: clamp(1.62rem, 2.97vw, 2.43rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .section-cta-stack .cta-card,
  .price-actions .cta-card {
    max-width: none;
    width: 100%;
    flex-basis: auto;
  }

  .quiet-cta-row {
    flex-direction: column;
    align-items: stretch;
    margin-top: var(--section-cta-spacing-mobile);
  }

  .quiet-cta-item {
    align-items: stretch;
  }

  .quiet-cta-item:nth-child(2) {
    display: none;
  }

  .quiet-cta-kicker {
    display: none;
  }

  .quiet-cta-row .cta-card {
    width: var(--mobile-cta-width);
    max-width: var(--mobile-cta-width);
    min-width: 0;
    margin: 0 auto;
    border-radius: 999px;
  }

  .quiet-cta-row .cta-card .cta-card-kicker {
    display: block;
  }

  .function-cta,
  .comparison-cta,
  .price-actions {
    margin-top: var(--section-cta-spacing-mobile);
  }

  .function-cta .cta-card,
  .value-cta .cta-card,
  .comparison-cta .cta-card,
  .price-actions .cta-card,
  .cta-box .cta-card {
    width: var(--mobile-cta-width);
    max-width: var(--mobile-cta-width);
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 999px;
  }

  .value-list .value-item:last-child,
  .value-cta {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .value-item h3 {
    font-size: 1.55rem;
  }

  .function-cta .cta-card-secondary,
  .value-cta .cta-card-secondary,
  .comparison-cta .cta-card-secondary,
  .cta-box .cta-card-secondary,
  .sticky-cta,
  .price-actions .cta-card-secondary {
    display: none;
  }

  .cta-card {
    width: 100%;
    min-height: var(--mobile-cta-height);
    padding: 16px 18px;
    border-radius: 24px;
  }

  .cta-card-download {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cta-card-image {
    left: var(--cta-material-image-offset-mobile);
    width: var(--cta-material-image-width-mobile);
  }

  .cta-card-mobile-match {
    width: var(--mobile-cta-width) !important;
    max-width: var(--mobile-cta-width) !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 999px !important;
  }

  .cta-card-mobile-match.cta-card-download {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .cta-card-mobile-match .cta-card-text {
    padding-left: 0 !important;
  }

  .cta-card-mobile-match.cta-card-download .cta-card-kicker,
  .cta-card-mobile-match.cta-card-download strong {
    white-space: nowrap;
  }

  .cta-card-mobile-match .cta-card-image {
    left: var(--cta-material-image-offset-mobile) !important;
    width: var(--cta-material-image-width-mobile) !important;
  }

  .cta-box .cta-card-mobile-wide {
    width: calc(100% - 8px) !important;
    max-width: calc(100% - 8px) !important;
    min-height: 70px !important;
    margin-top: 30px !important;
    padding-top: 18px !important;
    padding-bottom: 10px !important;
  }

  .cta-box .cta-card-mobile-wide .cta-card-kicker {
    display: none !important;
  }

  .cta-box .cta-card-mobile-wide .cta-card-text {
    gap: 0 !important;
  }

  .cta-box .cta-card-mobile-wide strong {
    white-space: nowrap;
    font-size: 1.18rem !important;
  }

  .cta-box .cta-card-mobile-wide .cta-card-image {
    left: 50% !important;
    top: 0 !important;
    transform: translate(-50%, -68%) !important;
    width: 74px !important;
  }

  .cta-card-kicker {
    font-size: 0.72rem;
  }

  .cta-card strong {
    font-size: 1.3rem;
  }

  .button-download {
    padding-left: 22px;
    padding-right: 22px;
  }

  .button-download-image {
    left: -12px;
    width: 54px;
  }

  .function-heading h2 br {
    display: none;
  }

  .function-heading .accent-text {
    display: block;
    margin-top: 0.35em;
  }

  .faq-item {
    padding: 0 20px;
  }

  .faq-item summary {
    display: grid;
    grid-template-columns: minmax(0, 4fr) auto;
    align-items: center;
    gap: 18px;
    padding: 24px 0;
    line-height: 1.55;
  }

  .faq-item summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--color-primary);
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1;
  }

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

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

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

  .sticky-cta {
    display: none;
  }

  .sticky-cta-copy {
    font-size: 0.9rem;
  }

  .sticky-cta-actions {
    width: 100%;
    justify-content: center;
  }

  .sticky-cta-link {
    min-width: 0;
    flex: 1 1 0;
    padding: 12px 14px;
  }

  .sticky-cta-link span {
    font-size: 0.88rem;
  }
}
