/* ============================================
   言葉のチカラ LP — Design tokens & global styles
   ============================================ */

:root {
  /* Brand color system (per design brief P.05) */
  --c-primary: #cf3a2a;
  --c-primary-deep: #a92419;
  --c-navy: #1a1a2e;
  --c-navy-2: #232340;
  --c-blue: #2980b9;
  --c-gold: #f39c12;
  --c-white: #ffffff;
  --c-light: #f4f4f4;
  --c-light-2: #ecece8;
  --c-paper: #f6f3eb;
  --c-paper-2: #efeadd;
  --c-text: #2a2a2a;
  --c-muted: #6a6a6a;
  --c-faint: #999;

  /* Type */
  --f-serif: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  --f-sans: "Noto Sans JP", "Yu Gothic", "游ゴシック", "YuGothic", sans-serif;
  --f-en: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container: 1280px;
  --text-max: 760px;
  --pad-x: 56px;
  --pad-x-sp: 20px;
  --sec-y: 120px;

  /* Header */
  --header-h: 88px;
}

@media (max-width: 900px) {
  :root {
    --pad-x: var(--pad-x-sp);
    --sec-y: 64px;
    --header-h: 60px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--f-sans);
  font-feature-settings: "palt";
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-paper);
  line-height: 1.8;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font-family: inherit;
}

/* ============ Containers & layout ============ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding-top: var(--sec-y);
  padding-bottom: var(--sec-y);
  position: relative;
  z-index: 1; /* renders above sticky .fv (z-index: 0) */
}
.section--paper {
  padding-top: calc(var(--sec-y) + 36px);
}

.section--light {
  background: var(--c-paper);
}
.section--white {
  background: var(--c-white);
}
.section--paper {
  background: var(--c-paper);
  position: relative;
}
.section--paper::before,
.section--paper::after {
  display: none;
}

.mobile {
  display: none;
}

.desktop {
  display: block;
}

/* First section after MV: transparent until FV fully fades, then bg reveals */
#problem {
  background: transparent;
}
#problem.bg-loaded {
  background: var(--c-paper);
}
.section--navy {
  background: var(--c-navy);
  color: var(--c-white);
}
.section--red {
  background: var(--c-primary);
  color: var(--c-white);
}

/* Vertical "SECTION 00X" label */
.section-label {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--c-primary);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  z-index: 3;
}
.section-label::after {
  content: "";
  width: 1.5px;
  height: 28px;
  background: var(--c-primary);
}

/* Impact heading: big serif with mix of solid + outlined particles */
.h-impact {
  font-family: var(--f-serif);
  font-weight: 900;
  font-size: clamp(34px, 5.4vw, 76px);
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: var(--c-primary);
  margin: 0 0 28px;
}
.h-impact .ch-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-primary);
  paint-order: stroke fill;
}
/* Each line in an impact heading wraps in this span — guarantees no mid-line wrap */
.h-impact .line {
  display: block;
}
#service .h-impact .line {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
#process .h-impact .line {
  white-space: nowrap;
}
.section--red .h-impact,
.section--navy .h-impact {
  color: #fff;
}
.section--red .h-impact .ch-outline,
.section--navy .h-impact .ch-outline {
  -webkit-text-stroke-color: #fff;
}

/* ============ Type helpers ============ */

.eyebrow {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin: 0 0 14px;
  display: inline-block;
}

.section--white .eyebrow,
.section--light .eyebrow {
  color: var(--c-primary);
}

.h-section {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  color: var(--c-navy);
}

.section--navy .h-section,
.section--red .h-section {
  color: var(--c-white);
}

.h-section-sub {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--c-muted);
  margin: 0 0 56px;
  line-height: 1.75;
}

.section--navy .h-section-sub {
  color: rgba(255, 255, 255, 0.72);
}
.section--red .h-section-sub {
  color: rgba(255, 255, 255, 0.86);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head .h-section-sub {
  margin-bottom: 0;
}

/* Title underline accent */
.h-section.has-bar {
  padding-bottom: 18px;
  position: relative;
}
.h-section.has-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--c-primary);
}

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 16px 32px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  min-height: 48px;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-primary);
  color: #fff !important;
}
.btn--primary:hover {
  background: var(--c-primary-deep);
  transform: translateY(-1px);
}

.btn--ghost-light {
  background: transparent;
  color: var(--c-navy);
  border-color: rgba(26, 26, 46, 0.35);
}
.btn--ghost-light:hover {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}

/* on dark backgrounds, ghost-light should still work as a light-on-dark button */
.section--navy .btn--ghost-light,
.cta-strip .btn--ghost-light,
.final-cta .btn--ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.section--navy .btn--ghost-light:hover,
.cta-strip .btn--ghost-light:hover,
.final-cta .btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

.btn--ghost {
  background: #fff;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--ghost:hover {
  background: var(--c-primary);
  color: #fff;
}

.btn--on-red {
  background: #fff;
  color: var(--c-primary);
}
.btn--on-red:hover {
  background: var(--c-navy);
  color: #fff;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 17px;
  min-height: 56px;
}
.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
  min-height: 40px;
}

.btn .arr {
  transition: transform 0.22s ease;
}
.btn:hover .arr {
  transform: translateX(3px);
}

/* ============ Header (master-brand style) ============ */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  pointer-events: none;
}
.header-inner {
  pointer-events: auto;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 22px 32px 0;
  max-width: 1480px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px 0;
    gap: 0;
  }
}

/* Logo box: rounded card with bracketed kanji + SMEs mark */
.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 12px 18px 12px 16px;
  border-radius: 14px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
  color: var(--c-navy);
  position: relative;
  z-index: 2;
}
.brandmark__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.brandmark__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  position: relative;
  padding: 0 4px;
}
.brandmark__text::before,
.brandmark__text::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  width: 6px;
  border-style: solid;
  border-color: var(--c-navy);
  border-width: 0;
}
.brandmark__text::before {
  left: -4px;
  border-left-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.brandmark__text::after {
  right: -4px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.brandmark__text small {
  font-family: var(--f-en);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  color: var(--c-primary);
  font-weight: 700;
}
.brandmark__text strong {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-top: 3px;
  white-space: nowrap;
  color: var(--c-navy);
  display: block;
  line-height: 1.3;
}
.brandmark__text strong i {
  font-style: normal;
  color: var(--c-primary);
}
/* When the header is on a red BG (FV), invert the mark colors slightly */
.fv .brandmark {
  background: #fff;
}

/* Dark variant for footer */
.brandmark--on-dark {
  background: transparent;
  box-shadow: none;
  padding-left: 0;
}
.brandmark--on-dark .brandmark__text strong {
  color: #fff;
}
.brandmark--on-dark .brandmark__text strong i {
  color: var(--c-gold);
}
.brandmark--on-dark .brandmark__text::before,
.brandmark--on-dark .brandmark__text::after {
  border-color: rgba(255, 255, 255, 0.5);
}
.brandmark--on-dark .brandmark__logo {
  background: #fff;
  padding: 4px;
  border-radius: 8px;
}

/* Centered nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding-top: 18px;
}
.nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__list a {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: color 0.18s ease;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.nav__list a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* When NOT over a red background, nav goes navy */
.header.is-on-paper .nav__list a {
  color: var(--c-navy);
  text-shadow: none;
}
.header.is-on-paper .nav__list a:hover {
  color: var(--c-primary);
}

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

/* Top-right red CTA pillbox */
.header-cta {
  background: var(--c-primary);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding: 6px 18px 14px;
  margin-top: -22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 340px;
  gap: 6px;
}
.header-cta__label {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.16em;
  padding-top: 26px;
}
.header-cta__btns {
  display: flex;
  gap: 6px;
}
.header-cta__btn {
  background: #fff;
  color: var(--c-primary);
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.header-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
@media (max-width: 1200px) {
  .header-cta {
    display: none;
  }
}

/* Hamburger */
.hamburger {
  display: none;
  background: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
}
.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--c-navy);
  position: relative;
  transition: background 0.22s ease;
}
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--c-navy);
  transition:
    transform 0.25s ease,
    top 0.25s ease;
}
.hamburger span::before {
  top: -6px;
}
.hamburger span::after {
  top: 6px;
}

/* X state when nav is open */
.hamburger[aria-expanded="true"] span {
  background: transparent;
}
.hamburger[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 1200px) {
  .hamburger {
    display: flex;
  }

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

.mobile-nav {
  position: fixed;
  top: 84px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 20px 20px;
  transform: translateY(-110%) scale(0.98);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  z-index: 999;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.mobile-nav.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
}
.mobile-nav a {
  display: block;
  padding: 12px 4px;
  color: var(--c-navy);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.mobile-nav .btn {
  width: 100%;
  margin-top: 8px;
}

/* ============ FV (full-red, master-brand impact) ============ */

.fv {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100vh;
  background: var(--c-primary);
  color: #fff;
  overflow: hidden;
  padding: 0;
}
.fv__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 90% -10%,
      rgba(255, 255, 255, 0.06),
      transparent 50%
    ),
    radial-gradient(ellipse at -10% 110%, rgba(0, 0, 0, 0.1), transparent 50%);
  z-index: 0;
  pointer-events: none;
}
/* Subtle paper texture overlay */
.fv__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.018) 0 1px,
      transparent 1px 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.02) 0 1px,
      transparent 1px 4px
    );
  mix-blend-mode: overlay;
  opacity: 0.6;
}

/* Horizontal divider lines crossing FV (master-brand signature) */
.fv__lines {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.fv__lines i {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.fv__lines i:nth-child(1) {
  top: 24%;
}
.fv__lines i:nth-child(2) {
  top: 48%;
}
.fv__lines i:nth-child(3) {
  top: 72%;
}
.fv__lines i:nth-child(4) {
  top: 88%;
}

/* Main FV content */
.fv__content {
  position: relative;
  z-index: 3;
  height: 100vh;
  gap: 30px;
  display: grid;
  will-change: opacity, transform;
  grid-template-rows: 1fr auto;
  padding: calc(var(--header-h) + 40px) 56px 100px;
  max-width: 1480px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .fv__content {
    padding: 100px 50px;
  }
}

/* Hero typographic stack */
.fv__hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

/* Massive kanji tagline with mix of solid + outlined particles */
.fv__type {
  font-family: var(--f-serif);
  font-weight: 700;
  /* font-size: clamp(26px, 3.6vw, 54px); */
  font-size: clamp(26px, 3.6vw, 36px);
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin: 15px 0;
  color: #fff;
  order: 2;
}
.fv__type-line {
  display: block;
  white-space: nowrap;
}
.fv__type .ch-solid {
  color: #fff;
  -webkit-text-stroke: 0;
}
.fv__type .ch-outline {
  color: var(--c-primary);
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
}
@media (max-width: 600px) {
  .fv__type .ch-outline {
    -webkit-text-stroke-width: 1.4px;
  }
}

/* 言葉のチカラ logo block — dominant hero element */
.fv__logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  order: 1;
}
.fv__logo {
  display: block;
  width: clamp(360px, 50vw, 820px);
  height: auto;
  /* black ink → white on red */
  filter: brightness(0) invert(1);
  margin-left: -2vw;
}
.fv__logo-tag {
  border-left: 2px solid rgba(255, 255, 255, 0.6);
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  max-width: 360px;
  margin-left: 8px;
}
.fv__logo-tag strong {
  display: block;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}
@media (max-width: 600px) {
  .fv__logo {
    width: 86vw;
    margin-left: 0;
    height: 17vh;
    object-fit: cover;
  }
}

/* Hero ordering: logo first (huge) → tagline second */
.fv__hero {
  display: flex;
  flex-direction: column;
}

/* Bottom row: scroll dial + brand badge */
.fv__bottom {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.fv__bottom-left {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 30px;
}

.fv__bottom-left .fv__type {
  margin: 0;
}

.fv__bottom-visual {
  flex-shrink: 0;

  position: absolute;
  right: -2vw;
  bottom: calc(132px + 30px);
}

@media (max-width: 640px) {
  .fv__content {
    height: 80vh;
    padding: 100px 20px;
    gap: 10px;
  }

  .fv__hero {
    height: fit-content;
  }

  .fv__type-line {
    white-space: wrap;
  }

  .fv__top.mobile {
    margin-top: 1.5vh;
  }
  .fv__type {
    margin: 0 0 1.5vh;
  }
}

.fv__bottom-img {
  width: clamp(220px, 45vw, 720px);
  height: auto;
  display: block;
}

/* Rotating SCROLL dial */
.fv__scroll {
  position: relative;
  width: 132px;
  height: 132px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.fv__scroll svg {
  width: 100%;
  height: 100%;
  animation: spin 22s linear infinite;
}
.fv__scroll text {
  font-family: var(--f-en);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  fill: var(--c-primary);
}
.fv__scroll::after {
  content: "↓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--c-primary);
  font-size: 20px;
  font-weight: 700;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 600px) {
  .fv__scroll {
    width: 100px;
    height: 100px;
  }
}

/* Badge bottom-right — inset from right edge */
.fv__badge {
  border: 1.5px solid #fff;
  padding: 10px 18px;
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #fff;
  line-height: 1.4;
  text-align: right;
  margin-bottom: 30px;
  margin-right: 64px;
}
@media (max-width: 720px) {
  .fv__badge {
    margin-right: 8px;
  }
}
.fv__badge small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

/* Announcer main visual — pulled out of flow so it can sit level with fv__type */
.fv__mv {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: clamp(280px, 30vw, 480px);
  height: auto;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 900px) {
  .fv__bottom {
    align-items: flex-end;
    gap: 32px;
  }
}

/* Sticky social icons on right edge */
.fv__social {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 4;
}
.fv__social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.fv__social a:hover {
  transform: scale(1.08);
}
@media (max-width: 720px) {
  .fv__social {
    display: none;
  }
}

/* Remove old FV stats bar */
.fv-stats {
  display: none !important;
}
.fv__visual,
.fv__visual-img,
.fv__visual-fallback,
.fv__visual-fallback-inner,
.fv__visual-fallback-tag,
.fv__visual-fallback-hint,
.fv__left,
.fv__eyebrow,
.fv__title,
.fv__lead,
.fv__sub,
.fv__ctas,
.fv__hint {
  display: none !important;
}

/* FV stats bar */
.fv-stats {
  background: var(--c-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}
.fv-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 22px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.fv-stats__cell {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.fv-stats__cell:last-child {
  border-right: none;
}
.fv-stats__num {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--c-gold);
  letter-spacing: 0.01em;
  line-height: 1;
}
.fv-stats__num small {
  font-size: 0.55em;
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.fv-stats__lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 720px) {
  .fv-stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 0;
    padding: 16px var(--pad-x);
  }
  .fv-stats__cell:nth-child(2n) {
    border-right: none;
  }
  .fv-stats__cell {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    padding: 6px 12px;
  }
}

/* ============ Problem section ============ */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.problem-card {
  background: #fff;
  padding: 36px 32px 32px;
  border-top: 3px solid var(--c-primary);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.problem-card__num {
  position: absolute;
  top: -3px;
  left: 0;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 5px 12px;
}
.problem-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--c-navy);
}
.problem-card h3 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 21px;
  color: var(--c-navy);
  margin: 0 0 12px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
.problem-card p {
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.85;
  margin: 0 0 22px;
  flex: 1;
}
.problem-card__metrics {
  display: flex;
  gap: 14px;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
  padding-top: 16px;
}
.problem-card__metric {
  flex: 1;
}
.problem-card__metric-num {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 26px;
  color: var(--c-primary);
  line-height: 1;
}
.problem-card__metric-lbl {
  display: block;
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: 0.05em;
  margin-top: 6px;
}

.problem-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}
.problem-bridge__arrow {
  width: 1.5px;
  height: 40px;
  background: var(--c-primary);
  position: relative;
}
.problem-bridge__arrow::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid var(--c-primary);
}
.problem-bridge__answer {
  margin-top: 16px;
  background: var(--c-navy);
  color: #fff;
  padding: 18px 36px;
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: center;
}
.problem-bridge__answer em {
  font-style: normal;
  color: var(--c-gold);
}

/* ============ Service section ============ */

.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 1600px) {
  .fv__bottom {
    padding-top: 30px;
  }
}
@media (max-width: 1340px) {
  .fv__bottom-img {
    width: clamp(220px, 40vw, 720px);
  }
}
@media (max-width: 1240px) {
  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }

  .fv__bottom-visual {
    position: relative;
    right: 0;
    bottom: 0;
  }
  .fv__bottom-img {
    width: clamp(220px, 45vw, 720px);
  }
  .fv__bottom {
    align-items: flex-end;
    padding-top: 0;
  }
}
@media (max-width: 1200px) {
  .service {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service__body {
    order: 1;
  }
  .service__visual {
    order: 2;
  }
}

.service__visual {
  position: relative;
  aspect-ratio: 16 / 11;
  background:
    linear-gradient(
      135deg,
      rgba(26, 26, 46, 0.85) 0%,
      rgba(26, 26, 46, 0.55) 100%
    ),
    repeating-linear-gradient(45deg, #2b2b48 0 6px, #1f1f37 6px 12px);
  overflow: hidden;
}
.service__visual::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--c-primary);
}
.service__visual-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-primary);
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.service__visual-play::after {
  content: "";
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.service__visual-label {
  position: absolute;
  bottom: 22px;
  left: 26px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}
.service__visual-tag {
  position: absolute;
  top: 22px;
  left: 26px;
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  font-weight: 700;
}
.service__visual-meta {
  position: absolute;
  bottom: 22px;
  right: 26px;
  font-family: var(--f-en);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.service__body {
  border-left: 3px solid var(--c-primary);
  padding-left: 30px;
}
.service__body .h-section {
  margin-bottom: 14px;
}
.service__body p.lead {
  font-size: 16px;
  line-height: 1.95;
  color: var(--c-text);
  margin: 0 0 32px;
}
.service__features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  .service__features {
    grid-template-columns: 1fr;
  }
  .service__body {
    padding-left: 0;
    border-left: none;
  }
}

.service__feat {
  padding: 14px 16px;
  background: var(--c-light);
}
.service__feat-icon {
  color: var(--c-primary);
  margin-bottom: 8px;
}
.service__feat h4 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 4px;
  color: var(--c-navy);
}
.service__feat p {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============ Announcer section (new) ============ */

.ann-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
}

.ann-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.ann-card:hover {
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.08);
  transform: translateY(-2px);
}

.ann-card__top {
  display: grid;
  grid-template-columns: 240px 1fr;
}

@media (max-width: 720px) {
  .ann-card__top {
    grid-template-columns: 1fr;
  }
}

.ann-card__photo {
  position: relative;
  background: none;
  min-height: 340px;
}
.ann-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ann-card__body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ann-card__name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  flex-wrap: wrap;
  min-width: 0;
}
.ann-card__name h3 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.1em;
  color: var(--c-navy);
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}
.ann-card__socials {
  display: flex;
  gap: 6px;
}
.ann-card__social {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: var(--c-navy);
  opacity: 0.7;
  border-radius: 50%;
  transition: opacity 0.18s ease;
}
.ann-card__social:hover {
  opacity: 1;
}

/* 経歴 dropdown */
.ann-card__career {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.ann-card__career-btn {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  cursor: pointer;
  font-size: 11.5px;
  font-family: var(--f-sans);
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.08em;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}
.ann-card__career-btn:hover {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}
.ann-card__career-arrow {
  font-size: 9px;
  display: inline-block;
  transition: transform 0.22s ease;
}
.ann-card__career.is-open .ann-card__career-arrow {
  transform: rotate(180deg);
}
.ann-card__career-body {
  width: 100%;
  font-size: 12px;
  color: var(--c-text);
  line-height: 1.75;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px 28px;
}

.ann-card__kana {
  display: block;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--c-gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.ann-card__meta {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 12px;
  line-height: 1.65;
  color: var(--c-text);
}
.ann-card__meta > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}
.ann-card__meta > div:last-child {
  border-bottom: none;
}
.ann-card__meta dt {
  font-weight: 500;
  color: var(--c-muted);
  letter-spacing: 0.06em;
  margin: 0;
}
.ann-card__meta dd {
  margin: 0;
  color: var(--c-text);
  word-break: break-word;
}

@media (max-width: 720px) {
  .ann-card {
    grid-template-columns: 1fr;
  }
  .ann-card__photo {
    min-height: 260px;
  }
  .ann-card__body {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .hamburger {
    background: none;
    box-shadow: none;
  }
  .ann-card__name h3 {
    font-size: 22px;
  }
  .ann-card__meta {
    font-size: 11px;
  }
  .ann-card__meta > div {
    grid-template-columns: 50px 1fr;
    gap: 8px;
  }
  #proof .h-impact .line {
    display: unset;
    flex-direction: unset;
  }
  #process .h-impact .line {
    white-space: unset;
  }
  .ann-career__row {
    grid-template-columns: 1fr;
  }
  .header-inner {
    padding: 10px;
    gap: 10px;
  }
  .brandmark {
    padding: 10px 20px;
  }
}

/* ---- 経歴 expandable content ---- */
.ann-career {
  width: 100%;
}

.ann-career__section {
  margin-bottom: 20px;
}
.ann-career__section:last-child {
  margin-bottom: 0;
}

.ann-career__heading {
  font-family: var(--f-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(207, 58, 42, 0.25);
  letter-spacing: 0.04em;
}

.ann-career__list {
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--c-text);
}

.ann-career__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  align-items: start;
}
.ann-career__row:last-child {
  border-bottom: none;
}

.ann-career__row--no-label {
  grid-template-columns: 1fr;
}

.ann-career__list dt {
  font-weight: 500;
  color: var(--c-muted);
  margin: 0;
  letter-spacing: 0.03em;
  padding-top: 1px;
}

.ann-career__list dd {
  margin: 0;
}

.ann-career__list dd p {
  margin: 0 0 3px;
}
.ann-career__list dd p:last-child {
  margin-bottom: 0;
}

/* Strengths row below announcer cards */
.ann-strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 720px) {
  .ann-strengths {
    grid-template-columns: 1fr;
  }
  .fv__bottom {
    padding-top: 0;
  }
}
.ann-str {
  border: 1.5px solid var(--c-navy);
  padding: 24px 28px;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  background: #fff;
}
.ann-str__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--c-navy);
}
.ann-str h4 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 4px;
  color: var(--c-navy);
  letter-spacing: 0.04em;
  grid-column: 2;
}
.ann-str p {
  font-size: 12.5px;
  color: var(--c-muted);
  line-height: 1.65;
  margin: 0;
  grid-column: 2;
}
.ann-str__icon {
  grid-row: 1 / span 2;
}

@media (max-width: 768px) {
  .ann-str {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
  }
  .ann-str__icon {
    grid-row: unset;
  }
  .ann-str h4 {
    grid-column: unset;
    margin: 0;
  }
  .ann-str p {
    grid-column: unset;
  }
}

/* Hide old announcer styles (kept for backward compat) */
.announcer-head,
.announcer-grid,
.announcer-portraits,
.announcer-portrait,
.announcer-strength,
.cf-badge {
  display: none;
}

.announcer-head {
  text-align: center;
  margin-bottom: 56px;
}
.announcer-head .eyebrow {
  color: var(--c-primary);
}
.announcer-head .h-section {
  color: #fff;
}
.announcer-head .h-section-sub {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.announcer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .announcer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.announcer-portraits {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.announcer-portrait {
  position: relative;
  aspect-ratio: 3/4;
  background:
    linear-gradient(
      180deg,
      rgba(243, 156, 18, 0.06) 0%,
      rgba(26, 26, 46, 0.8) 100%
    ),
    repeating-linear-gradient(135deg, #2a2a48 0 4px, #232340 4px 8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.announcer-portrait:nth-child(2n) {
  transform: translateY(20px);
}
.announcer-portrait__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--c-gold);
  color: var(--c-navy);
  font-family: var(--f-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 4px 8px;
  text-transform: uppercase;
}
.announcer-portrait__name {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
}
.announcer-portrait__name strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 700;
}

.announcer-strengths {
  display: grid;
  gap: 18px;
}
.announcer-strength {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
}
.announcer-strength:last-child {
  border-bottom: none;
}
.announcer-strength__icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(243, 156, 18, 0.5);
  display: grid;
  place-items: center;
  color: var(--c-gold);
}
.announcer-strength__body h4 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 4px;
  color: #fff;
  letter-spacing: 0.04em;
}
.announcer-strength__body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.7;
}
.announcer-strength__num {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--c-gold);
}
@media (max-width: 600px) {
  .announcer-strength {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }
  .announcer-strength__num {
    grid-column: 2;
  }
  .announcer-strength__icon {
    width: 44px;
    height: 44px;
  }
  .deliverables,
  .boosts {
    grid-template-columns: 1fr;
  }
  .ann-card__photo {
    max-height: 250px;
  }
  .ann-card__photo img {
    object-fit: contain;
  }
}

.cf-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(243, 156, 18, 0.12);
  border: 1px solid rgba(243, 156, 18, 0.45);
  padding: 8px 14px;
  color: var(--c-gold);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 22px;
}
.cf-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
}

/* ============ Process / Steps ============ */

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.step {
  background: #fff;
  padding: 30px 13px;
  position: relative;
  border-top: 3px solid var(--c-navy);
}
.step__num {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--c-primary) !important;
  margin-bottom: 12px;
  display: block;
}
.step__big {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--c-light-2);
  position: absolute;
  top: 15px;
  right: 15px;
}
.step h4 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--c-navy);
}
.step p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--c-text);
  margin: 0;
}
.step__arr {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 28px;
  height: 28px;
  background: var(--c-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
}
.step:last-child .step__arr {
  display: none;
}
@media (max-width: 900px) {
  :root {
    --pad-x: 30px;
  }

  .step {
    border-top: none;
    border-left: 3px solid var(--c-navy);
    margin-bottom: 14px;
  }
  .step__arr {
    position: static;
    transform: rotate(90deg);
    margin: 8px auto;
  }
  .step__big {
    right: 15px !important;
  }
}
@media (max-width: 1000px) {
  .step__big {
    right: 5px;
  }
}

.steps-meta {
  margin-top: 28px;
  font-size: 13px;
  color: var(--c-muted);
  text-align: center;
  letter-spacing: 0.05em;
}
.steps-meta strong {
  color: var(--c-primary);
  font-weight: 700;
}

/* ============ Merits / 5 benefits ============ */

.merits {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.merit {
  grid-column: span 3;
}
/*.merit:nth-child(4),
.merit:nth-child(5) {
  grid-column: span 3;
}
.merit:nth-child(3) {
  grid-column: span 2;
}
.merit:nth-child(1),
.merit:nth-child(2) {
  grid-column: span 2;
}*/

/* simpler: 2-2-1 by row */
.merits {
  grid-template-columns: repeat(2, 1fr);
}
/*.merit:nth-child(5) {
  grid-column: 1 / -1;
}*/
@media (max-width: 720px) {
  .merits {
    grid-template-columns: 1fr;
  }
  .merit:nth-child(5) {
    grid-column: auto;
  }
}

.merit {
  background: #fff;
  padding: 28px 28px 28px 28px;
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 112px;
  gap: 24px;
  align-items: center;
  border-left: 3px solid var(--c-primary);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.merit__num {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 36px;
  color: var(--c-primary);
  line-height: 1;
  width: 56px;
}
.merit__body h4 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 6px;
  color: var(--c-navy);
  letter-spacing: 0.04em;
}
.merit__body p {
  font-size: 13.5px;
  color: var(--c-text);
  line-height: 1.75;
  margin: 0;
}
.merit__kpi {
  width: 112px;
  min-width: 112px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  box-sizing: border-box;
}
.merit__kpi-num {
  display: block;
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 30px;
  color: var(--c-gold);
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.merit__kpi-lbl {
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: 0.06em;
  margin-top: 6px;
  display: block;
}
@media (max-width: 600px) {
  .merit {
    grid-template-columns: 48px 1fr;
    padding: 20px;
    gap: 14px;
  }
  .merit__kpi {
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: row;
    align-items: baseline;
    justify-content: start;
    gap: 10px;
    border-left: none;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding-left: 0;
    padding-top: 14px;
    text-align: center;
  }
  .merit__kpi-num {
    font-size: 24px;
  }
  .merit__kpi-lbl {
    margin-top: 0;
  }
}

/* ============ Inline CTA strip ============ */

.cta-strip {
  background: var(--c-primary);
  color: #fff;
  padding: 56px var(--pad-x);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0 1px,
    transparent 1px 12px
  );
  pointer-events: none;
}
.cta-strip__eyebrow {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.cta-strip h3 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0 0 24px;
  letter-spacing: 0.04em;
  position: relative;
}
.cta-strip__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============ Deliverables ============ */

.deliverables {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .deliverables {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .deliverables {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .deliverables {
    grid-template-columns: 1fr;
  }

  .fv__bottom {
    align-items: flex-end;
    gap: 10px;
  }
}

.deliv {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.deliv__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--f-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-primary);
  background: rgba(192, 57, 43, 0.08);
  padding: 4px 8px;
}
.deliv__icon {
  width: 48px;
  height: 48px;
  color: var(--c-primary);
  margin-bottom: 18px;
}
.deliv h4 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--c-navy);
}
.deliv p {
  font-size: 12.5px;
  color: var(--c-muted);
  line-height: 1.75;
  margin: 0 0 14px;
}
.deliv__use {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 10px;
  font-size: 11px;
  color: var(--c-text);
  letter-spacing: 0.04em;
  margin-top: auto;
  min-height: 50px;
}

/* ============ Big stats (social proof) ============ */

.bigstats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 8px;
}
@media (max-width: 900px) {
  .bigstats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.bigstat {
  text-align: center;
  padding: 38px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.bigstat:last-child {
  border-right: none;
}
@media (max-width: 900px) {
  .bigstat:nth-child(2n) {
    border-right: none;
  }
  .bigstat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
.bigstat__num {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--c-gold);
  letter-spacing: 0.01em;
}
.bigstat__num small {
  font-size: 0.5em;
  margin-left: 3px;
}
.bigstat__lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.1em;
  margin-top: 14px;
  display: block;
}

/* ============ Pricing ============ */

.pricing {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
@media (max-width: 900px) {
  .pricing {
    grid-template-columns: 1fr;
  }
}
.pricing__main {
  padding: 48px;
  background: var(--c-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pricing__main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 100% 0%,
    rgba(243, 156, 18, 0.12),
    transparent 50%
  );
}
.pricing__main > * {
  position: relative;
}
.pricing__label {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--c-gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.pricing__title {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 30px;
  letter-spacing: 0.04em;
}
.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}
.pricing__price-num {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 88px;
  color: var(--c-gold);
  line-height: 1;
  letter-spacing: -0.01em;
}
.pricing__price-unit {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 700;
}
.pricing__price-tax {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-left: 6px;
}
.pricing__meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}
.pricing__meta span::before {
  content: "/";
  color: var(--c-primary);
  margin-right: 8px;
  font-weight: 700;
}
.pricing__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.pricing__incl {
  padding: 48px;
}
.pricing__incl-head {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 22px;
  color: var(--c-navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing__incl-head::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--c-primary);
}
.pricing__incl ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing__incl li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  font-size: 14px;
}
.pricing__incl li:last-child {
  border-bottom: none;
}
.pricing__incl li::before {
  content: "✓";
  color: var(--c-blue);
  font-weight: 700;
  font-size: 14px;
  margin-top: 1px;
}
.pricing__incl li strong {
  display: block;
  color: var(--c-navy);
  font-weight: 700;
  margin-bottom: 2px;
}
.pricing__incl li span {
  color: var(--c-muted);
  font-size: 12px;
}

@media (max-width: 600px) {
  .pricing__main,
  .pricing__incl {
    padding: 32px 24px;
  }
  .pricing__price-num {
    font-size: 64px;
  }
}

@media (max-width: 500px) {
}

/* Apply flow (3 steps) */
.applyflow {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  align-items: start;
  gap: 0;
  margin: 56px 0 24px;
}

@media (max-width: 720px) {
  .applyflow {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .applyflow__arrow {
    display: none;
  }
}
.applyflow__step {
  background: #fff;
  padding: 24px;
  border-top: 3px solid var(--c-primary);
  text-align: center;
}
.applyflow__step-num {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 36px;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.applyflow__step h5 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--c-navy);
}
.applyflow__step p {
  font-size: 12.5px;
  color: var(--c-muted);
  line-height: 1.6;
  margin: 0;
}
.applyflow__arrow {
  color: var(--c-primary);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

/* Boost options */
.boost-head {
  margin: 80px 0 32px;
  text-align: center;
}
.boost-head h3 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--c-navy);
  margin: 0 0 10px;
}
.boost-head p {
  font-size: 14px;
  color: var(--c-muted);
  margin: 0;
}

.boosts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) {
  :root {
    --pad-x: 40px;
  }
  .boosts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .boosts {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    justify-content: center !important;
  }
  .footer__bottom > div:first-child {
    text-align: center;
  }
  .footer__legal {
    gap: 10px;
    justify-content: center;
  }
  .fv__scroll {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 480px) {
  .footer__legal a:not(:first-child) {
    display: none;
  }
}
.boost {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 22px 20px;
  position: relative;
}
.boost__tag {
  font-family: var(--f-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-blue);
  margin-bottom: 12px;
  display: block;
}
.boost h4 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 12px;
  color: var(--c-navy);
  line-height: 1.4;
}
.boost p {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0 0 16px;
}
.boost__price {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.boost__price-num {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 18px;
  color: var(--c-primary);
}
.boost__price-num small {
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 600;
  margin-left: 4px;
}
.boost__price-effect {
  font-size: 10.5px;
  color: var(--c-gold);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pricing-note {
  margin-top: 28px;
  font-size: 12px;
  color: var(--c-faint);
  text-align: center;
}

/* ============ FAQ ============ */

.faq {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.faq-item__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px 16px 24px 0;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-navy);
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.faq-item__q-mark {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 18px;
  color: var(--c-primary);
}
.faq-item__toggle {
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  background: var(--c-primary);
  left: 50%;
  top: 50%;
}
.faq-item__toggle::before {
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-item__toggle::after {
  width: 1.5px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 16px 0 0;
}
.faq-item.is-open .faq-item__a {
  max-height: 400px;
  padding-bottom: 24px;
}
.faq-item__a-mark {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 18px;
  color: var(--c-blue);
  line-height: 1.6;
}
.faq-item__a p {
  margin: 0;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.85;
}
.faq-item__a > div:last-child {
  /* spacer for grid */
  width: 22px;
}

/* ============ Final CTA ============ */

.final-cta {
  background: var(--c-primary);
  color: #fff;
  text-align: center;
  padding: 96px var(--pad-x);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 30%,
      rgba(243, 156, 18, 0.18),
      transparent 50%
    ),
    radial-gradient(ellipse at 80% 70%, rgba(26, 26, 46, 0.3), transparent 50%);
  pointer-events: none;
}
.final-cta__eyebrow {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
  position: relative;
}
.final-cta h2 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  margin: 0 0 16px;
  letter-spacing: 0.05em;
  line-height: 1.45;
  position: relative;
}
.final-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 36px;
  line-height: 1.85;
  position: relative;
}
.final-cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============ Footer ============ */

.footer {
  background: var(--c-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px var(--pad-x) 24px;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer__brand p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  margin: 16px 0 0;
}
.footer__col h5 {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--c-gold);
  margin: 0 0 18px;
  text-transform: uppercase;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.18s ease;
}
.footer__col a:hover {
  color: var(--c-gold);
}
.footer__bottom {
  max-width: var(--container);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}
.footer__legal {
  display: flex;
  gap: 18px;
}
.footer__legal a:hover {
  color: var(--c-gold);
}

/* ============ Mobile fixed CTA ============ */

.fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 10px 14px;
  background: rgba(26, 26, 46, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.fixed-cta .btn {
  width: 100%;
  min-height: 52px;
}
@media (max-width: 720px) {
  .fixed-cta {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
  body.no-fixed-cta {
    padding-bottom: 0;
  }
}

/* ============ Utility ============ */
.center {
  text-align: center;
}
.mt-32 {
  margin-top: 32px;
}
.mt-48 {
  margin-top: 48px;
}
.hidden {
  display: none !important;
}

/* ============ Contact Form Section ============ */

.cf-section {
  background: #fff;
  padding: 120px 0 100px;
}

.cf-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.cf-head {
  margin-bottom: 40px;
}
.cf-head__title {
  font-family: "Odibee Sans", var(--f-en);
  font-weight: 400;
  font-size: clamp(64px, 9vw, 110px);
  color: var(--c-primary);
  letter-spacing: 0.03em;
  line-height: 1;
  margin: 12px 0 20px;
}

.cf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.cf-breadcrumb a {
  color: var(--c-muted);
  text-decoration: none;
}
.cf-breadcrumb a:hover {
  color: var(--c-primary);
}
.cf-breadcrumb__sep {
  color: var(--c-faint);
}
.cf-head__lead {
  font-size: 13.5px;
  color: var(--c-text);
  line-height: 1.9;
  margin: 0 0 8px;
}
.cf-head__req {
  font-size: 12px;
  color: var(--c-muted);
  margin: 0;
}
.req-mark {
  color: var(--c-primary);
  font-weight: 700;
  margin-right: 2px;
}

/* Form rows */
.cf__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 14px 0;
}
.cf__row--top {
  align-items: start;
  padding-top: 18px;
}
.cf__row--no-label {
  grid-template-columns: 180px 1fr;
  border-bottom: none;
  padding: 14px 0;
}
.cf__row--no-label textarea {
  grid-column: 2;
}

.cf__label {
  font-size: 13px;
  color: var(--c-text);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

/* Inputs & textareas */
.cf input[type="text"],
.cf input[type="email"],
.cf input[type="tel"],
.cf textarea {
  width: 100%;
  background: #f0f0f0;
  border: none;
  border-radius: 2px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-family: var(--f-sans);
  color: var(--c-navy);
  outline: none;
  box-sizing: border-box;
  transition: background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.cf input[type="text"]:focus,
.cf input[type="email"]:focus,
.cf input[type="tel"]:focus,
.cf textarea:focus {
  background: #e6e6e6;
}
.cf textarea {
  resize: vertical;
}

.cf__name-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Checkboxes */
.cf__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 4px 0;
}
.cf__check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--c-text);
  cursor: pointer;
  user-select: none;
}
.cf__check input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--c-primary);
  cursor: pointer;
  flex-shrink: 0;
}

/* Privacy row */
.cf__privacy {
  display: flex;
  justify-content: center;
  padding: 28px 0 16px;
  font-size: 13px;
}
.cf__privacy a {
  color: var(--c-primary);
  text-decoration: underline;
}

/* reCAPTCHA placeholder */
.cf__recaptcha {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.cf__recaptcha-inner {
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 12px;
  color: var(--c-muted);
  background: #f9f9f9;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cf__recaptcha-inner::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%234285f4' d='M32 8C18.7 8 8 18.7 8 32s10.7 24 24 24 24-10.7 24-24S45.3 8 32 8z'/%3E%3Cpath fill='%23fff' d='M44 28H36V20h-8v8H20v8h8v8h8v-8h8z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

/* Submit button */
.cf__submit {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.cf__btn {
  background: var(--c-navy);
  color: #fff;
  border: none;
  padding: 18px 0;
  width: 100%;
  max-width: 360px;
  font-size: 16px;
  font-family: var(--f-sans);
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 2px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.cf__btn:hover {
  background: #2a2a4a;
  transform: translateY(-1px);
}
.cf__btn:active {
  transform: none;
}

/* Mobile */
@media (max-width: 640px) {
  .cf-section {
    padding: 100px 0 0 0;
  }
  .cf__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cf__row--no-label {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .cf__row--no-label textarea {
    grid-column: 1;
  }
  .cf__label {
    font-size: 12px;
  }
  .cf__name-pair {
    grid-template-columns: 1fr;
  }
  .cf__checks {
    gap: 8px 14px;
  }
  .cf__btn {
    max-width: 100%;
    padding: 16px;
  }
}

/* ============ Privacy Policy Page ============ */

.pp-section {
  background: #fff;
  padding: 120px 0 100px;
}
.pp-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.pp-date {
  font-size: 12px;
  color: var(--c-muted);
  margin: 16px 0 4px;
}
.pp-title {
  font-family: var(--f-serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--c-navy);
  margin: 0 0 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--c-navy);
}
.pp-block {
  margin-bottom: 40px;
}
.pp-h2 {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-navy);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.pp-block p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--c-text);
  margin: 0 0 12px;
}
.pp-link {
  font-size: 12px;
  color: var(--c-primary);
  word-break: break-all;
}
.pp-dates {
  font-size: 12.5px;
  color: var(--c-muted);
  line-height: 2;
}

/* Bordered card sections (| prefix in reference) */
.pp-card {
  border-left: 3px solid var(--c-primary);
  padding: 16px 20px;
  margin: 20px 0;
  background: rgba(246, 243, 235, 0.6);
}
.pp-h3 {
  font-family: var(--f-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
  margin: 0 0 10px;
  line-height: 1.5;
}
.pp-card p {
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.9;
  margin: 0 0 10px;
}
.pp-card p:last-child {
  margin-bottom: 0;
}

/* Sub-headings inside card */
.pp-sub-heading {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--c-navy);
  margin: 16px 0 8px !important;
}
.pp-sub-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  margin: 14px 0 6px !important;
}

/* Bullet lists */
.pp-list {
  background: var(--c-paper-2);
  border-radius: 4px;
  padding: 14px 14px 14px 30px;
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.85;
}
.pp-list li {
  margin-bottom: 4px;
}
.pp-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .pp-section {
    padding: 100px 0 60px 0;
  }
  .pp-h2 {
    font-size: 17px;
  }
  .pp-card {
    padding: 14px 16px;
  }
}

/* ============ Contact Preview Step ============ */

.cf-preview {
  max-width: 720px;
  margin: 0 auto;
}
.cf-preview__head {
  margin-bottom: 28px;
}
.cf-preview__title {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-navy);
  margin: 0 0 8px;
}
.cf-preview__note {
  font-size: 13px;
  color: var(--c-muted);
  margin: 0;
}
.cf-preview__list {
  margin: 0 0 36px;
  padding: 0;
  border-top: 2px solid var(--c-navy);
}
.cf-preview__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  align-items: start;
}
.cf-preview__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-muted);
  margin: 0;
}
.cf-preview__value {
  font-size: 13.5px;
  color: var(--c-text);
  margin: 0;
  line-height: 1.7;
  word-break: break-word;
}
.cf-preview__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cf-preview__edit {
  background: #fff;
  color: var(--c-navy);
  border: 1.5px solid rgba(26, 26, 46, 0.35);
  border-radius: 2px;
  padding: 16px 32px;
  font-size: 15px;
  font-family: var(--f-sans);
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.cf-preview__edit:hover {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}
.cf-preview__submit {
  background: var(--c-primary);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 16px 40px;
  font-size: 15px;
  font-family: var(--f-sans);
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.cf-preview__submit:hover {
  background: var(--c-primary-deep);
  transform: translateY(-1px);
}
.cf-preview__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 640px) {
  .cf-preview__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .cf-preview__edit,
  .cf-preview__submit {
    width: 100%;
    text-align: center;
  }
}

/* ============ Contact Success Step ============ */

.cf-success {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0 60px;
}
.cf-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.cf-success__title {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-navy);
  margin: 0 0 18px;
}
.cf-success__msg {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 2;
  margin: 0 0 36px;
}
.cf-success__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
