/* ═══════════════════════════════════════════════════════
   UMERIX GROWTH — style-v2.css
   Brand: Words Into Revenue
   Fonts: DM Serif Display (headlines) + DM Sans (body)
   Scale: 8px base — all spacing from this grid
   Theme: Light mode — #111 on #fff — clean and fast
═══════════════════════════════════════════════════════ */

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── DESIGN TOKENS ──────────────────────────────────── */
:root {
  /* Brand colours */
  --navy:       #0A0F1E;
  --navy-light: #1a2340;
  --blue:       #2563EB;
  --green:      #10B981;
  --grad:       linear-gradient(135deg, #2563EB 0%, #10B981 100%);
  --grad-text:  linear-gradient(135deg, #2563EB 20%, #10B981 100%);

  /* Neutrals */
  --ink:        #111111;
  --ink-2:      #333333;
  --ink-3:      #555555;
  --ink-4:      #888888;
  --border:     rgba(10, 15, 30, 0.10);
  --border-2:   rgba(10, 15, 30, 0.06);
  --bg:         #ffffff;
  --bg-2:       #f7f8fa;
  --bg-3:       #f0f2f5;

  /* 8px spacing scale */
  --sp-4:   4px;
  --sp-8:   8px;
  --sp-16:  16px;
  --sp-24:  24px;
  --sp-32:  32px;
  --sp-48:  48px;
  --sp-64:  64px;
  --sp-96:  96px;
  --sp-128: 128px;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Sizes */
  --h1: clamp(40px, 5.5vw, 68px);
  --h2: clamp(30px, 4vw, 48px);
  --h3: clamp(20px, 2.2vw, 26px);
  --body-lg: 18px;
  --body:    16px;
  --body-sm: 14px;
  --caption: 12px;

  /* Radius */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(10,15,30,0.06);
  --shadow-md: 0 4px 20px rgba(10,15,30,0.08);
  --shadow-lg: 0 12px 48px rgba(10,15,30,0.12);
  --shadow-xl: 0 24px 80px rgba(10,15,30,0.16);

  /* Nav height */
  --nav-h: 72px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-fast: 0.18s;
  --t-med:  0.32s;
  --t-slow: 0.56s;
}

/* ── BASE ────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: var(--body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── CONTAINERS ─────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-96);
}

.container--narrow {
  max-width: 820px;
}

/* ── SECTIONS ────────────────────────────────────────── */
.section {
  padding: var(--sp-96) 0;
}

.section--alt {
  background: var(--bg-2);
}

.section__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--sp-24);
  display: inline-block;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.15);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.h2 {
  font-family: var(--font-display);
  font-size: var(--h2);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: var(--sp-24);
}

.h2--center { text-align: center; margin-left: auto; margin-right: auto; }

.em-serif {
  font-family: var(--font-display);
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.body-text {
  font-size: var(--body-lg);
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: var(--sp-24);
  letter-spacing: 0.1px;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--body);
  font-weight: 600;
  letter-spacing: 0.1px;
  border-radius: 999px;
  padding: 14px 28px;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(10,15,30,0.25);
}

.btn--primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10,15,30,0.30);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn--sm  { padding: 10px 20px; font-size: var(--body-sm); }
.btn--lg  { padding: 18px 40px; font-size: 18px; }


/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-2);
  transition: box-shadow var(--t-med) var(--ease),
              background var(--t-med) var(--ease);
}

.nav.nav--scrolled {
  box-shadow: 0 2px 24px rgba(10,15,30,0.08);
  background: rgba(255,255,255,0.98);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-48);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-32);
}

/* nav logo styles moved below */

/* nav logo img replaced */

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-left: auto;
}

.nav__item { position: relative; }

.nav__link {
  font-size: var(--body-sm);
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav__link:hover { color: var(--navy); background: var(--bg-2); }

.nav__caret {
  font-size: 12px;
  transition: transform var(--t-fast);
}

.nav__item--drop:hover .nav__caret {
  transform: rotate(180deg);
}

/* Dropdown */
.nav__drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}

.nav__item--drop:hover .nav__drop,
.nav__item--drop:focus-within .nav__drop {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__drop-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: var(--body-sm);
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}

.nav__drop-link:hover {
  background: var(--bg-2);
  color: var(--navy);
}

.nav__drop-icon { font-size: 15px; flex-shrink: 0; }

.nav__cta {
  font-size: var(--body-sm);
  font-weight: 600;
  color: var(--bg);
  background: var(--navy);
  padding: 10px 20px;
  border-radius: 999px;
  transition: background var(--t-fast), transform var(--t-fast);
  flex-shrink: 0;
}

.nav__cta:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav__burger-bar {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-fast);
}

/* ═══════════════════════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════════════════════ */
.mob {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--t-med) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob.mob--open {
  transform: translateX(0);
}

.mob__inner {
  padding: var(--sp-48) var(--sp-32);
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  width: 100%;
  max-width: 400px;
}

.mob__item { list-style: none; }
.mob__sub  { list-style: none; padding-left: var(--sp-16); }

.mob__link {
  display: block;
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--navy);
  padding: 8px 0;
  line-height: 1.2;
  transition: color var(--t-fast);
}

.mob__link:hover { color: var(--blue); }

.mob__link--sub {
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--ink-3);
  padding: 4px 0;
}

.mob__cta {
  display: inline-block;
  margin-top: var(--sp-24);
  background: var(--navy);
  color: #fff;
  font-size: var(--body);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  width: fit-content;
}

.mob__tagline {
  margin-top: var(--sp-16);
  font-size: var(--caption);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-4);
}


/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + var(--sp-64));
  padding-bottom: var(--sp-96);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* subtle dot grid */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10,15,30,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* soft radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-96);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-64);
  align-items: center;
}

/* Label */
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-2);
  margin-bottom: var(--sp-24);
  width: fit-content;
}

.hero__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(16,185,129,0.08); }
}

/* H1 */
.hero__h1 {
  font-family: var(--font-display);
  font-size: var(--h1);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: var(--sp-24);
}

.hero__em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* Sub */
.hero__sub {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: var(--sp-32);
  letter-spacing: 0.1px;
}

/* Stats */
.hero__proof {
  display: flex;
  align-items: center;
  gap: var(--sp-24);
  flex-wrap: wrap;
  padding: var(--sp-24);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  width: fit-content;
  margin-bottom: var(--sp-32);
}

.hero__stat { display: flex; flex-direction: column; gap: 2px; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero__stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__stat-div {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* CTAs */
.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
  flex-wrap: wrap;
  margin-bottom: var(--sp-16);
}

.hero__fine {
  font-size: var(--caption);
  color: var(--ink-4);
  letter-spacing: 0.03em;
}

/* Hero visual — right side */
.hero__visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__card {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.hero__card--main {
  width: 320px;
  padding: var(--sp-24);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hero__card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: var(--sp-8);
}

.hero__card-label {
  font-size: var(--body-sm);
  color: var(--ink-3);
  margin-bottom: var(--sp-16);
  font-weight: 500;
}

.hero__card-row {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
  margin-bottom: var(--sp-16);
}

.hero__card-stat { display: flex; flex-direction: column; gap: 4px; }

.hero__card-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.hero__card-num--bad  { color: #DC2626; }
.hero__card-num--good {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__card-sub {
  font-size: 11px;
  color: var(--ink-4);
  font-weight: 500;
}

.hero__card-arrow {
  font-size: 20px;
  color: var(--ink-4);
  flex-shrink: 0;
}

/* bar */
.hero__card-bar {
  height: 4px;
  background: var(--bg-3);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: var(--sp-8);
}

.hero__card-bar-fill {
  height: 100%;
  width: 73%;
  background: var(--grad);
  border-radius: 999px;
  animation: bar-fill 1.8s var(--ease) 0.5s both;
}

@keyframes bar-fill {
  from { width: 0; }
  to   { width: 73%; }
}

.hero__card-note {
  font-size: 11px;
  color: var(--ink-4);
}

/* Floating chips */
.hero__card--float {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 999px;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}

.hero__card--float-1 {
  left: 0;
  top: 20%;
  animation-delay: 0s;
}

.hero__card--float-2 {
  left: 20px;
  bottom: 20%;
  animation-delay: 2s;
}

.hero__card-float-icon { font-size: 16px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-32);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ═══════════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════════ */
.ticker {
  overflow: hidden;
  background: var(--navy);
  padding: var(--sp-16) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: var(--sp-32);
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  will-change: transform;
}

.ticker__track span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.ticker__track span[aria-hidden="true"] {
  color: var(--blue);
  font-size: 8px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════════
   PROBLEM
═══════════════════════════════════════════════════════ */
.problem__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-64);
  align-items: start;
}

.problem__left { padding-top: var(--sp-8); }

.problem__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
}

.problem__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-24);
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.problem__card:hover {
  border-color: rgba(10,15,30,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem__card-icon {
  font-size: 24px;
  margin-bottom: var(--sp-12, 12px);
  display: block;
}

.problem__card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.problem__card p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════
   SOLUTION
═══════════════════════════════════════════════════════ */
.solution__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-64);
  align-items: start;
  margin-bottom: var(--sp-64);
}

.solution__sub { margin-bottom: 0; }

.solution__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-24);
  counter-reset: steps;
}

.solution__step {
  position: relative;
  padding-left: var(--sp-48);
}

.solution__step-num {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
}

.solution__step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.solution__step p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-64);
  align-items: end;
  margin-bottom: var(--sp-48);
}

.services__head .h2 { margin-bottom: 0; }
.services__head .body-text { margin-bottom: 0; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-32);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-fast), transform var(--t-med), box-shadow var(--t-med);
  text-decoration: none;
}

.service-card:hover {
  border-color: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card__icon {
  font-size: 28px;
  margin-bottom: var(--sp-16);
  display: block;
}

.service-card__num {
  position: absolute;
  top: var(--sp-24);
  right: var(--sp-24);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: var(--border);
  letter-spacing: -1px;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-8);
  line-height: 1.3;
}

.service-card__body {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--sp-16);
}

.service-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-top: auto;
  transition: letter-spacing var(--t-fast);
}

.service-card:hover .service-card__link {
  letter-spacing: 0.02em;
}

/* CTA card */
.service-card--cta {
  background: var(--navy);
  border-color: var(--navy);
  justify-content: center;
}

.service-card--cta:hover {
  border-color: var(--navy-light);
  background: var(--navy-light);
}

.service-card__cta-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.service-card__cta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.service-card__cta-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.service-card__cta-body {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.service-card--cta .btn--primary {
  background: rgba(255,255,255,0.12);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: fit-content;
}

.service-card--cta .btn--primary:hover {
  background: rgba(255,255,255,0.2);
}


/* ═══════════════════════════════════════════════════════
   RESULTS
═══════════════════════════════════════════════════════ */
.results__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-24);
  margin-bottom: var(--sp-64);
  padding: var(--sp-48);
  background: var(--navy);
  border-radius: var(--r-xl);
}

.results__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--sp-16);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.results__stat:last-child { border-right: none; }

.results__stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 400;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.results__stat-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.results__stat-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* Cases */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
  margin-bottom: var(--sp-48);
}

.case {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-32);
  transition: border-color var(--t-fast), transform var(--t-med), box-shadow var(--t-med);
}

.case:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.case__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-24);
}

.case__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.15);
  padding: 4px 10px;
  border-radius: 999px;
}

.case__time {
  font-size: 11px;
  color: var(--ink-4);
  font-weight: 500;
}

.case__numbers {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
  margin-bottom: var(--sp-16);
}

.case__num { display: flex; flex-direction: column; gap: 4px; }

.case__big {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.case__num--before .case__big { color: #DC2626; }

.case__num--after .case__big {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case__small {
  font-size: 11px;
  color: var(--ink-4);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case__arrow { font-size: 18px; color: var(--ink-4); }

.case__note {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
  border-top: 1px solid var(--border-2);
  padding-top: var(--sp-16);
}

.results__cta { text-align: center; }


/* ═══════════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════════ */
.process {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: var(--sp-48);
  border-left: 1px solid var(--border);
  margin-top: var(--sp-48);
}

.process__step {
  padding: 0 0 var(--sp-48) var(--sp-32);
  position: relative;
}

.process__step:last-child { padding-bottom: 0; }

.process__step::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad);
}

.process__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: var(--sp-8);
}

.process__badge--1 { color: var(--blue);       background: rgba(37,99,235,0.08);  border: 1px solid rgba(37,99,235,0.2); }
.process__badge--2 { color: var(--green);       background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); }
.process__badge--3 { color: #7c3aed;            background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.2); }
.process__badge--4 { color: var(--blue);        background: rgba(37,99,235,0.08);  border: 1px solid rgba(37,99,235,0.2); }
.process__badge--5 { color: var(--green);       background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); }

.process__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-8);
  line-height: 1.3;
}

.process__body {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.75;
  margin-bottom: var(--sp-16);
  max-width: 540px;
}

.process__output {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  background: rgba(16,185,129,0.06);
  border-left: 3px solid var(--green);
  padding: 8px 14px;
  border-radius: 0 8px 8px 0;
}


/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-96);
  align-items: center;
}

.about__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.about__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about__img-badge {
  position: absolute;
  bottom: var(--sp-24);
  right: var(--sp-24);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-16) var(--sp-24);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.about__badge-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about__creds {
  display: flex;
  gap: var(--sp-32);
  margin-bottom: var(--sp-32);
  padding: var(--sp-24) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about__cred { display: flex; flex-direction: column; gap: 4px; }

.about__cred-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.about__cred-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about__links {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
  flex-wrap: wrap;
}

.about__social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--body-sm);
  font-weight: 600;
  color: var(--ink-3);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.about__social:hover { color: #0077b5; border-color: #0077b5; }


/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
  margin-top: var(--sp-48);
}

.testi__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-32);
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
  transition: border-color var(--t-fast), transform var(--t-med), box-shadow var(--t-med);
}

.testi__card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testi__stars {
  font-size: 14px;
  color: #F59E0B;
  letter-spacing: 2px;
}

.testi__quote {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testi__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: var(--sp-16);
  border-top: 1px solid var(--border-2);
}

.testi__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi__name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.testi__role {
  display: block;
  font-size: 12px;
  color: var(--ink-4);
}


/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.faq {
  margin-top: var(--sp-48);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-24) 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: var(--sp-16);
  transition: color var(--t-fast);
  line-height: 1.4;
}

.faq__q:hover { color: var(--blue); }

.faq__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-4);
  flex-shrink: 0;
  transition: transform var(--t-fast), color var(--t-fast);
  line-height: 1;
  width: 24px;
  text-align: center;
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq__a {
  padding: 0 0 var(--sp-24) 0;
}

.faq__a p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.8;
  max-width: 640px;
}


/* ═══════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════ */
.cta-section {
  background: var(--navy);
  padding: var(--sp-128) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

.cta-section__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--sp-24);
}

.cta-section__h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: var(--sp-24);
}

.cta-section__h2 .em-serif {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto var(--sp-48);
  letter-spacing: 0.1px;
}

.cta-section .btn--primary {
  background: #fff;
  color: var(--navy);
  font-size: 18px;
  padding: 18px 48px;
  box-shadow: 0 8px 40px rgba(255,255,255,0.15);
  margin-bottom: var(--sp-32);
  display: inline-flex;
}

.cta-section .btn--primary:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-3px);
  box-shadow: 0 16px 60px rgba(255,255,255,0.2);
}

.cta-section__flags {
  display: flex;
  justify-content: center;
  gap: var(--sp-24);
  flex-wrap: wrap;
  margin-bottom: var(--sp-16);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.cta-section__fine {
  font-size: var(--caption);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}


/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: #f4f5f7;
  padding: var(--sp-96) 0 var(--sp-48);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--sp-64);
  margin-bottom: var(--sp-64);
}

.footer__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--sp-16);
  width: fit-content;
}

.footer__logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__logo-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.footer__logo-tagline {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.footer__brand-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
  margin-bottom: var(--sp-16);
  max-width: 280px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--body-sm);
  font-weight: 600;
  color: var(--ink-3);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: color var(--t-fast), border-color var(--t-fast);
  background: var(--bg);
}

.footer__social:hover { color: #0077b5; border-color: #0077b5; }

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--sp-16);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.footer__link {
  font-size: 14px;
  color: var(--ink-3);
  transition: color var(--t-fast), padding-left var(--t-fast);
  line-height: 1.5;
}

.footer__link:hover { color: var(--navy); padding-left: 4px; }
.footer__link--cta { color: var(--blue); font-weight: 600; }
.footer__link--cta:hover { color: var(--navy); }

.footer__cta-btn {
  margin-top: var(--sp-16);
  width: 100%;
  justify-content: center;
  text-align: center;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-32);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: var(--sp-8);
}

.footer__copy,
.footer__made {
  font-size: var(--caption);
  color: var(--ink-4);
}


/* ═══════════════════════════════════════════════════════
   CHATBOT
═══════════════════════════════════════════════════════ */
.chatbot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.chatbot__launcher {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(10,15,30,0.30);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  position: relative;
}

.chatbot__launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(10,15,30,0.35);
}

.chatbot__dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid var(--navy);
  animation: pulse 2s infinite;
}

.chatbot__window {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 360px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 540px;
}

.chatbot__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: var(--sp-16) var(--sp-24);
  background: var(--navy);
  flex-shrink: 0;
}

.chatbot__head-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.chatbot__head-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.chatbot__head-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

.chatbot__head-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.chatbot__close {
  margin-left: auto;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  line-height: 1;
  transition: color var(--t-fast);
}

.chatbot__close:hover { color: #fff; }

.chatbot__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-16);
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.chatbot__msg {
  max-width: 85%;
}

.chatbot__msg--bot {
  align-self: flex-start;
}

.chatbot__msg--user {
  align-self: flex-end;
}

.chatbot__msg p {
  font-size: 14px;
  line-height: 1.65;
  padding: 10px 14px;
  border-radius: var(--r-lg);
  margin-bottom: 4px;
}

.chatbot__msg--bot p {
  background: var(--bg-2);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}

.chatbot__msg--user p {
  background: var(--navy);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chatbot__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 var(--sp-4);
}

.chatbot__chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 6px 12px;
  border-radius: 999px;
  transition: background var(--t-fast), color var(--t-fast);
  text-align: left;
}

.chatbot__chip:hover {
  background: rgba(37,99,235,0.14);
  color: var(--navy);
}

.chatbot__foot {
  display: flex;
  gap: 8px;
  padding: var(--sp-16);
  border-top: 1px solid var(--border-2);
  flex-shrink: 0;
}

.chatbot__input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  outline: none;
  transition: border-color var(--t-fast);
}

.chatbot__input:focus { border-color: var(--blue); }

.chatbot__send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
  flex-shrink: 0;
}

.chatbot__send:hover { background: var(--blue); transform: scale(1.05); }

/* Typing indicator */
.chatbot__typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-2);
  border-radius: var(--r-lg);
  border-bottom-left-radius: 4px;
  width: fit-content;
}

.chatbot__typing span {
  width: 6px;
  height: 6px;
  background: var(--ink-4);
  border-radius: 50%;
  animation: typing-dot 1.4s ease-in-out infinite;
}

.chatbot__typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot__typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%           { transform: translateY(-6px); opacity: 1; }
}


/* ═══════════════════════════════════════════════════════
   AI GEO BLOCK (hidden, for AI crawlers)
═══════════════════════════════════════════════════════ */
.ai-geo-block {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease),
              transform var(--t-slow) var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — LAPTOP 1024px–1199px
═══════════════════════════════════════════════════════ */
@media (max-width: 1199px) {

  .container { padding: 0 var(--sp-48); }
  .hero__inner { padding: 0 var(--sp-48); gap: var(--sp-48); }

  .section { padding: 72px 0; }

  .hero__h1 { font-size: clamp(36px, 5vw, 56px); }

  .solution__steps { grid-template-columns: repeat(2, 1fr); gap: var(--sp-32); }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-48); }
  .footer__brand { grid-column: 1 / -1; }

}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET 768px–1023px
═══════════════════════════════════════════════════════ */
@media (max-width: 1023px) {

  :root {
    --nav-h: 64px;
    --h1: clamp(34px, 6vw, 52px);
    --h2: clamp(26px, 4.5vw, 40px);
  }

  .container { padding: 0 var(--sp-32); }
  .hero__inner { padding: 0 var(--sp-32); }
  .nav__inner  { padding: 0 var(--sp-32); }

  .section { padding: var(--sp-64) 0; }

  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content { align-items: center; display: flex; flex-direction: column; }
  .hero__label   { margin-left: auto; margin-right: auto; }
  .hero__sub     { text-align: center; margin-left: auto; margin-right: auto; }
  .hero__proof   { margin-left: auto; margin-right: auto; }
  .hero__ctas    { justify-content: center; }
  .hero__fine    { text-align: center; }
  .hero__visual  { display: none; }

  /* Problem */
  .problem__layout { grid-template-columns: 1fr; gap: var(--sp-48); }
  .problem__right  { grid-template-columns: 1fr 1fr; }

  /* Solution */
  .solution__top   { grid-template-columns: 1fr; gap: var(--sp-32); }
  .solution__steps { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services__head { grid-template-columns: 1fr; gap: var(--sp-16); }
  .services__grid { grid-template-columns: 1fr 1fr; }

  /* Results */
  .results__stats { grid-template-columns: repeat(2, 1fr); padding: var(--sp-32); }
  .results__stat  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: var(--sp-16) 0; }
  .results__stat:nth-child(2n) { border-bottom: none; }
  .cases { grid-template-columns: 1fr; }

  /* About */
  .about__layout { grid-template-columns: 1fr; gap: var(--sp-48); }
  .about__img    { height: 380px; }

  /* Testi */
  .testi__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-32); }

  /* Chatbot */
  .chatbot { right: 12px; bottom: 12px; }
  .chatbot__window { width: calc(100vw - 24px); right: 0; }

}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤767px
═══════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  :root {
    --h1: clamp(30px, 8vw, 44px);
    --h2: clamp(24px, 6.5vw, 34px);
  }

  .container { padding: 0 var(--sp-16); }
  .hero__inner { padding: 0 var(--sp-16); }
  .nav__inner  { padding: 0 var(--sp-16); }

  .section { padding: var(--sp-48) 0; }

  /* Hero */
  .hero {
    padding-top: calc(var(--nav-h) + var(--sp-32));
    padding-bottom: var(--sp-64);
  }

  .hero__proof {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-16);
    width: 100%;
  }

  .hero__stat-div { width: 100%; height: 1px; }

  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* Problem */
  .problem__right { grid-template-columns: 1fr; }

  /* Solution */
  .solution__steps { grid-template-columns: 1fr; }
  .solution__step  { padding-left: var(--sp-32); }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Results */
  .results__stats { grid-template-columns: 1fr 1fr; }

  /* About */
  .about__img { height: 280px; }
  .about__creds { flex-wrap: wrap; gap: var(--sp-16); }

  /* Process */
  .process { padding-left: var(--sp-24); }
  .process__step { padding-left: var(--sp-24); }

  /* Testi */
  .testi__card { padding: var(--sp-24); }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-32); }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* CTA section */
  .cta-section { padding: var(--sp-96) 0; }

  /* FAQ */
  .faq__q { font-size: 15px; }

  /* Chatbot window */
  .chatbot__window {
    max-height: 70vh;
    width: calc(100vw - 24px);
  }

  /* Ticker */
  .ticker__track { animation-duration: 20s; }

}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — SMALL ≤480px
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  .hero__proof { padding: var(--sp-16); }
  .hero__stat-num { font-size: 22px; }

  .results__stats { grid-template-columns: 1fr; }
  .results__stat  { border-bottom: 1px solid rgba(255,255,255,0.08); border-right: none; }

  .case { padding: var(--sp-24); }
  .case__big { font-size: 32px; }

  .process { padding-left: var(--sp-16); }
  .process__step { padding-left: var(--sp-16); }

  .testi__quote { font-size: 14px; }

  .cta-section .btn--primary { padding: 16px 32px; font-size: 16px; }

}


/* ═══════════════════════════════════════════════════════
   TOUCH DEVICES
═══════════════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover,
  .problem__card:hover,
  .case:hover,
  .testi__card:hover { transform: none; }

  .btn { min-height: 48px; }
  .faq__q { min-height: 52px; }
}

/* ═══════════════════════════════════════════════════════
   SAFE AREA — iPhone notch
═══════════════════════════════════════════════════════ */
@supports (padding: max(0px)) {
  .nav__inner {
    padding-left: max(var(--sp-48), env(safe-area-inset-left));
    padding-right: max(var(--sp-48), env(safe-area-inset-right));
  }
  .chatbot {
    right: max(24px, env(safe-area-inset-right));
    bottom: max(24px, env(safe-area-inset-bottom));
  }
  .mob { padding-bottom: env(safe-area-inset-bottom); }
}

/* ═══════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .ticker__track  { animation: none; }
  .hero__grid     { display: none; }
}

/* Nav logo — icon + text (matches footer) */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav__logo-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.nav__logo-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  line-height: 1;
}

/* Chatbot launcher icon toggle */
.chatbot__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: opacity var(--t-fast), transform var(--t-fast);
}

/* Default: show chat icon, hide X */
.chatbot__icon--chat  { opacity: 1; transform: scale(1); }
.chatbot__icon--close { opacity: 0; transform: scale(0.5); position: absolute; }

/* When open: hide chat, show X */
.chatbot--open .chatbot__icon--chat  { opacity: 0; transform: scale(0.5); }
.chatbot--open .chatbot__icon--close { opacity: 1; transform: scale(1); position: static; }

/* Remove old icon styles */
.chatbot__launcher-icon { display: none; }