/* MarketingMoz — Shared base CSS
 * Extracted by KFR SafeFix Batch B.
 * Page-specific CSS remains inline per page.
 */


:root {
  --ink: #0A0F1F; --ink-2: #141A30; --ink-soft: #2A3149;
  --paper: #FAFAF7; --paper-2: #F2F0E8; --paper-3: #E8E5D8;
  --brand: #FF4D2E; --brand-2: #E63D1F; --brand-soft: #FFE8E1;
  --brand-text: #B53814; --brand-text-strong: #9C2A11; /* WCAG AA brand text on paper (5.67:1 / 7.29:1) */
  --lime: #C6F432; --lime-2: #B5E029;
  --text: #1A1F33; --text-muted: #5A5F73; --text-soft: #666D80;
  --border: #DAD7C8; --border-soft: #E8E5D8;
  --font-display: "Bricolage Grotesque", "Helvetica Neue", system-ui, sans-serif;
  --font-body: "Manrope", "Helvetica Neue", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --container: 1280px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --radius-sm: 6px; --radius: 14px; --radius-lg: 24px; --radius-xl: 36px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  /* scroll-behavior: smooth REMOVED.
   * Reason: documented iOS Safari bug where smooth scroll-behavior + sticky
   * header + tall content causes "stuck" scroll feel. Use auto (browser default,
   * instant scroll) which scrolls immediately. JavaScript still uses smooth
   * for anchor links via scrollIntoView({behavior:'smooth'}). */
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  text-size-adjust: 100%;
  scroll-padding-top: 88px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }
button:focus-visible, a:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}
@supports (padding: max(0px)) {
  body { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
}
body {
  font-family: var(--font-body); font-size: 16px; line-height: 1.65;
  color: var(--text); background: var(--paper);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
ul, ol { padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--brand); color: var(--ink); } /* WCAG AA fix v1.5 */

.skip-link { position: absolute; top: -100px; left: 1rem; z-index: 9999; background: var(--ink); color: var(--paper); padding: 0.75rem 1.25rem; border-radius: var(--radius-sm); font-weight: 600; }
.skip-link:focus { top: 1rem; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
.eyebrow { font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-text); display: inline-flex; align-items: center; gap: 0.5rem; }
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--brand); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
section { position: relative; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--paper); }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.95rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem; transition: all 0.25s var(--ease); white-space: nowrap; border: 1.5px solid transparent; }
.btn--primary { background: var(--brand); color: var(--ink); border-color: var(--brand-text); }
.btn--primary:hover { background: var(--brand-2); border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(255,77,46,0.45); }
.btn--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--ink:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(10,15,31,0.35); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--lime { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.btn--lime:hover { background: var(--lime-2); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.topbar { background: var(--ink); color: var(--paper); font-size: 0.82rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(250,250,247,0.08); }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar__contacts { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.topbar__contacts a { display: inline-flex; align-items: center; gap: 0.4rem; color: rgba(250,250,247,0.85); font-weight: 500; }
.topbar__contacts a:hover { color: var(--lime); }
.topbar__contacts svg { width: 14px; height: 14px; opacity: 0.7; }
.lang-switcher { display: inline-flex; align-items: center; background: rgba(250,250,247,0.08); border-radius: 999px; padding: 3px; gap: 2px; }
.lang-switcher button { font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 999px; color: rgba(250,250,247,0.7); transition: all 0.2s var(--ease); }
.lang-switcher button.is-active { background: var(--paper); color: var(--ink); }

.header { background: var(--paper); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-soft); transition: box-shadow 0.3s var(--ease); }
.header.is-scrolled { box-shadow: 0 1px 0 var(--border-soft), 0 8px 24px -16px rgba(10,15,31,0.15); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem 0; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.03em; color: var(--ink); }
.brand__mark { display: inline-flex; width: 36px; height: 36px; background: var(--ink); border-radius: 8px; align-items: center; justify-content: center; transition: transform 0.3s var(--ease); }
.brand__moz { color: var(--brand-text); }
.brand:hover .brand__mark { transform: rotate(-5deg); }

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav__item { position: relative; }
.nav__link { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.6rem 0.95rem; font-weight: 600; font-size: 0.92rem; border-radius: 999px; color: var(--ink); white-space: nowrap; transition: all 0.2s var(--ease); }
.nav__link:hover { background: var(--paper-2); color: var(--brand-text); }
.nav__link svg { width: 12px; height: 12px; opacity: 0.6; transition: transform 0.2s var(--ease); }
.nav__item.is-open .nav__link svg, .nav__item[data-dropdown].is-open > .nav__link svg { transform: rotate(180deg); }
@media (hover: hover) and (pointer: fine) {
  .nav__item:hover .nav__link svg { transform: rotate(180deg); }
}

.dropdown { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px); min-width: 320px; background: var(--paper); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 0.5rem; box-shadow: 0 24px 48px -16px rgba(10,15,31,0.18); opacity: 0; visibility: hidden; transition: all 0.25s var(--ease); pointer-events: none; }
.nav__item.is-open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
@media (hover: hover) and (pointer: fine) {
  .nav__item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
}
.dropdown__link { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 0.85rem; border-radius: var(--radius-sm); transition: background 0.2s var(--ease); }
.dropdown__link:hover { background: var(--paper-2); }
.dropdown__link:hover .dropdown__title { color: var(--brand-text); }
.dropdown__icon { flex-shrink: 0; width: 32px; height: 32px; background: var(--paper-2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.82rem; font-weight: 600; color: var(--brand-text); transition: all 0.2s var(--ease); }
.dropdown__link:hover .dropdown__icon { background: var(--brand); color: var(--paper); }
.dropdown__text { display: flex; flex-direction: column; gap: 2px; }
.dropdown__title { font-weight: 600; font-size: 0.92rem; color: var(--ink); transition: color 0.2s var(--ease); }
.dropdown__desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

.header__cta { display: flex; gap: 0.5rem; align-items: center; }
.header__cta .btn { padding: 0.7rem 1.2rem; font-size: 0.88rem; }
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 999px; background: var(--paper-2); }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: all 0.25s var(--ease); }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); transition: all 0.25s var(--ease); }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle.is-active span { background: transparent; }
.menu-toggle.is-active span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-active span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1100px) {
  .nav, .header__cta { display: none; }
  .menu-toggle { display: inline-flex; }
}

.drawer { position: fixed; top: 0; right: 0; width: min(420px, 100%); height: 100dvh; background: var(--paper); z-index: 200; padding: 1.5rem; overflow-y: auto; transform: translateX(100%); transition: transform 0.35s var(--ease); display: flex; flex-direction: column; pointer-events: none; visibility: hidden; }
.drawer.is-open { transform: translateX(0); box-shadow: -24px 0 48px -16px rgba(10,15,31,0.25); pointer-events: auto; visibility: visible; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.drawer__close { width: 44px; height: 44px; border-radius: 999px; background: var(--paper-2); display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.drawer__nav { display: flex; flex-direction: column; gap: 0.25rem; }
.drawer__nav a, .drawer__nav button.drawer__group { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.1rem; font-weight: 600; font-size: 1.05rem; border-radius: var(--radius); color: var(--ink); text-align: left; width: 100%; }
.drawer__nav a:hover, .drawer__nav button:hover { background: var(--paper-2); }
.drawer__sub { display: none; flex-direction: column; gap: 0.1rem; padding-left: 0.5rem; margin: 0.25rem 0 0.5rem; }
.drawer__sub.is-open { display: flex; }
.drawer__sub a { font-size: 0.95rem; padding: 0.7rem 1.1rem; color: var(--text-muted); }
.drawer__sub a:hover { color: var(--brand-text); background: var(--paper-2); }
.drawer__group svg { transition: transform 0.25s var(--ease); }
.drawer__group.is-open svg { transform: rotate(180deg); }
.drawer__cta { margin-top: auto; padding-top: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.drawer__cta .btn { justify-content: center; }

/* Drawer mobile language switcher (KFR v1.2) */
.drawer__lang { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.25rem; padding: 0.85rem 1.1rem; background: var(--paper-2); border: 1px solid var(--border-soft); border-radius: var(--radius); }
.drawer__lang-label { font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.lang-switcher--drawer { background: var(--ink); padding: 4px; gap: 3px; }
.lang-switcher--drawer button { color: rgba(250,250,247,0.6); padding: 6px 14px; font-size: 0.78rem; min-height: 32px; }
.lang-switcher--drawer button.is-active { background: var(--paper); color: var(--ink); }
.lang-switcher--drawer button:hover:not(.is-active) { color: rgba(250,250,247,0.9); }
.drawer-backdrop { position: fixed; inset: 0; background: rgba(10,15,31,0.5); z-index: 150; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease); }
.drawer-backdrop.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

/* Body scroll lock when drawer is open — iOS-compatible.
 * Uses position:fixed instead of overflow:hidden because iOS Safari's
 * overflow:hidden on body DOES NOT prevent scrolling. position:fixed +
 * negative top (= saved scroll) is the standard iOS-safe pattern. */
body.is-drawer-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.hero { position: relative; padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem); background: radial-gradient(ellipse at top right, rgba(255,77,46,0.08) 0%, transparent 50%), radial-gradient(ellipse at bottom left, rgba(198,244,50,0.1) 0%, transparent 50%), var(--paper); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--border-soft) 1px, transparent 1px), linear-gradient(90deg, var(--border-soft) 1px, transparent 1px); background-size: 64px 64px; opacity: 0.4; mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%); pointer-events: none; }
.hero__inner { position: relative; }
.hero__head { max-width: 920px; }
.hero__title { font-size: clamp(2.5rem, 6.5vw, 5.5rem); letter-spacing: -0.035em; margin-top: 1.25rem; font-weight: 700; }
.hero__title em { font-style: italic; font-family: "Bricolage Grotesque", serif; color: var(--brand-text); font-weight: 600; position: relative; white-space: nowrap; }
.hero__title em::after { content: ""; position: absolute; bottom: 0.05em; left: 0; right: 0; height: 0.08em; background: var(--lime); z-index: -1; }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--text-muted); max-width: 720px; margin-top: 1.75rem; line-height: 1.55; }
.hero__cta { display: flex; gap: 0.75rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero__meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: 2rem; border-top: 1px solid var(--border-soft); }
.hero__meta-item { display: flex; flex-direction: column; gap: 0.4rem; }
.hero__meta-num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.hero__meta-num span { color: var(--brand-text); }
.hero__meta-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
@media (max-width: 720px) { .hero__meta { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

.marquee { background: var(--ink); color: var(--paper); padding: 1.25rem 0; overflow: hidden; border-top: 1px solid var(--ink-2); border-bottom: 1px solid var(--ink-2); }
.marquee__track { display: flex; gap: 3rem; animation: scroll-marquee 40s linear infinite; white-space: nowrap; width: max-content; }
.marquee__item { display: inline-flex; align-items: center; gap: 0.75rem; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.1rem, 2vw, 1.6rem); letter-spacing: -0.02em; }
.marquee__item span:first-child { color: var(--brand-text); }
.marquee__item::after { content: "★"; margin-left: 3rem; color: var(--lime); }
@keyframes scroll-marquee { to { transform: translateX(-50%); } }

.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); letter-spacing: -0.03em; margin-top: 1rem; }
.section-head h2 em { font-style: italic; color: var(--brand-text); font-weight: 600; }
.section-head__intro { color: var(--text-muted); font-size: 1.05rem; }
@media (max-width: 720px) { .section-head { grid-template-columns: 1fr; gap: 1.25rem; } }

.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; margin-top: 3rem; }
.svc-card { background: var(--paper-2); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 1rem; transition: all 0.3s var(--ease); position: relative; overflow: hidden; isolation: isolate; min-height: 240px; }
.svc-card::before { content: ""; position: absolute; inset: -1px; background: linear-gradient(135deg, transparent 60%, rgba(255,77,46,0.1)); opacity: 0; transition: opacity 0.3s var(--ease); z-index: -1; border-radius: inherit; }
.svc-card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: 0 24px 48px -20px rgba(10,15,31,0.2); }
.svc-card:hover::before { opacity: 1; }
.svc-card--feature { grid-column: span 6; background: var(--ink); color: var(--paper); border-color: var(--ink); }
.svc-card--feature h3 { color: var(--paper); }
.svc-card--feature .svc-card__num { color: var(--brand-text); }
.svc-card--feature .svc-card__desc { color: rgba(250,250,247,0.7); }
.svc-card--feature .svc-card__cta { color: var(--lime); }
.svc-card--feature::before { background: linear-gradient(135deg, transparent 50%, rgba(255,77,46,0.2)); }
.svc-card--feature:hover { transform: translateY(-4px); border-color: var(--brand-text); }
.svc-card--lime { background: var(--lime); border-color: var(--lime); }
.svc-card--lime:hover { border-color: var(--ink); }
.svc-card--span-3 { grid-column: span 3; }
.svc-card--span-4 { grid-column: span 4; }
.svc-card--span-6 { grid-column: span 6; }
.svc-card__num { font-family: var(--font-mono); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; color: var(--brand-text); }
.svc-card h3 { font-size: clamp(1.3rem, 1.8vw, 1.65rem); letter-spacing: -0.02em; font-weight: 700; line-height: 1.15; }
.svc-card__desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.55; }
.svc-card__cta { margin-top: auto; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--brand-text); }
.svc-card__cta .arrow { transition: transform 0.25s var(--ease); }
.svc-card:hover .svc-card__cta .arrow { transform: translateX(4px); }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(6, 1fr); }
  .svc-card--span-3, .svc-card--span-4, .svc-card--span-6, .svc-card--feature { grid-column: span 3; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .svc-card, .svc-card--feature, .svc-card--span-3, .svc-card--span-4, .svc-card--span-6 { grid-column: span 1; }
}

.service { position: relative; border-top: 1px solid var(--border-soft); }
.service:nth-of-type(even) { background: var(--paper-2); }
.service__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.service__head { position: sticky; top: 110px; }
@media (max-width: 900px) {
  .service__head { position: static; top: auto; }
}
.service__num { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; color: var(--brand-text); display: inline-flex; align-items: center; gap: 0.5rem; }
.service__num::before { content: ""; width: 28px; height: 1px; background: var(--brand); }
.service__title { font-size: clamp(1.85rem, 4vw, 3rem); letter-spacing: -0.03em; margin-top: 1rem; line-height: 1.05; }
.service__title em { font-style: italic; color: var(--brand-text); }
.service__tagline { color: var(--text-muted); font-size: 1.05rem; margin-top: 1.25rem; line-height: 1.55; }
.service__body { display: flex; flex-direction: column; gap: 2.5rem; }
.service__lede { font-size: clamp(1.1rem, 1.5vw, 1.25rem); font-weight: 500; color: var(--ink); line-height: 1.55; letter-spacing: -0.01em; border-left: 3px solid var(--brand); padding-left: 1.5rem; }
.service__block h3 { font-size: 1.25rem; letter-spacing: -0.015em; font-weight: 700; margin-bottom: 0.75rem; display: inline-flex; align-items: center; gap: 0.6rem; }
.service__block h3::before { content: ""; width: 8px; height: 8px; background: var(--brand); border-radius: 2px; }
.service__block p { color: var(--text); line-height: 1.7; }
.service__block p + p { margin-top: 0.75rem; }
.service__list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.service__list li { position: relative; padding-left: 1.75rem; line-height: 1.55; }
.service__list li::before { content: "→"; position: absolute; left: 0; top: 0; color: var(--brand-text); font-weight: 700; }

.steps { list-style: none; display: flex; flex-direction: column; gap: 0; counter-reset: step; }
.steps li { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1.25rem; padding: 1.25rem 0; border-top: 1px dashed var(--border); counter-increment: step; align-items: start; }
.steps li:first-child { border-top: 0; padding-top: 0; }
.steps li::before { content: counter(step, decimal-leading-zero); font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600; color: var(--paper); background: var(--ink); padding: 0.35rem 0.6rem; border-radius: 999px; letter-spacing: 0.05em; height: fit-content; }
.steps strong { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--ink); letter-spacing: -0.015em; margin-bottom: 0.3rem; overflow-wrap: break-word; word-break: break-word; }
.steps p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; overflow-wrap: break-word; word-break: break-word; }

@media (max-width: 900px) {
  .service__inner { grid-template-columns: 1fr; gap: 2rem; }
  .service__head { position: static; }
}

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.chip { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--paper); border: 1px solid var(--border); padding: 0.45rem 0.85rem; border-radius: 999px; font-size: 0.82rem; font-weight: 500; color: var(--text); font-family: var(--font-mono); }
.chip__dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brand); }

.faq { margin-top: 1rem; }
.faq__item { border-top: 1px solid var(--border); }
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 0; text-align: left; font-weight: 600; font-size: 1rem; color: var(--ink); font-family: var(--font-display); letter-spacing: -0.01em; }
.faq__q span:last-child { flex-shrink: 0; width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 400; transition: all 0.2s var(--ease); background: var(--paper); }
.faq__item.is-open .faq__q span:last-child { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s var(--ease); color: var(--text-muted); line-height: 1.6; }
.faq__item.is-open .faq__a { max-height: 800px; padding: 0 0 1.4rem; }

.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.why__card { background: var(--ink-2); border: 1px solid rgba(250,250,247,0.08); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; transition: all 0.3s var(--ease); min-height: 300px; }
.why__card:hover { background: var(--ink-soft); transform: translateY(-3px); border-color: var(--brand-text); }
.why__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,77,46,0.15); color: var(--brand-text); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em; }
.why__card h3 { font-size: 1.4rem; letter-spacing: -0.02em; color: var(--paper); font-weight: 700; }
.why__card p { color: rgba(250,250,247,0.7); line-height: 1.6; font-size: 0.95rem; margin-top: auto; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; } }

.approach { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; margin-top: 2.5rem; }
.approach__visual { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); border-radius: var(--radius-xl); padding: 3rem; position: relative; overflow: hidden; min-height: 460px; display: flex; flex-direction: column; justify-content: space-between; color: var(--paper); }
.approach__visual::before { content: ""; position: absolute; width: 220px; height: 220px; background: radial-gradient(circle, var(--brand) 0%, transparent 70%); top: -50px; right: -50px; opacity: 0.4; filter: blur(20px); }
.approach__visual::after { content: ""; position: absolute; width: 180px; height: 180px; background: radial-gradient(circle, var(--lime) 0%, transparent 70%); bottom: -40px; left: -40px; opacity: 0.25; filter: blur(16px); }
.approach__quote { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2.1rem); letter-spacing: -0.02em; line-height: 1.2; font-weight: 600; position: relative; z-index: 1; }
.approach__quote em { color: var(--brand-text); font-style: italic; }
.approach__sig { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 0.4rem; border-top: 1px solid rgba(250,250,247,0.15); padding-top: 1.5rem; }
.approach__sig-name { font-weight: 700; }
.approach__sig-role { color: rgba(250,250,247,0.6); font-size: 0.9rem; }
.approach__steps { display: flex; flex-direction: column; gap: 1rem; }
.approach__step { background: var(--paper); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 1.5rem; display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; transition: all 0.25s var(--ease); align-items: start; }
.approach__step:hover { border-color: var(--brand-text); transform: translateX(4px); }
.approach__step-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--brand-text); letter-spacing: -0.02em; font-style: italic; }
.approach__step-text strong { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--ink); letter-spacing: -0.015em; margin-bottom: 0.25rem; }
.approach__step-text p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; }
@media (max-width: 900px) { .approach { grid-template-columns: 1fr; } }

.contact-section { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.contact-section::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(250,250,247,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(250,250,247,0.04) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; opacity: 0.6; mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%); }
.contact { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 5rem); position: relative; z-index: 1; }
.contact h2 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.035em; color: var(--paper); }
.contact h2 em { font-style: italic; color: var(--brand-text); }
.contact__lead { font-size: 1.15rem; color: rgba(250,250,247,0.75); margin-top: 1.5rem; max-width: 560px; line-height: 1.55; }
.contact__methods { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact__method { display: flex; align-items: center; gap: 1.25rem; padding: 1.25rem 0; border-top: 1px solid rgba(250,250,247,0.12); transition: all 0.2s var(--ease); }
.contact__method:last-child { border-bottom: 1px solid rgba(250,250,247,0.12); }
.contact__method:hover { transform: translateX(6px); }
.contact__method-icon { flex-shrink: 0; width: 56px; height: 56px; background: var(--ink-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-text); transition: all 0.25s var(--ease); border: 1px solid rgba(250,250,247,0.1); }
.contact__method:hover .contact__method-icon { background: var(--brand); color: var(--paper); border-color: var(--brand-text); }
.contact__method svg { width: 22px; height: 22px; }
.contact__method-text { display: flex; flex-direction: column; gap: 0.15rem; flex: 1; }
.contact__method-label { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,250,247,0.5); }
.contact__method-value { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; letter-spacing: -0.02em; color: var(--paper); }

.contact-map { background: var(--ink-2); border: 1px solid rgba(250,250,247,0.1); border-radius: var(--radius-xl); padding: clamp(1.75rem, 3vw, 2.5rem); display: flex; flex-direction: column; gap: 1rem; }
.contact-map__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; color: var(--paper); }
.contact-map__sub { color: rgba(250,250,247,0.6); font-size: 0.95rem; line-height: 1.55; }
.contact-map__embed { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid rgba(250,250,247,0.12); background: var(--ink); }
.contact-map__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
@supports not (aspect-ratio: 4 / 3) { .contact-map__embed { padding-top: 75%; height: 0; } }
.contact-map__note { font-size: 0.78rem; color: rgba(250,250,247,0.55); line-height: 1.55; }
.contact-map__note a { color: var(--paper); text-decoration: underline; text-underline-offset: 2px; }
.contact-map__note a:hover { color: var(--brand-soft); }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

.footer { background: var(--ink); color: var(--paper); border-top: 1px solid var(--ink-2); padding: clamp(3rem, 5vw, 4.5rem) 0 2rem; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(250,250,247,0.08); }
.footer__col h2 { font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,250,247,0.5); margin-bottom: 1.25rem; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col a { color: rgba(250,250,247,0.85); font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--brand-text); }
.footer__brand .brand { color: var(--paper); }
.footer__brand .brand__mark { background: var(--paper); }
.footer__about { color: rgba(250,250,247,0.6); font-size: 0.92rem; line-height: 1.6; max-width: 360px; margin-top: 1.25rem; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; font-size: 0.82rem; color: rgba(250,250,247,0.5); }
.footer__bottom a { color: rgba(250,250,247,0.7); }
.footer__bottom a:hover { color: var(--brand-text); }
.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) { .footer__top { grid-template-columns: 1fr; } }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Mobile/touch devices: disable reveal animation entirely.
 * Reason: if IntersectionObserver fails to fire on first paint (iOS Safari
 * viewport calc bug during URL bar transition), elements stay at opacity:0
 * with transform applied. This creates composited layers that capture touch
 * events and cause "stuck" scroll behavior. Show content immediately. */
@media (hover: none) and (pointer: coarse) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* ============================================================
   PERFORMANCE OPTIMIZATIONS
   ============================================================ */
/* content-visibility: auto disabled on mobile/touch devices.
 * REASON: known iOS Safari 16+ bug where content-visibility:auto with
 * contain-intrinsic-size causes "stuck" scroll behavior — when user scrolls,
 * content "pops in" but scroll position calculation is wrong, causing
 * scroll lock or jumpy behavior. Desktop performance is fine without it
 * (these sections render fast with modern hardware). */
@media (hover: hover) and (pointer: fine) {
  .section, .service, .why, .approach, .footer { content-visibility: auto; contain-intrinsic-size: auto 800px; }
}
.hero { content-visibility: visible; }
.marquee__track { will-change: transform; }
.svc-card, .why__card, .approach__step { will-change: auto; }
.svc-card:hover, .why__card:hover, .approach__step:hover { will-change: transform; }
img, svg, video { contain: layout; }

/* ============================================================
   MOBILE-FIRST RESPONSIVE REFINEMENTS
   ============================================================ */
/* Touch targets minimum 44x44 (Apple HIG) / 48x48 (Material) */
@media (hover: none) and (pointer: coarse) {
  .nav__link, .dropdown__link, .topbar__contacts a, .footer__col a,
  .faq__q, .drawer__nav a, .drawer__group { min-height: 44px; }
  .btn { min-height: 48px; }
  .menu-toggle, .drawer__close { min-width: 48px; min-height: 48px; }
  .lang-switcher button { min-height: 44px; min-width: 44px; padding: 8px 12px; }
}

/* Tablet refinements */
@media (max-width: 1100px) {
  .hero__title { font-size: clamp(2.25rem, 5.5vw, 4.25rem); }
  .service__inner { gap: clamp(1.5rem, 3vw, 3rem); }
}

/* Small tablet / large phone */
@media (max-width: 900px) {
  .topbar__contacts { gap: 1rem; font-size: 0.78rem; }
  .topbar__contacts span { display: none; }
  .topbar__contacts a:first-child::after { content: attr(href); content: "Καλέστε μας"; }
  .header__inner { padding: 0.85rem 0; }
  .hero { padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 5vw, 4rem); }
  .hero__title { font-size: clamp(2rem, 7vw, 3.5rem); }
  .hero__sub { font-size: 1rem; line-height: 1.6; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .hero__cta .btn { justify-content: center; width: 100%; }
  .section { padding: clamp(3rem, 6vw, 5rem) 0; }
  .section-head h2 { font-size: clamp(1.75rem, 5.5vw, 2.5rem); }
  .service__title { font-size: clamp(1.6rem, 5vw, 2.25rem); }
  .service__lede { padding-left: 1rem; font-size: 1.05rem; }
  .steps li { gap: 1rem; padding: 1rem 0; }
  .approach__visual { padding: 2rem 1.75rem; min-height: auto; }
  .approach__quote { font-size: clamp(1.2rem, 4vw, 1.5rem); }
  .contact h2 { font-size: clamp(2rem, 7vw, 3rem); }
  .contact-map { padding: 1.75rem 1.5rem; }
  .contact-map__embed { aspect-ratio: 1 / 1; }
}

/* Phone refinements */
@media (max-width: 600px) {
  :root { --gutter: 1.1rem; }
  .topbar__contacts { display: flex; gap: 1rem; }
  .topbar__contacts a:nth-child(2) span { display: none; }
  .topbar__contacts a:nth-child(2)::after { content: ""; }
  .hero__title { font-size: clamp(1.85rem, 8vw, 2.6rem); letter-spacing: -0.025em; }
  .hero__meta { padding-top: 1.5rem; gap: 1.25rem 1rem; }
  .hero__meta-num { font-size: 1.6rem; }
  .hero__meta-label { font-size: 0.78rem; }
  .marquee__item { font-size: 1rem; }
  .marquee__item::after { margin-left: 2rem; }
  .svc-card { padding: 1.6rem 1.4rem; min-height: 200px; }
  .svc-card h3 { font-size: 1.2rem; }
  .service__num { font-size: 0.78rem; }
  .service__title { font-size: 1.7rem; line-height: 1.1; }
  .service__tagline { font-size: 0.98rem; }
  .service__lede { font-size: 1rem; padding-left: 0.85rem; border-left-width: 2px; }
  .service__block h3 { font-size: 1.1rem; }
  .steps strong { font-size: 1rem; }
  .steps p { font-size: 0.9rem; }
  .contact__method-value { font-size: clamp(1.05rem, 4vw, 1.3rem); word-break: break-word; }
  .footer { padding: 2.5rem 0 1.5rem; }
  .footer__top { gap: 2rem; padding-bottom: 2rem; }
  .footer__bottom { font-size: 0.78rem; flex-direction: column; align-items: flex-start; }
  .footer__legal { gap: 1rem; }
}

/* Very small phones */
@media (max-width: 360px) {
  :root { --gutter: 0.9rem; }
  .hero__title { font-size: 1.6rem; }
  .topbar { font-size: 0.82rem; }
  .brand { font-size: 1.15rem; }
}

/* Landscape phone */
@media (max-height: 480px) and (orientation: landscape) {
  .hero { padding: 2rem 0 2rem; }
  .hero__title { font-size: 1.85rem; }
  .hero__meta { display: none; }
  .drawer { padding: 1rem; }
}

/* Large screens — bigger container */
@media (min-width: 1500px) {
  :root { --container: 1360px; }
  .hero__title { font-size: clamp(3rem, 6.5vw, 6rem); }
}

/* ============================================================
   NEW SECTIONS — Stats, Process, Industries, Testimonials, FAQ
   ============================================================ */

/* Stats Strip */
.stats {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: var(--paper);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
}
.stat { display: flex; flex-direction: column; gap: 0.5rem; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--paper);
}
.stat__num sup { font-size: 0.55em; opacity: 0.85; vertical-align: super; }
.stat__label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(250,250,247,0.92);
  line-height: 1.4;
}
.stat__sub {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.7);
}
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.25rem; }
}

/* Process Methodology */
.process { background: var(--paper-2); border-top: 1px solid var(--border-soft); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.process__card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: all 0.3s var(--ease);
  position: relative;
}
.process__card:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: 0 16px 32px -16px rgba(10,15,31,0.18); }
.process__card-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--brand-text);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.process__card-num::before { content: ""; width: 24px; height: 1px; background: var(--brand); }
.process__card h3 {
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  font-weight: 700;
  line-height: 1.2;
}
.process__card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.process__card-meta {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}
@media (max-width: 1024px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .process__grid { grid-template-columns: 1fr; }
}

/* Industries */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.industry {
  background: var(--paper-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s var(--ease);
  isolation: isolate;
  position: relative;
  overflow: hidden;
}
.industry::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--brand-soft) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: -1;
}
.industry:hover { border-color: var(--brand-text); transform: translateY(-3px); }
.industry:hover::before { opacity: 1; }
.industry__icon {
  width: 44px; height: 44px;
  background: var(--paper);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-text);
  border: 1px solid var(--border-soft);
}
.industry h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.industry p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
@media (max-width: 900px) { .industries__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .industries__grid { grid-template-columns: 1fr; } }

/* Testimonials */
.testimonials { background: var(--ink); color: var(--paper); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--ink-2);
  border: 1px solid rgba(250,250,247,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s var(--ease);
}
.testimonial:hover { border-color: var(--brand-text); }
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: var(--paper);
  font-weight: 500;
  position: relative;
  padding-left: 1.5rem;
}
.testimonial__quote::before {
  content: "\201C";
  position: absolute;
  left: -0.25rem;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--brand-text);
  font-family: var(--font-display);
  line-height: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(250,250,247,0.08);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  background: var(--brand);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial__author-info { display: flex; flex-direction: column; gap: 1px; }
.testimonial__author-name { font-weight: 700; font-size: 0.95rem; color: var(--paper); }
.testimonial__author-role { font-size: 0.8rem; color: rgba(250,250,247,0.65); }
.testimonial__metric {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,77,46,0.12);
  border: 1px solid rgba(255,77,46,0.3);
  color: var(--brand-text);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  width: fit-content;
}
@media (max-width: 720px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* General FAQ Section */
.faq-section { background: var(--paper-2); }
.faq-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 2.5rem;
  align-items: start;
}
.faq-section__head { position: sticky; top: 110px; }
@media (max-width: 900px) {
  .faq-section__head { position: static; top: auto; }
}
.faq-section__head h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
.faq-section__head p { color: var(--text-muted); margin-top: 1.25rem; line-height: 1.6; }
.faq-list { background: var(--paper); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 0.5rem 1.5rem; }
.faq-list .faq__item:first-child { border-top: 0; }
.faq-list .faq__item:last-child { border-bottom: 0; }
@media (max-width: 900px) {
  .faq-section__inner { grid-template-columns: 1fr; }
  .faq-section__head { position: static; }
}

/* Tools showcase */
.tools-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.tool-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  transition: all 0.2s var(--ease);
}
.tool-pill:hover { border-color: var(--brand-text); color: var(--brand-text); transform: translateY(-1px); }

/* Final CTA banner */
.cta-banner {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  opacity: 0.25;
  filter: blur(60px);
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  color: var(--paper);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.025em;
}
.cta-banner h2 em { color: var(--brand-text); font-style: italic; }
.cta-banner p { color: rgba(250,250,247,0.75); font-size: 1.1rem; margin-top: 1rem; max-width: 540px; line-height: 1.5; }
.cta-banner__actions { display: flex; flex-direction: column; gap: 0.75rem; }
.cta-banner__actions .btn { justify-content: center; }
@media (max-width: 900px) {
  .cta-banner__inner { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: row; flex-wrap: wrap; }
  .cta-banner__actions .btn { flex: 1 1 200px; }
}

/* Smooth scroll-margin for anchor jumps */
section[id] { scroll-margin-top: 90px; }
@media (max-width: 600px) { section[id] { scroll-margin-top: 70px; } }

/* Print styles */
@media print {
  .topbar, .header, .drawer, .drawer-backdrop, .marquee, .footer__legal, .contact-map { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding: 1rem 0; page-break-inside: avoid; }
  a { color: #000; text-decoration: underline; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}

/* ============================================================
   SERVICE ENRICHMENT BLOCKS (Pitfalls / Outcomes / Investment)
   ============================================================ */
.service__alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  background: linear-gradient(135deg, #fff8f1 0%, #fef0e6 100%);
  border: 1px solid #fbd0b6;
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
}
.service__alert::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,77,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.service__alert-icon {
  width: 44px;
  height: 44px;
  background: var(--brand);
  color: var(--paper);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.service__alert-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.service__alert-content p, .service__alert-content li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.service__alert-content ul {
  list-style: none;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service__alert-content ul li {
  position: relative;
  padding-left: 1.25rem;
}
.service__alert-content ul li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--brand-text);
  font-weight: 700;
}

.service__outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.outcome {
  background: var(--paper-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all 0.25s var(--ease);
}
.outcome:hover { border-color: var(--ink); transform: translateY(-2px); }
.outcome__metric {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--brand-text);
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}
.outcome__metric small { font-size: 0.65em; color: var(--ink); font-weight: 600; }
.outcome__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.outcome__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 900px) { .service__outcomes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service__outcomes { grid-template-columns: 1fr; } }

.service__investment {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.service__investment::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  opacity: 0.15;
  filter: blur(50px);
}
.service__investment-text { position: relative; z-index: 1; }
.service__investment-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.service__investment-text p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(250,250,247,0.78);
}
.service__investment-ranges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.investment-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(250,250,247,0.15);
}
.investment-row:last-child { border-bottom: 0; }
.investment-row__label { font-size: 0.85rem; color: rgba(250,250,247,0.75); }
.investment-row__value {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--lime);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .service__investment { grid-template-columns: 1fr; padding: 1.5rem; }
}

/* Cross-link related services */
.service__related {
  background: var(--paper-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}
.service__related h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s var(--ease);
}
.related-link:hover { border-color: var(--brand-text); color: var(--brand-text); transform: translateY(-1px); }
.related-link::after { content: "→"; font-family: var(--font-mono); transition: transform 0.2s var(--ease); }
.related-link:hover::after { transform: translateX(2px); }

/* ============================================================
   MULTIPAGE-SPECIFIC: Breadcrumb, Page-Hero, Check-List
   ============================================================ */
.breadcrumb {
  padding: 1.25rem 0 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s var(--ease);
}
.breadcrumb a:hover { color: var(--brand-text); }
.breadcrumb [aria-current="page"] {
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.breadcrumb li span[aria-hidden="true"] {
  color: var(--text-soft);
  user-select: none;
}

.page-hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3.5rem);
  background: var(--paper);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero .container { max-width: 980px; }
.page-hero .eyebrow {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.page-hero__title em {
  font-style: italic;
  background: linear-gradient(120deg, transparent 0%, transparent 65%, var(--lime) 65%, var(--lime) 100%);
  background-size: 100% 100%;
  padding: 0 0.1em;
}
.page-hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 760px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .breadcrumb { padding-top: 0.85rem; font-size: 0.78rem; }
  .breadcrumb ol { gap: 0.35rem; }
  .page-hero__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .page-hero__sub { font-size: 1rem; }
}




/* ============================================================
   MOBILE POLISH (KFR Pass 3) — touch UX improvements
   ============================================================ */

/* Prevent horizontal scroll on mobile.
 * IMPORTANT: applied ONLY to body, NOT html!
 * html { overflow-x: hidden } on iOS Safari freezes vertical scrolling
 * when combined with sticky header + nested transforms. Confirmed v2.6 fix. */
body {
  overflow-x: clip; /* clip is better than hidden — doesn't create scroll context */
}
@supports not (overflow-x: clip) {
  body { overflow-x: hidden; }
}

/* Better tap targets — links/buttons in nav and footer */
@media (max-width: 720px) {
  .nav__link,
  .footer__link,
  .footer a,
  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .btn {
    min-height: 48px;
  }
}

/* Hover states only on devices that support hover */
@media (hover: none) {
  /* On touch devices, prevent sticky hover effects */
  .pain-card:hover,
  .audit-item:hover,
  .alt-option:hover,
  .quote-card:hover,
  .myth-card:hover,
  .industry-block:hover,
  .meta-highlight:hover,
  .reassurance:hover,
  .principle:hover,
  .discovery-topic:hover,
  .case-study:hover {
    transform: none;
    box-shadow: none;
  }
}

/* iOS Safari: prevent zoom on input focus by setting min font-size 16px */
@media (max-width: 720px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    font-size: 16px; /* MUST be 16px+ to prevent iOS zoom on focus */
  }
}

/* Smooth scroll only for desktop (hover-capable, fine pointer).
 * Mobile keeps default auto to avoid iOS Safari scroll lock. */
@media (prefers-reduced-motion: no-preference) and (hover: hover) and (pointer: fine) {
  html {
    scroll-behavior: smooth;
  }
}

/* Better text readability on mobile */
@media (max-width: 480px) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  /* Prevent text from being too small to read */
  p, li, span, div {
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }
}

/* Improve table responsiveness if any tables exist */
@media (max-width: 720px) {
  table {
    display: block;
    overflow-x: auto;
    max-width: 100%;
  }
}

/* Better focus visible for keyboard nav (a11y + touch) */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Sticky header — keep simple. Previously had translateZ(0) "fix" for iOS
 * rubber-band, but that creates a composite layer that can intercept touch
 * events and contribute to scroll-stuck behavior. Removed in v2.6. */

/* iOS Safari scroll fix v2.6 — minimal intervention approach
 * Previous attempts (touch-action: pan-y pinch-zoom, overscroll-behavior, 
 * -webkit-overflow-scrolling) sometimes BREAK iOS scroll instead of fixing it.
 * Modern iOS Safari handles scroll natively. Only intervention needed:
 * - Ensure html/body don't have height: 100% (would prevent scroll)
 * - Ensure no element has height: 100vh + overflow:hidden as page wrapper
 * - Ensure scroll-behavior is auto on iOS (smooth has known iOS bugs)
 */
html, body {
  height: auto;
  min-height: 100%;
  position: relative;
}

/* iOS Safari: smooth scroll-behavior has documented bugs with mobile rubber-band
   and can cause "stuck" feeling. Use auto (instant) on touch devices. */
@media (hover: none) and (pointer: coarse) {
  html {
    scroll-behavior: auto !important;
  }
}

/* Mobile: prevent any long word/URL from breaking layout */
@media (max-width: 720px) {
  p, li, span, a, strong, em, h1, h2, h3, h4, h5, h6, td, th {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  /* Long words like product names get hyphenation as last resort */
  p, li, .myth-card__claim, .myth-card__truth, .deliverable-item__desc, .industry-block__desc {
    hyphens: auto;
    -webkit-hyphens: auto;
  }
}

/* ============================================================
   KFR SafeFix additions (Step 10)
   ============================================================ */

/* (Form validation messages and GDPR consent CSS retired in v2.2 —
   contact form replaced with embedded Google Map.) */

/* --- Legal pages typography (Step 10) --- */
.legal {
  padding: 80px 0 100px;
}
.legal .section-head {
  text-align: left;
  margin-bottom: 40px;
  max-width: 760px;
}
.legal .page-h1 {
  font-family: var(--font-display, "Bricolage Grotesque", sans-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin: 8px 0 16px;
  color: var(--text-1, #0f172a);
}
.legal .section-head__intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2, #4b5563);
  margin-top: 16px;
}
.legal__body {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-2, #374151);
}
.legal__body h2 {
  font-family: var(--font-display, "Bricolage Grotesque", sans-serif);
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--text-1, #0f172a);
}
.legal__body p {
  margin: 0 0 14px;
}
.legal__body ul {
  list-style: disc;
  padding-left: 24px;
  margin: 8px 0 18px;
}
.legal__body ul li {
  margin: 6px 0;
}
.legal__body a {
  color: var(--brand, #1a4d8f);
  text-decoration: underline;
}
.legal__body a:hover { text-decoration: none; }
.legal__body strong { color: var(--text-1, #0f172a); }
.legal__body code {
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 14px;
  color: var(--text-1, #0f172a);
}
.legal__body em { color: var(--text-3, #6b7280); }
.legal__date {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border, #e5e7eb);
  font-size: 14px;
  color: var(--text-3, #6b7280);
  font-style: italic;
}
@media (max-width: 768px) {
  .legal { padding: 56px 0 72px; }
  .legal__body h2 { font-size: 20px; margin-top: 28px; }
}


/* ============================================================================
   v1.4 Mobile Readability Boost (KFR Pre-Delivery: WCAG AA target 14px+ for
   secondary text on small viewports. Desktop hierarchy preserved.)
   ============================================================================ */
@media (max-width: 720px) {
  /* Labels & eyebrows: 12.5px → 13.6px on mobile */
  .eyebrow,
  .topbar,
  .breadcrumb,
  .service__num,
  .stat__sub,
  .process__card-meta,
  .drawer__lang-label,
  .contact__method-label,
  .lang-switcher button,
  .lang-switcher--drawer button,
  .footer__col h2,
  .service__alert-icon,
  .contact-map__note,
  .footer__bottom,
  .testimonial__metric,
  .topbar__contacts,
  .dropdown__icon,
  .dropdown__desc,
  .svc-card__num,
  .hero__meta-label,
  .process__card-num,
  .industry__icon,
  .tool-pill,
  .service__related h3,
  .testimonial__author-role,
  .steps li::before,
  .check-list li::before {
    font-size: 0.85rem;
  }

  /* Captions & secondary text: 13.6px → 14.4px on mobile */
  .chip,
  .why__icon,
  .outcome__desc,
  .investment-row__label,
  .nav__link,
  .dropdown__title,
  .approach__step-text p,
  .footer__col a,
  .footer__about,
  .process__card p,
  .investment-row__value,
  .approach__sig-role,
  .industry p {
    font-size: 0.92rem;
  }

  /* Body text in steps & cards: 15.2px → 16px (full WCAG) */
  .steps p,
  .why__card p,
  .contact-map__sub,
  .stat__label,
  .testimonial__author-name,
  .service__alert-content p,
  .service__alert-content li,
  .outcome__label,
  .service__investment-text p,
  .check-list li,
  .svc-card__desc {
    font-size: 1rem;
  }

  /* (form inputs section retired — contact form removed in v2.2) */
}


/* ============================================================================
   v1.5 UI States Polish (KFR Pre-Delivery: missing UI states + safety nets)
   ============================================================================ */

/* Placeholder text — WCAG AA contrast (4.5:1 against paper input bg) */
input::placeholder,
textarea::placeholder {
  color: var(--text-muted);  /* #5A5F73, ratio 6.05:1 on paper */
  opacity: 1;                /* Firefox default 0.54 — make explicit */
}

/* Disabled state — clear visual differentiation */
.btn:disabled,
.btn[aria-disabled="true"],
button:disabled,
input:disabled,
textarea:disabled,
select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Long text safety: prevent layout breakage from very long words / URLs */
.legal__body,
.faq__a,
.service__block p,
.steps p,
.industry-card__desc,
.case-study__challenge,
.contact__lead,
.testimonial__quote {
  overflow-wrap: break-word;
  word-wrap: break-word;       /* legacy fallback */
  hyphens: auto;               /* Greek hyphenation supported in modern browsers */
}

/* Mobile-first: tap targets meeting WCAG 2.5.5 (44×44px) */
@media (hover: none) and (pointer: coarse) {
  .nav__link,
  .footer__col a,
  .drawer__nav a,
  .breadcrumb a,
  .related-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* ============================================================
   v2.4 — Missing component styles (KFR Deep Scan fix)
   42 BEM classes used in HTML but previously unstyled.
   Pages affected: contact, about, testimonials.
   ============================================================ */

/* contact.html — Alternative options grid (4 entry points) */
.alt-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.alt-option {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.alt-option:hover,
.alt-option:focus-visible {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 16px 32px -16px rgba(10, 15, 31, 0.18);
}
.alt-option:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
.alt-option__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-sm);
  align-self: flex-start;
}
.alt-option__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.alt-option__desc {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* contact.html — Discovery call topics list */
.discovery-topics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}
.discovery-topic {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.discovery-topic:hover {
  transform: translateX(2px);
  border-left-color: var(--ink);
}
.discovery-topic__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-text);
  background: var(--brand-soft);
  border-radius: 50%;
  letter-spacing: -0.02em;
}
.discovery-topic__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.discovery-topic__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.discovery-topic__desc {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* contact.html — Mini FAQ list */
.mini-faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.mini-faq__item {
  padding: 1.5rem 1.75rem;
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease);
}
.mini-faq__item:hover {
  border-color: var(--ink);
}
.mini-faq__q {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.75rem;
  line-height: 1.35;
}
.mini-faq__a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.mini-faq__a strong {
  color: var(--ink);
  font-weight: 600;
}

/* about.html — Evaluation grid (questions to ask agencies) */
.eval-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.eval-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.eval-item:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 12px 28px -16px rgba(10, 15, 31, 0.15);
}
.eval-item__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-text);
  padding: 0.35rem 0.75rem;
  background: var(--brand-soft);
  border-radius: var(--radius-sm);
  align-self: flex-start;
}
.eval-item__q {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
}
.eval-item__a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.eval-item__a strong {
  color: var(--ink);
  font-weight: 600;
}

/* testimonials.html — Industry breakdown grid */
.industry-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.industry-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.industry-block:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 16px 32px -16px rgba(10, 15, 31, 0.18);
}
.industry-block__head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.industry-block__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  padding: 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.industry-block__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 0.25rem;
}
.industry-block__count {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.02em;
}
.industry-block__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.industry-block__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}
.industry-metric {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: var(--paper-2);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  letter-spacing: -0.01em;
}

/* testimonials.html — Methodology steps */
.metrics-methodology {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  counter-reset: method-step;
}
.metric-method {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.metric-method:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}
.metric-method__step {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 0.35rem 0.85rem;
  background: var(--ink);
  border-radius: var(--radius-sm);
  align-self: flex-start;
}
.metric-method__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}
.metric-method__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Mobile refinements for new components */
@media (max-width: 600px) {
  .alt-options,
  .eval-grid,
  .industry-breakdown,
  .metrics-methodology {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .alt-option,
  .eval-item,
  .industry-block,
  .metric-method,
  .mini-faq__item {
    padding: 1.5rem 1.25rem;
  }
  .discovery-topic {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    padding: 1.25rem 1rem;
  }
  .discovery-topic__time {
    min-width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .industry-block__icon {
    min-width: 48px;
    height: 48px;
  }
  .industry-block__head {
    gap: 0.75rem;
  }
}

/* Print styles — when users print pricing/proposal pages */
@media print {
  .header, .topbar, .drawer, .drawer-backdrop, .menu-toggle, .footer__newsletter {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    word-wrap: break-word;
  }
}
