/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:      #FFFFFF;
  --surface: #F4F4F8;
  --surface2:#ECEEF4;
  --border:  rgba(0,0,0,0.08);
  --purple:  #7C6EE6;
  --teal:    #2AA8C8;
  --grad:    linear-gradient(135deg,#7C6EE6,#38BCD8);
  --text:    #2D2D45;
  --muted:   #6B6B8A;
  --white:   #0F0F1A;
  --nav-h:   72px;
}

/* ─── RESET ──────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html  { scroll-behavior:smooth; }
body  { font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif; background:var(--bg); color:var(--text); line-height:1.6; overflow-x:hidden; }
img   { max-width:100%; display:block; }
a     { text-decoration:none; color:inherit; }
ul    { list-style:none; }
button{ font-family:inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1,h2,h3,h4 { color:var(--white); font-weight:700; line-height:1.2; }
h1 { font-size:clamp(2rem,4.5vw,3.5rem); }
h2 { font-size:clamp(1.625rem,3vw,2.5rem); }
h3 { font-size:clamp(1rem,1.5vw,1.25rem); font-weight:600; }

.label {
  font-size:.72rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; display:inline-block; margin-bottom:.75rem;
}
.grad-text {
  background:var(--grad); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
}

/* ─── LAYOUT ─────────────────────────────────────────── */
.container { max-width:1200px; margin:0 auto; padding:0 1.5rem; }
section    { padding:4rem 0; }

.section-hd            { text-align:center; margin-bottom:2rem; }
.section-hd h2         { margin-bottom:.75rem; }
.section-hd p          { color:var(--muted); max-width:560px; margin:0 auto; line-height:1.75; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.875rem 1.75rem; border-radius:8px;
  font-size:.9375rem; font-weight:600; cursor:pointer; transition:all .2s; border:none;
}
.btn-primary { background:var(--grad); color:#fff; }
.btn-primary:hover { opacity:.88; transform:translateY(-1px); }
.btn-ghost   { background:transparent; color:var(--white); border:1px solid var(--border); }
.btn-ghost:hover { border-color:rgba(0,0,0,.2); background:rgba(0,0,0,.04); }
.btn-sm      { padding:.625rem 1.25rem; font-size:.875rem; }

/* ─── NAVIGATION ─────────────────────────────────────── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--nav-h); transition:background .3s,border-color .3s,box-shadow .3s;
  background:rgba(255,255,255,.95); backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}
nav.scrolled {
  box-shadow:0 1px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width:1200px; margin:0 auto; padding:0 1.5rem;
  height:100%; display:flex; align-items:center; justify-content:space-between;
}
.nav-logo               { display:flex; align-items:center; gap:.625rem; }
.nav-logo img           { height:36px; width:auto; }
.nav-logo-text          { font-size:1rem; font-weight:700; color:var(--white); }
.nav-links              { display:flex; align-items:center; gap:2rem; }
.nav-links a            { font-size:.875rem; font-weight:500; color:var(--muted); border-radius:8px; padding:.375rem .75rem; transition:all .2s; }
.nav-links a:hover      { color:var(--white); background:rgba(0,0,0,.05); }
.nav-links a.active     { background:var(--grad); color:#fff; font-weight:600; box-shadow:0 1px 8px rgba(124,110,230,.35); }
.hamburger              { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span         { display:block; width:24px; height:2px; background:var(--white); border-radius:2px; transition:all .3s; }
.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); }

.mobile-nav {
  display:none; position:fixed; top:var(--nav-h); left:0; right:0;
  background:rgba(255,255,255,.97); backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  padding:1.5rem 1.5rem 2rem; z-index:998; flex-direction:column; gap:.25rem;
}
.mobile-nav.open        { display:flex; }
.mobile-nav a           { font-size:1rem; font-weight:500; color:var(--text); padding:.75rem 0; border-bottom:1px solid var(--border); transition:color .2s; }
.mobile-nav a:hover     { color:var(--purple); }
.mobile-nav .btn        { margin-top:1rem; justify-content:center; }

/* ─── PAGE HEADER (inner pages) ──────────────────────── */
.page-header {
  padding-top:calc(var(--nav-h) + 2.5rem); padding-bottom:2rem;
  background:linear-gradient(135deg,rgba(124,110,230,.07) 0%,rgba(56,188,216,.05) 100%),var(--surface);
  border-bottom:1px solid rgba(124,110,230,.1);
  text-align:center;
}
.page-header h1 { margin-bottom:.75rem; }
.page-header p  { color:var(--muted); max-width:560px; margin:0 auto; line-height:1.75; }
.page-header--dark {
  background:#0F0F1A; border-bottom-color:rgba(255,255,255,.06);
  background-image:radial-gradient(rgba(124,110,230,.14) 1.5px,transparent 1.5px);
  background-size:28px 28px;
}
.page-header--dark h1 { color:#fff; }
.page-header--dark p  { color:rgba(255,255,255,.6); }

/* ─── HERO (index only) ──────────────────────────────── */
#hero {
  display:flex; align-items:flex-start;
  position:relative; overflow:hidden;
  padding-top:calc(var(--nav-h) + 4rem); padding-bottom:4rem;
  background-image:radial-gradient(rgba(124,110,230,.12) 1.5px,transparent 1.5px);
  background-size:28px 28px;
}
#hero::before {
  content:''; position:absolute; top:-200px; left:-200px;
  width:700px; height:700px;
  background:radial-gradient(circle,rgba(124,110,230,.18) 0%,transparent 65%);
  pointer-events:none;
}
#hero::after {
  content:''; position:absolute; bottom:-100px; right:-100px;
  width:550px; height:550px;
  background:radial-gradient(circle,rgba(56,188,216,.14) 0%,transparent 65%);
  pointer-events:none;
}
.hero-content  { position:relative; z-index:1; max-width:820px; }
.hero-pill {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(124,110,230,.1); border:1px solid rgba(124,110,230,.22);
  border-radius:100px; padding:.375rem 1rem;
  font-size:.8rem; font-weight:500; color:#AFA4F0; margin-bottom:1.5rem;
}
.hero-pill::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background:var(--purple); flex-shrink:0;
}
#hero h1       { margin-bottom:1.25rem; }
.hero-sub      { font-size:clamp(1rem,1.4vw,1.1rem); color:var(--muted); max-width:660px; line-height:1.8; margin-bottom:2.5rem; }
.hero-ctas     { display:flex; flex-wrap:wrap; gap:1rem; }

/* ─── TRUST STRIP ────────────────────────────────────── */
#trust {
  padding:2rem 0; background:var(--surface);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.trust-grid  { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; align-items:start; }
.trust-item  { display:flex; align-items:flex-start; gap:1rem; }
.trust-icon  {
  width:44px; height:44px; border-radius:10px;
  background:rgba(124,110,230,.1); border:1px solid rgba(124,110,230,.18);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.trust-icon svg { width:22px; height:22px; stroke:#AFA4F0; fill:none; stroke-width:1.75; stroke-linecap:round; stroke-linejoin:round; }
.trust-item h4  { font-size:.9375rem; font-weight:700; margin-bottom:.2rem; }
.trust-item p   { font-size:.8rem; color:var(--muted); line-height:1.5; }

/* ─── ABOUT (teaser on homepage) ─────────────────────── */
.about-grid  { display:grid; grid-template-columns:1fr 1fr; gap:3.5rem; align-items:center; }
.about-grid h2    { margin-bottom:1.25rem; }
.about-grid .body-p { color:var(--muted); margin-bottom:1rem; line-height:1.8; }
.about-visual {
  background:linear-gradient(135deg,rgba(124,110,230,.07),rgba(56,188,216,.07));
  border:1px solid var(--border); border-radius:20px; padding:2.25rem;
  display:flex; flex-direction:column; gap:2rem;
}
.about-method { display:flex; flex-direction:column; gap:1rem; }
.method-step  { display:flex; align-items:center; gap:1rem; }
.method-num   {
  width:36px; height:36px; border-radius:50%; background:var(--grad);
  display:flex; align-items:center; justify-content:center;
  font-size:.875rem; font-weight:700; color:#fff; flex-shrink:0;
}
.method-step h4 { font-size:.9375rem; font-weight:600; margin-bottom:.125rem; }
.method-step p  { font-size:.8rem; color:var(--muted); }
.about-stats    { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.a-stat         { background:var(--bg); border:1px solid var(--border); border-radius:12px; padding:1.25rem; text-align:center; }
.a-stat-val     {
  font-size:1.875rem; font-weight:800;
  background:var(--grad); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
  line-height:1.1; margin-bottom:.375rem;
}
.a-stat-lbl     { font-size:.75rem; color:var(--muted); line-height:1.4; }

/* ─── HOME CTA STRIP ─────────────────────────────────── */
.home-cta-strip {
  background:#0F0F1A;
  padding:3.5rem 0; text-align:center;
}
.home-cta-strip h2  { margin-bottom:.75rem; color:#fff; }
.home-cta-strip p   { color:rgba(255,255,255,.6); max-width:500px; margin:0 auto 2rem; line-height:1.75; }
.home-cta-strip .cta-btns { display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; }
.home-cta-strip .btn-ghost { color:#fff; border-color:rgba(255,255,255,.25); }
.home-cta-strip .btn-ghost:hover { border-color:rgba(255,255,255,.5); background:rgba(255,255,255,.06); }

/* ─── CAPABILITIES ───────────────────────────────────── */
.tab-bar  {
  display:flex; margin-bottom:2rem;
  background:var(--surface); border:1px solid var(--border);
  border-radius:12px; padding:.375rem;
  overflow-x:auto; scrollbar-width:none; gap:.25rem;
}
.tab-bar::-webkit-scrollbar { display:none; }
.tab-btn  {
  padding:.625rem 1.25rem; background:transparent;
  border:none; border-radius:8px;
  color:var(--muted); font-size:.875rem; font-weight:500;
  cursor:pointer; white-space:nowrap; transition:all .2s;
}
.tab-btn:hover:not(.active) { color:var(--text); background:rgba(0,0,0,.04); }
.tab-btn.active             { background:var(--grad); color:#fff; box-shadow:0 1px 8px rgba(124,110,230,.35); }
.tab-panel  { display:none; background:var(--bg); border:1px solid var(--border); border-radius:16px; padding:3rem; box-shadow:0 0 0 1px rgba(124,110,230,.06),0 4px 24px rgba(0,0,0,.06); }
.tab-panel.active { display:block; }
.tab-panel h3    {
  margin-bottom:.625rem; font-size:1.75rem; font-weight:700;
  background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.panel-audience  {
  display:inline-flex; align-items:center;
  background:rgba(124,110,230,.08); border:1px solid rgba(124,110,230,.2);
  border-radius:100px; padding:.3rem .875rem;
  font-size:.78rem; font-weight:600; color:var(--purple);
  letter-spacing:.02em; margin-bottom:1.25rem;
}
.panel-desc      { color:var(--muted); margin-bottom:2.5rem; font-size:1rem; line-height:1.75; }
.cap-list        { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:.75rem; }
.cap-list li     {
  display:flex; align-items:flex-start; gap:.75rem;
  padding:1rem 1.25rem;
  background:var(--surface); border:1px solid var(--border);
  border-left:3px solid rgba(124,110,230,.2);
  border-radius:10px; font-size:.9375rem; color:var(--text); transition:all .2s;
}
.cap-list li:hover       { border-color:rgba(124,110,230,.35); border-left-color:var(--purple); transform:translateY(-1px); box-shadow:0 2px 8px rgba(124,110,230,.1); }
.cap-list li::before     {
  content:''; width:8px; height:8px; border-radius:50%;
  background:var(--grad); flex-shrink:0; margin-top:5px;
}

/* ─── DASHBOARDS ─────────────────────────────────────── */
.charts-grid       { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
.chart-card        { background:var(--surface); border:1px solid var(--border); border-radius:16px; padding:1.75rem; }
.chart-card-hd     { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:1.5rem; }
.chart-card-title  { font-size:.9375rem; font-weight:600; color:var(--white); }
.chart-card-sub    { font-size:.75rem; color:var(--muted); margin-top:.125rem; }
.chart-badge       { font-size:.72rem; font-weight:600; padding:.25rem .625rem; border-radius:100px; }
.badge-up          { background:rgba(52,211,153,.12); color:#34D399; }
.badge-neutral     { background:rgba(56,188,216,.12); color:var(--teal); }
.badge-warn        { background:rgba(251,191,36,.12); color:#FBBF24; }
.chart-wrap        { position:relative; height:220px; }

/* ─── INDUSTRIES / DEPARTMENTS ───────────────────────── */
.dept-ticker {
  overflow:hidden; width:100%;
  -webkit-mask-image:linear-gradient(to right,transparent,black 12%,black 88%,transparent);
  mask-image:linear-gradient(to right,transparent,black 12%,black 88%,transparent);
}
.dept-track {
  display:flex; gap:1rem; width:max-content;
  animation:dept-scroll 28s linear infinite;
}
.dept-track:hover { animation-play-state:paused; }
.dept-chip {
  display:inline-flex; align-items:center; gap:.625rem;
  padding:.75rem 1.5rem; border-radius:100px; white-space:nowrap; flex-shrink:0;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.13);
  font-size:.9375rem; font-weight:600; color:rgba(255,255,255,.85);
}
.dept-chip::before {
  content:''; width:8px; height:8px; border-radius:50%;
  background:var(--grad); flex-shrink:0;
}
@keyframes dept-scroll {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}

/* ─── TECHNOLOGY ─────────────────────────────────────── */
p.tech-tagline { font-size:1rem; color:var(--muted); max-width:960px; margin:.75rem auto 0; line-height:2.1; text-align:center; }
.tech-logo-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(130px,1fr));
  gap:1.25rem; margin-top:2.5rem;
}
.tech-logo-card {
  display:flex; flex-direction:column; align-items:center; gap:.875rem;
  padding:1.75rem 1rem; background:var(--surface);
  border:1px solid var(--border); border-radius:14px; text-align:center;
  transition:all .2s;
}
.tech-logo-card:hover {
  border-color:rgba(124,110,230,.4); transform:translateY(-3px);
  box-shadow:0 6px 20px rgba(124,110,230,.12);
}
.tech-logo-card img { width:56px; height:56px; object-fit:contain; }
.tech-logo-name { font-size:.875rem; font-weight:600; color:var(--text); }

/* ─── PORTFOLIO TICKER ───────────────────────────────── */
.portfolio-section { padding:3rem 0 2rem; }
.portfolio-ticker {
  overflow:hidden;
  display:flex; align-items:center;
  -webkit-mask-image:linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image:linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.portfolio-track {
  display:flex; align-items:center; gap:1.5rem;
  width:max-content;
  animation:portfolio-scroll 45s linear infinite;
}
.portfolio-track:hover { animation-play-state:paused; }
.portfolio-thumb {
  height:200px; width:auto; flex-shrink:0;
  border-radius:10px;
  box-shadow:0 2px 16px rgba(0,0,0,.09);
  cursor:pointer; object-fit:contain;
  transition:transform .25s, box-shadow .25s;
}
.portfolio-thumb:hover {
  transform:translateY(-5px) scale(1.03);
  box-shadow:0 8px 30px rgba(124,110,230,.22);
}
@keyframes portfolio-scroll {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}
.portfolio-note { text-align:center; color:var(--muted); font-size:.8rem; margin-top:1.25rem; }

/* ─── LIGHTBOX ───────────────────────────────────────── */
.lightbox {
  position:fixed; inset:0; z-index:2000;
  background:rgba(9,9,15,.88); backdrop-filter:blur(10px);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .3s;
}
.lightbox.open { opacity:1; pointer-events:all; }
.lightbox-img {
  max-width:90vw; max-height:82vh;
  border-radius:12px; box-shadow:0 12px 60px rgba(0,0,0,.5);
  animation:lightbox-zoom .3s ease;
}
@keyframes lightbox-zoom {
  from { transform:scale(.9); opacity:0; }
  to   { transform:scale(1);  opacity:1; }
}
.lightbox-close {
  position:absolute; top:1.25rem; right:1.5rem;
  background:none; border:none; color:#fff;
  font-size:2.25rem; line-height:1; cursor:pointer;
  opacity:.6; transition:opacity .2s; padding:0;
}
.lightbox-close:hover { opacity:1; }
.lightbox-title {
  margin-top:1rem; color:rgba(255,255,255,.65);
  font-size:.9375rem; font-weight:500;
}

/* ─── DIFFERENTIATORS ────────────────────────────────── */
.diff-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr)); gap:1.5rem; }
.diff-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:16px; padding:2rem; transition:all .2s;
}
.diff-card:hover { border-color:rgba(124,110,230,.3); transform:translateY(-2px); }
.diff-num  {
  font-size:2.25rem; font-weight:800;
  background:var(--grad); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
  line-height:1; margin-bottom:1rem;
}
.diff-card h3 { margin-bottom:.625rem; }
.diff-card p  { font-size:.875rem; color:var(--muted); line-height:1.7; }

/* ─── LEADERSHIP ─────────────────────────────────────── */
.leadership-tagline {
  text-align:center; color:var(--muted); font-size:.9375rem;
  font-style:italic; margin-bottom:3rem; margin-top:-1.5rem;
}
.team-grid  { display:grid; grid-template-columns:repeat(2,1fr); gap:2rem; max-width:820px; margin:0 auto; }
.team-card  {
  background:var(--surface); border:1px solid var(--border);
  border-radius:20px; padding:2.5rem 2rem; text-align:center; transition:border-color .2s;
}
.team-card:hover { border-color:rgba(124,110,230,.3); }
.team-avatar {
  width:80px; height:80px; border-radius:50%; background:var(--grad);
  display:flex; align-items:center; justify-content:center;
  font-size:1.75rem; font-weight:700; color:#fff; margin:0 auto 1.25rem;
}
.team-name  { font-size:1.1rem; font-weight:700; margin-bottom:.25rem; }
.team-title { font-size:.75rem; color:var(--teal); font-weight:600; text-transform:uppercase; letter-spacing:.07em; margin-bottom:1.125rem; }
.team-bio   { font-size:.875rem; color:var(--muted); line-height:1.75; margin-bottom:1.25rem; }
.team-email { font-size:.8125rem; color:var(--purple); font-weight:500; transition:opacity .2s; }
.team-email:hover { opacity:.75; }

/* ─── ENGAGEMENT STEPS ───────────────────────────────── */
.steps-container { position:relative; }
.steps-track     {
  position:absolute; top:27px; left:12.5%; right:12.5%;
  height:2px; background:var(--border); border-radius:2px; overflow:hidden;
}
.steps-track-fill { height:100%; width:66%; background:var(--grad); border-radius:2px; }
.steps-grid  { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; position:relative; }
.step        { display:flex; flex-direction:column; align-items:center; text-align:center; }
.step-num    {
  width:56px; height:56px; border-radius:50%; background:var(--grad);
  display:flex; align-items:center; justify-content:center;
  font-size:1.125rem; font-weight:700; color:#fff;
  margin-bottom:1.25rem; flex-shrink:0; position:relative; z-index:1;
}
.step h3 { font-size:.9375rem; margin-bottom:.5rem; }
.step p  { font-size:.8125rem; color:var(--muted); line-height:1.65; }

/* ─── CONTACT ────────────────────────────────────────── */
.cta-block {
  text-align:center; padding:2.75rem 2rem;
  background:#0F0F1A;
  border-radius:24px; margin-bottom:3rem;
}
.cta-block h2 { margin-bottom:.75rem; color:#fff; }
.cta-block p  { color:rgba(255,255,255,.6); margin-bottom:2rem; max-width:480px; margin-left:auto; margin-right:auto; }

.contact-layout  { display:grid; grid-template-columns:1fr 1.6fr; gap:4rem; align-items:start; }
.contact-info h3 { margin-bottom:1.75rem; }
.c-item          { display:flex; align-items:flex-start; gap:.875rem; margin-bottom:1.5rem; }
.c-icon          {
  width:42px; height:42px; border-radius:10px;
  background:rgba(124,110,230,.1); border:1px solid rgba(124,110,230,.18);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.c-icon svg { width:18px; height:18px; stroke:#AFA4F0; fill:none; stroke-width:1.75; stroke-linecap:round; stroke-linejoin:round; }
.c-lbl      { font-size:.72rem; font-weight:600; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); margin-bottom:.2rem; }
.c-val      { font-size:.9rem; color:var(--text); line-height:1.5; }

.contact-form    { background:var(--surface); border:1px solid var(--border); border-radius:20px; padding:2.5rem; }
.contact-form h3 { margin-bottom:1.75rem; }
.form-row        { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.fg              { display:flex; flex-direction:column; gap:.4rem; margin-bottom:1rem; }
.fg label        { font-size:.8rem; font-weight:500; color:var(--muted); }
.fg input,
.fg textarea     {
  background:var(--bg); border:1px solid var(--border);
  border-radius:8px; padding:.75rem 1rem;
  font-size:.875rem; color:var(--text); font-family:inherit;
  outline:none; transition:border-color .2s; width:100%;
}
.fg input:focus,
.fg textarea:focus { border-color:var(--purple); }
.fg textarea       { height:120px; resize:vertical; }
.form-submit       { margin-top:.5rem; }
.form-submit .btn  { width:100%; justify-content:center; }
.hidden            { display:none!important; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer { background:var(--surface); border-top:1px solid var(--border); padding:3rem 0 2rem; }
.footer-top {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:1.5rem;
  padding-bottom:2rem; margin-bottom:2rem; border-bottom:1px solid var(--border);
}
.footer-logo       { display:flex; align-items:center; gap:.625rem; }
.footer-logo img   { height:32px; }
.footer-logo-text  { font-weight:700; color:var(--white); }
.footer-links      { display:flex; gap:2rem; flex-wrap:wrap; }
.footer-links a    { font-size:.875rem; color:var(--muted); transition:color .2s; }
.footer-links a:hover { color:var(--white); }
.footer-bottom     { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; }
.footer-copy       { font-size:.8rem; color:var(--muted); }
.footer-tag        { font-size:.8rem; color:var(--muted); }
.footer-tag span   { background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; font-weight:600; }

/* ─── ALTERNATING BG ─────────────────────────────────── */
.bg-surface { background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.bg-dark    { background:#0F0F1A; }
.bg-dark h2 { color:#fff; }
.bg-dark p  { color:rgba(255,255,255,.6); }
.bg-dark .label { opacity:.9; }

/* ─── SCROLL ANIMATIONS ──────────────────────────────── */
.fade-up         { opacity:0; transform:translateY(28px); transition:opacity .6s ease,transform .6s ease; }
.fade-up.visible { opacity:1; transform:none; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width:768px) {
  section          { padding:2.5rem 0; }
  .nav-links,
  nav .btn-sm      { display:none; }
  .hamburger       { display:flex; }
  .trust-grid      { grid-template-columns:repeat(2,1fr); }
  .about-grid      { grid-template-columns:1fr; gap:2.5rem; }
  .charts-grid     { grid-template-columns:1fr; }
  .diff-grid       { grid-template-columns:1fr; }
  .team-grid       { grid-template-columns:1fr; max-width:400px; }
  .steps-grid      { grid-template-columns:1fr 1fr; }
  .steps-track     { display:none; }
  .contact-layout  { grid-template-columns:1fr; gap:2rem; }
  .form-row        { grid-template-columns:1fr; }
  .footer-top      { flex-direction:column; align-items:flex-start; }
  .footer-bottom   { flex-direction:column; align-items:flex-start; }
}
@media (max-width:480px) {
  .trust-grid  { grid-template-columns:1fr; }
  .steps-grid  { grid-template-columns:1fr; }
  .hero-ctas   { flex-direction:column; }
  .hero-ctas .btn { width:100%; justify-content:center; }
  .tech-logo-grid { grid-template-columns:repeat(3,1fr); }
  .home-cta-strip .cta-btns .btn { width:100%; justify-content:center; }
}
