/* =========================================================
   Apex Studio — Banner-inspired design system
   ========================================================= */

:root {
  /* Colors — tuned to Banner's actual design tokens */
  --bg: #ffffff;
  --bg-muted: #f7f7f7;
  --bg-dark: #161f26;       /* heading navy, used as dark section bg */
  --bg-dark-2: #1c2733;     /* elevated card on dark surfaces */
  --text: #11100f;          /* warm near-black for body */
  --text-heading: #161f26;  /* navy for headings */
  --text-muted: #666666;
  --text-light: #aaaaaa;
  --border: #eeeeee;
  --border-strong: #cccccc;
  --accent: #f25e53;        /* coral (Banner's actual orange token) */
  --accent-hover: #e04a3f;
  --blue: #0c3054;
  --orange: #ff6b35;
  --black: #000000;
  --green-tint: #ecfdf3;
  --green: #027a48;

  /* Fonts */
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-heading: 'Lexend', 'Inter', system-ui, sans-serif;

  /* Radii */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 20px;

  /* Shadows — Banner's actual layered shadows */
  --shadow-sm: 0 1px 2px #0000000d;
  --shadow-md: 0 12px 16px -4px #00000014, 0 4px 6px -2px #00000008;
  --shadow-lg: 0 20px 24px -4px #00000014, 0 8px 8px -4px #00000008;
  --shadow-xl: 0 24px 48px -12px #0000002e;
  --shadow-2xl: 0 32px 64px -12px #00000024;

  /* Transitions */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --t-fast: .18s var(--ease);
  --t: .28s var(--ease);

  /* Layout */
  --container: 1200px;
  --container-narrow: 820px;
  --nav-h: 72px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}
h1 { letter-spacing: -0.035em; font-weight: 600; }
h2 { letter-spacing: -0.028em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); }

/* A11y utilities */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  background: var(--text-heading);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--r-md);
  z-index: 200;
  transform: translateY(-120%);
  transition: transform var(--t-fast);
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* =========================================================
   Shared typography
   ========================================================= */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow-light { color: #ff8d83; }

.section-title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.028em;
  margin-bottom: 16px;
  max-width: 780px;
  text-wrap: balance;
}
.section-title-light { color: #fff; }
.section-sub {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 56px;
}
.section-sub-light { color: #b5b8c2; }
.accent-text { color: var(--accent); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all var(--t-fast);
  white-space: nowrap;
  line-height: 1;
}
.btn-sm { padding: 9px 16px; font-size: 0.875rem; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }

.btn-primary {
  background: var(--text-heading);
  color: #fff;
  border-color: var(--text-heading);
}
.btn-primary:hover { background: #0b1419; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--text); background: var(--bg-muted); }

.btn-ghost {
  background: transparent;
  color: var(--text);
}
.btn-ghost:hover { background: var(--bg-muted); }

.btn-light {
  background: #fff;
  color: var(--text);
}
.btn-light:hover { background: #f2f2f2; transform: translateY(-1px); }

/* =========================================================
   Navbar
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.nav.scrolled {
  border-bottom-color: var(--border-strong);
  box-shadow: 0 1px 0 rgba(15, 17, 21, 0.03), 0 8px 24px -12px rgba(15, 17, 21, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--text-heading);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
/* Apex peak — outer white triangle */
.nav-logo-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #fff;
}
/* Inner coral accent peak (the "apex") */
.nav-logo-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid var(--accent);
}
.nav-logo-text { letter-spacing: -0.01em; }

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
}
.nav-links a:hover { color: var(--text); background: var(--bg-muted); }

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

.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
}
.nav-hamburger span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: #fff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t), opacity var(--t);
  z-index: 99;
  border-top: 1px solid var(--border);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  padding: 14px 12px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a.btn { margin-top: 16px; justify-content: center; border-bottom: 0; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding: 56px 0 0;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--bg-muted) 100%);
  overflow: hidden;
}
.hero-inner { padding-top: 24px; padding-bottom: 0; }
.hero-title {
  font-size: clamp(2.5rem, 5.6vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  text-wrap: balance;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub {
  font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  text-wrap: balance;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Browser mockup */
.hero-mockup {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(15, 17, 21, .06);
  background: #fff;
  transform: translateY(0);
  transition: transform .6s var(--ease);
}
.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #f4f5f7;
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d0d2d6;
}
.mockup-dot.red { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #27c93f; }
.mockup-url {
  margin-left: 14px;
  padding: 5px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.mockup-body {
  padding: 28px 36px 44px;
  background: #fff;
  text-align: left;
  min-height: 420px;
}
.mockup-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.mockup-brand { font-weight: 700; font-size: 1.05rem; color: #0d6efd; }
.mockup-menu { font-size: 0.8125rem; color: var(--text-muted); }
.mockup-hero { text-align: center; padding: 40px 20px 48px; }
.mockup-tag {
  display: inline-block;
  padding: 6px 14px;
  background: #eef4ff;
  color: #0d6efd;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.mockup-hero .mockup-h,
.mockup-hero h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.mockup-hero p { color: var(--text-muted); margin-bottom: 22px; font-size: 0.95rem; }
.mockup-hero-cta { display: flex; gap: 12px; justify-content: center; }
.mockup-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0d6efd;
  color: #fff;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.mockup-btn-ghost {
  display: inline-block;
  padding: 10px 16px;
  color: #0d6efd;
  font-size: 0.8125rem;
  font-weight: 600;
}
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.mockup-card {
  height: 80px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.mockup-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, .35) 50%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .8s var(--ease);
}
.hero-mockup:hover .mockup-glare { opacity: 1; }

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 0 72px;
  flex-wrap: wrap;
}
.stat { text-align: center; min-width: 140px; }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.stat-label { font-size: 0.875rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 36px; background: var(--border-strong); }

/* =========================================================
   Trust strip
   ========================================================= */
.trust-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.trust-copy {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.trust-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 36px;
}
.trust-logo {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
  opacity: .85;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.trust-logo:hover { opacity: 1; color: var(--text); }

/* =========================================================
   Pain points
   ========================================================= */
.pain { padding: 96px 0; background: var(--bg-muted); }
.pain .section-title { margin-bottom: 56px; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pain-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 20px;
}
.pain-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.pain-card p { color: var(--text-muted); font-size: 0.9375rem; }

/* =========================================================
   Dark feature bento
   ========================================================= */
.features-dark {
  padding: 112px 0;
  background: var(--bg-dark);
  color: #fff;
}
.features-dark-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.bento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.bento-card {
  background: var(--bg-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
}
.bento-large {
  grid-row: span 2;
}
.bento-copy h3 {
  color: #fff;
  font-size: 1.375rem;
  margin-bottom: 10px;
}
.bento-copy p { color: #b5b8c2; font-size: 0.9375rem; }

/* Bento visual: fake browser */
.bento-visual { flex: 1; display: flex; align-items: stretch; }
.bento-browser {
  width: 100%;
  background: #10131a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  overflow: hidden;
}
.bento-browser-chrome {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  background: #181c24;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.bento-browser-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.bento-bar {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2a2f3a, #1e222a);
}
.bento-bar-hero { height: 28px; width: 60%; background: linear-gradient(90deg, var(--accent), #ff8d83); opacity: .9; }
.bento-bar-wide { width: 80%; }
.bento-bar-mid { width: 45%; }
.bento-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 8px; }
.bento-tile { height: 48px; background: #1e222a; border-radius: 6px; }

/* Bento badge (metric) */
.bento-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(242, 94, 83, 0.14), rgba(242, 94, 83, 0.04));
  border: 1px solid rgba(242, 94, 83, 0.25);
  border-radius: var(--r-md);
  align-self: flex-start;
}
.badge-metric {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.badge-label { font-size: 0.8125rem; color: #b5b8c2; }

/* Gauge */
.bento-gauge {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  align-self: flex-start;
}
.gauge-score {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  background: #1a1d24;
  border: 2px solid #34d399;
  flex-shrink: 0;
}
.gauge-label { color: #b5b8c2; font-size: 0.9375rem; }

/* Bento points list (replaces old metric badges) */
.bento-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
}
.bento-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #b5b8c2;
  font-size: 0.875rem;
  line-height: 1.45;
}
.bento-points li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}

/* Testimonial placeholder styling (clearly flagged as placeholder) */
.result-quote-placeholder {
  display: block;
  color: var(--text-light);
  font-style: italic;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.55;
  padding: 12px 14px;
  background: repeating-linear-gradient(
    45deg,
    rgba(242, 94, 83, 0.04),
    rgba(242, 94, 83, 0.04) 8px,
    rgba(242, 94, 83, 0.02) 8px,
    rgba(242, 94, 83, 0.02) 16px
  );
  border: 1px dashed rgba(242, 94, 83, 0.35);
  border-radius: var(--r-sm);
}

/* =========================================================
   About section
   ========================================================= */
.about {
  padding: 112px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}
.about-media { position: relative; }
.about-quote {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background: linear-gradient(150deg, var(--text-heading) 0%, #1c2733 100%);
  color: #fff;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.about-quote::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 94, 83, 0.22), transparent 70%);
  top: -120px;
  right: -120px;
}
.about-quote-mark {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
}
.about-quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
  font-weight: 500;
  margin-bottom: auto;
  position: relative;
}
.about-quote-attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}
.about-quote-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.about-quote-role {
  font-size: 0.8125rem;
  color: #b5b8c2;
}
.about-sign {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--text-heading);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}
.about-sign-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}
.about-sign-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.about-body .section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 24px;
}
.about-lede {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 560px;
}
.about-lede + .about-lede { margin-bottom: 32px; }
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 560px;
}
.about-fact-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.about-fact-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.35;
}

@media (max-width: 860px) {
  .about { padding: 72px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-media { max-width: 360px; }
  .about-facts { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   Principles section (homepage, replaces testimonials)
   ========================================================= */
.principles {
  padding: 112px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.principles-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.principles-intro {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.principles-intro .section-title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  margin-bottom: 20px;
}
.principles-intro .section-sub {
  margin-bottom: 32px;
  max-width: 440px;
}
.principles-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.principle {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.principle:first-child {
  padding-top: 4px;
  border-top: 0;
}
.principle:last-child { padding-bottom: 0; }
.principle-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
}
.principle-body { flex: 1; min-width: 0; }
.principle-title {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 8px;
}
.principle-desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .principles { padding: 72px 0; }
  .principles-inner { grid-template-columns: 1fr; gap: 40px; }
  .principles-intro { position: static; }
  .principle { gap: 20px; padding: 24px 0; }
  .principle-num { font-size: 2rem; width: 48px; }
  .principle-title { font-size: 1.125rem; }
}

/* =========================================================
   Recent Results
   ========================================================= */
.results { padding: 112px 0; background: #fff; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.result-card {
  padding: 32px 28px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.result-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(242, 94, 83, 0.08);
  padding: 5px 12px;
  border-radius: 999px;
}
.result-quote {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}
.result-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.result-meta-who { display: flex; gap: 12px; align-items: center; }
.result-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--text-heading);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.result-name { font-size: 0.9375rem; font-weight: 600; }
.result-role { font-size: 0.8125rem; color: var(--text-muted); }
.result-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.result-link:hover { color: var(--accent-hover); }

/* =========================================================
   Process tabs
   ========================================================= */
.process { padding: 112px 0; background: var(--bg-muted); }
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #fff;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  width: fit-content;
}
.tab {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.tab:hover { color: var(--text); }
.tab.active {
  background: var(--text-heading);
  color: #fff;
}

.tabs-body { position: relative; }
.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.tab-panel.active { display: grid; animation: fadeUp .4s var(--ease) both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-copy h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.panel-copy p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.9375rem;
}
.panel-list { display: flex; flex-direction: column; gap: 10px; }
.panel-list li {
  padding-left: 28px;
  position: relative;
  font-size: 0.9375rem;
  color: var(--text);
}
.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(242, 94, 83, 0.14);
}
.panel-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.panel-visual {
  height: 280px;
  border-radius: var(--r-md);
  background: var(--bg-muted);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.panel-visual-discovery { background: radial-gradient(circle at 30% 30%, #fff 0, var(--bg-muted) 70%); }
.panel-visual-design { background: linear-gradient(135deg, #fff 0%, #fee9e7 100%); }
.panel-visual-build { background: linear-gradient(135deg, var(--bg-muted) 0%, #eef4ff 100%); }
.panel-visual-launch { background: linear-gradient(135deg, #fff 0%, #e7f8ee 100%); }

.panel-visual::after {
  content: "";
  position: absolute;
  inset: 18% 14%;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}

/* =========================================================
   Steps (Get Started)
   ========================================================= */
.steps { padding: 112px 0; background: #fff; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px 28px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 14px rgba(242, 94, 83, .35);
}
.step-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--bg-muted);
  color: var(--accent);
  display: grid;
  place-items: center;
  padding: 14px;
}
.step-card h3 { font-size: 1.125rem; margin-bottom: 4px; }
.step-card p { color: var(--text-muted); font-size: 0.9375rem; }
.step-connector {
  align-self: center;
  color: var(--border-strong);
  font-size: 1.5rem;
  font-weight: 500;
}

/* =========================================================
   Stack (dark integrations)
   ========================================================= */
.stack {
  padding: 112px 0;
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
}
.stack .section-title { margin-left: auto; margin-right: auto; }
.stack .section-sub { margin-left: auto; margin-right: auto; }

.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
}
.stack-pill {
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #fff;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all var(--t-fast);
}
.stack-pill:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* =========================================================
   Solutions (3 colored cards)
   ========================================================= */
.solutions { padding: 112px 0; background: var(--bg-muted); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 32px;
}
.solution-card {
  padding: 40px 32px;
  border-radius: var(--r-lg);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 280px;
  transition: transform var(--t), box-shadow var(--t);
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.solution-dark { background: var(--black); }
.solution-blue { background: linear-gradient(135deg, #1a3bb3, #2f56d4); }
.solution-orange { background: linear-gradient(135deg, #c44a18, #ff8a3d); }

.solution-title { font-size: 1.5rem; color: #fff; }
.solution-stat { margin-top: auto; }
.solution-num {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.solution-desc {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.solution-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  align-self: flex-start;
}
.solution-link:hover { opacity: .85; }

.solutions-cta {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
}
.solutions-cta strong { color: var(--text); font-weight: 600; }

/* =========================================================
   Case Studies
   ========================================================= */
.cases { padding: 112px 0; background: #fff; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.case-thumb {
  height: 260px;
  padding: 24px 24px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.case-thumb-dental { background: linear-gradient(135deg, #ebf3ff, #d8e6ff); }
.case-thumb-law { background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-2)); }
.case-thumb-real { background: linear-gradient(135deg, #fff6e8, #ffe0bc); }

/* Mini browser variant — used in homepage case cards */
.cs-browser.cs-browser--mini {
  width: 100%;
  max-width: 100%;
  border-radius: var(--r-md) var(--r-md) 0 0;
  box-shadow: 0 18px 30px -12px rgba(15, 17, 21, 0.18), 0 0 0 1px rgba(15, 17, 21, 0.06);
  transition: transform var(--t);
}
.case-card:hover .cs-browser.cs-browser--mini { transform: translateY(-4px); }
.cs-browser--mini .cs-browser-chrome { padding: 8px 10px; gap: 5px; }
.cs-browser--mini .mockup-dot { width: 8px; height: 8px; }
.cs-browser--mini .mockup-url {
  font-size: 0.6875rem;
  padding: 3px 8px;
  margin-left: 10px;
}
.cs-browser--mini .cs-browser-body { min-height: 0; padding: 14px 16px 18px; }
.cs-browser--mini .cs-mock-nav { padding-bottom: 10px; margin-bottom: 14px; }
.cs-browser--mini .cs-mock-brand { font-size: 0.75rem; }
.cs-browser--mini .cs-mock-links { font-size: 0.625rem; }
.cs-browser--mini .cs-mock-hero { padding: 4px 4px 8px; }
.cs-browser--mini .cs-mock-tag {
  font-size: 0.5625rem;
  padding: 3px 8px;
  margin-bottom: 8px;
}
.cs-browser--mini .cs-mock-hero h3 {
  font-size: 1rem;
  line-height: 1.1;
  margin-bottom: 10px;
}
.cs-browser--mini .cs-mock-btn {
  padding: 5px 10px;
  font-size: 0.625rem;
}

.case-body { padding: 24px 26px 28px; }
.case-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(242, 94, 83, 0.08);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.case-title { font-size: 1.25rem; margin-bottom: 8px; }
.case-desc { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 16px; }
.case-link { font-size: 0.875rem; font-weight: 600; color: var(--accent); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 112px 0; background: var(--bg-muted); }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 4px 0;
  overflow: hidden;
  transition: box-shadow var(--t-fast);
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 1.0625rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-muted);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--t-fast), background var(--t-fast);
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); background: rgba(242, 94, 83, 0.12); }
.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 680px;
}

/* =========================================================
   CTA Band
   ========================================================= */
.cta-band { padding: 80px 0 112px; background: #fff; }
.cta-card {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: #fff;
  padding: 56px 48px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 94, 83, 0.25), transparent 70%);
  top: -140px;
  right: -120px;
}
.cta-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: #fff;
  margin-bottom: 10px;
  max-width: 560px;
  position: relative;
}
.cta-sub {
  color: #b5b8c2;
  font-size: 1rem;
  max-width: 560px;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
}
.cta-actions .btn-primary { background: var(--accent); border-color: var(--accent); }
.cta-actions .btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.cta-actions .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.cta-actions .btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.5); }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--bg-dark);
  color: #b5b8c2;
  padding: 72px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 1.0625rem; margin-bottom: 16px; }
.footer-logo .nav-logo-mark { background: #fff; }
.footer-logo .nav-logo-mark::after { border-bottom-color: var(--accent); }
.footer-tagline { margin-bottom: 20px; color: #b5b8c2; font-size: 0.9375rem; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.footer-contact a {
  font-size: 0.9375rem;
  color: #b5b8c2;
}
.footer-contact a:hover { color: #fff; }
.footer-social {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff !important;
  margin-top: 8px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.9375rem;
  color: #b5b8c2;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 0.8125rem;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   Shared page hero (used on case-studies, services, etc.)
   ========================================================= */
.page-hero {
  padding: 72px 0 56px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--bg-muted) 100%);
  border-bottom: 1px solid var(--border);
}
.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.page-sub {
  font-size: clamp(1.0625rem, 1.25vw, 1.1875rem);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  text-wrap: balance;
}
.page-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 0 8px;
}

/* =========================================================
   Case Studies page
   ========================================================= */
/* Filter pills */
.cs-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.cs-filter {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border-strong);
  transition: all var(--t-fast);
  cursor: pointer;
}
.cs-filter:hover { color: var(--text); border-color: var(--text-heading); }
.cs-filter.active {
  background: var(--text-heading);
  color: #fff;
  border-color: var(--text-heading);
}

/* Case list */
.cs-list { padding: 48px 0 80px; background: #fff; }
.cs-item {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.cs-item:last-child { border-bottom: 0; }
.cs-item-alt { background: var(--bg-muted); border-bottom-color: var(--border-strong); }

.cs-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.cs-grid-reverse { direction: rtl; }
.cs-grid-reverse > * { direction: ltr; }

/* Copy */
.cs-copy { min-width: 0; }
.cs-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.cs-meta .eyebrow { margin-bottom: 0; }
.cs-loc {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.cs-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.cs-prose {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 560px;
}
.cs-prose strong {
  color: var(--text-heading);
  font-weight: 600;
}

/* Result cards */
.cs-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
  max-width: 560px;
}
.cs-result {
  padding: 18px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cs-item-alt .cs-result { background: #fff; }
.cs-result-num {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cs-result-star { color: var(--accent); font-size: 1rem; }
.cs-result-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Browser visual */
.cs-visual { min-width: 0; }
.cs-browser {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(15, 17, 21, .06);
  transform: translateY(0);
  transition: transform var(--t);
}
.cs-browser:hover { transform: translateY(-4px); }
.cs-browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f4f5f7;
  border-bottom: 1px solid var(--border);
}
.cs-browser-chrome-dark { background: #151a1f; border-bottom-color: rgba(255, 255, 255, 0.08); }
.cs-browser-chrome-dark .mockup-url { background: rgba(255, 255, 255, 0.08); color: #b5b8c2; border-color: rgba(255, 255, 255, 0.12); }

.cs-browser-body {
  min-height: 360px;
  padding: 24px 28px 32px;
}
.cs-browser-dental { background: linear-gradient(180deg, #fff 0%, #eef4ff 100%); }
.cs-browser-legal { background: linear-gradient(180deg, #1a1d24 0%, #0a0c10 100%); color: #fff; }
.cs-browser-real { background: linear-gradient(180deg, #fdf9f1 0%, #f4ebd6 100%); }

.cs-mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
}
.cs-mock-nav-dark { border-bottom-color: rgba(255, 255, 255, 0.08); }
.cs-mock-brand { font-size: 0.9375rem; font-weight: 700; color: #0d6efd; }
.cs-mock-brand-gold { color: #d4a24a; letter-spacing: 0.1em; }
.cs-mock-brand-forest { color: #2d5016; }
.cs-mock-links { font-size: 0.75rem; color: var(--text-muted); }
.cs-mock-links-light { color: rgba(255, 255, 255, 0.6); }

.cs-mock-hero {
  text-align: center;
  padding: 24px 12px 32px;
}
.cs-mock-hero-dark { color: #fff; }
.cs-mock-tag {
  display: inline-block;
  padding: 5px 12px;
  background: #eef4ff;
  color: #0d6efd;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 14px;
}
.cs-mock-tag-gold { background: rgba(212, 162, 74, 0.15); color: #d4a24a; }
.cs-mock-tag-forest { background: rgba(45, 80, 22, 0.1); color: #2d5016; }
.cs-mock-hero .cs-mock-h,
.cs-mock-hero h3 {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-heading);
}
.cs-mock-hero-dark .cs-mock-h,
.cs-mock-hero-dark h3 { color: #fff; }
.cs-mock-h-gold { color: #d4a24a !important; letter-spacing: -0.02em; font-weight: 700; }
.cs-mock-h-serif { font-family: 'Lexend', serif; letter-spacing: -0.02em; color: #1a1a1a !important; }

.cs-mock-btn {
  display: inline-block;
  padding: 9px 18px;
  background: #0d6efd;
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.cs-mock-btn-blue { background: #0d6efd; }
.cs-mock-btn-gold { background: #d4a24a; color: #1a1a1a; }
.cs-mock-btn-forest { background: #2d5016; color: #fff; }

.cs-mock-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.cs-mock-card {
  height: 60px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r-sm);
}
.cs-mock-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}
.cs-mock-card-cream {
  background: rgba(45, 80, 22, 0.08);
  border-color: rgba(45, 80, 22, 0.12);
}

/* Case studies approach section */
.cs-approach {
  padding: 112px 0;
  background: var(--bg-muted);
  text-align: center;
}
.cs-approach .section-title,
.cs-approach .section-sub { margin-left: auto; margin-right: auto; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
  text-align: left;
}
.approach-step {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform var(--t), box-shadow var(--t);
}
.approach-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.approach-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.approach-step h3 {
  font-size: 1.125rem;
  margin-bottom: 6px;
}
.approach-step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* =========================================================
   Services page
   ========================================================= */
/* TOC pills under page hero */
.svc-toc {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.svc-toc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--t-fast);
}
.svc-toc-link span {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent);
  font-size: 0.75rem;
}
.svc-toc-link:hover {
  border-color: var(--text-heading);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Service sections */
.svc-section {
  padding: 96px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--nav-h) + 16px);
}
.svc-section-alt { background: var(--bg-muted); }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.svc-side {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.svc-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.svc-side .eyebrow { margin-bottom: 12px; }
.svc-heading {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.svc-lede {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 380px;
}

.svc-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.svc-price-note {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 6px;
  max-width: 340px;
}
.svc-price-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.svc-price {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}
.svc-price-suffix {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}
.svc-cta { margin-top: 4px; }

/* Main content */
.svc-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.svc-section-alt .svc-card { background: #fff; }
.svc-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.svc-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--bg-muted);
  color: var(--accent);
  display: grid;
  place-items: center;
  padding: 8px;
}
.svc-card-icon svg { width: 20px; height: 20px; }

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.5;
  padding-left: 0;
}
.svc-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--green-tint);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23027a48' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='2.5,6 5,8.5 9.5,3.5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

.svc-who {
  background: var(--text-heading);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.svc-who-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  display: grid;
  place-items: center;
  padding: 8px;
}
.svc-who-icon svg { width: 22px; height: 22px; }
.svc-who-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.svc-who p {
  font-size: 1rem;
  line-height: 1.5;
  color: #e4e7ec;
  font-style: italic;
}

/* Bundle */
.svc-bundle { padding: 80px 0; background: #fff; }
.bundle-card {
  background: linear-gradient(135deg, #fff 0%, var(--bg-muted) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.bundle-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(242, 94, 83, 0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 20px;
}
.bundle-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.bundle-sub {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto 32px;
}
.bundle-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive for case studies + services */
@media (max-width: 960px) {
  .cs-grid,
  .svc-grid { grid-template-columns: 1fr; gap: 40px; }
  .cs-grid-reverse { direction: ltr; }
  .cs-grid-reverse .cs-visual { order: -1; }
  .svc-side { position: static; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-results { max-width: none; }
  .cs-item { padding: 56px 0; }
}
@media (max-width: 560px) {
  .cs-results { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 24px 20px; }
  .svc-who { padding: 20px; flex-direction: column; }
  .bundle-card { padding: 40px 24px; }
  .cs-browser-body { padding: 20px 20px 24px; min-height: 280px; }
}

/* =========================================================
   Quote page
   ========================================================= */
.quote-page {
  padding: 80px 0 120px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-muted) 100%);
  min-height: calc(100vh - var(--nav-h));
}
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}

/* Left intro */
.quote-intro { position: sticky; top: calc(var(--nav-h) + 32px); }
.quote-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.quote-lede {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 460px;
}
.quote-checklist {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.quote-checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.check-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.check-mark svg { width: 12px; height: 12px; }
.quote-checklist strong {
  display: block;
  font-weight: 600;
  color: var(--text-heading);
  font-size: 0.9375rem;
  margin-bottom: 2px;
}
.quote-checklist span:not(.check-mark) {
  display: block;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.quote-contact {
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
}
.quote-contact-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.quote-contact-email {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-heading);
}
.quote-contact-email:hover { color: var(--accent); }

/* Right form card */
.quote-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.quote-card-head {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.quote-card-title {
  font-size: 1.375rem;
  margin-bottom: 6px;
}
.quote-card-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.req-dot {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
  transform: translateY(-1px);
  margin-left: 2px;
}

/* Form */
.quote-form { display: flex; flex-direction: column; gap: 22px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: 0.005em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.optional {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg-muted);
  padding: 2px 7px;
  border-radius: 999px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.select-wrap select {
  width: 100%;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group input:hover,
.form-group textarea:hover,
.select-wrap select:hover {
  border-color: #b3b3b3;
}
.form-group input:focus,
.form-group textarea:focus,
.select-wrap select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(242, 94, 83, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.form-group input.error,
.form-group textarea.error,
.select-wrap select.error {
  border-color: #d92d20;
  box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.08);
}

.select-wrap {
  position: relative;
}
.select-wrap select {
  padding-right: 38px;
  cursor: pointer;
  background-image: none;
}
.select-chev {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  pointer-events: none;
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.error-message {
  display: none;
  font-size: 0.8125rem;
  color: #d92d20;
  font-weight: 500;
}
.error-message.visible { display: block; }

/* Chip radios */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  transition: all var(--t-fast);
}
.chip:hover { border-color: #b3b3b3; }
.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.chip.selected {
  background: var(--text-heading);
  border-color: var(--text-heading);
  color: #fff;
}

/* Form actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}
.form-actions .btn { width: 100%; justify-content: center; }
.form-actions .btn svg { width: 16px; height: 16px; }
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* Success state */
.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--green-tint);
  border: 1px solid #a6f4c5;
  border-radius: var(--r-md);
  margin-top: 4px;
}
.form-success.visible { display: flex; animation: fadeUp .35s var(--ease) both; }
.form-success strong {
  display: block;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 1px;
}
.form-success span {
  display: block;
  color: #047857;
  font-size: 0.875rem;
}

/* Contact page redirect note */
.contact-redirect {
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(242, 94, 83, 0.06);
  border: 1px solid rgba(242, 94, 83, 0.18);
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text);
}
.contact-redirect strong { color: var(--text-heading); }
.contact-redirect a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-redirect a:hover { color: var(--accent-hover); }

/* Quote page responsive */
@media (max-width: 960px) {
  .quote-layout { grid-template-columns: 1fr; gap: 48px; }
  .quote-intro { position: static; }
  .quote-card { padding: 28px; }
  .quote-page { padding: 48px 0 80px; }
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
  .quote-card { padding: 24px 20px; border-radius: var(--r-lg); }
}

/* =========================================================
   Legal pages (privacy, terms, etc.)
   ========================================================= */
.legal-effective {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.legal-page {
  padding: 64px 0 96px;
  background: #fff;
}

.legal-content {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
}

.legal-content section {
  padding-top: 48px;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.legal-content section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-heading);
  margin-bottom: 20px;
  font-weight: 600;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text-heading);
  margin-top: 28px;
  margin-bottom: 12px;
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 18px;
  color: var(--text);
}

.legal-content p:last-child { margin-bottom: 0; }

.legal-content ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-content ul li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  font-weight: 500;
}

.legal-content a:hover {
  color: var(--accent-hover);
  text-decoration-thickness: 2px;
}

.legal-content strong {
  color: var(--text-heading);
  font-weight: 600;
}

.legal-contact {
  padding: 20px 24px;
  background: var(--bg-muted);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-sm);
  font-size: 1rem;
  line-height: 1.6;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Footer-bottom small Privacy link */
.footer-bottom-link {
  color: var(--text-light);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color var(--t-fast);
}
.footer-bottom-link:hover { color: #fff; }

@media (max-width: 720px) {
  .legal-page { padding: 40px 0 64px; }
  .legal-content { font-size: 1rem; }
  .legal-content section { padding-top: 36px; }
  .legal-content h2 { font-size: 1.375rem; }
}

/* =========================================================
   404 page
   ========================================================= */
.notfound {
  padding: 112px 0 80px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-muted) 100%);
  min-height: calc(100vh - var(--nav-h));
}
.notfound-inner {
  max-width: 720px;
  text-align: center;
}
.notfound-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text-heading);
  margin-bottom: 20px;
  font-weight: 600;
  text-wrap: balance;
}
.notfound-sub {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 auto 40px;
  max-width: 520px;
  text-wrap: balance;
}
.notfound-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.notfound-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  margin: 0 auto;
  max-width: 560px;
}
.notfound-links li { list-style: none; }
.notfound-links a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 500;
}
.notfound-links a:hover { color: var(--accent); }

/* =========================================================
   Reveal animation (basic)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-large { grid-row: auto; grid-column: span 2; }
  .features-dark-head { flex-direction: column; align-items: flex-start; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .step-connector { transform: rotate(90deg); }
  .tab-panel { grid-template-columns: 1fr; }
  .panel-visual { order: -1; height: 180px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-hamburger { display: flex; }

  .pain-grid,
  .results-grid,
  .solutions-grid,
  .cases-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }

  .hero { padding-top: 32px; }
  .hero-stats { gap: 20px; padding: 28px 0 56px; }
  .stat-divider { display: none; }

  .features-dark, .pain, .results, .process, .steps, .stack, .solutions, .cases, .faq { padding: 72px 0; }

  .cta-card { padding: 40px 28px; flex-direction: column; align-items: flex-start; }

  .tabs-nav { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
  .tab-panel { padding: 28px; }

  .mockup-body { padding: 20px 20px 32px; min-height: 320px; }
  .mockup-grid { grid-template-columns: repeat(2, 1fr); }
  .mockup-hero-cta { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .section-title { font-size: 1.75rem; }
  .btn { padding: 11px 18px; font-size: 0.875rem; }
  .bento { grid-template-columns: 1fr; }
  .bento-large { grid-column: auto; }
  .mockup-menu { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}
