/* ============================================================
   KAZAgenticTech — Building Solutions. Driving Growth.
   ============================================================ */

:root {
  --navy: #071426;
  --navy-card: #0C2038;
  --navy-card-2: #102A47;
  --navy-line: #17304F;
  --navy-line-2: #2A4262;
  --blue: #1558C9;
  --blue-bright: #246BFD;
  --blue-light: #6E9BF0;
  --blue-pale: #9BBCF7;
  --blue-chip: #C9D8F2;
  --blue-wash: #EAF1FD;
  --blue-track: #DCE6F5;
  --ink: #071426;
  --ink-soft: #5E6B7A;
  --line: #E5EAF0;
  --bg-soft: #F5F7FA;
  --txt-inverse: #DCE6F5;
  --txt-dark-soft: #9AA7B8;
  --txt-dim: #7E8CA0;
  --hero-sub: #D6E0EE;
  --green: #1FA971;
  --green-bright: #4ED39A;
  --green-wash: #E6F5EE;
  --amber: #E9A23B;
  --amber-ink: #B77E22;
  --amber-wash: #FBF1E0;

  /* Report severity scale — status tokens, kept separate from the brand hues.
     Steps validated for CVD separation and lightness against a white surface;
     every mark that uses one also carries a visible value and word label. */
  --sev-good: #12855A;
  --sev-good-track: #DCEFE7;
  --sev-good-wash: #E4F2EB;
  --sev-good-ink: #0E6B49;
  --sev-fair: #E9A23B;
  --sev-fair-track: #FAEBD5;
  --sev-poor: #D0483F;
  --sev-poor-track: #F7DFDD;
  --sev-poor-wash: #FAE7E5;
  --sev-poor-ink: #A5342C;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-bright); }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: 2px; }
html { scroll-behavior: smooth; }

img { max-width: 100%; }

@keyframes kazFadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes kazPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes kazBarGrow { from { width: 0; } }
@keyframes kazRise { from { transform: scaleY(0); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-bright); color: #fff; transform: translateY(-1px); }
.btn-lg { font-size: 16px; padding: 16px 28px; }
.btn-lg:hover { transform: translateY(-2px); }
.btn-glass {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 15px 28px;
  backdrop-filter: blur(6px);
}
.btn-glass:hover { background: rgba(255,255,255,0.18); color: #fff; }
.btn-outline { background: #fff; color: var(--ink); border: 1px solid var(--line); padding: 15px 28px; font-size: 16px; }
.btn-outline:hover { background: var(--blue-wash); color: var(--ink); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid var(--navy-line-2); padding: 15px 28px; }
.btn-ghost:hover { background: var(--navy-card); color: #fff; }
.btn-block { display: block; width: 100%; font-size: 15.5px; padding: 15px 24px; }

.accent { color: var(--blue); }
.section-sub { font-size: 18px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 44px; max-width: 680px; }

h1, h2, h3 { margin: 0; }

/* ---------- Line breaking ----------
   Headings and short standfirsts get balanced lines so a heading never drops a
   single word onto its own line ("Meet Your Digital / Workforce."). Longer body
   copy gets `pretty`, which only fixes the last-line orphan. Both degrade to
   normal wrapping where unsupported. */
h1, h2, h3, .compare-title, .agent-name, .case h3, .svc-panel h3, .how-step h3 { text-wrap: balance; }
p, li, .section-sub, .gauge-note, .meter-tip, .client-desc, .case-shift-text { text-wrap: pretty; }
.section-sub,
.review-sub,
.intel-sub,
.hero-copy p,
.problem-head p,
.agents-head p,
.how-head p,
.cta-inner > p,
.about-tagline,
.problem-close { text-wrap: balance; }
/* Optional break, used where a heading reads best split at its sentence
   boundary. Only applies once the line is wide enough to be worth it. */
br.brk { display: none; }
@media (min-width: 1000px) { br.brk { display: inline; } }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; color: var(--ink); flex-shrink: 0; }
.nav-monogram { height: 38px; width: auto; }
.nav-wordmark { font-size: 15px; font-weight: 800; letter-spacing: 0.12em; color: var(--ink); }
.nav-wordmark span { font-weight: 500; color: var(--ink-soft); }
.nav-links { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.nav-links a:hover { color: var(--blue); }
.nav-cta { flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-scrim-x { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,20,38,0.92) 0%, rgba(7,20,38,0.78) 42%, rgba(7,20,38,0.28) 75%, rgba(7,20,38,0.15) 100%); }
.hero-scrim-y { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,20,38,0.35) 0%, rgba(7,20,38,0) 30%, rgba(7,20,38,0) 60%, rgba(7,20,38,0.55) 100%); }
.hero-inner { position: relative; max-width: 1240px; margin: 0 auto; padding: 120px 32px; }
.hero-copy { max-width: 660px; }
.hero-copy h1 {
  font-size: 68px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(7,20,38,0.4);
}
.hero-copy p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--hero-sub);
  margin: 0 0 36px;
  max-width: 520px;
  text-shadow: 0 1px 12px rgba(7,20,38,0.4);
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* ---------- Brand intro ---------- */
.intro-inner { max-width: 880px; margin: 0 auto; padding: 88px 32px; }
.intro h2 { font-size: 52px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 28px; }
.intro p { font-size: 19px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 18px; max-width: 720px; }
.intro p:last-child { margin-bottom: 0; }

/* ---------- Problem ---------- */
.problem { background: var(--navy); overflow: hidden; }
.problem-inner { max-width: 1240px; margin: 0 auto; padding: 88px 32px; }
.problem-head { max-width: 620px; margin-bottom: 56px; }
.problem-head h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 20px; color: #fff; }
.problem-head p { font-size: 18px; line-height: 1.65; color: var(--txt-dark-soft); margin: 0; }
.problem-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; }

.pile { display: flex; flex-direction: column; gap: 10px; }
.pile-label, .feed-label { font-size: 14px; font-weight: 700; color: var(--txt-dim); margin-bottom: 10px; }
.feed-label { margin-bottom: 20px; }
.pile-item {
  border: 1px solid var(--navy-line);
  border-radius: 12px;
  padding: 15px 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--txt-inverse);
}
.pile-1 { background: rgba(255,255,255,0.04); }
.pile-2 { background: rgba(255,255,255,0.05); }
.pile-3 { background: rgba(255,255,255,0.06); }
.pile-4 { background: rgba(255,255,255,0.07); }
.pile-5 { background: rgba(255,255,255,0.09); border-color: var(--navy-line-2); }
.pile-hot { color: #fff; }
.pile-when { font-size: 13.5px; font-weight: 700; color: var(--txt-dim); white-space: nowrap; }
.pile-when-hot { color: var(--txt-dark-soft); }

.handover { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.handover-orb {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--blue);
  display: grid; place-items: center;
  box-shadow: 0 0 0 10px rgba(21,88,201,0.18), 0 0 0 22px rgba(21,88,201,0.07);
}
.handover-orb img { height: 30px; width: auto; }
.handover-label { font-size: 13px; font-weight: 700; color: var(--blue-light); text-align: center; line-height: 1.4; }

.feed { position: relative; padding-left: 26px; }
.feed-line { position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--blue), rgba(21,88,201,0.1)); }
.feed-items { display: flex; flex-direction: column; gap: 22px; }
.feed-item { position: relative; }
.feed-dot {
  position: absolute; left: -26px; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--navy);
  display: grid; place-items: center;
  font-size: 10px; font-weight: 800;
}
.feed-done { border: 2px solid var(--green-bright); color: var(--green-bright); }
.feed-live { border: 2px solid var(--blue-light); }
.feed-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-light); animation: kazPulse 2s infinite; }
.feed-title { font-size: 15px; font-weight: 700; color: #fff; }
.feed-meta { font-size: 13px; font-weight: 600; color: var(--txt-dim); margin-top: 3px; }

.problem-close { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; color: #fff; margin: 56px 0 0; text-align: center; }

/* ---------- Services ---------- */
.services-inner { max-width: 1240px; margin: 0 auto; padding: 88px 32px; }
.services h2 { font-size: 48px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 12px; max-width: 720px; }
.services-grid { display: grid; grid-template-columns: 400px 1fr; gap: 24px; align-items: stretch; }

.svc-rail { display: flex; flex-direction: column; gap: 8px; }
.svc-row {
  font-family: 'Manrope', sans-serif;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font-size: 16.5px;
  font-weight: 700;
  transition: all 0.18s ease;
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.svc-row:hover { background: var(--bg-soft); }
.svc-row .svc-num { font-size: 13px; font-weight: 800; color: var(--blue); }
.svc-row .svc-name { flex: 1; }
.svc-row .svc-arrow { color: var(--blue-light); opacity: 0; transition: opacity 0.18s ease; }
.svc-row.active { border-color: var(--navy); background: var(--navy); color: #fff; }
.svc-row.active:hover { background: var(--navy); }
.svc-row.active .svc-num { color: var(--blue-light); }
.svc-row.active .svc-arrow { opacity: 1; }

.svc-panel {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: kazFadeUp 0.45s ease both;
  height: 100%;
}
.svc-panel[hidden] { display: none; }
.svc-panel h3 { font-size: 28px; font-weight: 800; letter-spacing: -0.015em; margin: 0 0 8px; }
.svc-panel > div > p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.svc-panel-dark { background: var(--navy); border: none; }
.svc-panel-dark h3 { color: #fff; }
.svc-panel-dark > div > p { color: var(--txt-dark-soft); }
.svc-visual { flex: 1; display: grid; place-items: center; }
.svc-link { font-size: 15px; font-weight: 700; color: var(--blue); }
.svc-link:hover { color: var(--blue-bright); }
.svc-link-light { color: var(--blue-light); }
.svc-link-light:hover { color: var(--blue-pale); }

/* Browser mock (websites panel) */
.browser-mock {
  width: 100%; max-width: 540px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(7,20,38,0.08);
}
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.browser-url { margin-left: 12px; background: var(--bg-soft); border-radius: 6px; padding: 4px 16px; font-size: 12px; color: var(--ink-soft); font-weight: 600; }
.browser-body { padding: 26px; display: flex; gap: 20px; align-items: flex-start; }
.browser-main { flex: 1; overflow: hidden; }
.skel { border-radius: 4px; }
.skel-title { height: 16px; width: 70%; background: var(--navy); margin-bottom: 10px; animation: kazBarGrow 0.7s ease 0.15s both; }
.skel-line { height: 10px; background: var(--line); margin-bottom: 7px; }
.skel-w92 { width: 92%; animation: kazBarGrow 0.7s ease 0.3s both; }
.skel-w62 { width: 62%; margin-bottom: 16px; animation: kazBarGrow 0.7s ease 0.45s both; }
.skel-cta {
  height: 34px; width: 132px;
  background: var(--blue);
  border-radius: 7px;
  display: grid; place-items: center;
  font-size: 12.5px; color: #fff; font-weight: 700;
  animation: kazFadeUp 0.5s ease 0.6s both;
}
.browser-side { width: 88px; border: 1px solid var(--line); border-radius: 10px; padding: 10px 8px; animation: kazFadeUp 0.5s ease 0.5s both; }
.skel-s { height: 5px; border-radius: 3px; background: var(--line); margin: 0 auto 4px; width: 90%; }
.skel-s-dark { height: 8px; width: 80%; background: var(--navy); margin-bottom: 6px; }
.skel-s-w90 { width: 90%; }
.skel-s-w70 { width: 70%; margin-bottom: 10px; }
.skel-s-btn { height: 17px; width: 90%; background: var(--blue); border-radius: 4px; margin: 0 auto; }

/* Chat mock (agents panel) */
.chat-mock {
  width: 100%; max-width: 540px;
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-radius: 14px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.chat-mock-row { display: flex; gap: 10px; }
.chat-mock-user { justify-content: flex-end; }
.chat-mock-bubble-user {
  background: var(--navy-line);
  color: var(--txt-inverse);
  font-size: 14px; font-weight: 500;
  padding: 10px 14px;
  border-radius: 12px 12px 3px 12px;
  max-width: 78%;
}
.chat-mock-avatar {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--blue);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.chat-mock-bubble-bot {
  background: var(--navy-card-2);
  color: var(--txt-inverse);
  font-size: 14px; font-weight: 500;
  padding: 10px 14px;
  border-radius: 12px 12px 12px 3px;
  line-height: 1.55;
}
.chat-mock-receipts { border-top: 1px solid var(--navy-line); padding-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.receipt { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--green-bright); }
.d1 { animation: kazFadeUp 0.4s ease 0.1s both; }
.d2 { animation: kazFadeUp 0.4s ease 0.45s both; }
.d3 { animation: kazFadeUp 0.4s ease 0.8s both; }
.d4 { animation: kazFadeUp 0.4s ease 1.1s both; }
.d5 { animation: kazFadeUp 0.4s ease 1.3s both; }
.d6 { animation: kazFadeUp 0.4s ease 1.5s both; }

/* Monitor mock (management panel) */
.monitor-mock {
  width: 100%; max-width: 540px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 16px 44px rgba(7,20,38,0.08);
}
.monitor-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; gap: 12px; }
.monitor-status { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 800; }
.dot-live { width: 9px; height: 9px; border-radius: 50%; background: var(--green); animation: kazPulse 2s infinite; flex-shrink: 0; }
.chip { font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 6px; white-space: nowrap; }
.chip-green { color: var(--green); background: var(--green-wash); font-size: 12.5px; }
.chip-blue { color: var(--blue); background: var(--blue-wash); }
.chip-amber { color: var(--amber-ink); background: var(--amber-wash); }
.monitor-bars { display: flex; align-items: flex-end; gap: 7px; height: 90px; margin-bottom: 22px; }
.mbar { flex: 1; border-radius: 4px 4px 0 0; transform-origin: bottom; animation: kazRise 0.6s ease both; }
.h58 { height: 58%; } .h66 { height: 66%; } .h52 { height: 52%; } .h74 { height: 74%; }
.h68 { height: 68%; } .h82 { height: 82%; } .h78 { height: 78%; } .h92 { height: 92%; } .h100 { height: 100%; }
.c1 { background: var(--blue-track); }
.c2 { background: var(--blue-pale); }
.c3 { background: var(--blue-light); }
.c4 { background: var(--blue); }
.b1 { animation-delay: 0.10s; } .b2 { animation-delay: 0.16s; } .b3 { animation-delay: 0.22s; }
.b4 { animation-delay: 0.28s; } .b5 { animation-delay: 0.34s; } .b6 { animation-delay: 0.40s; }
.b7 { animation-delay: 0.46s; } .b8 { animation-delay: 0.52s; } .b9 { animation-delay: 0.58s; }
.monitor-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.ms1 { animation: kazFadeUp 0.5s ease 0.5s both; }
.ms2 { animation: kazFadeUp 0.5s ease 0.62s both; }
.ms3 { animation: kazFadeUp 0.5s ease 0.74s both; }
.ms-label { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); margin-bottom: 3px; }
.ms-val { font-size: 15px; font-weight: 800; color: var(--ink); }
.ms-green { color: var(--green); }

/* Planner mock (social panel) */
.planner-mock {
  width: 100%; max-width: 540px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(7,20,38,0.08);
}
.plan-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.plan-last { border-bottom: none; }
.plan-day { font-size: 14px; font-weight: 700; color: var(--ink-soft); }
.plan-ch { font-size: 14.5px; font-weight: 600; }
.p1 { animation: kazFadeUp 0.4s ease 0.10s both; }
.p2 { animation: kazFadeUp 0.4s ease 0.22s both; }
.p3 { animation: kazFadeUp 0.4s ease 0.34s both; }
.p4 { animation: kazFadeUp 0.4s ease 0.46s both; }
.p5 { animation: kazFadeUp 0.4s ease 0.58s both; }

/* Reels (content panel) — real client short-form video, plays in .reel-modal */
.reels { display: grid; grid-template-columns: repeat(3, 150px); gap: 16px; }
.reel {
  position: relative;
  aspect-ratio: 9/15;
  border: 0;
  border-radius: 14px;
  padding: 12px;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.reel-still {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Scrim so the caption stays readable over any frame */
.reel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,22,48,0.30) 0%, rgba(11,22,48,0) 34%, rgba(11,22,48,0.85) 100%);
}
.reel-play, .reel-cap { position: relative; z-index: 1; }
.r1 { animation: kazFadeUp 0.45s ease 0.10s both; }
.r2 { animation: kazFadeUp 0.45s ease 0.25s both; }
.r3 { animation: kazFadeUp 0.45s ease 0.40s both; }
.reel-play {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(2px);
  display: grid; place-items: center;
  align-self: center;
  margin-top: 34px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.reel:hover .reel-play, .reel:focus-visible .reel-play { background: rgba(255,255,255,0.38); transform: scale(1.08); }
.reel:focus-visible { outline: 2px solid var(--blue-light); outline-offset: 3px; }
.reel-play span {
  width: 0; height: 0;
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}
.reel-title { display: block; font-size: 11.5px; font-weight: 700; color: #fff; line-height: 1.35; }
.reel-meta { display: block; font-size: 10.5px; font-weight: 700; color: var(--blue-light); margin-top: 4px; }

/* Reel player */
.reel-modal {
  position: fixed; inset: 0;
  z-index: 120;
  display: grid; place-items: center;
  padding: 24px;
  background: rgba(6,13,30,0.86);
  animation: kazFadeUp 0.2s ease both;
}
.reel-modal[hidden] { display: none; }
.reel-modal-video {
  width: min(320px, 82vw);
  max-height: 84vh;
  aspect-ratio: 9/16;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 26px 70px rgba(0,0,0,0.55);
}
.reel-modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 42px; height: 42px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: #fff; font-size: 22px; line-height: 1;
  cursor: pointer;
}
.reel-modal-close:hover { background: rgba(255,255,255,0.3); }

/* Team stack (digital business panel) */
.team-stack { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 420px; }
.team-tags span {
  font-size: 14px; font-weight: 700; color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 16px;
}
.t1 { animation: kazFadeUp 0.4s ease 0.10s both; }
.t2 { animation: kazFadeUp 0.4s ease 0.20s both; }
.t3 { animation: kazFadeUp 0.4s ease 0.30s both; }
.t4 { animation: kazFadeUp 0.4s ease 0.40s both; }
.t5 { animation: kazFadeUp 0.4s ease 0.50s both; }
.team-drop { width: 2px; height: 34px; background: linear-gradient(180deg, var(--line), var(--blue)); animation: kazFadeUp 0.4s ease 0.6s both; }
.team-core {
  display: flex; align-items: center; gap: 12px;
  background: var(--navy);
  border-radius: 12px;
  padding: 16px 26px;
  animation: kazFadeUp 0.4s ease 0.7s both;
  box-shadow: 0 0 0 8px rgba(21,88,201,0.10), 0 0 0 18px rgba(21,88,201,0.04);
}
.team-core img { height: 28px; width: auto; }
.team-core span { font-size: 15.5px; font-weight: 800; color: #fff; }

/* ---------- AI Agents ---------- */
.agents { background: var(--navy); }
.agents-inner { max-width: 1240px; margin: 0 auto; padding: 88px 32px; }
.agents-head { max-width: 760px; margin-bottom: 44px; }
.agents-head h2 { font-size: 48px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 18px; color: #fff; }
.agents-head p { font-size: 18px; line-height: 1.65; color: var(--txt-dark-soft); margin: 0; }
.agents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.agent-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.agent-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.agent-id { display: flex; align-items: center; gap: 14px; }
.agent-badge {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--blue);
  display: grid; place-items: center;
  font-size: 16px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.agent-num { font-size: 12.5px; font-weight: 700; color: var(--txt-dim); }
.agent-name { font-size: 20px; font-weight: 800; color: #fff; }
.agent-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--green-bright);
  background: rgba(31,169,113,0.12);
  padding: 5px 11px;
  border-radius: 6px;
  white-space: nowrap;
}
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); animation: kazPulse 2s infinite; flex-shrink: 0; }
.agent-role { font-size: 14.5px; font-weight: 700; color: var(--txt-inverse); }
.agent-stats { border-top: 1px solid var(--navy-line); padding-top: 16px; }
.agent-stats-label { font-size: 12.5px; font-weight: 700; color: var(--txt-dim); margin-bottom: 12px; }
.agent-stat { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 9px; }
.agent-stat:last-child { margin-bottom: 0; }
.agent-stat span:first-child { font-size: 14px; font-weight: 500; color: var(--txt-dark-soft); }
.agent-stat-val { font-size: 16px; font-weight: 800; color: var(--blue-light); }

/* ---------- How it works ---------- */
.how { background: var(--navy); border-bottom: 1px solid var(--line); overflow: hidden; }
.how-inner { max-width: 1240px; margin: 0 auto; padding: 88px 32px; }
.how-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 64px; flex-wrap: wrap; }
.how-head h2 { font-size: 48px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 12px; color: #fff; }
.how-head p { font-size: 18px; color: var(--txt-dark-soft); margin: 0; }
.how-tag { color: #fff; font-weight: 700; }
.how-head .btn { flex-shrink: 0; }

.how-track { position: relative; }
.how-rail { position: absolute; top: 27px; left: 28px; right: 28px; height: 2px; background: var(--navy-line); }
.how-progress {
  position: absolute; top: 27px; left: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  width: 0%;
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: calc(100% - 56px);
}
.how-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.how-step { cursor: pointer; opacity: 0.55; transition: opacity 0.4s ease; }
.how-step.active, .how-step.done { opacity: 1; }
.how-dot {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 15px; font-weight: 800;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  background: var(--navy);
  border: 2px solid var(--navy-line);
  color: var(--txt-dim);
}
.how-step.done .how-dot { background: var(--navy-card-2); border-color: var(--blue); color: var(--blue-light); }
.how-step.active .how-dot {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 9px rgba(21,88,201,0.18), 0 0 0 20px rgba(21,88,201,0.06);
}
.how-step h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 10px; color: var(--txt-inverse); transition: color 0.4s ease; }
.how-step.active h3 { color: #fff; }
.how-step p { font-size: 15px; line-height: 1.6; color: var(--txt-dark-soft); margin: 0 0 16px; }
.how-chip {
  display: inline-block;
  font-size: 12.5px; font-weight: 700;
  padding: 6px 12px;
  border-radius: 7px;
  transition: all 0.4s ease;
  background: rgba(255,255,255,0.05);
  color: var(--txt-dim);
  border: 1px solid var(--navy-line);
}
.how-step.active .how-chip {
  background: rgba(21,88,201,0.22);
  color: var(--blue-pale);
  border-color: rgba(110,155,240,0.4);
}

/* ---------- Digital review ---------- */
.review { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.review-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 32px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.review h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 18px; }
.review-sub { font-size: 18px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 32px; }
.review-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.review-form label { display: flex; flex-direction: column; gap: 7px; }
.review-form label span { font-size: 13px; font-weight: 700; color: var(--ink); }
.review-form input {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  outline: none;
}
.review-form input:focus { border-color: var(--blue); }
.review-form textarea {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  outline: none;
  resize: vertical;
}
.review-form textarea:focus { border-color: var(--blue); }
.review-form label em { font-weight: 500; color: var(--ink-soft); font-style: normal; }
.book-form { max-width: 620px; margin-bottom: 24px; }
.review-status-success { color: var(--green); }
.review-form .btn { font-size: 16px; padding: 15px 24px; }
.review-form .btn:disabled { opacity: 0.65; cursor: default; transform: none; }
.review-status { font-size: 13.5px; line-height: 1.55; font-weight: 600; color: var(--ink-soft); margin: 0; }
.review-status-error { color: var(--amber-ink); }
.review-status[hidden] { display: none; }

.report {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(7,20,38,0.07);
}
.report-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.report-brand { display: flex; align-items: center; gap: 10px; }
.report-brand img { height: 24px; }
.report-brand span { font-size: 14px; font-weight: 800; }
.report-tag { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); }
/* Severity chip — the word carries the state, the colour only reinforces it */
.sev {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
}
.sev::before { content: ""; width: 6px; height: 6px; border-radius: 2px; background: currentColor; flex-shrink: 0; }
.sev-good { color: var(--sev-good-ink); background: var(--sev-good-wash); }
.sev-fair { color: var(--amber-ink); background: var(--amber-wash); }
.sev-poor { color: var(--sev-poor-ink); background: var(--sev-poor-wash); }

/* Hero figure — the one number the card leads with */
.gauge-panel {
  display: grid;
  grid-template-columns: 144px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--navy);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 24px;
}
.gauge { position: relative; width: 144px; height: 144px; }
.gauge-svg { width: 100%; height: 100%; display: block; transform: rotate(135deg); }
.gauge-svg circle { fill: none; stroke-width: 9; stroke-linecap: round; }
.gauge-track { stroke: rgba(255,255,255,0.12); stroke-dasharray: 75 100; }
.gauge-fill { stroke: var(--sev-fair); stroke-dasharray: var(--p) 100; }
.gauge-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
}
.gauge-num { font-size: 48px; font-weight: 800; line-height: 1; letter-spacing: -0.035em; color: #fff; }
.gauge-den { font-size: 11.5px; font-weight: 700; color: var(--txt-dim); }
.gauge-label { font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-dim); margin-bottom: 10px; }
.gauge-verdict { margin-bottom: 12px; }
.gauge-panel .sev-good { color: #6FD9AC; background: rgba(18,133,90,0.20); }
.gauge-panel .sev-fair { color: #F2C27C; background: rgba(233,162,59,0.18); }
.gauge-panel .sev-poor { color: #F0A099; background: rgba(208,72,63,0.20); }
.gauge-note { font-size: 13.5px; line-height: 1.55; color: var(--txt-dark-soft); margin: 0; }
.gauge-note strong { color: #fff; font-weight: 800; }

/* Meters — one ratio against a limit, per dimension */
.meters { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.meter {
  position: relative;
  padding: 11px 12px;
  margin: 0 -12px;
  border-radius: 10px;
  outline: none;
  transition: background-color 0.18s ease;
}
.meter:hover, .meter:focus-visible { background: var(--bg-soft); }
.meter:focus-visible { box-shadow: 0 0 0 2px var(--blue-bright); }
.meter-top { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.meter-name { flex: 1; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.meter-val { font-size: 15px; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }
.meter-val i { font-style: normal; font-size: 12px; font-weight: 700; color: var(--ink-soft); margin-left: 1px; }
.meter-track { position: relative; height: 8px; border-radius: 5px; }
.meter-fill { position: absolute; left: 0; top: 0; bottom: 0; width: calc(var(--v) * 1%); border-radius: 5px; }
.meter-mark {
  position: absolute;
  top: -4px; bottom: -4px;
  left: calc(var(--b) * 1%);
  width: 2px; margin-left: -1px;
  border-radius: 1px;
  background: var(--ink);
  box-shadow: 0 0 0 2px #fff;
}
.m-good .meter-track { background: var(--sev-good-track); }
.m-good .meter-fill { background: var(--sev-good); }
.m-fair .meter-track { background: var(--sev-fair-track); }
.m-fair .meter-fill { background: var(--sev-fair); }
.m-poor .meter-track { background: var(--sev-poor-track); }
.m-poor .meter-fill { background: var(--sev-poor); }
.meter-tip {
  position: absolute;
  left: 10px; right: 10px;
  top: calc(100% - 4px);
  z-index: 4;
  background: var(--navy);
  color: var(--txt-inverse);
  font-size: 12.5px; font-weight: 600; line-height: 1.5;
  padding: 11px 14px;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(7,20,38,0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  pointer-events: none;
}
.meter:hover .meter-tip, .meter:focus-visible .meter-tip { opacity: 1; visibility: visible; transform: translateY(0); }
.meter-legend { display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); margin: 0 0 24px 2px; }
.legend-mark { width: 2px; height: 13px; border-radius: 1px; background: var(--ink); box-shadow: 0 0 0 2px #fff; flex-shrink: 0; }

@keyframes kazArc { from { stroke-dasharray: 0 100; } }
@keyframes kazMeter { from { width: 0; } }

@media (prefers-reduced-motion: no-preference) {
  .report.in-view .gauge-fill { animation: kazArc 1.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
  .report.in-view .meter-fill { animation: kazMeter 1.05s cubic-bezier(0.22, 1, 0.36, 1) both; }
  .report.in-view .meter:nth-child(1) .meter-fill { animation-delay: 0.10s; }
  .report.in-view .meter:nth-child(2) .meter-fill { animation-delay: 0.20s; }
  .report.in-view .meter:nth-child(3) .meter-fill { animation-delay: 0.30s; }
  .report.in-view .meter:nth-child(4) .meter-fill { animation-delay: 0.40s; }
  .report.in-view .meter:nth-child(5) .meter-fill { animation-delay: 0.50s; }
}

.report-wins-label { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.report-wins { display: flex; flex-direction: column; gap: 8px; margin-bottom: 26px; }
.report-wins div { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; }
.diamond { width: 7px; height: 7px; background: var(--amber); transform: rotate(45deg); flex-shrink: 0; }

/* ---------- Our work ---------- */
.work-inner { max-width: 1240px; margin: 0 auto; padding: 88px 32px; }
.work h2 { font-size: 48px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 12px; }
.work .section-sub { margin-bottom: 24px; }
.case {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1.1fr 1fr;
  gap: 44px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
/* Hovering anywhere in a case lights the whole row: the outline number fills
   blue, a soft wash sweeps behind it and the before/after card lifts. */
.case::before {
  content: "";
  position: absolute;
  inset: 1px -28px 0;
  border-radius: 18px;
  background: linear-gradient(100deg, var(--blue-wash) 0%, rgba(234,241,253,0.55) 45%, rgba(234,241,253,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.case > * { position: relative; }
.case:hover::before, .case:focus-within::before { opacity: 1; }
.case-num {
  font-size: 104px;
  font-weight: 800;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px var(--blue-chip);
  letter-spacing: -0.03em;
  transition: color 0.28s ease, -webkit-text-stroke-color 0.28s ease, transform 0.28s ease;
}
.case:hover .case-num, .case:focus-within .case-num {
  color: var(--blue);
  -webkit-text-stroke-color: var(--blue);
  transform: translateY(-3px);
}
.case:hover .case-shift, .case:focus-within .case-shift {
  background: #fff;
  border-color: var(--blue-chip);
  box-shadow: 0 14px 36px rgba(7,20,38,0.09);
}
.case:hover .case-tick, .case:focus-within .case-tick { width: 34px; }
.case:hover .case-built span, .case:focus-within .case-built span { background: #fff; border-color: var(--blue-chip); }
.case-sector { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.case-tick { display: inline-block; width: 22px; height: 2px; background: var(--blue); transform: skewY(-14deg); transition: width 0.28s ease; }
.case-sector span:last-child { font-size: 14px; font-weight: 700; color: var(--blue); }
.case h3 { font-size: 28px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.2; margin: 0 0 20px; }
.case-built { display: flex; flex-wrap: wrap; gap: 8px; }
.case-built span {
  font-size: 13px; font-weight: 700; color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 6px 13px;
  transition: background-color 0.28s ease, border-color 0.28s ease;
}
.case-shift {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 28px;
  transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.case-before, .case-after { display: flex; align-items: flex-start; gap: 12px; }
.case-before .diamond { margin-top: 7px; width: 8px; height: 8px; }
.case-shift-label { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); margin-bottom: 4px; }
.case-shift-label-after { color: var(--green); }
.case-shift-text { font-size: 15px; line-height: 1.55; color: var(--ink-soft); font-weight: 500; }
.case-shift-text-after { font-size: 15.5px; color: var(--ink); font-weight: 700; }
.case-arrow { display: flex; align-items: center; gap: 12px; margin: 16px 0; }
.case-arrow-pad { width: 8px; }
.case-arrow-stem { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.case-arrow-line { width: 2px; height: 14px; background: linear-gradient(180deg, var(--amber), var(--green)); }
.case-arrow-head { width: 0; height: 0; border-top: 6px solid var(--green); border-left: 5px solid transparent; border-right: 5px solid transparent; }
.case-arrow-kaz { font-size: 12px; font-weight: 800; color: var(--blue); }
.case-check { font-size: 14px; font-weight: 800; color: var(--green); flex-shrink: 0; line-height: 1.4; }

/* ---------- Client websites ---------- */
.clients { background: #fff; border-top: 1px solid var(--line); }
.clients-inner { max-width: 1240px; margin: 0 auto; padding: 88px 32px; }
.clients h2 { font-size: 48px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 12px; }
.clients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.client-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  color: var(--ink);
  transition: all 0.18s ease;
}
.client-card:hover {
  color: var(--ink);
  border-color: var(--blue-chip);
  box-shadow: 0 12px 34px rgba(7,20,38,0.08);
  transform: translateY(-2px);
}
.client-logo {
  height: 96px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  margin-bottom: 6px;
}
.client-logo img { max-height: 100%; max-width: 80%; object-fit: contain; }
.client-mono {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  font-size: 16px; font-weight: 800;
  flex-shrink: 0;
}
.client-mono-green { background: var(--green); }
.client-logo-dark { background: #000; border-color: #000; }
.client-logo-dark img { max-width: 92%; }
.client-wordmark { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.client-name { font-size: 17px; font-weight: 800; }
.client-desc { font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); flex: 1; }
.client-domain { font-size: 13.5px; font-weight: 700; color: var(--blue); }
.client-domain span { transition: transform 0.18s ease; display: inline-block; }
.client-card:hover .client-domain span { transform: translateX(3px); }

/* ---------- Comparison ---------- */
.compare { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.compare-inner { max-width: 1240px; margin: 0 auto; padding: 88px 32px; }
.compare h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 18px; max-width: 880px; }
.compare .section-sub { max-width: 640px; margin-bottom: 48px; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 44px; }
.compare-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 36px; }
.compare-card-dark { background: var(--navy); border: none; }
.compare-label { font-size: 15px; font-weight: 800; color: var(--ink-soft); margin-bottom: 24px; }
.compare-label-blue { color: var(--blue-light); }
.compare-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 22px; }
.compare-list { display: flex; flex-direction: column; gap: 13px; }
.compare-list > div {
  font-size: 16px; font-weight: 600; color: var(--ink-soft);
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}
.compare-note { font-size: 14.5px !important; border-bottom: none !important; padding-bottom: 0 !important; }
.compare-list-dark > div {
  display: flex; align-items: center; gap: 11px;
  color: var(--txt-inverse);
  border-bottom-color: var(--navy-line);
}
.compare-list-dark span { color: var(--green-bright); font-weight: 800; }
.compare-last { border-bottom: none !important; padding-bottom: 0 !important; }

/* ---------- About ---------- */
.about-inner { max-width: 880px; margin: 0 auto; padding: 88px 32px; }
.about h2 { font-size: 48px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 28px; }
.about p { font-size: 19px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 18px; }
.about-tagline { font-size: 24px !important; font-weight: 800; letter-spacing: -0.01em; color: var(--ink) !important; margin: 32px 0 0 !important; }

/* ---------- Final CTA ---------- */
.cta { background: var(--navy); position: relative; overflow: hidden; }
.cta-watermark { position: absolute; right: -60px; top: -40px; width: 480px; height: 480px; opacity: 0.05; pointer-events: none; }
.cta-watermark img { width: 100%; }
.cta-inner { max-width: 880px; margin: 0 auto; padding: 88px 32px; position: relative; }
.cta h2 { font-size: 52px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; margin: 0 0 22px; color: #fff; }
.cta-inner > p { font-size: 19px; line-height: 1.65; color: var(--txt-dark-soft); margin: 0 0 36px; max-width: 620px; }
.cta-actions { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.cta-note { font-size: 14px !important; color: var(--txt-dim) !important; margin: 0 !important; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); border-top: 1px solid var(--navy-line); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 60px 32px 36px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-wordmark { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-wordmark img { height: 40px; width: auto; }
.footer-wordmark > span { font-size: 16px; font-weight: 800; letter-spacing: 0.12em; color: #fff; }
.footer-wordmark > span span { font-weight: 500; color: var(--txt-dark-soft); }
.footer-tagline { font-size: 13.5px; font-weight: 700; color: var(--blue-light); margin-bottom: 18px; }
.footer-grid p { font-size: 14px; line-height: 1.6; color: var(--txt-dim); margin: 0; max-width: 280px; }
.footer-address { font-style: normal; font-size: 14px; line-height: 1.6; color: var(--txt-dim); margin-top: 16px; }
.footer-address-slim { font-size: 13px; font-weight: 600; margin: 0 0 18px; }
.footer-head { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14.5px; font-weight: 600; color: var(--txt-inverse); }
.footer-links a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid var(--navy-line);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom span:first-child { font-size: 13px; color: var(--txt-dim); font-weight: 600; }
.footer-motto { font-size: 13.5px; font-weight: 800; color: var(--blue-light); }

/* ---------- Consent banner ---------- */
.consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 350px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 16px 48px rgba(7,20,38,0.18);
  z-index: 102;
  animation: kazFadeUp 0.4s ease;
}
.consent-banner p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.consent-banner a { font-weight: 700; }
.consent-actions { display: flex; gap: 8px; }
.consent-actions .btn { font-size: 13.5px; padding: 9px 18px; }
.consent-decline { background: #fff; border: 1px solid var(--line); color: var(--ink-soft); }
.consent-decline:hover { background: var(--bg-soft); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 320px 1fr; }
  .hero-copy h1 { font-size: 56px; }
  .case { grid-template-columns: 110px 1fr; }
  .case-shift { grid-column: 2; }
  .review-inner { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-inner { gap: 16px; }
  .nav-cta { margin-left: auto; }

  .hero-inner { padding: 88px 24px; }
  .hero-copy h1 { font-size: 44px; }

  .intro h2 { font-size: 40px; }
  .problem-head h2, .agents-head h2, .how-head h2, .services h2, .work h2, .about h2, .compare h2, .clients h2 { font-size: 36px; }
  .cta h2 { font-size: 40px; }

  .problem-grid { grid-template-columns: 1fr; gap: 44px; }
  .handover { flex-direction: row; }
  .handover-label br { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .svc-panel { min-height: 0; }

  .agents-grid { grid-template-columns: 1fr; }

  .how-steps { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .how-rail, .how-progress { display: none; }

  .case { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
  .case-num { font-size: 72px; }
  .case-shift { grid-column: auto; }

  .compare-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .reels { grid-template-columns: repeat(3, minmax(0, 150px)); }
}

@media (max-width: 560px) {
  .nav-inner, .hero-inner, .intro-inner, .problem-inner, .services-inner,
  .agents-inner, .how-inner, .review-inner, .work-inner, .compare-inner,
  .about-inner, .cta-inner, .footer-inner { padding-left: 20px; padding-right: 20px; }

  .hero-copy h1 { font-size: 36px; }
  .btn-lg { width: 100%; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }

  .how-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }

  .reels { grid-template-columns: repeat(2, minmax(0, 150px)); }
  .browser-body { flex-direction: column; }
  .browser-side { width: 100%; }

  .report { padding: 22px; }
  .gauge-panel { grid-template-columns: 1fr; justify-items: start; gap: 18px; padding: 22px 20px; }
  .gauge { width: 128px; height: 128px; }
  .gauge-num { font-size: 42px; }
  .meter-top { flex-wrap: wrap; gap: 8px; }
  .meter-name { flex: 1 0 100%; }
  .meter-val { margin-left: auto; }
  .case::before { inset: 1px -16px 0; }

  .consent-banner { left: 12px; right: 96px; max-width: none; bottom: 16px; }
}

/* ---------- AI Opportunity Report ---------- */
.intel { background: #fff; border-bottom: 1px solid var(--line); }
.intel-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 32px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}
.intel-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-wash);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.intel h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 18px; }
.intel-sub { font-size: 18px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 26px; }
.intel-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.intel-list li { display: flex; gap: 12px; font-size: 15.5px; line-height: 1.55; }
.intel-tick {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 8px;
  background: var(--green-wash);
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.intel-note { font-size: 14px; color: var(--ink-soft); margin: 0; max-width: 520px; }
.intel-form { align-self: stretch; }
.intel-form-head { font-size: 17px; font-weight: 800; margin-bottom: 4px; }

@media (max-width: 900px) {
  .intel-inner { grid-template-columns: 1fr; gap: 40px; }
  .intel h2 { font-size: 34px; }
}
@media (max-width: 560px) {
  .intel-inner { padding-left: 20px; padding-right: 20px; }
}
