/* ==========================================================================
   Clarkumen Advisory — V3
   Brand:  Per Brand Style Guideline (warm greyscale)
   Fonts:  Lusitana (serif, headings) + Lato (sans, body/nav/buttons)
   Palette: Primary dark #1B1B1B · Warm grey #7D7474 · Accent grey #979696
   ========================================================================== */

:root {
  /* --- Greyscale palette (per brand guideline) --- */
  --ink:          #1B1B1B;   /* Primary dark — text, nav, dark overlays */
  --ink-2:        #313030;   /* Secondary dark — active/pressed states */
  --ink-soft:     #7D7474;   /* Warm grey — body text, secondary nav */
  --slate:        #7D7474;
  --line:         #E2E2E2;   /* Section dividers (1px) */
  --line-soft:    #F0EFEF;
  --bg:           #FFFFFF;
  --bg-alt:       #F7F7F7;   /* Off-white for section backgrounds */
  --bg-mint:      #F0EFEF;

  --accent:       #979696;   /* Accent grey — CTA buttons, theme color */
  --accent-700:   #7D7474;   /* Warm grey for hover/contrast */
  --accent-50:    #F0EFEF;
  --mint:         #B1B1B1;   /* Light grey — button hover, highlights */
  --mint-50:      #E2E2E2;
  --lime:         #A4A4A4;   /* Mid grey — secondary icons */

  --pale-grey:    #BFBFBF;   /* Disabled, very subtle separators */

  /* --- Type --- */
  --serif:        "Lusitana", Georgia, "Times New Roman", serif;
  --sans:         "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* --- Tokens --- */
  --radius-sm:    4px;
  --radius:       4px;       /* Brand calls for 4px (subtle pills) */
  --radius-lg:    6px;
  --radius-xl:    8px;
  --shadow-sm:    0 1px 2px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md:    0 6px 18px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-lg:    0 24px 48px -12px rgba(0, 0, 0, 0.20), 0 8px 16px -8px rgba(0, 0, 0, 0.12);
  --shadow-glow:  0 16px 40px -12px rgba(0, 0, 0, 0.24);

  --container:    1180px;
  --gutter:       clamp(20px, 4vw, 40px);
  --section-pad:  clamp(72px, 9vw, 120px);
}

/* --------------------------- RESET / BASE --------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; }
em { font-style: italic; color: var(--ink-2); }

/* --------------------------- LAYOUT --------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: linear-gradient(180deg, #1B1B1B 0%, #313030 100%);
  color: #F0EFEF;
}

.section__head {
  max-width: 880px;
  margin: 0 auto 64px;
  text-align: center;
}
.section__head--light { color: #F0EFEF; }
.section__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}
.section__head--light .section__title { color: #ffffff; }
.section__lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
}
.section__lead--light { color: #BFBFBF; }
.section__cta {
  margin-top: 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-700);
  margin-bottom: 18px;
  padding: 8px 14px;
  background: var(--accent-50);
  border-radius: 100px;
}
.eyebrow--light {
  color: #BFBFBF;
  background: rgba(151, 150, 150, 0.12);
}

.text-accent {
  display: block;
  background: linear-gradient(95deg, var(--accent-700) 0%, var(--accent) 50%, #B1B1B1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section__title--inline .text-accent {
  display: inline;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-2);
  margin-bottom: 18px;
}
p + p { margin-top: 16px; }

/* --------------------------- BUTTONS (per brand: 4px radius, uppercase Lato, accent grey bg) --------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.063em;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease;
  cursor: pointer;
  text-align: center;
}
.btn--lg { padding: 16px 32px; font-size: 0.92rem; }

.btn--primary {
  background: var(--ink);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Optional: secondary style with brand accent grey */
.btn--accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--accent:hover {
  background: var(--mint);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--bg-alt);
  transform: translateY(-1px);
}

.btn--ghost-light {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* --------------------------- BADGE --------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-50);
}

/* --------------------------- HEADER --------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.header--scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.header__brand { display: inline-flex; align-items: center; }
.header__logo { height: 38px; width: auto; }
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.header__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.header__link:hover { color: var(--ink); }
.header__link:hover::after { transform: scaleX(1); }
.header__cta { padding: 11px 22px; font-size: 0.92rem; }
.header__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 10px;
}
.header__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.header__menu-btn--open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header__menu-btn--open span:nth-child(2) { opacity: 0; }
.header__menu-btn--open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------- HERO --------------------------- */
.hero {
  position: relative;
  padding: clamp(70px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.55;
  border-radius: 50%;
}
.hero__blob--1 {
  width: 580px;
  height: 580px;
  top: -180px;
  right: -160px;
  background: radial-gradient(circle, rgba(151, 150, 150, 0.45) 0%, rgba(177, 177, 177, 0.25) 60%, transparent 80%);
}
.hero__blob--2 {
  width: 460px;
  height: 460px;
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(177, 177, 177, 0.4) 0%, rgba(164, 164, 164, 0.18) 60%, transparent 80%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero__content { max-width: 640px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero__title-line {
  display: block;
  white-space: nowrap;
}
.hero__title-accent {
  display: block;
  margin-top: 4px;
  background: linear-gradient(95deg, var(--accent-700) 0%, var(--accent) 60%, #6dee9c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  font-size: 1.2rem;
  color: var(--ink-2);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.55;
}
.hero__body {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 580px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 20px);
  flex-wrap: nowrap;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1 1 auto; }
.hero__meta-item strong {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}
.hero__meta-item span {
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1.35;
}
.hero__meta-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
  flex-shrink: 0;
}

/* Hero visual — fake "AI roadmap" panel */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.hero__panel {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: transform 0.4s ease;
}
.hero__panel:hover { transform: rotate(0deg); }
.hero__panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.hero__panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}
.hero__panel-dot:nth-child(1) { background: #ff6b6b; }
.hero__panel-dot:nth-child(2) { background: #ffd166; }
.hero__panel-dot:nth-child(3) { background: var(--accent); }
.hero__panel-title {
  margin-left: 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 700;
}
.hero__panel-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero__step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  transition: background 0.2s ease;
}
.hero__step--done {
  background: var(--accent-50);
  border-color: rgba(151, 150, 150, 0.22);
}
.hero__step--done .hero__step-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.hero__step--active {
  background: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.hero__step--active .hero__step-icon {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.hero__step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.hero__step-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hero__step-text strong {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 700;
}
.hero__step-text span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.hero__panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  font-size: 0.82rem;
}
.hero__panel-tag { color: var(--ink-soft); font-weight: 700; }
.hero__panel-status {
  color: var(--accent-700);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__panel-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-50);
}
.hero__chip {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 130px;
}
.hero__chip-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
}
.hero__chip-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero__chip--1 {
  top: 10%;
  left: -12px;
  transform: rotate(-3deg);
}
.hero__chip--2 {
  bottom: 8%;
  right: -8px;
  transform: rotate(2.5deg);
}
.hero__chip--1 .hero__chip-num { color: var(--accent-700); }

/* --------------------------- TRUST --------------------------- */
.trust {
  padding: 40px 0 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust__label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

/* --- Marquee (auto-scrolling logo strip) --- */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(48px, 7vw, 88px);
  padding: 0 clamp(24px, 3.5vw, 44px);
}
.marquee__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.marquee__logo:hover {
  opacity: 1;
  transform: scale(1.03);
}
.marquee__logo img {
  height: 100%;
  width: auto;
  display: block;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

/* legacy trust__list / trust__item styles kept for safety, no-op now */
.trust__list { display: none; }

/* --------------------------- PROBLEM --------------------------- */
.problem__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.problem__left { max-width: 560px; }
.section__title--left {
  text-align: left !important;
  margin-bottom: 24px;
}
.problem__copy {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.problem__copy p { line-height: 1.75; }
.problem__copy .lead { color: var(--ink-2); }

.problem__pullbar {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px 22px 30px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.problem__pullbar-rule {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-700) 100%);
  border-radius: 4px 0 0 4px;
}
.problem__pullbar p {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--ink);
  line-height: 1.45;
  margin: 0;
}
.problem__pullbar p strong {
  font-weight: 700;
  color: var(--ink);
}

/* Right visual: stylized agenda card */
.problem__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.agenda {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
  transform: rotate(-1deg);
  transition: transform 0.4s ease;
}
.agenda:hover { transform: rotate(0deg); }
.agenda__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.agenda__head-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.agenda__head-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.agenda__head-week {
  font-family: var(--serif);
  font-size: 0.92rem;
  color: var(--ink-2);
  font-weight: 700;
}
.agenda__head-dots {
  display: flex;
  gap: 5px;
}
.agenda__head-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.agenda__head-dots span:first-child { background: #ff6b6b; }
.agenda__head-dots span:nth-child(2) { background: #ffd166; }
.agenda__head-dots span:last-child { background: var(--accent); }

.agenda__list {
  list-style: none;
  padding: 12px 0;
  margin: 0;
}
.agenda__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  position: relative;
  transition: background 0.18s ease;
}
.agenda__row:hover { background: var(--bg-alt); }
.agenda__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-50);
  color: var(--accent-700);
  display: grid;
  place-items: center;
  border: 1px solid rgba(151, 150, 150, 0.25);
}
.agenda__defer {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fef3f2;
  color: #d04a3c;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.96rem;
  border: 1px solid rgba(208, 74, 60, 0.18);
}
.agenda__pending {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-items: center;
}
.agenda__pending-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(151, 150, 150, 0.25);
}
.agenda__row-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.agenda__row-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.agenda__row-title em {
  color: var(--accent-700);
  font-style: italic;
}
.agenda__row-title--strike {
  text-decoration: line-through;
  color: var(--ink-soft);
  font-weight: 500;
}
.agenda__row-meta {
  font-size: 0.74rem;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.agenda__row-meta--warn {
  color: #d04a3c;
  font-weight: 700;
}
.agenda__row--done .agenda__row-title { color: var(--ink-soft); }
.agenda__row--deferred {
  background: #fafbfc;
}
.agenda__row--active {
  background: var(--accent-50);
  border-top: 1px solid rgba(151, 150, 150, 0.2);
  border-bottom: 1px solid rgba(151, 150, 150, 0.2);
  margin: 6px 0;
}
.agenda__chip {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #fff;
  color: #d04a3c;
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid rgba(208, 74, 60, 0.25);
  flex-shrink: 0;
}

.agenda__foot {
  padding: 16px 22px 18px;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}
.agenda__cycle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.agenda__cycle-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.agenda__cycle-arrow {
  color: var(--ink-soft);
  font-weight: 400;
}
.agenda__foot-stamp {
  display: block;
  font-family: var(--serif);
  font-size: 0.84rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* Sticky note overlays */
.agenda__sticky {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1px;
  z-index: 3;
  min-width: 130px;
}
.agenda__sticky-num {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.agenda__sticky-text {
  font-size: 0.74rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.agenda__sticky--1 {
  top: 4%;
  left: -8%;
  transform: rotate(-3deg);
}
.agenda__sticky--1 .agenda__sticky-num { color: #d04a3c; }
.agenda__sticky--2 {
  bottom: 6%;
  right: -8%;
  transform: rotate(2.5deg);
}
.agenda__sticky--2 .agenda__sticky-num { color: var(--ink); }
.agenda__sticky--2 .agenda__sticky-num::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 6px;
  vertical-align: middle;
}
/* --------------------------- APPROACH / FOUNDER --------------------------- */
.approach__layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.approach__left { max-width: 640px; }
.approach__copy {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.approach__copy p { line-height: 1.75; }
.approach__copy .lead { color: var(--ink-2); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.pillar:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: var(--accent);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar__num {
  font-family: var(--serif);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent-700);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.pillar__label {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.pillar__text {
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.45;
  margin-top: 2px;
}

.approach__close {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--accent-50);
  border-radius: var(--radius);
  border: 1px solid rgba(151, 150, 150, 0.18);
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.45;
}
.approach__close-rule {
  flex-shrink: 0;
  width: 28px;
  height: 2px;
  background: var(--accent-700);
}
.approach__close strong { font-weight: 700; }

.approach__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 28px;
}
.approach__email {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.3;
}
.approach__email-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.approach__email-addr {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-700);
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
}
.approach__email:hover .approach__email-addr { color: var(--ink); }

.founder {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.founder__photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.founder__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder__photo-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.founder__photo-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  color: var(--accent-700);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.founder__info { padding: 24px 24px 26px; }
.founder__name {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.founder__role {
  font-size: 0.84rem;
  color: var(--accent-700);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.founder__quote {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-style: italic;
  color: var(--ink-2);
  line-height: 1.45;
  padding: 14px 0;
  margin: 0 0 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.founder__quote::before {
  content: "\201C";
  position: absolute;
  top: -2px;
  left: -8px;
  font-size: 2rem;
  color: var(--accent);
  font-style: normal;
  line-height: 1;
}
.founder__creds {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.founder__creds li {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.45;
  padding-left: 20px;
  position: relative;
}
.founder__creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 2px;
  background: var(--accent);
}

/* --------------------------- PROCESS --------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 10%, var(--line) 90%, transparent);
  z-index: 0;
}
.process__step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.process__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.process__num {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--accent-50);
  border: 1px solid rgba(151, 150, 150, 0.3);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.process__title {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.process__step p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.process__promise {
  margin-top: 56px;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 18px;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.process__promise-divider { color: var(--accent); }

/* --------------------------- FOCUS --------------------------- */
.focus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.focus__card {
  padding: 30px 26px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.focus__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(151, 150, 150, 0.4);
}
.focus__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-50) 0%, var(--mint-50) 100%);
  color: var(--accent-700);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.focus__icon svg {
  width: 26px;
  height: 26px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.focus__card h3 {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.focus__card p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.focus__card--cta {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  border-color: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.focus__card--cta:hover { border-color: var(--accent); }
.focus__card--cta h3 { color: #fff; }
.focus__card--cta p { color: rgba(255,255,255,0.74); margin-bottom: 22px; }
.focus__note {
  text-align: center;
  margin-top: 56px;
  font-size: 1rem;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------- PROOF (DARK) --------------------------- */
.section--dark .eyebrow--light {}
.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.proof__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  display: flex;
  flex-direction: column;
}
.proof__card:hover {
  transform: translateY(-4px);
  border-color: rgba(151, 150, 150, 0.4);
  background: rgba(151, 150, 150, 0.04);
}
.proof__tag {
  display: inline-block;
  background: rgba(151, 150, 150, 0.15);
  color: #BFBFBF;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.proof__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}
.proof__card p {
  font-size: 0.95rem;
  color: #BFBFBF;
  line-height: 1.65;
}
.proof__card p strong { color: #fff; }
.proof__result {
  margin-top: auto;
  padding-top: 20px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--serif);
  font-size: 1rem;
  color: #BFBFBF;
  font-weight: 700;
  line-height: 1.4;
}
.proof__close {
  text-align: center;
  margin-top: 56px;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: #fff;
  font-style: italic;
}

/* --------------------------- CALL --------------------------- */
.container--narrow { max-width: 820px; }
.section__head--left { text-align: left; max-width: 100%; }
.section__title--left { text-align: left !important; }

.call-prose {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.call-prose p {
  line-height: 1.78;
  margin-bottom: 16px;
}
.call-prose .lead {
  font-size: 1.18rem;
  color: var(--ink-2);
  margin-bottom: 22px;
  font-weight: 400;
}
.call-prose__promise {
  margin-top: 24px !important;
  padding: 20px 24px;
  background: var(--accent-50);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--ink) !important;
  line-height: 1.45;
}
.call-prose__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.call-prose__secondary {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 620px;
}
.call-prose__secondary a {
  color: var(--accent-700);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.call {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.call__copy { font-size: 1.02rem; color: var(--ink-soft); }
.call__copy p { line-height: 1.75; }
.call__promise {
  margin-top: 28px !important;
  padding: 18px 22px;
  background: var(--accent-50);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
}

.call__panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.call__panel-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.checklist li {
  display: flex;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.checklist__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 900;
  margin-top: 2px;
}
.checklist--no { padding-top: 16px; border-top: 1px dashed var(--line); }
.checklist--no li { color: var(--ink-soft); }
.checklist__x {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--line-soft);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 900;
  margin-top: 2px;
}
.call__cta { width: 100%; margin-top: 8px; }
.call__email {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.call__email a { color: var(--accent-700); font-weight: 700; }
.call__email a:hover { text-decoration: underline; }

/* --------------------------- SERVICES --------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 34px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(151, 150, 150, 0.4);
}
.service--featured {
  border-color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--accent-50) 100%);
  box-shadow: var(--shadow-md);
}
.service__badge {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.service__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.service__num {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--accent-700);
  font-weight: 700;
  background: var(--accent-50);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.service__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.service p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.service__fit {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-2);
  font-style: italic;
}

/* --------------------------- FINAL CTA --------------------------- */
.finalcta {
  background: var(--bg-alt);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.finalcta__inner {
  position: relative;
  background: linear-gradient(135deg, #1B1B1B 0%, #313030 100%);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 7vw, 80px) clamp(28px, 6vw, 80px);
  overflow: hidden;
  color: #fff;
}
.finalcta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.finalcta__blob {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 150, 150, 0.4) 0%, rgba(177, 177, 177, 0.18) 50%, transparent 70%);
  filter: blur(70px);
  top: -30%;
  right: -20%;
}
.finalcta__content {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.finalcta__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15;
  margin: 14px 0 22px;
  color: #fff;
  letter-spacing: -0.01em;
}
.finalcta__body {
  font-size: 1.05rem;
  color: #B1B1B1;
  line-height: 1.7;
  margin-bottom: 14px !important;
}
.finalcta__body strong { color: #fff; }
.finalcta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 36px 0 24px;
}
.finalcta__alt {
  font-size: 0.9rem;
  color: #A4A4A4;
  margin-top: 12px !important;
}
.finalcta__alt a {
  color: #BFBFBF;
  font-weight: 700;
}
.finalcta__alt a:hover { text-decoration: underline; }

/* --------------------------- FOOTER --------------------------- */
.footer {
  background: #1B1B1B;
  color: #BFBFBF;
  padding: clamp(60px, 8vw, 90px) 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand { max-width: 380px; }
.footer__logo {
  height: 42px;
  width: auto;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer__tagline {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 8px;
}
.footer__principles {
  font-size: 0.9rem;
  color: #A4A4A4;
}
.footer__col h4 {
  color: #fff;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: #BFBFBF;
  font-size: 0.94rem;
  transition: color 0.15s ease;
}
.footer__col a:hover { color: #BFBFBF; }
.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.86rem;
  color: #A4A4A4;
}
.footer__bottom-tag {
  font-family: var(--serif);
  font-style: italic;
  color: #BFBFBF;
}

/* --------------------------- RESPONSIVE --------------------------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { min-height: 360px; }
  .hero__content { max-width: 100%; }
  .problem__layout { grid-template-columns: 1fr; gap: 60px; }
  .problem__visual { min-height: 460px; max-width: 480px; margin: 0 auto; }
  .problem__left { max-width: 100%; }
  .approach__layout { grid-template-columns: 1fr; }
  .approach__left { max-width: 100%; }
  .founder { position: static; max-width: 420px; margin: 0 auto; }
  .call { grid-template-columns: 1fr; }
  .call__panel { position: static; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .focus { grid-template-columns: repeat(2, 1fr); }
  .proof { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  /* Header */
  .header__nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 16px var(--gutter);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: transform 0.25s ease, opacity 0.2s ease, visibility 0.2s ease;
  }
  .header__nav--open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .header__link {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .header__link:last-child { border-bottom: 0; }
  .header__link::after { display: none; }
  .header__cta { display: none; }
  .header__menu-btn { display: block; }

  /* Hero */
  .hero { padding: 56px 0 72px; }
  .hero__visual { min-height: 320px; }
  .hero__panel { transform: none; }
  .hero__chip--1 { left: 0; top: 0; }
  .hero__chip--2 { right: 0; bottom: 0; }
  .hero__meta-divider { display: none; }
  .hero__meta { gap: 18px 24px; flex-wrap: wrap; }
  .hero__meta-item { flex: 0 1 auto; }

  /* Problem */
  .problem__visual { min-height: 480px; }
  .agenda { transform: none; }
  .agenda__sticky--1 { left: 0; top: 0; }
  .agenda__sticky--2 { right: 0; bottom: 0; }
  .agenda__chip { display: none; }

  /* Approach */
  .pillars { grid-template-columns: 1fr; gap: 10px; }
  .approach__close { font-size: 1rem; }
  .approach__actions { flex-direction: column; align-items: flex-start; }

  /* Process */
  .process { grid-template-columns: 1fr; }

  /* Focus */
  .focus { grid-template-columns: 1fr; }

  /* Trust */
  .marquee__logo { height: 42px; }
  .marquee__group { gap: 40px; padding: 0 22px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: auto; }

  /* CTAs */
  .hero__ctas .btn,
  .finalcta__actions .btn { width: 100%; }

  .section__title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .hero__title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero__title-line { white-space: normal; }
}

@media (max-width: 480px) {
  .badge { font-size: 0.78rem; padding: 7px 12px; }
  .service { padding: 28px 22px; }
  .focus__card { padding: 26px 22px; }
  .process__step { padding: 24px 20px; }
  .finalcta__inner { padding: 40px 22px; }
}

/* --------------------------- A11Y --------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
