:root {
  color-scheme: light;
  --accent: #ffc365;
  --accent-strong: #ffb433;
  --bg: #ffffff;
  --text: #101010;
  --muted: rgba(16, 16, 16, 0.72);
  --line: rgba(16, 16, 16, 0.16);
  --soft: rgba(16, 16, 16, 0.06);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.86);
  --shadow: 0 18px 42px rgba(15, 23, 42, 0.09), 0 6px 16px rgba(15, 23, 42, 0.05);
  --shine: radial-gradient(ellipse at 18% 0%, rgba(255, 195, 101, 0.24), transparent 44%),
    linear-gradient(135deg, rgba(255, 195, 101, 0.12), transparent 32%, rgba(255, 255, 255, 0.46) 100%);
  --radius: 8px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.page {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 70px;
}

.glass {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--shine), var(--glass);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(255, 195, 101, 0.08);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--shine), var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.brand,
.nav-links {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
}

.brand-mark {
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 30px rgba(255, 195, 101, 0.45);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  gap: 14px;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn,
.primary-btn,
.ghost-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.icon-btn:hover,
.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 195, 101, 0.72);
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--text);
  background: var(--soft);
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  font-weight: 900;
  text-decoration: none;
}

.primary-btn {
  color: #111;
  border-color: rgba(255, 210, 132, 0.9);
  background: linear-gradient(135deg, #ffd98b 0%, var(--accent) 42%, var(--accent-strong) 100%);
  box-shadow: 0 16px 42px rgba(255, 195, 101, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.72), inset 0 -14px 28px rgba(168, 95, 0, 0.16);
}

.ghost-btn {
  color: var(--text);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 14px 34px rgba(0, 0, 0, 0.18);
}

.compact {
  min-height: 40px;
}

.hero {
  padding: clamp(18px, 4vh, 42px) 0 0;
}

.hero-copy,
.section {
  padding: clamp(24px, 4vw, 46px);
}

.hero-copy {
  min-height: min(650px, calc(100vh - 104px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  grid-template-areas:
    "text visual"
    "actions visual";
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  overflow: hidden;
}

.hero-text {
  grid-area: text;
  min-width: 0;
}

.hero-copy > .hero-actions {
  grid-area: actions;
  justify-content: flex-start;
  align-self: start;
  margin-top: 0;
}

.hero-visual {
  position: relative;
  grid-area: visual;
  align-self: stretch;
  display: grid;
  align-items: end;
  min-height: 520px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 195, 101, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 62%);
}

.hero-person {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: 650px;
  margin: 0 auto -46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.1));
}

.social-bullets {
  position: relative;
  grid-area: visual;
  align-self: start;
  justify-self: center;
  top: -32px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(440px, calc(100% - 20px));
}

.social-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--shine), var(--glass-strong);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.social-bullets img {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  object-fit: contain;
  border-radius: 6px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 780px;
  font-size: clamp(28px, 3.8vw, 55px);
  text-wrap: balance;
}

.hero-bonus {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  margin-top: 16px;
  padding: 0 16px;
  border: 1px solid rgba(255, 195, 101, 0.62);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--shine), rgba(255, 195, 101, 0.16);
  box-shadow: 0 16px 38px rgba(255, 195, 101, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.48);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

h2 {
  font-size: clamp(28px, 4vw, 50px);
  text-wrap: balance;
}

h3 {
  font-size: clamp(19px, 2vw, 26px);
}

.lead,
.section-head p,
.section p,
.footer p,
.faq-list p {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(17px, 1.8vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.platform-row span,
.tag,
.mini-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 195, 101, 0.5);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 195, 101, 0.12);
  font-size: 14px;
  font-weight: 800;
}

.section {
  margin-top: 28px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-left: 0;
  padding-right: 0;
}

.intro-card {
  min-height: 178px;
  padding: 18px;
}

.intro-card strong,
.report-board strong {
  display: block;
  color: var(--accent);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.intro-card span,
.report-board span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.35;
}

.intro-cta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.intro-cta blockquote {
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--accent);
  color: var(--text);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 400;
  line-height: 1.5;
}

.value-grid,
.report-section {
  display: grid;
  gap: 16px;
}

.value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.value-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass-strong);
}

.section-head {
  max-width: 760px;
}

.cases-section .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: none;
}

.cases-section {
  width: min(100vw, 100%);
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

.cases-section .section-head {
  padding-inline: clamp(0px, 1vw, 8px);
}

.case-rail-wrap {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
}

.case-rail-wrap::before,
.case-rail-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(92px, 12vw);
  pointer-events: none;
}

.case-rail-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), rgba(255, 255, 255, 0));
}

.case-rail-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), rgba(255, 255, 255, 0));
}

.case-rail {
  display: grid;
  grid-auto-columns: minmax(300px, 380px);
  grid-auto-flow: column;
  gap: 16px;
  padding: 4px 0 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.case-rail::-webkit-scrollbar {
  display: none;
}

.case-rail.is-dragging {
  cursor: grabbing;
}

.case-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
  box-shadow: none;
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.case-card-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: stretch;
  gap: 12px;
  padding: 18px;
}

.case-read-btn {
  align-self: end;
  min-height: 46px;
  border: 1px solid rgba(255, 210, 132, 0.9);
  border-radius: var(--radius);
  color: #111;
  background: linear-gradient(135deg, #ffd98b 0%, var(--accent) 42%, var(--accent-strong) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-weight: 900;
}

.case-read-btn:hover {
  border-color: rgba(255, 195, 101, 0.9);
  transform: translateY(-1px);
}

.case-modal-summary {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.case-full {
  display: grid;
  gap: 18px;
}

.case-full-lead {
  margin: 0;
  color: var(--text);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}

.case-full-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.case-full-metric,
.case-full-section,
.case-full-note,
.case-full-highlight,
.stat-line {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.case-full-metric {
  display: grid;
  gap: 4px;
  min-height: 96px;
  padding: 14px;
}

.case-full-metric strong,
.stat-line strong {
  color: var(--accent);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.05;
}

.case-full-metric span,
.stat-line span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.case-full-section {
  padding: clamp(18px, 2vw, 26px);
}

.case-full-section h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.8vw, 38px);
}

.case-full-section p,
.case-full-section li,
.case-full-note,
.case-full-highlight {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.case-full-section p + p {
  margin-top: 12px;
}

.case-full-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.case-full-quote blockquote {
  margin: 0;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.story-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.steps,
.stats-list {
  display: grid;
  gap: 12px;
}

.step,
.stat-line,
.case-full-note,
.case-full-highlight {
  padding: 14px;
}

.result-split,
.two-col,
.review-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.case-image {
  margin: 0;
}

.case-image img,
.review-gif {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

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

.metric {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  color: var(--accent);
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1;
}

.metric span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.trend-chart {
  padding: clamp(14px, 2vw, 22px);
  overflow-x: auto;
  overflow-y: hidden;
}

.trend-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.trend-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(245, 171, 48, 0.52);
}

.legend-dot.spend {
  background: #4da3ff;
  box-shadow: 0 0 24px rgba(77, 163, 255, 0.35);
}

.trend-svg {
  display: block;
  width: max(760px, 100%);
  height: auto;
  overflow: visible;
}

.trend-grid {
  stroke: var(--line);
  stroke-width: 1;
}

.trend-axis,
.trend-label {
  fill: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.trend-revenue {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(245, 171, 48, 0.24));
}

.trend-spend {
  fill: none;
  stroke: #4da3ff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(77, 163, 255, 0.2));
}

.trend-point {
  cursor: help;
  stroke: rgba(255, 255, 255, 0.86);
  stroke-width: 2;
}

.trend-point.revenue {
  fill: var(--accent);
}

.trend-point.spend {
  fill: #4da3ff;
}

.trend-table {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.trend-cell {
  min-height: 92px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.trend-cell strong,
.trend-cell span {
  display: block;
}

.trend-cell strong {
  color: var(--text);
  font-size: 16px;
}

.trend-cell span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.scroll-hand {
  position: relative;
  z-index: 1;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  opacity: 0.78;
  pointer-events: none;
  animation: hand-swipe 1.8s ease-in-out infinite;
}

.scroll-hand span,
.scroll-hand span::before,
.scroll-hand span::after {
  position: absolute;
  display: block;
  content: "";
  border-radius: 999px;
  background: var(--text);
}

.scroll-hand span {
  left: 16px;
  top: 7px;
  width: 10px;
  height: 28px;
  box-shadow: 0 0 0 3px rgba(255, 195, 101, 0.24);
}

.scroll-hand span::before {
  left: -8px;
  top: 10px;
  width: 24px;
  height: 18px;
  transform: rotate(-20deg);
}

.scroll-hand span::after {
  left: 13px;
  top: 4px;
  width: 16px;
  height: 6px;
  background: var(--accent);
}

@keyframes hand-swipe {
  0%, 100% {
    transform: translateX(-14px) rotate(-8deg);
  }

  50% {
    transform: translateX(14px) rotate(8deg);
  }
}

.case-modal-card h3 {
  max-width: 760px;
}

.case-modal-card .hero-actions {
  justify-content: flex-start;
}

.case-modal-card .primary-btn {
  width: auto;
}

.case-card-body strong {
  color: var(--accent);
}

.rail-hint {
  margin: 4px 0 0;
  color: var(--accent);
  font-weight: 900;
  text-align: center;
}

.about-card,
.report-section {
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1.4fr);
  align-items: center;
}

.about-card {
  display: grid;
  gap: 24px;
  margin-top: 22px;
  padding: clamp(24px, 4vw, 44px);
}

.about-photo img {
  width: min(260px, 100%);
  aspect-ratio: 1;
  border: 2px solid var(--accent);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.about-quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.about-quotes blockquote {
  margin: 0;
  padding: 18px 18px 18px 20px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--soft);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
}

.section-title-center {
  text-align: center;
}

.trust-section {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.trust-marquee {
  position: relative;
  margin-top: 22px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trust-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: trustMarquee 58s linear infinite;
  will-change: transform;
}

.trust-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  width: clamp(174px, 16vw, 214px);
  min-width: 0;
  text-align: center;
}

.trust-avatars {
  display: flex;
  justify-content: center;
  min-height: 78px;
}

.trust-avatars img {
  width: 78px;
  height: 78px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.trust-avatars.is-pair img + img {
  margin-left: -22px;
}

.trust-card h3 {
  font-size: 16px;
  line-height: 1.2;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@keyframes trustMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation: none;
  }
}

.process-section {
  padding-left: 0;
  padding-right: 0;
}

.process-accordion {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.process-item {
  display: grid;
  gap: 0;
}

.process-item summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass-strong);
  box-shadow: var(--shadow);
  cursor: pointer;
  list-style: none;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.process-item summary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(245, 171, 48, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.process-item summary > * {
  position: relative;
  z-index: 1;
}

.process-item[open] summary {
  border-color: rgba(245, 171, 48, 0.78);
  box-shadow: 0 0 0 1px rgba(245, 171, 48, 0.26), 0 0 12px rgba(245, 171, 48, 0.14), var(--shadow);
}

.process-item[open] summary::before {
  opacity: 1;
}

.process-item summary:hover,
.process-item[open] summary:hover {
  border-color: rgba(245, 171, 48, 0.82);
}

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

.process-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: auto;
  border: 1px solid rgba(245, 171, 48, 0.45);
  border-radius: 50%;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
}

.process-item[open] summary::after {
  content: "−";
  border-color: rgba(245, 171, 48, 0.9);
  box-shadow: 0 0 8px rgba(245, 171, 48, 0.18);
}

.process-item summary span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  color: #111;
  background: var(--accent);
  font-weight: 900;
}

.process-item summary strong {
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.2;
}

.process-item p {
  max-width: 920px;
  margin: 14px 20px 10px 20px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
}

.report-section {
  padding-left: 0;
  padding-right: 0;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.report-copy,
.report-board {
  padding: clamp(22px, 3vw, 34px);
}

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

.report-board div {
  min-height: 120px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  overflow: visible;
  text-align: left;
}

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

.cta-copy .eyebrow {
  color: var(--muted);
}

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

.cta-subtitle {
  margin-top: 14px;
  color: var(--text);
  font-size: clamp(19px, 1.65vw, 25px);
  font-weight: 900;
  line-height: 1.35;
}

.cta-copy > p:not(.eyebrow):not(.cta-subtitle) {
  max-width: 720px;
  margin-top: 20px;
}

.cta-copy .hero-actions {
  justify-content: flex-start;
  margin-top: 26px;
}

.cta-visual {
  position: relative;
  min-height: clamp(360px, 36vw, 520px);
}

.cta-photo-frame {
  position: absolute;
  right: clamp(-38px, -3vw, -18px);
  bottom: -34px;
  width: min(420px, 100%);
  height: min(450px, 34vw);
  min-height: 360px;
  border: 0;
  border-radius: var(--radius-lg);
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.cta-photo-frame img {
  position: absolute;
  right: -88px;
  bottom: -180px;
  width: min(690px, 164%);
  max-width: none;
  clip-path: inset(0 0 22% 0);
  filter: drop-shadow(0 18px 24px rgba(15, 23, 42, 0.12));
}

.big-cta {
  min-height: 76px;
  padding: 0 30px;
  font-size: clamp(20px, 2vw, 30px);
}

.faq-section {
  padding-left: 0;
  padding-right: 0;
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 22px;
}

.faq-list details {
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.faq-list summary {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}

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

.quiz-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
}

.quiz-form {
  display: grid;
  gap: 16px;
}

.quiz-step {
  display: none;
  gap: 12px;
}

.quiz-step.is-active {
  display: grid;
}

.quiz-step label {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--soft);
}

.quiz-step input,
.quiz-step textarea,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--text);
  background: var(--soft);
  outline: none;
}

.quiz-step input[type="radio"],
.quiz-step input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--accent);
}

.quiz-step textarea,
.field textarea {
  min-height: 128px;
  padding: 14px;
  resize: vertical;
  line-height: 1.45;
}

.quiz-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.quiz-controls span,
.status {
  color: var(--muted);
}

.is-hidden {
  display: none !important;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 6px 0 0;
  font-size: 14px;
}

.footer-cta {
  min-height: 62px;
  padding: 0 30px;
  font-size: 18px;
  font-weight: 900;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.68);
  overscroll-behavior: contain;
}

.modal.is-open {
  display: flex;
}

.modal-card {
  width: min(620px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 22px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.case-modal-card {
  width: min(1040px, 100%);
}

.modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.quiz-step input:focus,
.quiz-step textarea:focus {
  border-color: rgba(255, 195, 101, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 195, 101, 0.16);
}

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

  .intro-grid,
  .hero-copy,
  .value-grid,
  .report-section,
  .quiz-section,
  .cta-section,
  .about-card {
    grid-template-columns: 1fr;
  }

  .intro-cta {
    grid-template-columns: 1fr;
  }

  .about-quotes {
    grid-template-columns: 1fr;
  }

  .about-photo {
    display: flex;
    justify-content: center;
  }

  .about-photo img {
    width: min(220px, 72vw);
  }

  .case-full-metrics,
  .metric-grid,
  .result-split,
  .two-col,
  .review-media {
    grid-template-columns: 1fr;
  }

  .trend-head {
    display: grid;
  }

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

  .process-item summary {
    gap: 12px;
    min-height: 70px;
    padding: 16px;
  }

  .process-item p {
    margin: 12px 8px 8px 8px;
  }

  .process-item summary::after {
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .cta-section {
    gap: 16px;
  }

  .cta-copy .hero-actions {
    justify-content: flex-start;
  }

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

  .cta-photo-frame {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(420px, 92%);
    height: 340px;
    min-height: 340px;
    margin: 8px 0 0 auto;
  }

  .cta-photo-frame img {
    right: -54px;
    bottom: -140px;
    width: min(535px, 148%);
  }

  .hero-copy {
    min-height: auto;
    grid-template-areas:
      "text"
      "visual"
      "actions"
      "social";
  }

  .hero-copy > .hero-actions {
    justify-content: center;
  }

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

  .social-bullets {
    grid-area: social;
    top: 0;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 20px, 1240px);
    padding-top: 10px;
  }

  .topbar {
    align-items: stretch;
  }

  .brand {
    gap: 8px;
    font-size: 14px;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .nav-actions .primary-btn {
    width: auto;
    padding: 0 12px;
    font-size: 13px;
  }

  .cta-section {
    padding-bottom: 0;
  }

  .cta-copy h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .cta-subtitle {
    font-size: clamp(17px, 5vw, 21px);
  }

  .cta-visual {
    min-height: 300px;
    margin-top: 44px;
  }

  .cta-photo-frame {
    width: min(330px, 88%);
    height: 290px;
    min-height: 290px;
  }

  .cta-photo-frame img {
    right: -38px;
    bottom: -112px;
    width: min(430px, 144%);
  }

  .hero-actions,
  .quiz-controls,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .case-rail {
    grid-auto-columns: minmax(282px, 86vw);
  }

  h1 {
    font-size: clamp(24px, 7.2vw, 28px);
  }

  .hero-bonus {
    min-height: 40px;
    padding: 0 12px;
    font-size: clamp(14px, 3.8vw, 16px);
  }

  .hero-copy,
  .section {
    padding: 24px;
  }

  .cases-section .section-head {
    align-items: flex-start;
  }

  .cases-section .section-head h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .hero-visual {
    min-height: 215px;
    margin-top: -28px;
    align-items: start;
  }

  .hero-person {
    width: min(360px, 105%);
    margin: -18px auto -36px;
  }

  .hero-copy > .hero-actions {
    margin-top: -12px;
  }

  .social-bullets {
    gap: 8px;
    margin-top: -6px;
    width: 100%;
  }

  .social-bullets span {
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .social-bullets img {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }

  .trust-grid,
  .report-board {
    grid-template-columns: 1fr;
  }

  .footer {
    text-align: center;
  }
}
