@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* =============================================
   GEOCODE SPATIAL SOLUTIONS LTD
   New Colour Palette: Forest + Gold + Cream
   Dark base: #111A16  (deep forest green-black)
   Primary:   #6BBF8A  (fresh green)
   Accent:    #C99A2E  (warm gold)
   Light bg:  #F4F2EC  (warm cream)
   Text:      #1C2B22  (rich dark green-black)
   ============================================= */

:root {
  --dark:        #111A16;
  --dark-mid:    #1C2B22;
  --dark-light:  #263830;
  --green:       #6BBF8A;
  --green-light: #8DD4A3;
  --green-pale:  #D4EDE0;
  --gold:        #C99A2E;
  --gold-light:  #E2B84B;
  --cream:       #F4F2EC;
  --cream-dark:  #EAE7DF;
  --white:       #FFFFFF;
  --text:        #1C2B22;
  --text-mid:    #4A5E52;
  --text-light:  #7A9085;
  --line:        #D8D4CA;
  --line-dark:   #2A3D32;

  --font-display: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --container:    1200px;
  --radius:       6px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.eyebrow::before { content: none; }
.eyebrow.gold { color: var(--gold); }


/* ====== LOGO ANIMATION ====== */
/* ====== GLOBE LOGO ANIMATIONS ====== */
.logo-mark-anim {
  width: 64px; height: 64px; flex-shrink: 0;
}
/* Orbit ring rotates slowly */
.logo-mark-anim .orbit-ring {
  transform-origin: 100px 105px;
  animation: orbitSpin 8s linear infinite;
}
/* Satellite dot pulses */
.logo-mark-anim .sat-dot {
  animation: satPulse 2.5s ease-in-out infinite;
}
/* Pin gently pulses */
.logo-mark-anim .pin-pulse {
  transform-origin: 100px 95px;
  animation: pinPulse 3s ease-in-out infinite;
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes satPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes pinPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}

/* ====== HEADER ====== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(17,26,22,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav-logo {
  display: flex; align-items: center; gap: 13px;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  color: var(--white);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: #9BB5A6;
  transition: color 0.2s; position: relative; padding: 4px 0;
}
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important; color: var(--dark) !important;
  padding: 10px 22px !important; border-radius: var(--radius);
  font-weight: 700 !important; font-size: 13.5px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--white); display: block; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--dark); padding: 28px 40px; gap: 22px;
    border-bottom: 1px solid var(--line-dark);
  }
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius);
  font-size: 14.5px; font-weight: 600;
  border: 1.5px solid transparent;
  transition: all 0.2s; cursor: pointer; font-family: var(--font-body);
}
.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-green { background: var(--green); color: var(--dark); border-color: var(--green); }
.btn-green:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.25); color: var(--white); }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-light); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--text); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }

/* ====== SECTIONS ====== */
section { padding: 96px 0; }
@media (max-width: 640px) { section { padding: 64px 0; } }
.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-dark-mid { background: var(--dark-mid); color: var(--white); }

/* ====== HERO ====== */
.hero {
  background: var(--dark);
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; padding: 0;
}

/* Animated grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 68px 68px;
  animation: gridDrift 25s linear infinite;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse 85% 75% at 65% 40%, black 0%, transparent 72%);
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 68px 68px, 68px 68px; }
}

/* Satellite drift layer */
.satellite-drift {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 600px at 70% 30%, rgba(107,191,138,0.10) 0%, transparent 70%);
  animation: satelliteGlow 8s ease-in-out infinite alternate;
}
@keyframes satelliteGlow {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-30px, 20px) scale(1.08); }
}

/* Route network overlay */
.route-network {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
}
.route-network svg { width: 100%; height: 100%; }
.route-line {
  fill: none; stroke-width: 1.5; stroke-linecap: round;
  stroke-dasharray: 800; stroke-dashoffset: 800;
}
.route-one { stroke: var(--gold); animation: drawRoute 4s ease forwards 0.5s; }
.route-two { stroke: var(--green); animation: drawRoute 4s ease forwards 1.2s; }
@keyframes drawRoute { to { stroke-dashoffset: 0; } }
.route-node {
  fill: var(--gold); opacity: 0;
  animation: nodeAppear 0.4s ease forwards;
}
.n1 { animation-delay: 1.8s; } .n2 { animation-delay: 2.6s; }
.n3 { animation-delay: 3.2s; } .n4 { animation-delay: 3.8s; }
@keyframes nodeAppear { to { opacity: 1; } }
.route-node-green { fill: var(--green); }

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 80px 0 40px;
}
@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

.hero h1 { font-size: clamp(40px, 5.5vw, 68px); color: var(--white); margin-bottom: 22px; line-height: 1.08; }
.hero h1 em { color: var(--green-light); font-style: normal; }
.hero .lede { font-size: 18px; color: #9BB5A6; max-width: 520px; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

/* Animated map screen mock */
.hero-visual { position: relative; }
.map-screen {
  background: var(--dark-light);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.map-toolbar {
  height: 32px; background: var(--dark-mid);
  border-bottom: 1px solid var(--line-dark);
  display: flex; align-items: center; gap: 7px; padding: 0 14px;
}
.map-toolbar span { width: 9px; height: 9px; border-radius: 50%; }
.map-toolbar span:nth-child(1) { background: #E85D26; }
.map-toolbar span:nth-child(2) { background: var(--gold); }
.map-toolbar span:nth-child(3) { background: var(--green); }
.map-tiles {
  position: absolute; inset: 32px 0 0 0;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: mapScroll 12s linear infinite;
}
@keyframes mapScroll { from { background-position: 0 0; } to { background-position: 40px 40px; } }
.map-route-svg {
  position: absolute; inset: 32px 0 0 0;
  width: 100%; pointer-events: none;
}
.map-route-path {
  fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 500; stroke-dashoffset: 500;
  animation: drawRoute 3.5s ease forwards 1s;
}
.map-pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  animation: pinDrop 0.4s cubic-bezier(.36,2,.6,.8) forwards;
  opacity: 0;
}
.pin-a { background: var(--gold); bottom: 45%; left: 28%; animation-delay: 2s; }
.pin-b { background: var(--green); bottom: 62%; left: 55%; animation-delay: 2.8s; }
.pin-c { background: var(--white); bottom: 38%; left: 70%; animation-delay: 3.4s; }
@keyframes pinDrop { from { opacity:0; transform: rotate(-45deg) scale(0) translateY(-20px); } to { opacity:1; transform: rotate(-45deg) scale(1) translateY(0); } }

.map-stat {
  position: absolute; background: rgba(17,26,22,0.92);
  border: 1px solid var(--line-dark); border-radius: 6px;
  padding: 10px 14px; display: flex; flex-direction: column; gap: 2px;
  animation: statFade 0.5s ease forwards; opacity: 0;
}
.map-stat strong { font-family: var(--font-mono); font-size: 20px; color: var(--green); }
.map-stat span { font-size: 11px; color: #7A9085; }
.stat-a { bottom: 20%; left: 10%; animation-delay: 3.8s; }
.stat-b { top: 22%; right: 8%; animation-delay: 4.4s; }
@keyframes statFade { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }

/* Scan bar */
.scan-bar {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line-dark);
  background: rgba(17,26,22,0.9);
  padding: 16px 0;
}
.scan-inner { display: flex; gap: 0; align-items: center; overflow: hidden; flex-wrap: wrap; }
.scan-tag { font-family: var(--font-mono); font-size: 11px; color: #5A7A66; padding: 4px 28px; border-right: 1px solid var(--line-dark); white-space: nowrap; letter-spacing: 0.05em; }
.scan-tag.live { color: var(--green); }
.scan-tag span[data-coord] { color: #9BB5A6; }
.scan-tag.live::before { content: '●'; margin-right: 8px; animation: blink 1.6s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* Outcome pills on hero */
.outcome-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.outcome-pill {
  font-size: 13px; font-weight: 500; color: #9BB5A6;
  border: 1px solid var(--line-dark);
  padding: 7px 15px; border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.outcome-pill:hover { border-color: var(--green); color: var(--green-light); }

/* ====== SECTION HEAD ====== */
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(28px, 3.8vw, 42px); margin-bottom: 14px; }
.section-head p { color: var(--text-mid); font-size: 17px; line-height: 1.65; }

/* ====== CARD GRIDS ====== */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cards-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 860px) { .cards-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .cards-3, .cards-2 { grid-template-columns: 1fr; } }

.card { background: var(--white); padding: 38px 32px; transition: background 0.2s, transform 0.2s; }
.card:hover { background: var(--cream); }
.card .c-tag { font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 16px; }
.card h3 { font-size: 18px; margin-bottom: 10px; color: var(--text); }
.card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.65; }
.card .learn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--green); margin-top: 16px; transition: gap 0.2s; }
.card .learn:hover { gap: 10px; }

.card-dark { background: var(--dark-light); }
.card-dark:hover { background: var(--dark-mid); }
.card-dark h3 { color: var(--white); }
.card-dark p { color: #7A9485; }
.card-dark .learn { color: var(--green); }

/* Icon block inside card */
.card-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { color: var(--dark-mid); }

/* ====== OUTCOME CARDS — big visual callouts ====== */
.outcome-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 860px) { .outcome-grid { grid-template-columns: 1fr; } }
.outcome-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.outcome-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(28,43,34,0.08); }
.outcome-card .oc-num { font-family: var(--font-mono); font-size: 42px; font-weight: 500; color: var(--green); margin-bottom: 8px; }
.outcome-card h3 { font-size: 17px; margin-bottom: 10px; }
.outcome-card p { font-size: 14px; color: var(--text-mid); }

/* ====== STATS ====== */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-dark); }
.stat-cell { padding: 40px 24px; border-right: 1px solid var(--line-dark); text-align: center; }
.stat-cell:last-child { border-right: none; }
.stat-cell .n { font-family: var(--font-mono); font-size: 34px; font-weight: 500; color: var(--green); margin-bottom: 6px; }
.stat-cell .l { font-size: 13px; color: #7A9485; line-height: 1.5; }
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2,1fr); } .stat-cell { border-bottom: 1px solid var(--line-dark); } }

/* ====== PROCESS ====== */
.process-item { display: grid; grid-template-columns: 90px 1fr; gap: 32px; padding: 32px 0; border-top: 1px solid var(--line); }
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-item .step { font-family: var(--font-mono); font-size: 12px; color: var(--gold); padding-top: 3px; letter-spacing: 0.06em; }
.process-item h3 { font-size: 19px; margin-bottom: 8px; }
.process-item p { font-size: 15px; color: var(--text-mid); max-width: 540px; }
@media (max-width: 560px) { .process-item { grid-template-columns: 1fr; gap: 8px; } }

/* ====== TECH TAGS ====== */
.tech-group { margin-bottom: 36px; }
.tech-group h3 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 16px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-tag {
  font-family: var(--font-mono); font-size: 13px;
  padding: 9px 16px; border: 1px solid var(--line-dark);
  color: #9BB5A6; border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
}
.tech-tag:hover { border-color: var(--green); color: var(--white); }

/* ====== WHO WE HELP TAGS ====== */
.who-tag {
  padding: 11px 20px; border: 1.5px solid var(--cream-dark);
  font-size: 14px; font-weight: 500; color: var(--text);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.who-tag:hover { background: var(--green); border-color: var(--green); color: var(--dark); }

/* ====== INDUSTRY ROWS ====== */
.industry-row {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 40px; padding: 40px;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.2s;
}
.industry-row:hover { background: var(--cream); }
.industry-row:first-child { border-top: 1px solid var(--line); }
.industry-row .ir-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 10px; display: block; }
.industry-row h3 { font-size: 19px; margin-bottom: 0; }
.industry-row p { color: var(--text-mid); font-size: 15px; line-height: 1.65; margin-bottom: 16px; }
@media (max-width: 700px) { .industry-row { grid-template-columns: 1fr; gap: 16px; } }

/* ====== CTA BAND ====== */
.cta-band { background: var(--green); padding: 80px 0; text-align: center; }
.cta-band h2 { font-size: clamp(26px, 4vw, 40px); color: var(--dark); margin-bottom: 14px; }
.cta-band p { color: var(--dark-light); font-size: 17px; margin-bottom: 36px; opacity: 0.85; }

/* ====== INSIGHTS ====== */
.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 800px) { .insights-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .insights-grid { grid-template-columns: 1fr; } }
.insight-card { border: 1px solid var(--line); padding: 32px; border-radius: var(--radius); transition: box-shadow 0.2s, transform 0.2s; }
.insight-card:hover { box-shadow: 0 8px 28px rgba(28,43,34,0.09); transform: translateY(-3px); }
.insight-card .i-cat { font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.insight-card h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.35; }
.insight-card p { font-size: 14px; color: var(--text-mid); margin-bottom: 18px; }
.insight-card .read { font-size: 13px; font-weight: 600; color: var(--green); }

/* ====== CONTACT ====== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 14.5px; color: var(--text); background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-detail { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-detail:first-of-type { border-top: none; }
.cd-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green); width: 80px; flex-shrink: 0; padding-top: 2px; }
.cd-val { font-size: 15px; color: var(--text); }
.cd-val a { color: var(--green); font-weight: 600; }

/* ====== PAGE HEADER ====== */
.page-header { background: var(--dark); padding: 80px 0 60px; position: relative; overflow: hidden; }
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-size: clamp(30px, 5vw, 50px); color: var(--white); margin-bottom: 14px; }
.page-header p { color: #9BB5A6; font-size: 17px; max-width: 600px; }
.breadcrumb { font-family: var(--font-mono); font-size: 11.5px; color: #5A7A66; margin-bottom: 20px; }
.breadcrumb a { color: var(--green); }

/* ====== TWO COL ====== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ====== FOOTER ====== */
.site-footer { background: var(--dark-mid); color: #7A9485; padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); margin-bottom: 18px; font-weight: 500; }
.footer-grid ul li { margin-bottom: 11px; font-size: 14px; }
.footer-grid ul li a:hover { color: var(--white); }
.footer-brand p { font-size: 14px; color: #5A7A66; max-width: 280px; margin-top: 14px; line-height: 1.65; }
.footer-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--white); }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12.5px; color: #3D5445; flex-wrap: wrap; gap: 10px; }

/* ====== PULL QUOTE ====== */
.pull-quote { border-left: 3px solid var(--green); padding: 20px 28px; background: var(--cream); margin: 32px 0; }
.pull-quote p { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--text); line-height: 1.4; margin: 0; }

/* ====== SCROLL ANIMATIONS ====== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }

/* ====== MOBILE RESPONSIVE ====== */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 0; }
  .hero h1 { font-size: 36px; }
  .hero .lede { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }

  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .answer-grid { grid-template-columns: 1fr; }
  .why-three { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .insights-grid { grid-template-columns: 1fr; }

  .container { padding: 0 18px; }
  section { padding: 52px 0; }

  .site-header { position: sticky; top: 0; }
  .nav-logo { font-size: 15px; }
  .nav-logo svg { width: 44px; height: 44px; }

  .scan-bar .scan-inner { flex-direction: column; gap: 6px; padding: 12px 18px; }
  .scan-tag { border-right: none; padding: 2px 0; border-bottom: 1px solid var(--line-dark); }
  .scan-tag:last-child { border-bottom: none; }

  .section-head h2 { font-size: 26px; }
  .card { padding: 28px 22px; }
  .answer-card { padding: 32px 24px; border-right: none; border-bottom: 1px solid var(--line); }
  .answer-card:last-child { border-bottom: none; }

  .page-header { padding: 52px 0 40px; }
  .page-header h1 { font-size: 28px; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .industry-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 20px; }

  .proof-grid { grid-template-columns: repeat(2,1fr); }
  .proof-cell { padding: 28px 16px; }
  .proof-cell .big { font-size: 22px; }

  .cta-band { padding: 52px 0; }
  .cta-band h2 { font-size: 24px; }

  #map-bg { display: none; }
  .map-overlay { display: none; }
  .route-network { display: none; }
  .hero { background: var(--dark); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .stats-row { grid-template-columns: 1fr; }
}
