/* ═══════════════════════════════════════
   ENKOP v3 Design System
   Font: Inter (FSD Africa style)
   Palette: Deep Teal #0E4D68 + Gold #C8922A
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal:        #0E4D68;
  --teal-mid:    #1A6B87;
  --teal-light:  #E2EFF5;
  --teal-pale:   #EEF6FA;
  --amber:       #C8922A;
  --amber-light: #F5E6C8;
  --amber-pale:  #FDF6EC;
  --forest:      #2D5A27;
  --forest-light:#E8F2E6;
  --charcoal:    #0B1C24;
  --ink:         #0E2D3D;
  --body:        #2E4A58;
  --muted:       #607D8B;
  --divider:     #D4E8EF;
  --cream:       #F7F5F1;
  --white:       #FFFFFF;
  /* Ambient background blobs + mist (used by body::before) */
  --bg-blob-1:   rgba(14,77,104,0.055);
  --bg-blob-2:   rgba(200,146,42,0.05);
  --bg-blob-3:   rgba(45,90,39,0.04);
  --bg-mist-warm:#F4F1EB;
  --bg-mist:     #EDF1F0;
  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-body:     'Inter', -apple-system, sans-serif;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --shadow-sm:   0 2px 12px rgba(14,77,104,0.08);
  --shadow-md:   0 8px 32px rgba(14,77,104,0.12);
  --shadow-lg:   0 24px 64px rgba(14,77,104,0.18);
  --r:           6px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* ── GLOBAL AMBIENT BACKGROUND ──
   Soft organic gradient blobs creating muted teal-cream atmosphere
   Sits behind all content with fixed positioning */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 800px 600px at 12% 18%, var(--bg-blob-1) 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 88% 32%, var(--bg-blob-2) 0%, transparent 50%),
    radial-gradient(ellipse 900px 700px at 18% 78%, var(--bg-blob-3) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 92% 88%, var(--bg-blob-1) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-mist-warm) 0%, var(--cream) 35%, var(--bg-mist) 100%);
  pointer-events: none;
}

/* Subtle dot pattern overlay for fine texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle, rgba(14,77,104,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.6;
}
h1, h2, h3, h4 { font-family: var(--ff-display); color: var(--ink); line-height: 1.1; letter-spacing: -0.01em; }

/* ── PAGE TRANSITIONS ── */
#page-wrapper {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
#page-wrapper.exit {
  opacity: 0;
  transform: translateY(12px);
}
#page-wrapper.enter {
  opacity: 0;
  transform: translateY(-8px);
}

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.eyebrow {
  font-family: var(--ff-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); display: inline-block; margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 1.5px;
  background: var(--amber);
  vertical-align: middle; margin-right: 10px;
}
h1, h2, h3 { font-family: var(--ff-display); color: var(--ink); line-height: 1.1; }
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
a { text-decoration: none; color: inherit; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--r);
  font-family: var(--ff-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; transition: all 0.25s var(--ease);
  cursor: pointer; border: none;
}
.btn-amber { background: var(--amber); color: var(--white); }
.btn-amber:hover { background: #a96820; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,125,43,0.4); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.1); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-teal { background: transparent; border: 1.5px solid var(--teal); color: var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }


/* ── IMAGE-CLIPPED ACCENT TEXT (used site-wide on heading emphasis) ── */
.clip-text {
  background-image: url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=1300&q=85');
  background-size: 230% auto;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-style: italic;
  filter: drop-shadow(0 1px 7px rgba(0,0,0,0.22));
  animation: textPan 14s ease-in-out infinite alternate;
}
@keyframes textPan {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}
/* ── AMBER GLOW on buttons ── */
.btn-amber:hover {
  box-shadow: 0 8px 32px rgba(200,146,42,0.5) !important;
}
/* ── TEAL glow on scrolled nav CTA ── */
.nav-cta:hover {
  transform: translateY(-2px);
}

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-right.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200; padding: 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.3s;
}
#nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--divider), var(--shadow-sm);
  backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 76px;
}
/* LOGO */
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 0;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::before { display: none; }
.logo-mark svg, .logo-mark img { width: 42px; height: 42px; }
.logo-mark img { object-fit: contain; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--ff-display); font-size: 24px; font-weight: 700;
  letter-spacing: 0.06em; color: var(--white);
  transition: color 0.4s;
}
#nav.scrolled .logo-name { color: var(--teal); }
.logo-sub {
  font-size: 9px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber); margin-top: 2px;
}
/* NAV LINKS */
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links li a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px; border-radius: var(--r);
  transition: all 0.2s var(--ease);
  position: relative;
}
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links li a.active { color: var(--white); }
#nav.scrolled .nav-links li a { color: var(--ink); }
#nav.scrolled .nav-links li a:hover { color: var(--teal); background: var(--teal-light); }
#nav.scrolled .nav-links li a.active { color: var(--teal); }
.nav-end { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  background: var(--amber); color: var(--white);
  padding: 10px 22px; border-radius: var(--r);
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
  transition: all 0.2s var(--ease); white-space: nowrap;
}
.nav-cta:hover { background: #a96820; box-shadow: 0 4px 16px rgba(196,125,43,0.4); transform: translateY(-1px); }

/* hamburger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
#nav.scrolled .burger span { background: var(--ink); }
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: var(--teal); z-index: 199;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mobile-overlay.open { display: flex; }
.mobile-close { position: absolute; top: 24px; right: 32px; font-size: 28px; color: var(--white); cursor: pointer; }
.mobile-logo { width: 66px; height: 66px; object-fit: contain; margin-bottom: 4px; }
.mobile-overlay a {
  font-family: var(--ff-display); font-size: 36px; font-weight: 600;
  color: var(--white); transition: color 0.2s;
}
.mobile-overlay a:hover { color: var(--amber); }

/* ══════════════════════════════════════
   PAGE SECTIONS (hidden/shown by router)
══════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ══════════════════════════════════════
   HOME PAGE
══════════════════════════════════════ */

/* HERO */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--teal);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(9,35,50,0.95) 0%, rgba(14,77,104,0.88) 50%, rgba(14,77,104,0.6) 100%),
    url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?w=1800&q=90') center/cover no-repeat;
}
/* animated gradient orb */
.hero-orb {
  position: absolute; top: -100px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,125,43,0.14) 0%, rgba(26,107,130,0.12) 40%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute; bottom: -200px; left: 10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,90,39,0.1) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.03); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}
/* grid lines texture */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px; padding: 8px 20px 8px 8px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
  backdrop-filter: blur(8px);
}
.hero-tag-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--amber); display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: white; font-weight: 700;
}
.hero-tag span { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; color: rgba(255,255,255,0.8); }
.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 700; line-height: 1.08;
  color: var(--white); margin-bottom: 28px;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}
.hero-h1 em { font-style: italic; color: rgba(255,255,255,0.55); }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.72);
  line-height: 1.75; max-width: 580px; margin-bottom: 44px;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.8s var(--ease) 0.7s both; }
.hero-scroll {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  animation: fadeUp 1s var(--ease) 1s both;
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.3; transform:scaleY(1); }
  50% { opacity:1; transform:scaleY(1.2); }
}

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

/* STATS BAR */
#stats {
  background: var(--white);
  border-bottom: 1px solid var(--divider);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 52px 32px; text-align: center;
  border-right: 1px solid var(--divider);
  transition: background 0.25s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--teal-pale); }
.stat-num {
  font-family: var(--ff-display); font-size: 56px; font-weight: 700;
  color: var(--teal); line-height: 1; margin-bottom: 8px; display: block;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}

/* PILLARS / SERVICES */
#pillars { background: var(--cream); }
.pillars-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 72px;
}
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--divider);
  border: 1px solid var(--divider); border-radius: 10px; overflow: hidden;
}
.pillar-card {
  background: var(--white); padding: 44px 36px;
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden; cursor: pointer;
}
.pillar-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.pillar-card:hover { background: var(--teal-pale); }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-card:nth-child(6) { background: var(--teal); cursor: default; }
.pillar-card:nth-child(6):hover { background: var(--teal-mid); }
.pillar-num {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--amber); text-transform: uppercase; margin-bottom: 12px;
}
.pillar-icon-wrap {
  width: 56px; height: 56px;
  background: var(--teal-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background 0.25s;
}
.pillar-card:hover .pillar-icon-wrap { background: var(--white); }
.pillar-icon-wrap svg {
  width: 26px; height: 26px;
  fill: none; stroke: var(--teal); stroke-width: 1.6;
}
.pillar-title {
  font-family: var(--ff-display); font-size: 21px; font-weight: 600;
  color: var(--ink); margin-bottom: 12px; line-height: 1.25;
}
.pillar-desc { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.pillar-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal);
  cursor: pointer;
}
.pillar-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.2s; }
.pillar-card:hover .pillar-link svg { transform: translateX(4px); }

/* WHY ENKOP */
#why {
  background: var(--teal);
  position: relative; overflow: hidden;
}
#why::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 550px; height: 550px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,125,43,0.12), transparent 70%);
  pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 96px; align-items: center; position: relative; z-index: 1; }
.why-visual { position: relative; }
.why-img {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/5; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}
.why-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) saturate(1.1); }
.why-img-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--amber), #a96820);
  color: var(--white);
  padding: 28px 32px; line-height: 1.3;
  box-shadow: 0 16px 48px rgba(200,146,42,0.4);
  border-radius: 4px;
}
.why-img-badge strong { font-family: var(--ff-display); font-size: 36px; font-weight: 700; display: block; margin-bottom: 4px; }
.why-img-badge span { font-size: 13px; font-weight: 400; opacity: 0.9; }
.why-text .eyebrow { color: var(--amber); }
.why-h2 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 28px;
}
.why-h2 em { font-style: italic; color: rgba(255,255,255,0.55); }
.why-body { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.85; margin-bottom: 18px; }
.why-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 44px;
}
.val-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r); padding: 22px 20px;
  transition: background 0.25s;
}
.val-item:hover { background: rgba(255,255,255,0.12); }
.val-icon { font-size: 20px; margin-bottom: 8px; }
.val-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.val-desc { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* FOCUS AREAS */
#focus { background: var(--white); }
.focus-head { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.focus-head .section-title { margin-bottom: 16px; }
.focus-head p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.focus-card {
  border: 1px solid rgba(14,77,104,0.08); border-radius: 12px;
  padding: 40px 32px; background: var(--white);
  transition: all 0.35s var(--ease);
  position: relative; overflow: hidden; cursor: pointer;
  box-shadow: 0 2px 16px rgba(14,77,104,0.05);
}
.focus-card:hover { box-shadow: 0 20px 56px rgba(14,77,104,0.14); transform: translateY(-6px); border-color: transparent; }
.focus-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.focus-card:hover::before { transform: scaleX(1); }
.focus-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 22px;
  transition: transform 0.3s var(--ease);
}
.focus-card:hover .focus-icon { transform: scale(1.08); }
.focus-name {
  font-family: var(--ff-display); font-size: 19px; font-weight: 600;
  color: var(--ink); margin-bottom: 10px; line-height: 1.3;
}
.focus-desc { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* AI SECTION */
#ai-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 50%, var(--teal) 100%);
  position: relative; overflow: hidden;
}
#ai-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.ai-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: center; position: relative; z-index: 1;
}
.ai-text .eyebrow { color: var(--amber); }
.ai-h2 {
  font-family: var(--ff-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 24px;
}
.ai-h2 em { font-style: italic; color: rgba(255,255,255,0.5); }
.ai-body { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.85; margin-bottom: 36px; }
.ai-features { display: flex; flex-direction: column; gap: 16px; }
.ai-feat {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); padding: 20px;
  transition: background 0.25s;
}
.ai-feat:hover { background: rgba(255,255,255,0.1); }
.ai-feat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(196,125,43,0.2); border: 1px solid rgba(196,125,43,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ai-feat-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.ai-feat-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
/* AI Visual */
.ai-visual {
  background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,146,42,0.1);
}
.ai-terminal-bar {
  background: rgba(255,255,255,0.08); padding: 12px 20px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.term-dot { width: 10px; height: 10px; border-radius: 50%; }
.term-dot-r { background: #ff5f57; }
.term-dot-y { background: #febc2e; }
.term-dot-g { background: #28c840; }
.ai-terminal-title { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; margin-left: auto; margin-right: auto; }
.ai-terminal-body { padding: 28px; font-family: 'Courier New', monospace; font-size: 13px; line-height: 1.9; }
.term-line { color: rgba(255,255,255,0.5); }
.term-query { color: #febc2e; }
.term-result { color: #4ade80; }
.term-data { color: rgba(255,255,255,0.35); }
.term-cursor { display: inline-block; width: 8px; height: 14px; background: var(--amber); animation: blink 1s step-end infinite; vertical-align: text-bottom; }
@keyframes blink { 50% { opacity: 0; } }

/* APPROACH / HOW WE WORK */
#approach { background: var(--cream); }
.approach-head { max-width: 560px; margin-bottom: 80px; }
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.steps-row::before {
  content: ''; position: absolute;
  top: 40px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-mid), var(--amber), var(--teal-mid), transparent);
  opacity: 0.3;
}
.step {
  padding: 0 24px; text-align: center; position: relative;
}
.step-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--divider);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--ff-display); font-size: 28px; font-weight: 700;
  color: var(--teal); position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(14,77,104,0.1);
  transition: all 0.35s var(--ease);
}
.step:hover .step-circle {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  color: var(--white);
  border-color: transparent; transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(14,77,104,0.35);
}
.step-title {
  font-family: var(--ff-display); font-size: 20px; font-weight: 600;
  color: var(--ink); margin-bottom: 12px;
}
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* INSIGHTS */
#insights-home { background: var(--teal-pale); }
.insights-top {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 56px;
}
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.art-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(14,77,104,0.07);
  transition: all 0.35s var(--ease); cursor: pointer;
  border: 1px solid rgba(14,77,104,0.05);
}
.art-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(14,77,104,0.16); border-color: transparent; }
.art-img { aspect-ratio: 16/9; overflow: hidden; }
.art-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.art-card:hover .art-img img { transform: scale(1.04); }
.art-body { padding: 28px; }
.art-tag {
  display: inline-block; background: var(--amber-pale);
  color: var(--amber); padding: 4px 12px; border-radius: 100px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 14px;
}
.art-title {
  font-family: var(--ff-display); font-size: 19px; font-weight: 600;
  color: var(--ink); line-height: 1.35; margin-bottom: 12px;
}
.art-excerpt { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.art-meta {
  font-size: 11px; color: var(--muted); padding-top: 16px;
  border-top: 1px solid var(--divider);
  display: flex; align-items: center; gap: 8px;
}
.art-meta strong { color: var(--teal); font-weight: 600; }

/* PARTNERS */
#partners-home {
  background: var(--white);
  padding: 72px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.partners-label {
  text-align: center; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 44px;
}
.partners-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.partner-chip {
  padding: 20px 56px; border-right: 1px solid var(--divider);
  font-family: var(--ff-display); font-size: 17px; font-weight: 600;
  color: var(--body); text-align: center;
  transition: all 0.25s; cursor: default;
}
.partner-chip:last-child { border-right: none; }
.partner-chip:hover { color: var(--teal); background: var(--teal-pale); }
.partner-chip small {
  font-family: var(--ff-body); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; display: block; margin-top: 4px; color: var(--amber); opacity: 0.8;
}

/* CONTACT */
#contact-home {
  background: var(--teal);
  position: relative; overflow: hidden;
}
#contact-home::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,125,43,0.12), transparent 65%);
  pointer-events: none;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: start; position: relative; z-index: 1;
}
.contact-text .eyebrow { color: var(--amber); }
.contact-h2 {
  font-family: var(--ff-display); font-size: clamp(32px, 4vw, 50px);
  font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 24px;
}
.contact-h2 em { font-style: italic; color: rgba(255,255,255,0.5); }
.contact-body-text { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 48px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.c-detail { display: flex; align-items: flex-start; gap: 16px; }
.c-detail-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.c-detail-icon svg { width: 18px; height: 18px; stroke: var(--amber); fill: none; stroke-width: 1.5; }
.c-detail-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 2px; }
.c-detail-val { font-size: 15px; color: rgba(255,255,255,0.85); }
/* FORM */
.contact-form {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 48px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 20px; }
.fg label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14); border-radius: var(--r);
  padding: 13px 16px; font-family: var(--ff-body); font-size: 14px;
  color: var(--white); outline: none;
  transition: border-color 0.2s; -webkit-appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.3); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--amber); }
.fg select option { background: var(--teal); color: var(--white); }
.fg textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--amber); color: var(--white);
  border: none; border-radius: var(--r); cursor: pointer;
  font-family: var(--ff-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.25s var(--ease);
}
.form-submit:hover { background: #a96820; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,125,43,0.45); }
.form-submit svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* FOOTER */
footer {
  background: linear-gradient(160deg, var(--charcoal) 0%, #060f14 100%);
  padding: 88px 0 40px;
  color: rgba(255,255,255,0.55);
  position: relative;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--teal));
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 36px;
}
.footer-brand-name {
  font-family: var(--ff-display); font-size: 26px; font-weight: 700;
  color: var(--white); margin-bottom: 4px; display: block;
}
.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-logo img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.footer-logo .footer-brand-name { margin-bottom: 0; }
.footer-brand-url { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; display: block; }
.footer-brand-desc { font-size: 13px; line-height: 1.85; max-width: 280px; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 10px; }
.footer-soc {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.footer-soc:hover { border-color: var(--amber); background: rgba(196,125,43,0.15); }
.footer-soc svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1.5; }
.footer-col-head { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 22px; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-list a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; cursor: pointer; }
.footer-list a:hover { color: var(--amber); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════
   INNER PAGES
══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--teal) 60%, var(--teal-mid) 100%);
  padding: 170px 0 100px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-orb {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,125,43,0.12), transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb a { color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--amber); }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(42px, 5.5vw, 70px);
  font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 22px;
}
.page-hero h1 em { font-style: italic; color: rgba(255,255,255,0.5); }
.page-hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.65);
  line-height: 1.75; max-width: 600px;
}

/* ══════════════════════════════════════
   SERVICES / PILLARS PAGE
══════════════════════════════════════ */
.pillar-detail-grid { display: flex; flex-direction: column; gap: 80px; }
.pillar-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 60px 0; border-bottom: 1px solid var(--divider);
}
.pillar-detail:last-child { border-bottom: none; }
.pillar-detail.reverse { direction: rtl; }
.pillar-detail.reverse > * { direction: ltr; }
.pillar-detail-num {
  font-family: var(--ff-display); font-size: 100px; font-weight: 700;
  color: var(--teal-light); line-height: 1; margin-bottom: -20px;
  position: relative; z-index: 0;
}
.pillar-detail-title {
  font-family: var(--ff-display); font-size: 38px; font-weight: 700;
  color: var(--ink); line-height: 1.15; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.pillar-detail-body { font-size: 16px; color: var(--body); line-height: 1.85; margin-bottom: 24px; }
.pillar-outcomes { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pillar-outcomes li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--body); line-height: 1.6;
}
.pillar-outcomes li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0; margin-top: 7px;
}
.pillar-visual {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--teal);
  position: relative;
  box-shadow: 0 24px 64px rgba(14,77,104,0.2);
}
.pillar-visual img { width: 100%; height: 100%; object-fit: cover; }
.pillar-visual-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,74,92,0.8), transparent);
  padding: 24px 24px 20px;
}
.pillar-visual-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--amber);
  background: rgba(0,0,0,0.3); padding: 6px 14px; border-radius: 100px;
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-story-body p { font-size: 16px; color: var(--body); line-height: 1.9; margin-bottom: 20px; }
.about-story-body p:last-child { margin-bottom: 0; }
.about-story-visual {
  position: relative;
  aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(14,77,104,0.2);
}
.about-story-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-box {
  position: absolute; bottom: -24px; left: -24px;
  background: linear-gradient(135deg, var(--amber), #a96820);
  color: var(--white);
  padding: 28px 32px; box-shadow: 0 16px 48px rgba(200,146,42,0.4); max-width: 220px;
  border-radius: 4px;
}
.about-accent-box strong {
  font-family: var(--ff-display); font-size: 40px; font-weight: 700; display: block; margin-bottom: 4px;
}
.about-accent-box span { font-size: 14px; line-height: 1.4; opacity: 0.9; }
/* team section */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(14,77,104,0.08); transition: all 0.35s var(--ease); border: 1px solid rgba(14,77,104,0.06); }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(14,77,104,0.16); border-color: transparent; }
.team-img { aspect-ratio: 3/4; background: var(--teal); position: relative; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 48px; font-weight: 700; color: rgba(255,255,255,0.3);
}
.team-info { padding: 24px; }
.team-name { font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.team-role { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
.team-bio { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════
   INSIGHTS PAGE
══════════════════════════════════════ */
.insights-filters {
  display: flex; gap: 10px; margin-bottom: 56px; flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  border: 1.5px solid var(--divider); background: var(--white);
  color: var(--muted); transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--teal); background: var(--teal); color: var(--white);
}
.insights-hero-article {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  background: var(--white); border-radius: 16px;
  overflow: hidden; margin-bottom: 56px;
  box-shadow: 0 4px 24px rgba(14,77,104,0.08);
  border: 1px solid rgba(14,77,104,0.05);
  cursor: pointer; transition: all 0.35s var(--ease);
}
.insights-hero-article:hover { box-shadow: 0 24px 80px rgba(14,77,104,0.18); border-color: transparent; transform: translateY(-4px); }
.insights-hero-img { aspect-ratio: 4/3; overflow: hidden; }
.insights-hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.insights-hero-article:hover .insights-hero-img img { transform: scale(1.03); }
.insights-hero-body { padding: 52px 52px 52px 0; }
.insights-grid-sm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-page-grid {
  display: grid; grid-template-columns: 5fr 6fr;
  gap: 80px; align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--teal) 0%, var(--charcoal) 100%);
  border-radius: 16px;
  padding: 52px 44px; color: rgba(255,255,255,0.75);
  position: sticky; top: 100px;
  box-shadow: 0 24px 64px rgba(14,77,104,0.25);
}
.contact-info-card h3 {
  font-family: var(--ff-display); font-size: 28px;
  color: var(--white); margin-bottom: 20px;
}
.contact-info-card p { font-size: 15px; line-height: 1.8; margin-bottom: 40px; }
.contact-detail-list { display: flex; flex-direction: column; gap: 20px; }
.contact-page-form {
  background: var(--white); border-radius: 16px;
  padding: 52px; box-shadow: 0 8px 40px rgba(14,77,104,0.1);
  border: 1px solid rgba(14,77,104,0.05);
}
.contact-page-form h3 {
  font-family: var(--ff-display); font-size: 30px;
  color: var(--ink); margin-bottom: 32px;
}
.fg-light input, .fg-light select, .fg-light textarea {
  width: 100%; border: 1px solid var(--divider); border-radius: var(--r);
  padding: 13px 16px; font-family: var(--ff-body); font-size: 14px;
  color: var(--ink); background: var(--cream); outline: none;
  transition: border-color 0.2s;
}
.fg-light label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.fg-light input:focus, .fg-light select:focus, .fg-light textarea:focus { border-color: var(--teal); background: var(--white); }
.fg-light textarea { resize: vertical; min-height: 130px; }

/* ── PAGE HERO with rings ── */
.page-hero { position: relative; }
.page-hero-rings {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.page-hero-rings .ring {
  position: absolute; border-radius: 50%; border-style: solid;
}

/* Why section ring reset since it's teal */
#why .rings-bg { z-index: 0; }
#why .container { position: relative; z-index: 1; }
#ai-section .container { position: relative; z-index: 1; }
#contact-home .container { position: relative; z-index: 1; }
#pillars .container { position: relative; z-index: 1; }
#insights-home .container { position: relative; z-index: 1; }
#approach .container { position: relative; z-index: 1; }
#stats .container { position: relative; z-index: 1; }

/* ══════════════════════════════════════
   DECORATIVE RINGS
══════════════════════════════════════ */
.rings-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.rings-bg .ring {
  position: absolute; border-radius: 50%; border-style: solid;
}
/* Section ring presets */
.ring-tl { top: -120px; left: -120px; }
.ring-br { bottom: -120px; right: -120px; }
.ring-tr { top: -80px; right: -80px; }
.ring-bl { bottom: -80px; left: -80px; }
.ring-center { top: 50%; left: 50%; transform: translate(-50%,-50%); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .pillars-head { grid-template-columns: 1fr; gap: 28px; }
  .why-grid { grid-template-columns: 1fr; gap: 56px; }
  .ai-inner { grid-template-columns: 1fr; gap: 56px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-story-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .pillar-detail { grid-template-columns: 1fr; }
  .pillar-detail.reverse { direction: ltr; }
  .insights-hero-article { grid-template-columns: 1fr; }
  .insights-hero-body { padding: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--divider); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--divider); }
  .pillars-grid { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps-row::before { display: none; }
  .articles-grid { grid-template-columns: 1fr; }
  .insights-grid-sm { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 80px 0; }
  .why-values { grid-template-columns: 1fr; }
}

/* ── PARTNER LOGO GRID ── */

/* ── PARTNERS MARQUEE ── */
.marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  padding: 28px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(14,77,104,0.06);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 56px;
  padding-right: 56px;
}
.marquee-item {
  flex-shrink: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  opacity: 1;
  transition: transform 0.3s var(--ease);
}
.marquee-item:hover { transform: scale(1.06); }
.marquee-item img {
  height: 100%;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.marquee-fade-left {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0) 100%);
}
.marquee-fade-right {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255,255,255,0) 100%);
}
@media (max-width: 720px) {
  .marquee-set { gap: 40px; padding-right: 40px; }
  .marquee-item { height: 64px; }
  .marquee-item img { max-width: 180px; }
  .marquee-track { animation-duration: 22s; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}





/* ── FOOTPRINT MAP CHIPS ── */
.footprint-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(14,77,104,0.06);
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid rgba(14,77,104,0.12);
  font-size: 10px;
  color: var(--ink);
  font-weight: 500;
}
.footprint-chip::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.7;
}

/* ── ENKOP ACRONYM GRID ── */
.acronym-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.acronym-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  animation-delay: var(--delay);
  cursor: default;
}
.acronym-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), rgba(200,146,42,0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.acronym-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,146,42,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.acronym-card:hover::before { transform: scaleX(1); }
.acronym-letter {
  font-family: var(--ff-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 24px rgba(200,146,42,0.25);
  transition: transform 0.4s var(--ease);
}
.acronym-card:hover .acronym-letter {
  transform: scale(1.08);
}
.acronym-word {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.acronym-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
@media (max-width: 980px) {
  .acronym-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .acronym-grid { grid-template-columns: 1fr; gap: 12px; }
  .acronym-card { padding: 28px 22px 24px; }
  .acronym-letter { font-size: 52px; margin-bottom: 14px; }
}

/* ── CAPABILITY GRID ── */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.capability-card {
  background: var(--white);
  border: 1px solid rgba(14,77,104,0.08);
  border-radius: 14px;
  padding: 32px 30px 28px;
  position: relative;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-decoration: none;
  display: flex; flex-direction: column;
  animation-delay: var(--delay);
  overflow: hidden;
}
.capability-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.capability-card:hover {
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(14,77,104,0.14);
  transform: translateY(-6px);
}
.capability-card:hover::before { transform: scaleX(1); }
.capability-num {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.capability-title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 14px;
}
.capability-line {
  width: 32px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 14px;
  transition: width 0.4s var(--ease);
}
.capability-card:hover .capability-line { width: 56px; }
.capability-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.capability-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  transition: all 0.3s var(--ease);
  align-self: flex-start;
}
.capability-arrow svg {
  width: 14px; height: 14px;
  transition: transform 0.3s var(--ease);
}
.capability-card:hover .capability-arrow {
  background: var(--amber);
  color: var(--white);
}
.capability-card:hover .capability-arrow svg {
  transform: translateX(3px);
}

.capability-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--charcoal) 100%);
  border: none;
  display: flex; align-items: stretch;
  padding: 0;
}
.capability-cta-inner {
  padding: 32px 30px;
  width: 100%;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.capability-cta-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 18px;
}
.capability-cta-title {
  font-family: var(--ff-display);
  font-size: 24px; font-weight: 700;
  color: var(--white); line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.capability-cta-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease);
}
.capability-cta-arrow svg { width: 18px; height: 18px; }
.capability-cta:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(14,77,104,0.3); }
.capability-cta:hover .capability-cta-arrow { transform: translateX(4px); background: var(--white); color: var(--teal); }

@media (max-width: 980px) {
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .capability-grid { grid-template-columns: 1fr; }
}

/* ── ORGANIC DECORATIVE BLOBS ── */
/* Add subtle organic shapes to inject visual richness similar to the reference */
.section { position: relative; }

/* Soft sage blob accent for select sections */
.section.has-blob-tl::before {
  content: '';
  position: absolute;
  top: -100px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,90,39,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.section.has-blob-br::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -100px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,77,104,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Organic curved divider for section transitions */
.organic-wave {
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  z-index: 1;
}
.organic-wave-top { top: 0; transform: rotate(180deg); }
.organic-wave-bottom { bottom: 0; }
.organic-wave svg { width: 100%; height: 100%; display: block; }
.organic-wave path { fill: rgba(255,255,255,0.4); }

/* Subtle texture variations for ambient depth */
.section-mist {
  background: linear-gradient(135deg, rgba(238,242,240,0.6) 0%, rgba(244,241,235,0.4) 100%) !important;
}
.section-sage {
  background: linear-gradient(160deg, rgba(220,229,224,0.4) 0%, rgba(238,242,240,0.5) 100%) !important;
}

/* ===== in-page style block ===== */

/* Bio modal */
    .bio-modal-overlay {
      display:none; position:fixed; inset:0; background:rgba(11,28,36,0.85); z-index:9999;
      align-items:center; justify-content:center; padding:24px;
      backdrop-filter:blur(8px);
    }
    .bio-modal-overlay.open { display:flex; }
    .bio-modal {
      background:var(--white); border-radius:16px; max-width:680px; width:100%;
      overflow:hidden; box-shadow:0 40px 100px rgba(0,0,0,0.5);
      animation: modalIn 0.32s var(--ease) both;
      max-height:92vh; overflow-y:auto;
    }
    @keyframes modalIn { from { opacity:0; transform:translateY(20px) scale(0.97); } to { opacity:1; transform:none; } }
    .bio-modal-header {
      position:relative;
      background:linear-gradient(135deg, var(--teal) 0%, var(--charcoal) 100%);
      padding:48px 44px 36px; color:var(--white);
      display:flex; align-items:center; gap:24px;
    }
    .bio-modal-avatar {
      width:120px; height:120px; border-radius:50%; overflow:hidden; flex-shrink:0;
      border:3px solid rgba(255,255,255,0.2); box-shadow:0 12px 32px rgba(0,0,0,0.3);
    }
    .bio-modal-avatar img { width:100%; height:100%; object-fit:cover; object-position:top center; }
    .bio-modal-header-text { flex:1; min-width:0; }
    .bio-modal-name { font-family:var(--ff-display); font-size:30px; font-weight:700; color:var(--white); margin-bottom:6px; line-height:1.15; }
    .bio-modal-role { font-size:11px; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--amber); }
    .bio-modal-close-x {
      position:absolute; top:18px; right:18px;
      width:36px; height:36px; border-radius:50%;
      background:rgba(255,255,255,0.15); color:var(--white);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer; border:none; transition:background 0.2s;
    }
    .bio-modal-close-x:hover { background:rgba(255,255,255,0.3); }
    .bio-modal-body { padding:36px 44px 40px; }
    .bio-modal-text { font-size:15px; color:var(--body); line-height:1.85; }
    .bio-modal-text p { margin-bottom:16px; }
    .bio-modal-text p:last-child { margin-bottom:0; }
    .bio-modal-actions { display:flex; align-items:center; gap:12px; margin-top:28px; padding-top:24px; border-top:1px solid var(--divider); flex-wrap:wrap; }
    .bio-li-btn {
      display:inline-flex; align-items:center; gap:8px;
      background:#0A66C2; color:var(--white);
      padding:11px 22px; border-radius:6px;
      font-size:13px; font-weight:600; text-decoration:none;
      transition:all 0.2s; letter-spacing:0.02em;
    }
    .bio-li-btn:hover { background:#084e96; transform:translateY(-1px); box-shadow:0 8px 20px rgba(10,102,194,0.35); }
    .bio-li-btn svg { width:16px; height:16px; fill:currentColor; }
    .bio-modal-close {
      display:inline-flex; align-items:center;
      padding:11px 22px; border-radius:6px; cursor:pointer;
      background:var(--teal-pale); color:var(--teal); font-size:13px; font-weight:600;
      border:none; transition:background 0.2s;
    }
    .bio-modal-close:hover { background:var(--divider); }

    /* Team card LinkedIn hover overlay */
    .team-img { position:relative; }
    .team-img-li-overlay {
      position:absolute; inset:0;
      background:linear-gradient(180deg, transparent 40%, rgba(10,102,194,0.85) 100%);
      display:flex; align-items:flex-end; justify-content:center;
      padding-bottom:24px;
      opacity:0; transition:opacity 0.3s var(--ease);
      text-decoration:none;
    }
    .team-card:hover .team-img-li-overlay { opacity:1; }
    .team-img-li-icon {
      width:52px; height:52px; border-radius:50%;
      background:#0A66C2; color:var(--white);
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 12px 28px rgba(10,102,194,0.5);
      transform:translateY(8px); transition:transform 0.3s var(--ease);
    }
    .team-card:hover .team-img-li-icon { transform:translateY(0); }
    .team-img-li-icon svg { width:26px; height:26px; fill:currentColor; }

    /* Full profile button */
    .team-card-btn {
      display:inline-flex; align-items:center; gap:6px; margin-top:14px;
      font-size:11px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
      color:var(--teal); background:none; border:none; cursor:pointer; padding:0;
      font-family:var(--ff-body);
      transition:gap 0.2s var(--ease);
    }
    .team-card-btn:hover { color:var(--amber); gap:10px; }
    .team-card-btn svg { width:12px; height:12px; stroke:currentColor; fill:none; stroke-width:2.5; }

/* ══════════════════════════════════════
   LEGAL PAGES (Privacy / Terms)
══════════════════════════════════════ */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content .legal-updated {
  font-size: 13px; color: var(--muted); margin-bottom: 40px;
  padding-bottom: 24px; border-bottom: 1px solid var(--divider);
}
.legal-content .legal-intro {
  font-size: 17px; color: var(--body); line-height: 1.8;
  margin-bottom: 8px;
}
.legal-content h2 {
  font-family: var(--ff-display); font-size: 24px; font-weight: 700;
  color: var(--ink); margin: 44px 0 14px; line-height: 1.3;
}
.legal-content p {
  font-size: 15px; color: var(--body); line-height: 1.85; margin-bottom: 16px;
}
.legal-content ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin: 0 0 18px;
}
.legal-content ul li {
  position: relative; padding-left: 22px;
  font-size: 15px; color: var(--body); line-height: 1.7;
}
.legal-content ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--amber);
}
.legal-content a { color: var(--teal); font-weight: 600; }
.legal-content a:hover { color: var(--amber); }
.legal-content strong { color: var(--ink); font-weight: 600; }

/* ══════════════════════════════════════
   INTERACTIVE — hero cluster · flip cards · 3D tilt
══════════════════════════════════════ */

/* ── Hero two-column layout ── */
.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.82fr;
  gap: 44px; align-items: center;
}

/* ── Hero cursor-reactive photo cluster ── */
.hero-visual {
  position: relative;
  height: 500px;
  perspective: 1200px;
  animation: fadeUp 0.9s var(--ease) 0.6s both;
}
.hero-photo {
  position: absolute;
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 34px 70px rgba(0,0,0,0.5);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(14,77,104,0.04) 0%, rgba(11,28,36,0.55) 100%);
}
.hero-photo-tag {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  background: rgba(11,28,36,0.8);
  border: 1px solid rgba(200,146,42,0.5);
  color: #fff; font-size: 9px; font-weight: 700;
  letter-spacing: 0.11em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
}
.hp-1 { width: 52%; height: 52%; top: 0;     left: 4%;  z-index: 3; }
.hp-2 { width: 44%; height: 45%; top: 13%;   right: 0;  z-index: 4; }
.hp-3 { width: 47%; height: 44%; bottom: 0;  left: 0;   z-index: 5; }
.hp-4 { width: 40%; height: 38%; bottom: 6%; right: 7%; z-index: 2; }
.hero-visual-ring {
  position: absolute; width: 190px; height: 190px;
  border: 1px solid rgba(200,146,42,0.35); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 1; pointer-events: none;
}

/* ── Capability FLIP cards ── */
.capability-card.flip-card {
  background: transparent; border: none; padding: 0;
  overflow: visible; box-shadow: none;
  perspective: 1300px; height: 292px;
}
.capability-card.flip-card::before { display: none; }
.capability-card.flip-card:hover { transform: none; box-shadow: none; }
.flip-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(.2,.85,.25,1);
}
.capability-card.flip-card:hover .flip-inner,
.capability-card.flip-card:focus-visible .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
  position: absolute; inset: 0;
  border-radius: 14px; overflow: hidden;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.flip-front {
  background: var(--white);
  border: 1px solid rgba(14,77,104,0.1);
  padding: 32px 30px 28px;
  display: flex; flex-direction: column;
}
.flip-front::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}
.flip-back {
  transform: rotateY(180deg);
  background-size: cover; background-position: center;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.flip-back::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(14,77,104,0.4) 0%, rgba(11,28,36,0.93) 88%);
}
.flip-back-content { position: relative; z-index: 1; }
.flip-back-num {
  font-family: var(--ff-display); font-size: 13px; font-weight: 700;
  color: var(--amber); letter-spacing: 0.18em; margin-bottom: 10px;
}
.flip-back-title {
  font-family: var(--ff-display); font-size: 22px; font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 14px;
}
.flip-back-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber);
}
.flip-back-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.capability-card.capability-cta { height: 292px; }

/* ── 3D TILT cards + glare ── */
.tilt-card {
  position: relative;
  transition: transform 0.16s ease-out, box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.tilt-glare {
  position: absolute; inset: 0;
  pointer-events: none; opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: 4; border-radius: inherit;
}

@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 600px) {
  .capability-card.flip-card,
  .capability-card.capability-cta { height: auto; min-height: 256px; }
}
@media (prefers-reduced-motion: reduce) {
  .clip-text { animation: none; }
  .flip-inner { transition: none; }
}

/* ══════════════════════════════════════
   CHATBOT — "ENKOP Assistant"
══════════════════════════════════════ */
.chatbot-launcher {
  position: fixed; right: 24px; bottom: 24px; z-index: 9990;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--charcoal) 100%);
  border: 2px solid rgba(200,146,42,0.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(14,77,104,0.45);
  transition: transform 0.3s var(--ease);
  animation: launcherPulse 2.6s ease-in-out infinite;
}
@keyframes launcherPulse {
  0%, 100% { box-shadow: 0 12px 36px rgba(14,77,104,0.45), 0 0 0 0 rgba(200,146,42,0.5); }
  50%      { box-shadow: 0 12px 36px rgba(14,77,104,0.45), 0 0 0 14px rgba(200,146,42,0); }
}
.chatbot-launcher:hover { transform: scale(1.06); }
.chatbot-launcher svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chatbot-launcher .close-icon { display: none; }
.chatbot-launcher.is-open .chat-icon { display: none; }
.chatbot-launcher.is-open .close-icon { display: block; }

.chatbot-panel {
  position: fixed; right: 24px; bottom: 96px; z-index: 9989;
  width: 380px; max-width: calc(100vw - 32px);
  height: 580px; max-height: calc(100vh - 120px);
  background: #fff;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(14,77,104,0.32);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transform: translateY(20px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.3s var(--ease), transform 0.35s cubic-bezier(.2,.85,.25,1);
}
.chatbot-panel.is-open { opacity: 1; pointer-events: auto; transform: none; }

.chatbot-header {
  background: linear-gradient(135deg, var(--teal) 0%, var(--charcoal) 100%);
  padding: 18px 20px; color: #fff;
  display: flex; align-items: center; gap: 12px;
  position: relative; flex-shrink: 0;
}
.chatbot-header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}
.chatbot-header-emblem {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); padding: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chatbot-header-emblem img { width: 100%; height: 100%; object-fit: contain; }
.chatbot-header-info { flex: 1; min-width: 0; }
.chatbot-header-title { font-family: var(--ff-display); font-size: 16px; font-weight: 700; line-height: 1.2; }
.chatbot-header-status {
  font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 3px;
  display: inline-flex; align-items: center; gap: 6px;
}
.chatbot-header-status::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px #4ade80;
}

.chatbot-messages {
  flex: 1; overflow-y: auto;
  padding: 18px 16px; display: flex; flex-direction: column; gap: 10px;
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}
.chatbot-messages::-webkit-scrollbar { width: 6px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: rgba(14,77,104,0.2); border-radius: 4px; }

.chat-msg {
  display: flex; gap: 8px; max-width: 88%;
  animation: msgIn 0.3s var(--ease) both;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.chat-msg-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal-pale); padding: 2px;
  flex-shrink: 0;
}
.chat-msg-avatar img { width: 100%; height: 100%; object-fit: contain; }
.chat-msg.user .chat-msg-avatar { display: none; }
.chat-msg-bubble {
  padding: 10px 14px; border-radius: 14px;
  font-size: 13.5px; line-height: 1.55;
  word-wrap: break-word;
}
.chat-msg.bot .chat-msg-bubble {
  background: var(--teal-pale); color: var(--ink);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-msg-bubble {
  background: var(--teal); color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-msg.bot .chat-msg-bubble strong { color: var(--teal); font-weight: 600; }

.chat-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  align-self: flex-start; max-width: 100%;
  margin-left: 36px;
  margin-top: -2px;
  animation: msgIn 0.35s var(--ease) both;
}
.chat-chip {
  background: #fff; border: 1px solid var(--amber);
  color: var(--amber); padding: 6px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  font-family: var(--ff-body);
  transition: all 0.2s var(--ease);
}
.chat-chip:hover { background: var(--amber); color: #fff; }

.chat-cta-row {
  display: flex; align-self: flex-start; margin-left: 36px;
  animation: msgIn 0.35s var(--ease) both;
}
.chat-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--amber); color: #fff; text-decoration: none;
  padding: 8px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  border: none; font-family: var(--ff-body);
  transition: background 0.2s, transform 0.2s;
}
.chat-cta-btn:hover { background: #a96820; transform: translateY(-1px); }

.typing-indicator {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 2px;
}
.typing-indicator span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  opacity: 0.4; animation: typingDot 1.2s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.15s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1; transform: translateY(-3px); }
}

.chatbot-input {
  border-top: 1px solid var(--divider);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 8px;
  background: #fff; flex-shrink: 0;
}
.chatbot-input input {
  flex: 1; border: 1px solid var(--divider); border-radius: 100px;
  padding: 10px 16px; font-family: var(--ff-body); font-size: 13.5px;
  color: var(--ink); outline: none; background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
}
.chatbot-input input:focus { border-color: var(--teal); background: #fff; }
.chatbot-send {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--amber); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.chatbot-send:hover { background: #a96820; transform: scale(1.05); }
.chatbot-send svg { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.chatbot-footer-tag {
  text-align: center; font-size: 9.5px; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 0 9px; background: #fff;
}

@media (max-width: 480px) {
  .chatbot-panel {
    right: 8px; bottom: 84px;
    width: calc(100vw - 16px); height: calc(100vh - 100px);
    border-radius: 16px;
  }
  .chatbot-launcher { right: 16px; bottom: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .chatbot-launcher { animation: none; }
  .chat-msg, .chat-chips, .chat-cta-row { animation: none; }
}
