/* ============================================================
   EXLA 45° — DESIGN SYSTEM
   Visual DNA: Dark · Orange · Bold · Premium
   ============================================================ */

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

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --bg:           #0D1117;
  --bg-1:         #111827;
  --bg-2:         #1A2035;
  --bg-glass:     rgba(26,32,53,.8);
  --surface:      rgba(255,255,255,.04);
  --surface-2:    rgba(255,255,255,.08);
  --border:       rgba(255,255,255,.10);
  --border-glow:  rgba(243,125,30,.35);

  --accent:       #F37D1E;
  --accent-dim:   rgba(243,125,30,.15);
  --accent-glow:  rgba(243,125,30,.40);
  --green:        #10b981;
  --red:          #ef4444;
  --amber:        #f59e0b;

  --text-h:       #FFFFFF;
  --text-1:       #F9FAFB;
  --text-2:       #D1D5DB;
  --text-3:       #9CA3AF;

  --font-h:       'Outfit', sans-serif;
  --font-b:       'Inter', sans-serif;

  --r-card:       24px;
  --r-btn:        12px;
  --r-pill:       999px;

  --ease:         cubic-bezier(.4, 0, .2, 1);
  --spring:       cubic-bezier(.34, 1.56, .64, 1);
  --t-fast:       .2s;
  --t-med:        .4s;
  --t-slow:       .7s;

  --shadow-card:  0 24px 80px rgba(0,0,0,.4);
  --shadow-glow:  0 0 60px rgba(243,125,30,.2);
  --nav-h:        140px;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text-1);
  overflow-x: hidden;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.h1 {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -.03em;
}
.h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -.02em;
}
.h3 {
  font-family: var(--font-h);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 600; line-height: 1.2;
}
.overline {
  font-family: var(--font-h); font-size: .75rem;
  font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
}
.lead { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-2); line-height: 1.75; }
.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 110px 0; }
.section-sm { padding: 60px 0; }

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity var(--t-slow) var(--ease),
              transform var(--t-slow) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .10s; }
.reveal-delay-2 { transition-delay: .20s; }
.reveal-delay-3 { transition-delay: .30s; }
.reveal-delay-4 { transition-delay: .45s; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem; border-radius: var(--r-btn);
  font-family: var(--font-h); font-weight: 600; font-size: .95rem;
  letter-spacing: .01em; white-space: nowrap;
  transition: all var(--t-med) var(--ease);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.1); opacity: 0;
  transition: opacity var(--t-fast);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 32px rgba(243,125,30,.35);
}
.btn-primary:hover {
  box-shadow: 0 12px 48px rgba(243,125,30,.55);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--surface); color: var(--text-1);
  border: 1px solid var(--border); backdrop-filter: blur(12px);
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-dim); }
.btn-lg { padding: 1.125rem 2.25rem; font-size: 1.05rem; border-radius: 14px; }
.btn-sm { padding: .5rem 1.1rem; font-size: .82rem; border-radius: 8px; }

/* ── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); backdrop-filter: blur(20px);
  transition: all var(--t-med) var(--ease);
}
.card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-glow); transform: translateY(-4px); }

/* ── BADGES ────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem 1rem; border-radius: var(--r-pill);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
}
.badge-accent { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(243,125,30,.25); }

/* ── SECTION HEADER ────────────────────────────────────────── */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 5rem; }
.section-header .overline { margin-bottom: 1rem; }
.section-header .h2      { margin-bottom: 1.25rem; }

/* ── ANIMATED MESH BACKGROUND ──────────────────────────────── */
.mesh-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.mesh-bg::before {
  content: '';
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(243,125,30,.12) 0%, transparent 68%);
  top: -180px; right: -180px; border-radius: 50%;
  animation: meshFloat 9s ease-in-out infinite;
}
.mesh-bg::after {
  content: '';
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,.08) 0%, transparent 68%);
  bottom: -120px; left: -120px; border-radius: 50%;
  animation: meshFloat 12s ease-in-out infinite reverse;
}
@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(30px, -30px) scale(1.08); }
}

/* ══════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  backdrop-filter: blur(24px);
  background: rgba(13,17,23,.75);
  border-bottom: 1px solid var(--border);
  transition: all var(--t-med) var(--ease);
  display: flex; align-items: center;
}
#nav.scrolled { background: rgba(13,17,23,.97); box-shadow: 0 4px 40px rgba(0,0,0,.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); width: 100%; }
.nav-logo { font-family: var(--font-h); font-weight: 900; font-size: 1.5rem; display: flex; align-items: center; gap: 10px; margin-left: 30px; }
.nav-logo-img {
  height: 128px; width: auto; display: block;
  transition: transform var(--t-fast) var(--ease);
  object-fit: contain;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }
.nav-links { display: flex; align-items: center; gap: 1.25rem; }
.nav-links a { font-size: .92rem; font-weight: 500; color: var(--text-2); transition: color var(--t-fast); white-space: nowrap; }
.nav-links a:hover { color: var(--text-h); }
.nav-cta { margin-left: .75rem; }
.nav-auth-btns { display: flex; align-items: center; gap: .5rem; margin-left: .5rem; }
.nav-signin  { border: 1px solid var(--border); }
.nav-register { }

/* Welcome toast */
.welcome-toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--bg-1); border: 1px solid rgba(243,125,30,.4);
  border-radius: 16px; padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: .875rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 30px rgba(243,125,30,.1);
  animation: toastIn .5s cubic-bezier(.34,1.56,.64,1);
  max-width: 320px;
}
.welcome-toast.hiding { animation: toastOut .35s ease forwards; }
@keyframes toastIn  { from { opacity:0; transform:translateY(20px) scale(.95); } to { opacity:1; transform:translateY(0) scale(1); } }
@keyframes toastOut { to   { opacity:0; transform:translateY(10px) scale(.95); } }
.toast-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-dim); border: 1px solid rgba(243,125,30,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toast-icon svg { width: 20px; height: 20px; color: var(--accent); }
.toast-title { font-family: var(--font-h); font-weight: 700; font-size: .9rem; color: var(--text-h); margin-bottom: .2rem; }
.toast-sub { font-size: .78rem; color: var(--text-3); }
.toast-close { background: none; border: none; color: var(--text-3); cursor: pointer; padding: 2px; margin-left: .25rem; flex-shrink: 0; }
.toast-close:hover { color: var(--text-h); }
.toast-close svg { width: 16px; height: 16px; display: block; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-1); border-radius: 2px; transition: all var(--t-fast); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100svh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 0 120px;
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.hero-eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.75rem; }
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 2px; background: var(--accent); border-radius: 2px; }
.hero-headline span.line-2 { color: var(--accent); font-style: italic; }
.hero-sub { margin: 1.5rem 0 2.75rem; max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ── Hero Visual / Infographic ───────────────────────────── */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-infographic-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(243,125,30,.2);
  box-shadow:
    0 0 0 1px rgba(243,125,30,.08),
    0 32px 80px rgba(0,0,0,.6),
    0 0 80px rgba(243,125,30,.12);
  animation: infographicFloat 7s ease-in-out infinite;
}
@keyframes infographicFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.hero-infographic-img {
  display: block; width: 100%; height: auto;
  border-radius: 28px;
}
.hero-infographic-glow {
  position: absolute; inset: 0; border-radius: 28px; pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(243,125,30,.18) 0%, transparent 65%);
}

/* ── Particles ─────────────────────────────────────────────── */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; width: 2px; height: 2px;
  background: var(--accent); border-radius: 50%; opacity: 0;
  animation: particleDrift linear infinite;
}
@keyframes particleDrift {
  from { transform: translateY(100vh) translateX(0); opacity: 0; }
  8%   { opacity: .55; }
  90%  { opacity: .35; }
  to   { transform: translateY(-100px) translateX(60px); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════════════ */
#ticker {
  background: var(--bg-1); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 28px 0;
  overflow: hidden; position: relative;
}
#ticker::before, #ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
#ticker::before { left: 0; background: linear-gradient(to right, var(--bg-1), transparent); }
#ticker::after  { right: 0; background: linear-gradient(to left, var(--bg-1), transparent); }
.ticker-track   { overflow: hidden; }
.ticker-inner   { display: flex; align-items: center; gap: 0; white-space: nowrap; will-change: transform; }
.ticker-item    { display: inline-flex; align-items: center; gap: .75rem; padding: 0 2.75rem; }
.ticker-stat    { font-family: var(--font-h); font-weight: 800; color: var(--accent); font-size: 1.35rem; }
.ticker-text    { font-size: 1.15rem; color: var(--text-3); }
.ticker-sep     { color: var(--accent); font-size: 1rem; opacity: .6; }

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
#about { position: relative; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.about-stat { text-align: center; }
.about-stat .stat-number {
  font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: .4rem;
}
.about-stat .stat-label { font-size: .82rem; color: var(--text-3); line-height: 1.5; }

/* Angle diagram */
.about-visual { display: flex; align-items: center; justify-content: center; }
.angle-diagram {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 2rem; width: 100%;
  box-shadow: var(--shadow-card);
  transition: all var(--t-med) var(--ease);
  overflow: hidden;
}
.angle-diagram:hover { border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.angle-svg { width: 100%; height: auto; }

/* ── SVG Diagram Animations ──────────────────────────────── */

/* Grid + axis: fade in */
.svg-grid, .svg-axis {
  opacity: 0;
  transition: opacity .6s ease;
}
.angle-diagram.animated .svg-grid,
.angle-diagram.animated .svg-axis { opacity: 1; }

/* 10° line draw-in */
.svg-line-10 {
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  transition: stroke-dashoffset 1.2s ease .5s;
}
.angle-diagram.animated .svg-line-10 { stroke-dashoffset: 0; }
.svg-label-10 { opacity: 0; transition: opacity .5s ease 1.7s; }
.angle-diagram.animated .svg-label-10 { opacity: 1; }

/* 90° line draw-in */
.svg-line-90 {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  transition: stroke-dashoffset 1s ease .8s;
}
.angle-diagram.animated .svg-line-90 { stroke-dashoffset: 0; }
.svg-label-90 { opacity: 0; transition: opacity .5s ease 1.8s; }
.angle-diagram.animated .svg-label-90 { opacity: 1; }

/* 45° glow + main line draw-in — the hero */
.svg-line-45-glow {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.4s cubic-bezier(.4,0,.2,1) 1s;
}
.angle-diagram.animated .svg-line-45-glow { stroke-dashoffset: 0; }

.svg-line-45 {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.4s cubic-bezier(.4,0,.2,1) 1s;
}
.angle-diagram.animated .svg-line-45 { stroke-dashoffset: 0; }

/* Arc + label */
.svg-arc {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  transition: stroke-dashoffset .6s ease 2.2s;
}
.angle-diagram.animated .svg-arc { stroke-dashoffset: 0; }
.svg-arc-label { opacity: 0; transition: opacity .4s ease 2.7s; }
.angle-diagram.animated .svg-arc-label { opacity: 1; }

/* Endpoint dot — pop in + pulse */
.svg-dot-outer, .svg-dot-mid, .svg-dot-inner, .svg-dot-label {
  opacity: 0;
  transition: opacity .4s ease 2.3s;
}
.angle-diagram.animated .svg-dot-outer,
.angle-diagram.animated .svg-dot-mid,
.angle-diagram.animated .svg-dot-inner,
.angle-diagram.animated .svg-dot-label { opacity: 1; }

/* Continuous pulse on outer dot ring */
@keyframes dotPulse {
  0%, 100% { r: 14; opacity: .15; }
  50%       { r: 20; opacity: .08; }
}
.angle-diagram.animated .svg-dot-outer {
  animation: dotPulse 2.5s ease-in-out infinite;
  animation-delay: 2.6s;
}

/* Continuous glow shimmer on 45° line */
@keyframes lineShimmer {
  0%   { stroke-opacity: .15; }
  50%  { stroke-opacity: .45; }
  100% { stroke-opacity: .15; }
}
.angle-diagram.animated .svg-line-45-glow {
  animation: lineShimmer 3s ease-in-out infinite;
  animation-delay: 2.5s;
}

/* ══════════════════════════════════════════════════════════════
   PILLARS
══════════════════════════════════════════════════════════════ */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.pillar-card { padding: 2.5rem 2rem; position: relative; display: flex; flex-direction: column; }
.pillar-card.featured {
  border-color: var(--border);
  background: var(--surface);
  box-shadow: none;
  transform: none;
}
.pillar-card.featured:hover { transform: translateY(-4px); }

/* Step-Change Academy / BTFA embed inside pillar cards */
.pillar-product-tag {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(243,125,30,.25);
}
.pillar-product-label {
  display: block;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--text-3); margin-bottom: .6rem;
}
.pillar-product-link { display: inline-block; }
.pillar-product-logo {
  max-height: 44px; width: auto; max-width: 200px;
  object-fit: contain; mix-blend-mode: lighten;
  filter: drop-shadow(0 2px 8px rgba(243,125,30,.15));
  margin-bottom: .875rem;
  transition: filter var(--t-fast);
}
/* SCA logo in Excellence card — 50% larger */
.pillar-card:first-child .pillar-product-logo {
  max-height: 66px;
  max-width: 300px;
}
.pillar-product-link:hover .pillar-product-logo {
  filter: drop-shadow(0 4px 16px rgba(243,125,30,.4));
}
.pillar-product-desc {
  font-size: .85rem; color: var(--text-3); line-height: 1.65;
}
.pillar-popular-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-family: var(--font-h); font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .25rem .875rem; border-radius: var(--r-pill);
  white-space: nowrap;
}
.pillar-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; border: 1px solid rgba(243,125,30,.2);
}
.pillar-icon svg { width: 26px; height: 26px; color: var(--accent); }
.pillar-letter {
  font-family: var(--font-h); font-size: 3rem; font-weight: 900;
  color: var(--accent); line-height: 1; opacity: .15;
  position: absolute; top: 1.5rem; right: 1.75rem;
  pointer-events: none; letter-spacing: -.04em;
}
.pillar-name {
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 700;
  color: var(--text-h); margin-bottom: .875rem;
}
.pillar-desc { color: var(--text-2); font-size: .93rem; line-height: 1.7; margin-bottom: 1.5rem; }
.pillar-features { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; flex-grow: 1; }
.pillar-features li {
  font-size: .88rem; color: var(--text-2);
  padding-left: 1.25rem; position: relative;
}
.pillar-features li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700; font-size: .8rem;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
#services { position: relative; overflow: hidden; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { padding: 2.25rem 2rem; }
.service-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; border: 1px solid rgba(243,125,30,.2);
  transition: all var(--t-med) var(--ease);
}
.service-card:hover .service-icon { background: rgba(243,125,30,.25); border-color: rgba(243,125,30,.4); }
.service-icon svg { width: 22px; height: 22px; color: var(--accent); }
.service-name {
  font-family: var(--font-h); font-size: 1.15rem; font-weight: 700;
  color: var(--text-h); margin-bottom: .75rem;
}
.service-desc { font-size: .9rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1.25rem; }
.service-tag {
  display: inline-flex; padding: .2rem .75rem;
  border-radius: var(--r-pill); font-size: .72rem; font-weight: 700;
  background: var(--accent-dim); color: var(--accent);
  border: 1px solid rgba(243,125,30,.25); letter-spacing: .04em;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCTS (BTFA + SCAcademy)
══════════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.product-card {
  position: relative; overflow: hidden;
  padding: 3rem 3rem 2.5rem;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: all var(--t-med) var(--ease);
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}
.product-glow {
  position: absolute; width: 500px; height: 500px;
  border-radius: 50%; pointer-events: none;
  top: -200px; opacity: 0;
  transition: opacity var(--t-slow) var(--ease);
}
.product-card:hover .product-glow { opacity: 1; }
.product-glow-btfa {
  right: -150px;
  background: radial-gradient(circle, rgba(243,125,30,.12) 0%, transparent 65%);
}
.product-glow-sca {
  left: -150px;
  background: radial-gradient(circle, rgba(243,125,30,.10) 0%, transparent 65%);
}

.product-logo-wrap {
  height: 100px;
  display: flex; align-items: center;
  margin-bottom: 1.75rem;
}
.product-logo {
  max-height: 70px; width: auto;
  max-width: 260px;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 2px 12px rgba(243,125,30,.15));
  transition: filter var(--t-med) var(--ease);
}
/* SCA logo is wider/shorter — give it more room */
a[href*="sca.exla45"] .product-logo {
  max-height: 140px;
  max-width: 420px;
}
.product-card:hover .product-logo {
  filter: drop-shadow(0 4px 20px rgba(243,125,30,.35));
}

.product-divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  margin-bottom: 1.75rem;
  opacity: .4;
}

.product-body { flex: 1; }
.product-tagline {
  font-family: var(--font-h); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent); margin-bottom: .875rem;
}
.product-desc {
  font-size: .93rem; color: var(--text-2); line-height: 1.75;
  margin-bottom: 1.5rem;
}
.product-features {
  list-style: none; display: flex; flex-direction: column;
  gap: .55rem; margin-bottom: 2.25rem;
}
.product-features li {
  font-size: .88rem; color: var(--text-2);
  padding-left: 1.4rem; position: relative;
}
.product-features li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700; font-size: .8rem;
}

.product-cta { margin-top: auto; }
.product-cta .btn { pointer-events: none; }

/* ══════════════════════════════════════════════════════════════
   PROGRAMS
══════════════════════════════════════════════════════════════ */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.program-card { padding: 2.5rem 2rem; position: relative; }
.program-card.featured {
  border-color: var(--accent); background: var(--bg-2);
  box-shadow: 0 0 60px rgba(243,125,30,.15), 0 24px 80px rgba(0,0,0,.4);
}
.program-popular-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-family: var(--font-h); font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .25rem .875rem; border-radius: var(--r-pill);
  white-space: nowrap;
}
.program-badge { margin-bottom: 1.25rem; }
.program-name {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 800;
  color: var(--text-h); margin-bottom: .75rem;
}
.program-tagline { color: var(--text-2); font-size: .93rem; line-height: 1.65; margin-bottom: 1.25rem; }
.program-duration { font-size: .82rem; color: var(--accent); font-weight: 600; margin-bottom: 1.5rem; }
.program-features { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.program-feature {
  font-size: .88rem; color: var(--text-2); padding-left: 1.25rem; position: relative;
}
.program-feature::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; font-size: .8rem; }

/* ══════════════════════════════════════════════════════════════
   PROOF / TESTIMONIALS
══════════════════════════════════════════════════════════════ */
#proof { position: relative; overflow: hidden; }
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 2.75rem 2rem;
  text-align: center; transition: all var(--t-med) var(--ease);
}
.stat-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.stat-number {
  font-family: var(--font-h); font-size: clamp(2.8rem,5vw,4.5rem);
  font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: .6rem;
}
.stat-label { color: var(--text-2); font-size: .9rem; line-height: 1.6; }
.stat-source { font-size: .72rem; color: var(--text-3); margin-top: .5rem; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card { padding: 2rem; }
.testimonial-stars { color: var(--accent); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testimonial-text { color: var(--text-2); font-size: .9rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { font-family: var(--font-h); font-weight: 700; color: var(--text-h); font-size: .93rem; }
.testimonial-co { font-size: .8rem; color: var(--accent); margin-top: .2rem; font-weight: 600; letter-spacing: .03em; }

/* Logo Strip */
.logo-strip { text-align: center; padding: 3rem 0 0; }
.logo-strip-label { font-size: .75rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.75rem; font-family: var(--font-h); font-weight: 600; }
.logo-row { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.logo-item {
  display: flex; align-items: center; gap: .6rem;
  color: var(--text-3); font-size: .85rem; font-weight: 600;
  transition: color var(--t-fast);
}
.logo-item:hover { color: var(--text-2); }
.logo-item svg { width: 20px; height: 20px; }

/* ══════════════════════════════════════════════════════════════
   CONTACT / CTA
══════════════════════════════════════════════════════════════ */
.cta-section { position: relative; overflow: hidden; background: var(--bg-1); }
.cta-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.cta-content .h2 { margin-top: .75rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.cta-visual-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.cta-img-container {
  position: relative; width: 100%;
  border-radius: 28px; overflow: hidden;
  /* No max-height — let full portrait image show */
  cursor: pointer;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1),
              box-shadow .5s var(--ease);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(243,125,30,.1);
}
.cta-img-container:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 40px 100px rgba(0,0,0,.6),
              0 0 60px rgba(100,120,255,.2),
              0 0 0 1px rgba(243,125,30,.25);
}

/* The image itself */
.cta-visual-img {
  width: 100%; height: auto; display: block;
  border-radius: 28px;
  transition: filter .5s var(--ease), transform .5s var(--ease);
  filter: brightness(.92) saturate(1.1);
}
.cta-img-container:hover .cta-visual-img {
  filter: brightness(1.08) saturate(1.3) contrast(1.05);
  transform: scale(1.03);
}

/* Glossy sheen overlay */
.cta-img-sheen {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  border-radius: 28px; overflow: hidden;
}
.cta-img-sheen::before {
  content: '';
  position: absolute;
  top: -80%; left: -60%;
  width: 60%; height: 200%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,.07) 50%,
    rgba(255,255,255,.13) 55%,
    rgba(255,255,255,.07) 60%,
    transparent 70%
  );
  transform: skewX(-15deg) translateX(0);
  transition: transform .7s var(--ease);
}
.cta-img-container:hover .cta-img-sheen::before {
  transform: skewX(-15deg) translateX(420%);
}

/* Animated orange glow pulse at bottom */
.cta-img-glow {
  position: absolute; bottom: -30px; left: 10%; right: 10%;
  height: 60px; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse, rgba(243,125,30,.45) 0%, transparent 70%);
  animation: ctaGlowPulse 3s ease-in-out infinite;
  border-radius: 50%;
  filter: blur(12px);
}
@keyframes ctaGlowPulse {
  0%, 100% { opacity: .5; transform: scaleX(1); }
  50%       { opacity: 1;  transform: scaleX(1.2); }
}

/* Animated purple/blue side glow (matches arrow in image) */
.cta-img-glow-side {
  position: absolute; top: 20%; right: -20px;
  width: 50px; height: 50%;
  z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse, rgba(100,120,255,.3) 0%, transparent 70%);
  animation: ctaSideGlow 4s ease-in-out infinite alternate;
  filter: blur(16px);
}
@keyframes ctaSideGlow {
  from { opacity: .3; transform: translateY(-10px); }
  to   { opacity: .8; transform: translateY(10px); }
}

/* Edge fades to melt into section */
.cta-img-fade-top,
.cta-img-fade-bottom,
.cta-img-fade-left,
.cta-img-fade-right {
  position: absolute; pointer-events: none; z-index: 2;
  border-radius: 28px;
}
.cta-img-fade-top {
  top: 0; left: 0; right: 0; height: 20%;
  background: linear-gradient(to bottom, var(--bg-1), transparent);
}
.cta-img-fade-bottom {
  bottom: 0; left: 0; right: 0; height: 25%;
  background: linear-gradient(to top, var(--bg-1), transparent);
}
.cta-img-fade-left {
  top: 0; bottom: 0; left: 0; width: 18%;
  background: linear-gradient(to right, var(--bg-1), transparent);
}
.cta-img-fade-right {
  top: 0; bottom: 0; right: 0; width: 15%;
  background: linear-gradient(to left, var(--bg-1), transparent);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
#footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  background: var(--bg);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo { height: 84px; width: auto; margin-bottom: 1rem; display: block; object-fit: contain; }
.footer-tagline {
  font-family: var(--font-h); font-weight: 700; font-size: .9rem;
  color: var(--text-2); letter-spacing: .08em; margin-bottom: .75rem;
}
.footer-desc { font-size: .85rem; color: var(--text-3); line-height: 1.7; max-width: 280px; }
.footer-col-title {
  font-family: var(--font-h); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--text-3);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .75rem; }
.footer-links a { font-size: .88rem; color: var(--text-3); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.social-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); transition: all var(--t-fast);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

/* ── Footer Connect List ─────────────────────────────────── */
.footer-connect-list {
  display: flex; flex-direction: column; gap: .75rem; margin-top: .25rem;
}
.footer-connect-item {
  display: flex; align-items: center; gap: .9rem;
  text-decoration: none; color: var(--text-2);
  font-size: .93rem; font-weight: 500;
  transition: color var(--t-fast);
}
.footer-connect-item:hover { color: var(--text-h); }
.footer-connect-icon {
  width: 40px; height: 40px;
  border-radius: 10px; flex-shrink: 0;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 4px 14px rgba(243,125,30,.3);
}
.footer-connect-item:hover .footer-connect-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(243,125,30,.5);
}
.footer-connect-icon svg { width: 20px; height: 20px; color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--text-3);
}
.footer-bottom a { color: var(--text-3); transition: color var(--t-fast); }
.footer-bottom a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: flex; }
  .hero-infographic-wrap { max-width: 480px; margin: 0 auto; }
  .products-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card.featured { transform: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .stat-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .logo-row { gap: 1.5rem; }

  .nav-links {
    display: none;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,17,23,.98); backdrop-filter: blur(24px);
    padding: 1.5rem; flex-direction: column; gap: 1.25rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .cta-actions { flex-direction: column; }
}

/* ── Callback Form ────────────────────────────────────────────── */
.cta-form-wrap { display: flex; align-items: flex-start; }
.contact-card { padding: 2rem; width: 100%; }
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block; font-size: .78rem; font-weight: 600; color: var(--text-2);
  margin-bottom: .4rem; font-family: var(--font-h);
  text-transform: uppercase; letter-spacing: .05em;
}
.form-input {
  width: 100%; padding: .75rem 1rem;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text-1);
  font-family: var(--font-b); font-size: .93rem;
  outline: none; transition: all .2s ease;
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(243,125,30,.15); }
.form-input::placeholder { color: var(--text-3); }
.form-input.error { border-color: var(--error); }
select.form-input { cursor: pointer; }
select.form-input option { background: var(--bg-1); color: var(--text-1); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cb-field-err { font-size: .73rem; color: var(--error); margin-top: .3rem; display: none; }
.cb-field-err.show { display: block; }
.cb-alert {
  padding: .875rem 1rem; border-radius: 10px; font-size: .88rem;
  margin-bottom: 1rem; align-items: center; gap: .5rem;
}
.cb-alert-error { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3); color: #fca5a5; }
.cb-spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
  animation: spin .7s linear infinite; display: none; flex-shrink: 0;
}
@media (max-width: 520px) { .form-row-2 { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   OUR VALUES SECTION
══════════════════════════════════════════════════════════════ */
.values-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: start;
}

/* ── Heading ─────────────────────────────────────────────── */
.values-heading { font-family: var(--font-h); line-height: 1; margin-bottom: 2.5rem; }
.values-our {
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900;
  color: var(--text-h); letter-spacing: -.02em;
}
.values-word {
  font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 900;
  font-style: italic; color: var(--accent); letter-spacing: -.03em;
}

/* ── Value items ─────────────────────────────────────────── */
.values-list { display: flex; flex-direction: column; gap: 0; }
.value-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-item:hover .value-icon-wrap { background: rgba(243,125,30,.2); border-color: rgba(243,125,30,.5); }

.value-icon-wrap {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px; background: var(--accent-dim);
  border: 1px solid rgba(243,125,30,.25);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-med) var(--ease); margin-top: 2px;
}
.value-icon-wrap svg { width: 26px; height: 26px; color: var(--accent); }

.value-body { flex: 1; }
.value-number {
  font-family: var(--font-h); font-size: .72rem; font-weight: 800;
  color: var(--accent); letter-spacing: .1em; margin-bottom: .3rem;
}
.value-title {
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 700;
  color: var(--text-h); margin-bottom: .25rem;
}
.value-tagline {
  font-size: .82rem; color: var(--accent); font-weight: 600;
  font-style: italic; margin-bottom: .6rem;
}
.value-desc { font-size: .9rem; color: var(--text-2); line-height: 1.7; }

/* ── Right visual panel ──────────────────────────────────── */
.values-right { position: sticky; top: 120px; }
.values-visual {
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: var(--r-card); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--t-med) var(--ease);
}
.values-visual:hover { border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.values-visual-inner { padding: 3rem 2.5rem; text-align: center; }

.values-big-number {
  font-family: var(--font-h); font-size: 6rem; font-weight: 900;
  color: var(--accent); line-height: 1; letter-spacing: -.04em;
  text-shadow: 0 0 60px rgba(243,125,30,.4);
  animation: valuePulse 4s ease-in-out infinite;
}
@keyframes valuePulse {
  0%, 100% { text-shadow: 0 0 40px rgba(243,125,30,.3); }
  50%       { text-shadow: 0 0 80px rgba(243,125,30,.6); }
}
.values-big-label {
  font-family: var(--font-h); font-size: .85rem; font-weight: 600;
  color: var(--text-3); text-transform: uppercase; letter-spacing: .1em;
  margin-top: .5rem; line-height: 1.5;
}
.values-divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 2rem auto;
}
.values-quote {
  font-size: 1rem; color: var(--text-2); font-style: italic;
  line-height: 1.7; margin-bottom: .5rem;
}
.values-quote-attr {
  font-size: .78rem; color: var(--text-3); font-weight: 600;
  letter-spacing: .06em;
}
.values-stats-row {
  display: flex; justify-content: space-around;
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.values-stat-num {
  font-family: var(--font-h); font-size: 1.75rem; font-weight: 900;
  color: var(--accent); line-height: 1;
}
.values-stat-lbl { font-size: .72rem; color: var(--text-3); margin-top: .3rem; }

@media (max-width: 1024px) {
  .values-grid { grid-template-columns: 1fr; }
  .values-right { position: static; }
}

/* ══════════════════════════════════════════════════════════════
   OUR VALUES — BTFA-style cards
══════════════════════════════════════════════════════════════ */
.values-section { background: var(--bg); }

.vc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
}

.vc-card {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  cursor: default;
}
.vc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(243,125,30,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}
.vc-card:hover {
  border-color: rgba(243,125,30,.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(243,125,30,.08);
}
.vc-card:hover::before { opacity: 1; }

/* Big background letter */
.vc-letter {
  position: absolute;
  top: -10px; right: 12px;
  font-family: var(--font-h);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(243,125,30,.07);
  line-height: 1;
  pointer-events: none;
  transition: color .3s;
}
.vc-card:hover .vc-letter { color: rgba(243,125,30,.13); }

/* Icon */
.vc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(243,125,30,.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: all .3s ease;
}
.vc-card:hover .vc-icon-wrap {
  background: rgba(243,125,30,.2);
  border-color: rgba(243,125,30,.5);
  box-shadow: 0 0 20px rgba(243,125,30,.2);
}
.vc-icon-wrap svg { width: 26px; height: 26px; color: var(--accent); }

/* Text */
.vc-title {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-h);
  line-height: 1.25;
  margin-bottom: .5rem;
}
.vc-tagline {
  font-size: .82rem;
  color: var(--accent);
  font-weight: 600;
  font-style: italic;
  margin-bottom: .875rem;
}
.vc-desc {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

/* Stat at bottom */
.vc-stat {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.vc-stat-num {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.vc-stat-lbl {
  font-size: .72rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Bottom banner */
.vc-banner {
  text-align: center;
  padding: 1.5rem 2rem;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.6;
}
.vc-banner strong { color: var(--accent); }

/* Responsive */
@media (max-width: 1100px) {
  .vc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .vc-grid { grid-template-columns: 1fr; }
}
