/* ═══════════════════════════════════════════
   DEVON PIXELS — style.css
   Cloudflare Pages Production Stylesheet
════════════════════════════════════════════ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:   #FFFFFF;
  --surface: #F4F5F7;
  --blue-lt: #EEF3FB;
  --blue:    #0047A8;
  --blue-dk: #003380;
  --text:    #1A1A2E;
  --muted:   #6B7280;
  --border:  #E2E4E8;
  --dark:    #13131F;
  --f-head:  'Bricolage Grotesque', sans-serif;
  --f-body:  'DM Sans', sans-serif;
  --nav-h:   68px;
  --section-pad: 100px 80px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── NAVIGATION ── */
#site-nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

#site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 600;
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--blue-dk); }

/* Hamburger — mobile only */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 600;
  background: var(--blue);
  color: #fff;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--blue-dk); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  color: var(--blue);
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--blue);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-ghost:hover { background: var(--blue-lt); transform: translateY(-1px); }

.btn-white {
  display: block;
  text-align: center;
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 600;
  background: #fff;
  color: var(--blue);
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-white:hover { background: rgba(255,255,255,0.92); }

.btn-outline-white {
  display: block;
  text-align: center;
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-full { width: 100%; justify-content: center; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
}

.hero-left {
  padding: calc(var(--nav-h) + 80px) 64px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: var(--f-head);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
  position: relative;
  display: inline;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineIn 0.6s 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes underlineIn { to { transform: scaleX(1); } }

.hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.proof-avs {
  display: flex;
}

.proof-avs span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  font-family: var(--f-head);
  margin-left: -10px;
}
.proof-avs span:first-child { margin-left: 0; }

.proof-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.proof-text strong { color: var(--text); font-weight: 600; }

/* Hero right panel */
.hero-right {
  background: var(--blue-lt);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 52px 80px;
}

/* ── COLOUR EXPLOSION ORBS ── */
.xp-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.xp-1 {
  width: 340px; height: 340px;
  top: -80px; right: -60px;
  background: radial-gradient(circle at 40% 40%, #FF5C00 0%, rgba(255,92,0,0) 70%);
  opacity: 0.82;
  animation: orbDrift1 11s ease-in-out infinite alternate;
}
.xp-2 {
  width: 280px; height: 280px;
  top: 20px; right: 80px;
  background: radial-gradient(circle at 50% 50%, #FF3CAC 0%, rgba(255,60,172,0) 70%);
  opacity: 0.78;
  animation: orbDrift2 14s ease-in-out infinite alternate;
}
.xp-3 {
  width: 260px; height: 260px;
  top: -40px; right: 160px;
  background: radial-gradient(circle at 60% 30%, #FFD200 0%, rgba(255,210,0,0) 70%);
  opacity: 0.7;
  animation: orbDrift3 9s ease-in-out infinite alternate;
}
.xp-4 {
  width: 320px; height: 320px;
  bottom: -60px; right: -40px;
  background: radial-gradient(circle at 45% 55%, #784BA0 0%, rgba(120,75,160,0) 70%);
  opacity: 0.75;
  animation: orbDrift4 13s ease-in-out infinite alternate;
}
.xp-5 {
  width: 240px; height: 240px;
  bottom: 40px; right: 140px;
  background: radial-gradient(circle at 50% 50%, #2B86C5 0%, rgba(43,134,197,0) 70%);
  opacity: 0.72;
  animation: orbDrift5 10s ease-in-out infinite alternate;
}

@keyframes orbDrift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(-30px,40px) scale(1.12); } }
@keyframes orbDrift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(25px,-35px) scale(0.9); } }
@keyframes orbDrift3 { from { transform: translate(0,0) scale(1); } to { transform: translate(-20px,30px) scale(1.08); } }
@keyframes orbDrift4 { from { transform: translate(0,0) scale(1); } to { transform: translate(20px,-25px) scale(1.1); } }
@keyframes orbDrift5 { from { transform: translate(0,0) scale(1); } to { transform: translate(-25px,20px) scale(0.92); } }

/* ── HERO CARDS ── */
.hero-cards {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 340px;
}

.hcard {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 71, 168, 0.1);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0, 71, 168, 0.1);
}

.hcard-float-1 { animation: hcFloat1 7s ease-in-out infinite; }
.hcard-float-2 { animation: hcFloat2 9s ease-in-out infinite; }
.hcard-float-3 { animation: hcFloat1 8s ease-in-out 1s infinite; }

@keyframes hcFloat1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes hcFloat2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.hcard-label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hcard-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  color: #16A34A;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #16A34A;
  animation: statusPulse 2s ease infinite;
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hcard-title {
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.hcard-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.hcard-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.chip {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--blue-lt);
  color: var(--blue);
  border: 1px solid rgba(0, 71, 168, 0.15);
}
.notif-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.notif-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.notif-time {
  font-size: 11px;
  color: #16A34A;
  font-weight: 600;
  margin-top: 4px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--text);
  padding: 52px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--f-head);
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-sfx {
  font-family: var(--f-head);
  font-size: 32px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
}

.stat-pfx {
  font-size: 28px;
}

.stat-lbl {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ── SECTIONS ── */
.section {
  padding: 100px 80px;
}
.section-white   { background: var(--white); }
.section-surface { background: var(--surface); }
.section-blue-lt { background: var(--blue-lt); }

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-header {
  max-width: 780px;
  margin-bottom: 64px;
}

h2 {
  font-family: var(--f-head);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 20px;
}

h3 {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── 3-COLUMN CARD GRID ── */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── TWO COLUMN ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col-start { align-items: start; }

/* ── PROBLEM CARDS ── */
.problem-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--blue);
  transition: height 0.35s ease;
}
.problem-card:hover { border-color: rgba(0, 71, 168, 0.3); transform: translateY(-4px); }
.problem-card:hover::before { height: 100%; }

.problem-num {
  font-family: var(--f-head);
  font-size: 72px;
  font-weight: 900;
  color: rgba(0, 71, 168, 0.06);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  letter-spacing: -0.04em;
  pointer-events: none;
  transition: color 0.3s;
}
.problem-card:hover .problem-num { color: rgba(0, 71, 168, 0.11); }
.problem-icon { font-size: 28px; margin-bottom: 20px; display: block; }

.problem-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

/* ── AI AGENT SECTION ── */
.agent-visual {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 71, 168, 0.12);
  box-shadow: 0 20px 60px rgba(0, 71, 168, 0.1);
  overflow: hidden;
}

.agent-hdr {
  background: var(--blue);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.win-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: block;
}
.agent-hdr-label {
  font-family: var(--f-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 8px;
}

.agent-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px;
}

.channel-card {
  background: var(--blue-lt);
  border: 1px solid rgba(0, 71, 168, 0.12);
  border-radius: 10px;
  padding: 16px;
  transition: border-color 0.25s, transform 0.25s;
}
.channel-card:hover {
  border-color: rgba(0, 71, 168, 0.35);
  transform: translateY(-3px);
}
.ch-icon { font-size: 22px; margin-bottom: 10px; display: block; }
.channel-card strong {
  display: block;
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.channel-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.agent-stats-row {
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  background: #FAFBFD;
}
.ag-stat { text-align: center; }
.ag-num {
  font-family: var(--f-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
}
.ag-lbl {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

.agent-copy .section-sub { margin-bottom: 32px; }

.feature-list { display: flex; flex-direction: column; gap: 0; }
.feature-item {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.feature-ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.feature-item strong {
  display: block;
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ── PROCESS ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
}

.process-step {
  display: flex;
  gap: 28px;
  padding: 36px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.process-step:hover {
  border-color: rgba(0, 71, 168, 0.25);
  box-shadow: 0 8px 32px rgba(0, 71, 168, 0.08);
}

.step-num {
  font-family: var(--f-head);
  font-size: 80px;
  font-weight: 900;
  color: rgba(0, 71, 168, 0.06);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  letter-spacing: -0.04em;
  transition: color 0.3s;
}
.process-step:hover .step-num { color: rgba(0, 71, 168, 0.12); }

.step-tag {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.step-body h3 { margin-bottom: 10px; }
.step-body p { font-size: 15px; line-height: 1.75; color: var(--muted); }

/* ── WHO THIS IS FOR ── */
.for-left h2 { margin-bottom: 20px; }

.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.check-ico {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.not-for {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.not-for strong { color: var(--text); font-weight: 600; }

.for-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sector-box, .values-box {
  border-radius: var(--radius-lg);
  padding: 28px;
}
.sector-box { background: var(--blue-lt); border: 1px solid rgba(0, 71, 168, 0.12); }
.values-box { background: var(--surface); border: 1px solid var(--border); }

.box-head {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sector-tag {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 14px;
  color: var(--text);
}

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.values-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.values-list li span {
  color: var(--blue);
  font-weight: 700;
  font-family: var(--f-head);
}

/* ── TESTIMONIALS ── */
.testi-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.stars { color: #FBBF24; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }

.ph-bar {
  height: 11px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 8px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.testi-soon {
  font-size: 12px;
  color: #9CA3AF;
  margin-top: 16px;
  font-style: italic;
}

/* ── ENQUIRY FORM ── */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.form-copy h2 { margin-bottom: 16px; }
.form-copy p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-ico {
  width: 40px; height: 40px;
  background: var(--blue-lt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}
.contact-item a:hover { color: var(--blue); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field-group.full { grid-column: 1 / -1; }

label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.req { color: var(--blue); }
.opt { font-weight: 400; color: var(--muted); }

input, select, textarea {
  font-family: var(--f-body);
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 71, 168, 0.1);
}
textarea { resize: vertical; min-height: 120px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-status {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
}
.form-status.success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}
.form-status.error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--blue);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.cta-xp-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.cta-xp-1 { width:380px;height:380px;bottom:-100px;left:-80px;background:radial-gradient(circle,#2B86C5 0%,rgba(43,134,197,0) 70%);opacity:.7;animation:orbDrift1 13s ease-in-out infinite alternate; }
.cta-xp-2 { width:300px;height:300px;bottom:-20px;left:60px;background:radial-gradient(circle,#784BA0 0%,rgba(120,75,160,0) 70%);opacity:.65;animation:orbDrift2 10s ease-in-out infinite alternate; }
.cta-xp-3 { width:260px;height:260px;bottom:80px;left:-20px;background:radial-gradient(circle,#FF3CAC 0%,rgba(255,60,172,0) 70%);opacity:.68;animation:orbDrift3 11s ease-in-out infinite alternate; }
.cta-xp-4 { width:220px;height:220px;bottom:160px;left:180px;background:radial-gradient(circle,#FF5C00 0%,rgba(255,92,0,0) 70%);opacity:.65;animation:orbDrift4 9s ease-in-out infinite alternate; }

.cta-inner { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; }

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.cta-tag {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.cta-tag::before { content:''; width:24px; height:1.5px; background:rgba(255,255,255,0.4); }

.cta-h2 {
  font-family: var(--f-head);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.07;
  letter-spacing: -0.03em;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 72px 80px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner { max-width: 1160px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-tagline { font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1.75; margin-bottom: 14px; }
.footer-url { font-size: 13px; color: rgba(255,255,255,0.25); }

.footer-col { display: flex; flex-direction: column; }
.footer-col-head {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-col a {
  font-family: var(--f-body);
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.25); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px 40px; }

  .section { padding: 80px 40px; }
  .stats-bar { padding: 48px 40px; }
  footer { padding: 60px 40px 32px; }
  #site-nav { padding: 0 40px; }

  .hero-left { padding: calc(var(--nav-h) + 60px) 48px 72px 48px; }
  .hero-right { padding: calc(var(--nav-h) + 40px) 40px 72px; }

  .two-col { gap: 48px; }
  .form-layout { gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-grid { gap: 48px; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  #site-nav { padding: 0 20px; gap: 16px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; width: 100%; background: var(--white); padding: 24px 20px; border-bottom: 1px solid var(--border); gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 14px 0; font-size: 16px; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: calc(var(--nav-h) + 48px) 20px 48px; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-sub { font-size: 16px; }
  .hero-right { display: none; }

  .stats-bar { grid-template-columns: 1fr 1fr; padding: 40px 20px; }
  .stat-item { padding: 20px 12px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-num { font-size: 40px; }
  .stat-sfx { font-size: 24px; }

  .section { padding: 64px 20px; }
  h2 { font-size: clamp(26px, 7vw, 40px); }

  .card-grid-3 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .form-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-group.full { grid-column: 1; }

  .checklist { grid-template-columns: 1fr; }
  .process-step { padding: 24px 20px; gap: 16px; }
  .step-num { font-size: 48px; width: 48px; }

  .cta-section { padding: 64px 20px; }
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-btns { flex-direction: row; flex-wrap: wrap; }

  footer { padding: 48px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ════════════════════════════════════════════
   CHATBASE WIDGET — CUSTOM STYLES
════════════════════════════════════════════ */
#chatbase-bubble-button, 
.chatbase-bubble-button,
#chatbase-message-bubble {
  animation: chatbasePulse 2.5s infinite !important;
  border-radius: 50%;
}

@keyframes chatbasePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 71, 168, 0.4); /* DevPixels Blue */
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 14px rgba(0, 71, 168, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 71, 168, 0);
  }
}
