/* ═══════════════════════════════════════════════════════
   BESPOKE AI TECHNOLOGIES — DESIGN SYSTEM v5
   Hybrid: Dark WebGL Hero + Light Content + Immersive UX
   Cursor · GSAP · Magnetic · 3D Tilt · Three.js
   ═══════════════════════════════════════════════════════ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── BRAND ───────────────── */
  --teal:       #1fbdac;
  --teal-lt:    #2ecfbe;
  --teal-dk:    #169e8f;
  --teal-glow:  rgba(31,189,172,0.22);
  --gold:       #f0a030;
  --gold-lt:    #f5b84a;
  --gold-dk:    #d48c22;
  --gold-glow:  rgba(240,160,48,0.22);
  --red:        #c74634;
  --red-lt:     #e05540;
  --red-glow:   rgba(199,70,52,0.18);
  --oracle-red: #c74634;

  /* ── LIGHT BODY ──────────── */
  --bg:         #ffffff;
  --bg-2:       #f5f7fb;
  --bg-3:       #edf0f7;
  --bg-4:       #e4e9f4;
  --txt:        #0d1525;
  --txt-2:      #4a5770;
  --txt-3:      #8896a8;
  --white:      #ffffff;
  --card:       #ffffff;
  --bdr:        #e4e9f2;
  --bdr-2:      #cdd4e4;
  --bdr-teal:   rgba(31,189,172,0.30);
  --bdr-gold:   rgba(240,160,48,0.30);
  --bdr-red:    rgba(199,70,52,0.22);

  /* ── DARK HERO / SECTIONS ── */
  --bg-dark:    #030811;
  --bg-dark-2:  #070f1e;
  --bg-dark-3:  #0a1428;
  --bg-glass:   rgba(255,255,255,0.05);
  --bdr-glass:  rgba(255,255,255,0.09);

  /* ── THREE.JS PARTICLES ──── (brighter neon for dark bg) */
  --ptcl-teal:  #00e5d0;
  --ptcl-gold:  #f5a623;

  /* ── COMPAT ──────────────── */
  --teal-05:    rgba(31,189,172,0.05);
  --teal-20:    rgba(31,189,172,0.20);
  --navy:       #0d1525;
  --navy-lt:    #1a2840;

  /* ── SHADOWS ─────────────── */
  --shadow-sm:  0 2px 8px rgba(13,21,37,0.06), 0 1px 3px rgba(13,21,37,0.04);
  --shadow:     0 4px 20px rgba(13,21,37,0.08), 0 2px 8px rgba(13,21,37,0.05);
  --shadow-lg:  0 12px 40px rgba(13,21,37,0.12), 0 4px 16px rgba(13,21,37,0.06);
  --shadow-teal:0 0 0 1px var(--bdr-teal), 0 6px 24px rgba(31,189,172,0.14);
  --shadow-gold:0 0 0 1px var(--bdr-gold), 0 6px 24px rgba(240,160,48,0.14);
  --shadow-red: 0 0 0 1px var(--bdr-red),  0 6px 24px rgba(199,70,52,0.10);

  /* ── RADII ───────────────── */
  --r-xs: 4px; --r-sm: 8px; --r: 14px; --r-lg: 22px; --r-xl: 36px;

  /* ── MOTION ──────────────── */
  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-out:    cubic-bezier(0,0,0.2,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --t:   0.30s;
  --t-s: 0.18s;
  --t-l: 0.55s;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; opacity: 0.5; }

/* ── CURSOR ── */
.cursor-dot {
  width: 5px; height: 5px; background: var(--teal);
  border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(31,189,172,0.55);
  border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.28s var(--ease), height 0.28s var(--ease), border-color 0.28s, background 0.28s;
}
.cursor-ring.hovering {
  width: 48px; height: 48px;
  border-color: var(--teal);
  background: rgba(31,189,172,0.06);
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

html { scroll-behavior: smooth; cursor: none; }
a, button, [role="button"] { cursor: none; }
@media (hover: none) { html, a, button { cursor: auto; } }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg); color: var(--txt);
  line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }
button { font-family: inherit; cursor: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── TYPOGRAPHY ── */
.label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); display: block; margin-bottom: 14px;
}
.label-gold  { color: var(--gold-dk); }
.label-red   { color: var(--red); }
.label-white { color: rgba(255,255,255,0.45); }

h1,h2,h3,h4 { font-weight: 700; line-height: 1.12; color: var(--txt); }

.gradient-text {
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-lt) 50%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.teal-text  { color: var(--teal); }
.gold-text  { color: var(--gold); }
.red-text   { color: var(--red); }
.white-text { color: #fff; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.88rem;
  border: none; cursor: none; letter-spacing: 0.015em;
  transition: transform var(--t-s) var(--ease-spring), box-shadow var(--t) var(--ease), background var(--t-s);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12); transform: translateX(-110%);
  transition: transform 0.4s var(--ease); border-radius: inherit;
}
.btn:hover::after { transform: translateX(0); }

.btn-primary {
  background: var(--teal); color: #fff;
  box-shadow: 0 4px 16px rgba(31,189,172,0.30);
}
.btn-primary:hover { background: var(--teal-lt); box-shadow: 0 6px 28px rgba(31,189,172,0.40); }

.btn-gold {
  background: var(--gold); color: #fff;
  box-shadow: 0 4px 16px rgba(240,160,48,0.28);
}
.btn-gold:hover { background: var(--gold-lt); box-shadow: 0 6px 28px rgba(240,160,48,0.40); }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-lt); }

.btn-outline {
  background: transparent; color: var(--teal);
  border: 1.5px solid var(--bdr-teal);
}
.btn-outline:hover { background: rgba(31,189,172,0.06); box-shadow: var(--shadow-teal); }

.btn-glass {
  background: rgba(255,255,255,0.9); backdrop-filter: blur(12px);
  color: var(--txt); border: 1px solid var(--bdr-2);
}
.btn-glass:hover { border-color: var(--teal); color: var(--teal); }

.btn-white-outline {
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.22);
}
.btn-white-outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; background: rgba(255,255,255,0.06); }

/* ══════════════════════════════════════
   CARDS — Light theme
══════════════════════════════════════ */
.card {
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--r); padding: 32px 28px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), transform 0.12s var(--ease-out);
  will-change: transform;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.card:hover { border-color: var(--bdr-teal); box-shadow: var(--shadow-teal); }
.card:hover::before { transform: scaleX(1); }

.card-gold::before   { background: var(--gold); }
.card-gold:hover     { border-color: var(--bdr-gold); box-shadow: var(--shadow-gold); }
.card-red::before    { background: var(--red); }
.card-red:hover      { border-color: var(--bdr-red); box-shadow: var(--shadow-red); }

.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--txt); }
.card p  { font-size: 0.875rem; color: var(--txt-2); line-height: 1.75; }

.icon-box {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px; flex-shrink: 0;
}
.icon-teal  { background: rgba(31,189,172,0.10); border: 1px solid rgba(31,189,172,0.22); }
.icon-gold  { background: rgba(240,160,48,0.10); border: 1px solid rgba(240,160,48,0.22); }
.icon-red   { background: rgba(199,70,52,0.08);  border: 1px solid rgba(199,70,52,0.18); }
.icon-navy  { background: rgba(13,21,37,0.04);   border: 1px solid var(--bdr); }

.tag {
  display: inline-flex; font-size: 0.68rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px; letter-spacing: 0.06em; text-transform: uppercase;
}
.tag-teal  { color: var(--teal-dk); background: rgba(31,189,172,0.10); border: 1px solid rgba(31,189,172,0.22); }
.tag-gold  { color: var(--gold-dk); background: rgba(240,160,48,0.10); border: 1px solid rgba(240,160,48,0.22); }
.tag-red   { color: var(--red);     background: rgba(199,70,52,0.08);  border: 1px solid rgba(199,70,52,0.18); }
.tag-navy  { color: var(--txt-2);   background: var(--bg-2);           border: 1px solid var(--bdr); }

.svc-link {
  font-size: 0.82rem; font-weight: 600; color: var(--teal);
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  transition: gap var(--t-s), opacity var(--t-s);
}
.svc-link:hover { gap: 12px; }

/* ══════════════════════════════════════
   NAVBAR — transparent on dark hero, white on scroll
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: transparent;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--bdr);
  box-shadow: 0 2px 20px rgba(13,21,37,0.07);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

/* ── Nav brand: favicon + name text ── */
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-favicon {
  height: 36px; width: 36px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0; display: block;
}
.nav-brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-main {
  font-size: 1.08rem; font-weight: 800; letter-spacing: 0.04em;
  color: var(--teal-lt);
  transition: color var(--t-s);
}
.brand-sub {
  font-size: 0.54rem; font-weight: 700; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--gold-lt); margin-top: 3px;
  transition: color var(--t-s);
}
.navbar.scrolled .brand-main { color: var(--teal-dk); }
.navbar.scrolled .brand-sub  { color: var(--gold-dk); }

.nav-links { display: flex; align-items: center; gap: 2px; }

/* Default: light text (over dark hero) */
.nav-links > li > a, .drop-trigger {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 13px; font-size: 0.83rem; font-weight: 500;
  color: rgba(255,255,255,0.75); border-radius: var(--r-sm);
  transition: all var(--t-s); cursor: none; white-space: nowrap;
}
.nav-links > li > a:hover, .drop-trigger:hover {
  color: #fff; background: rgba(255,255,255,0.08);
}
/* Scrolled: dark text (over white navbar) */
.navbar.scrolled .nav-links > li > a,
.navbar.scrolled .drop-trigger { color: var(--txt-2); }
.navbar.scrolled .nav-links > li > a:hover,
.navbar.scrolled .drop-trigger:hover { color: var(--teal); background: rgba(31,189,172,0.06); }

.nav-cta {
  background: var(--teal) !important; color: #fff !important; font-weight: 700 !important;
  margin-left: 10px; padding: 9px 22px !important;
  box-shadow: 0 4px 14px rgba(31,189,172,0.35);
}
.nav-cta:hover { background: var(--teal-lt) !important; box-shadow: 0 6px 22px rgba(31,189,172,0.45) !important; }

.dropdown { position: relative; }
.drop-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 268px;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--bdr); border-radius: var(--r); padding: 8px;
  box-shadow: 0 16px 48px rgba(13,21,37,0.12), 0 4px 12px rgba(13,21,37,0.06);
  z-index: 10;
}
/* Transparent bridge fills the gap so mouse doesn't lose hover while crossing it */
.drop-menu::before {
  content: ''; position: absolute;
  top: -12px; left: -4px; right: -4px; height: 12px;
}
.drop-menu.open { display: block; }

.drop-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 13px; font-size: 0.855rem;
  color: var(--txt-2); border-radius: 8px; transition: all var(--t-s); cursor: none;
}
.drop-menu a:hover { background: rgba(31,189,172,0.06); color: var(--teal); }
.drop-menu .icon { font-size: 0.95rem; width: 20px; text-align: center; flex-shrink: 0; }
.drop-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--txt-3); padding: 8px 13px 4px;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: none;
}
.hamburger span {
  width: 24px; height: 2px; background: rgba(255,255,255,0.8);
  border-radius: 2px; display: block; transition: all var(--t-s);
}
.navbar.scrolled .hamburger span { background: var(--txt); }

/* ══════════════════════════════════════
   HERO — DARK with Three.js canvas
══════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; position: relative; overflow: hidden;
  background: var(--bg-dark);
}

#heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(0,229,208,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,208,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 10%, transparent 100%);
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 80px 0; position: relative; z-index: 2;
}
.hero-left { max-width: 620px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(31,189,172,0.25); background: rgba(31,189,172,0.08);
  color: rgba(255,255,255,0.85);
  padding: 6px 16px 6px 10px; border-radius: 100px;
  margin-bottom: 32px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em;
}
.badge-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal); display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: #fff; box-shadow: 0 0 10px rgba(31,189,172,0.5);
}

.hero h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.4rem); font-weight: 900;
  letter-spacing: -0.03em; line-height: 1.02; margin-bottom: 22px; color: #fff;
}
.hero h1 .teal { color: var(--teal); text-shadow: 0 0 32px rgba(31,189,172,0.4); }
.hero h1 .gold { color: var(--gold-lt); }

.hero-motto {
  font-size: 0.9rem; font-style: italic; color: rgba(255,255,255,0.45);
  border-left: 2px solid var(--teal); padding-left: 14px;
  margin-bottom: 20px; line-height: 1.65;
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; margin-bottom: 38px; max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
}
.hstat-val {
  font-size: 1.9rem; font-weight: 800; color: var(--teal);
  display: block; line-height: 1; text-shadow: 0 0 24px rgba(31,189,172,0.35);
}
.hstat-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-top: 5px; }

/* ── Hero dashboard ── */
.hero-right { display: flex; align-items: center; justify-content: center; }
.dash-shell {
  width: 100%; max-width: 500px;
  background: rgba(10,20,40,0.88); backdrop-filter: blur(24px);
  border: 1px solid rgba(31,189,172,0.14); border-radius: var(--r-lg); padding: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}
.dash-shell::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(31,189,172,0.05), transparent 60%);
  pointer-events: none;
}

.ds-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ds-title { font-size: 0.66rem; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; }
.ds-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.62rem; font-weight: 700; color: #22c55e; letter-spacing: 0.08em;
}
.ds-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 8px #22c55e; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;} 50%{opacity:0.35;} }

.ds-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 18px; }
.kpi {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 13px; text-align: center;
}
.kpi-lbl { font-size: 0.58rem; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.07em; }
.kpi-val { font-size: 1.3rem; font-weight: 800; margin: 4px 0 2px; line-height: 1; }
.kpi-chg { font-size: 0.6rem; }
.up  { color: #22c55e; } .dn  { color: #f87171; } .neu { color: var(--teal); }

.ds-chart { margin-bottom: 18px; }
.chart-lbl { font-size: 0.62rem; color: rgba(255,255,255,0.28); margin-bottom: 8px; letter-spacing: 0.06em; }
.bars { display: flex; align-items: flex-end; gap: 4px; height: 56px; }
.bar { flex:1; border-radius: 3px 3px 0 0; animation: grow-bar 1.2s var(--ease-out) both; transform-origin: bottom; }
.bar-t { background: linear-gradient(180deg, var(--teal), rgba(31,189,172,0.15)); }
.bar-g { background: linear-gradient(180deg, var(--gold), rgba(240,160,48,0.15)); }
.bar-r { background: linear-gradient(180deg, var(--red), rgba(199,70,52,0.15)); }
@keyframes grow-bar { from{transform:scaleY(0);opacity:0;} to{transform:scaleY(1);opacity:1;} }

.ds-svcs { display: flex; flex-direction: column; gap: 7px; }
.dsvc { display: flex; align-items: center; font-size: 0.68rem; }
.dsvc-name { color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 5px; min-width: 130px; }
.dsvc-dot  { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.dsvc-track { flex:1; height: 3px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow:hidden; margin: 0 10px; }
.dsvc-fill  { height:100%; border-radius:2px; animation: fill-bar 1.8s var(--ease-out) both; }
@keyframes fill-bar { from{width:0;} }
.dsvc-pct  { color: rgba(255,255,255,0.45); font-weight:600; min-width:28px; text-align:right; }

.float-card {
  position: absolute; border-radius: var(--r);
  background: rgba(10,20,40,0.92); backdrop-filter: blur(16px);
  border: 1px solid rgba(31,189,172,0.18); padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45); animation: float 6s ease-in-out infinite;
}
.fc-1 { top:-26px; right:-16px; animation-delay:0s; }
.fc-2 { bottom:-16px; left:-24px; animation-delay:3s; }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.fc-lbl { font-size:0.58rem; color:rgba(255,255,255,0.35); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:3px; }
.fc-val { font-size:1rem; font-weight:800; }
.fc-sub { font-size:0.6rem; color:rgba(255,255,255,0.3); margin-top:2px; }

/* ══════════════════════════════════════
   MARQUEE — Light subtle strip
══════════════════════════════════════ */
.marquee-wrap {
  background: var(--bg-2);
  border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr);
  padding: 14px 0; overflow: hidden;
}
.marquee-track {
  display: flex; animation: marquee-scroll 32s linear infinite; white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--txt-3); padding: 0 26px; flex-shrink: 0;
}
.marquee-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); opacity: 0.6; }
@keyframes marquee-scroll { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ══════════════════════════════════════
   SECTIONS — Light theme
══════════════════════════════════════ */
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); margin-bottom: 14px; color: var(--txt); }
.section-head p  { font-size: 1.05rem; color: var(--txt-2); max-width: 580px; margin: 0 auto; line-height: 1.75; }

.bg-white  { background: var(--bg); }
.bg-gray   { background: var(--bg-2); }
.bg-dark   { background: var(--bg-dark); }
.bg-dark-2 { background: var(--bg-dark-2); }

/* ══════════════════════════════════════
   TRUST BAR — Light
══════════════════════════════════════ */
.trust-bar { background: var(--bg); border-bottom: 1px solid var(--bdr); padding: 22px 0; }
.trust-inner { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; }
.trust-lbl   { font-size: 0.68rem; color: var(--txt-3); text-transform: uppercase; letter-spacing: 0.12em; white-space: nowrap; flex-shrink: 0; }
.trust-logos { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.trust-logo  {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; color: var(--txt-3);
  letter-spacing: 0.04em; transition: color var(--t-s); white-space: nowrap;
}
.trust-logo:hover { color: var(--txt-2); }
.oracle-pill { background: var(--red); color: #fff; font-size: 0.58rem; font-weight: 700; padding: 2px 6px; border-radius: var(--r-xs); }
.ai-pill     { background: var(--teal); color: #fff; font-size: 0.58rem; font-weight: 700; padding: 2px 6px; border-radius: var(--r-xs); }

/* ══════════════════════════════════════
   GRID UTILITIES
══════════════════════════════════════ */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ══════════════════════════════════════
   PILLAR STRIP — Light
══════════════════════════════════════ */
.pillar-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--bdr); border-radius: var(--r-lg);
  overflow: hidden; background: var(--card); box-shadow: var(--shadow-sm);
}
.pillar-item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--bdr); transition: background var(--t-s);
  position: relative;
}
.pillar-item::after {
  content: ''; position: absolute; bottom: 0; left: 20%; right: 20%; height: 2px;
  background: var(--teal); transform: scaleX(0); transform-origin: center; transition: transform var(--t);
}
.pillar-item:hover { background: rgba(31,189,172,0.03); }
.pillar-item:hover::after { transform: scaleX(1); }
.pillar-item:last-child { border-right: none; }
.pillar-icon { font-size: 2rem; margin-bottom: 14px; }
.pillar-item h4 { font-size: 0.92rem; font-weight: 700; color: var(--txt); margin-bottom: 7px; }
.pillar-item p  { font-size: 0.8rem; color: var(--txt-2); line-height: 1.55; }

/* ══════════════════════════════════════
   TWO-COL FEATURE — Light
══════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.feature-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.feat-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: var(--r-sm);
  background: var(--bg-2); border: 1px solid var(--bdr); transition: all var(--t-s);
}
.feat-item:hover { border-color: var(--bdr-teal); background: rgba(31,189,172,0.03); box-shadow: var(--shadow-teal); }
.feat-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.feat-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--txt); margin-bottom: 3px; }
.feat-item p  { font-size: 0.83rem; color: var(--txt-2); margin: 0; line-height: 1.6; }

.visual-box {
  background: var(--bg-2); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); padding: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.vbox-card {
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--r); padding: 20px; text-align: center;
  box-shadow: var(--shadow-sm); transition: all var(--t-s);
}
.vbox-card:hover { border-color: var(--bdr-teal); box-shadow: var(--shadow-teal); }
.vbox-icon { font-size: 1.8rem; margin-bottom: 8px; }
.vbox-val  { font-size: 1.5rem; font-weight: 800; color: var(--teal); line-height: 1; }
.vbox-lbl  { font-size: 0.75rem; color: var(--txt-2); margin-top: 5px; line-height: 1.4; }

/* ══════════════════════════════════════
   STEPS — Light
══════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps-grid::before {
  content: ''; position: absolute;
  top: 32px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal)); opacity: 0.25;
}
.step { text-align: center; padding: 0 20px; }
.step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; font-size: 1rem; font-weight: 800; position: relative; z-index: 1;
}
.step-1 { background: rgba(31,189,172,0.08); border: 1.5px solid var(--teal);   color: var(--teal-dk); }
.step-2 { background: rgba(199,70,52,0.07);  border: 1.5px solid var(--red);    color: var(--red); }
.step-3 { background: rgba(240,160,48,0.08); border: 1.5px solid var(--gold);   color: var(--gold-dk); }
.step-4 { background: rgba(31,189,172,0.08); border: 1.5px solid var(--teal);   color: var(--teal-dk); }
.step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; color: var(--txt); }
.step p  { font-size: 0.82rem; color: var(--txt-2); line-height: 1.7; }

/* ══════════════════════════════════════
   MISSION / VISION CARDS — Light
══════════════════════════════════════ */
.mv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.mv-card {
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--r); padding: 28px; box-shadow: var(--shadow-sm); transition: all var(--t-s);
}
.mv-card:hover { border-color: var(--bdr-teal); box-shadow: var(--shadow-teal); }
.mv-card h4 {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--teal); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.mv-card p { font-size: 0.875rem; color: var(--txt-2); line-height: 1.75; }

/* ══════════════════════════════════════
   QUOTE — Light
══════════════════════════════════════ */
.quote-wrap {
  background: linear-gradient(135deg, rgba(31,189,172,0.04), rgba(240,160,48,0.03));
  border: 1px solid var(--bdr); border-radius: var(--r-lg);
  padding: 52px 60px; text-align: center; position: relative; overflow: hidden;
}
.quote-mark {
  position: absolute; top: 0; left: 36px;
  font-size: 7rem; line-height: 1; font-family: Georgia, serif;
  color: rgba(31,189,172,0.10); pointer-events: none;
}
.quote-text { font-size: 1.2rem; font-style: italic; color: var(--txt); line-height: 1.75; margin-bottom: 18px; position: relative; z-index: 1; }
.quote-attr { font-size: 0.82rem; color: var(--txt-3); font-weight: 600; }

/* ══════════════════════════════════════
   STAT BANNER — Teal gradient
══════════════════════════════════════ */
.stat-banner {
  background: linear-gradient(135deg, var(--teal-dk), var(--teal), var(--teal-lt));
  padding: 56px 0;
}
.stat-banner-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  text-align: center; gap: 24px;
}
.sb-val  { font-size: 2.5rem; font-weight: 900; color: #fff; display: block; line-height: 1; }
.sb-lbl  { font-size: 0.72rem; color: rgba(255,255,255,0.75); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.06em; display: block; }

/* ══════════════════════════════════════
   CTA SECTION — Dark
══════════════════════════════════════ */
.cta-section {
  background: var(--bg-dark); position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top:-40%; left:50%; transform:translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(31,189,172,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(2rem, 3vw, 3rem); color: #fff; margin-bottom: 14px; }
.cta-inner p  { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 40px; }
.cta-actions  { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   LIVE PANEL — Dark card on dark section
══════════════════════════════════════ */
.live-panel {
  background: rgba(10,20,40,0.88); backdrop-filter: blur(24px);
  border: 1px solid rgba(31,189,172,0.12); border-radius: var(--r-lg); padding: 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.lp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.lp-title { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; }
.lp-tabs  { display: flex; gap: 4px; }
.lp-tab   {
  font-size: 0.65rem; font-weight: 600; padding: 5px 12px; border-radius: 6px;
  cursor: none; color: rgba(255,255,255,0.35); border: 1px solid transparent; transition: all var(--t-s);
}
.lp-tab.active { background: rgba(31,189,172,0.12); color: var(--teal); border-color: rgba(31,189,172,0.22); }

.lp-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.lp-metric  {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 15px;
}
.lp-metric-lbl  { font-size: 0.62rem; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; }
.lp-metric-val  { font-size: 1.4rem; font-weight: 800; line-height: 1; }
.lp-metric-trend{ font-size: 0.62rem; margin-top: 4px; }
.t-up { color: #22c55e; } .t-dn { color: #f87171; }

.lp-feed  { display: flex; flex-direction: column; gap: 7px; margin-top: 16px; }
.feed-item{
  display: flex; align-items: center; gap: 9px;
  font-size: 0.7rem; color: rgba(255,255,255,0.55); padding: 8px 10px;
  border-radius: 8px; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
}
.feed-dot  { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.feed-time { color: rgba(255,255,255,0.25); margin-left: auto; flex-shrink: 0; }

/* ══════════════════════════════════════
   PAGE HERO (inner pages) — Dark
══════════════════════════════════════ */
.page-hero {
  background: var(--bg-dark-2); padding: 148px 0 84px;
  text-align: center; position: relative; overflow: hidden;
}
.ph-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(31,189,172,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,189,172,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.ph-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(31,189,172,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.ph-inner { position: relative; z-index: 1; text-align: center; }
.page-hero .label { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; letter-spacing: -0.025em; color: #fff; margin-bottom: 16px; }
.page-hero p  { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 580px; margin: 0 auto 32px; line-height: 1.75; }

/* ══════════════════════════════════════
   MODULE CARDS (Oracle Fusion) — Light
══════════════════════════════════════ */
.mod-card {
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--r); padding: 28px; box-shadow: var(--shadow-sm);
  transition: border-color var(--t), box-shadow var(--t), transform 0.12s var(--ease-out);
  will-change: transform;
}
.mod-card:hover { border-color: var(--bdr-red); box-shadow: var(--shadow-red); }
.mod-icon {
  width: 48px; height: 48px;
  background: rgba(199,70,52,0.08); border: 1px solid rgba(199,70,52,0.18);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.mod-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--txt); }
.mod-card p  { font-size: 0.83rem; color: var(--txt-2); line-height: 1.7; margin-bottom: 14px; }
.mod-list { display: flex; flex-direction: column; gap: 5px; }
.mod-list li { font-size: 0.78rem; color: var(--txt-2); display: flex; align-items: center; gap: 7px; }
.mod-list li::before { content: '›'; color: var(--teal); font-weight: 700; font-size: 1rem; }

/* ══════════════════════════════════════
   OCI TILES — Light
══════════════════════════════════════ */
.oci-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.oci-tile {
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--r-sm); padding: 22px; text-align: center;
  box-shadow: var(--shadow-sm); transition: all var(--t-s); will-change: transform;
}
.oci-tile:hover { border-color: var(--bdr-teal); box-shadow: var(--shadow-teal); transform: translateY(-4px); }
.oci-tile .icon { font-size: 1.8rem; margin-bottom: 10px; }
.oci-tile h4 { font-size: 0.82rem; font-weight: 700; color: var(--txt); margin-bottom: 5px; }
.oci-tile p  { font-size: 0.72rem; color: var(--txt-2); line-height: 1.55; }

/* ══════════════════════════════════════
   AI CONSULTING — Light
══════════════════════════════════════ */
.assessment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.assess-card {
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--t);
}
.assess-card:hover { box-shadow: var(--shadow-teal); transform: translateY(-4px); border-color: var(--bdr-teal); }
.assess-header { padding: 24px 24px 18px; border-bottom: 1px solid var(--bdr); }
.assess-header h3 { font-size: 1rem; font-weight: 700; color: var(--txt); margin-bottom: 6px; }
.assess-header p  { font-size: 0.82rem; color: var(--txt-2); }
.assess-body  { padding: 20px 24px; }
.assess-items { display: flex; flex-direction: column; gap: 9px; }
.assess-item  { display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; }
.assess-name  { color: var(--txt-2); display: flex; align-items: center; gap: 8px; }
.assess-name::before { content: '›'; color: var(--teal); font-weight: 700; }
.assess-dots  { display: flex; gap: 3px; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-fill  { background: var(--teal); }
.dot-empty { background: var(--bg-3); }

.ai-deliverable-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.deliverable {
  display: flex; gap: 14px;
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--r-sm); padding: 18px; box-shadow: var(--shadow-sm); transition: all var(--t-s);
}
.deliverable:hover { border-color: var(--bdr-teal); box-shadow: var(--shadow-teal); }
.del-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(31,189,172,0.10); border: 1px solid rgba(31,189,172,0.22);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.deliverable h4 { font-size: 0.88rem; font-weight: 700; color: var(--txt); margin-bottom: 3px; }
.deliverable p  { font-size: 0.8rem; color: var(--txt-2); line-height: 1.55; }

.process-area { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.process-tag  {
  font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 100px;
  background: rgba(31,189,172,0.08); color: var(--teal-dk);
  border: 1px solid rgba(31,189,172,0.22); transition: all var(--t-s);
}
.process-tag:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.process-tag-gold { background: rgba(240,160,48,0.08); color: var(--gold-dk); border-color: rgba(240,160,48,0.22); }
.process-tag-gold:hover { background: var(--gold); color: #fff; }
.process-tag-red  { background: rgba(199,70,52,0.07); color: var(--red); border-color: rgba(199,70,52,0.18); }
.process-tag-red:hover  { background: var(--red); color: #fff; }

.hero-motto {
  font-size: 0.92rem; font-style: italic; color: rgba(255,255,255,0.45);
  border-left: 2px solid var(--teal); padding-left: 14px; margin-bottom: 20px; line-height: 1.6;
}

/* ══════════════════════════════════════
   CONTACT / APPLY — Light
══════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.contact-info h2 { font-size: 1.8rem; margin-bottom: 14px; color: var(--txt); }
.contact-info > p { color: var(--txt-2); line-height: 1.75; margin-bottom: 32px; }
.cdetails { display: flex; flex-direction: column; gap: 18px; }
.cdetail  { display: flex; gap: 12px; align-items: flex-start; }
.cdet-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(31,189,172,0.10); border: 1px solid rgba(31,189,172,0.22);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--teal);
}
.cdetail h4   { font-size: 0.8rem; font-weight: 700; color: var(--txt); margin-bottom: 1px; }
.cdetail span { font-size: 0.85rem; color: var(--txt-2); }

.form-box {
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); padding: 48px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--txt-2); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-2); border: 1.5px solid var(--bdr);
  border-radius: var(--r-sm); padding: 11px 14px;
  font-size: 0.9rem; color: var(--txt); font-family: inherit;
  outline: none; transition: border-color var(--t-s), box-shadow var(--t-s); width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--txt-3); }
.form-group select option { background: var(--bg-2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); background: var(--bg); box-shadow: 0 0 0 3px rgba(31,189,172,0.10);
}
.form-group textarea { min-height: 130px; resize: vertical; }

.apply-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.perks { display: flex; flex-direction: column; gap: 12px; }
.perk {
  display: flex; gap: 12px;
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--r-sm); padding: 16px; box-shadow: var(--shadow-sm); transition: all var(--t-s);
}
.perk:hover { border-color: var(--bdr-teal); box-shadow: var(--shadow-teal); }
.perk-ic {
  width: 38px; height: 38px; min-width: 38px;
  background: rgba(31,189,172,0.10); border: 1px solid rgba(31,189,172,0.22);
  border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.perk h4 { font-size: 0.88rem; font-weight: 700; color: var(--txt); margin-bottom: 2px; }
.perk p  { font-size: 0.8rem; color: var(--txt-2); line-height: 1.55; }
.apply-form-box {
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow);
}
.apply-form-box h3 { font-size: 1.2rem; font-weight: 700; color: var(--txt); margin-bottom: 24px; }

/* ══════════════════════════════════════
   FOOTER — Dark
══════════════════════════════════════ */
footer {
  background: var(--bg-dark); border-top: 1px solid rgba(31,189,172,0.08); padding: 72px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.footer-brand-id {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-favicon {
  height: 34px; width: 34px; border-radius: 7px;
  object-fit: cover; flex-shrink: 0;
}
.footer-brand-name { display: flex; flex-direction: column; line-height: 1; }
.footer-brand-main {
  font-size: 1.02rem; font-weight: 800; letter-spacing: 0.04em; color: var(--teal-lt);
}
.footer-brand-sub {
  font-size: 0.52rem; font-weight: 700; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--gold-lt); margin-top: 3px;
}
.footer-brand p   { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.75; }
.footer-col h4 {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.3); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.35); transition: color var(--t-s); display: inline-flex; align-items: center; gap: 5px; }
.footer-col ul a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
}
.footer-badges { display: flex; gap: 8px; }
.footer-badge {
  background: rgba(31,189,172,0.10); border: 1px solid rgba(31,189,172,0.18);
  color: var(--teal-dk); font-size: 0.65rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px; letter-spacing: 0.05em;
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width:1024px){
  .hero-inner      { grid-template-columns:1fr; }
  .hero-right      { display:none; }
  .two-col         { grid-template-columns:1fr; gap:40px; }
  .grid-3          { grid-template-columns:repeat(2,1fr); }
  .steps-grid      { grid-template-columns:1fr 1fr; }
  .steps-grid::before { display:none; }
  .footer-grid     { grid-template-columns:1fr 1fr; }
  .pillar-strip    { grid-template-columns:1fr 1fr; }
  .pillar-item:nth-child(2){ border-right:none; }
  .assessment-grid { grid-template-columns:repeat(2,1fr); }
  .stat-banner-inner{ grid-template-columns:repeat(2,1fr); }
  .oci-grid        { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:768px){
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .nav-links.open {
    display:flex; flex-direction:column;
    position:fixed; top:72px; left:0; right:0; bottom:0;
    background:rgba(3,8,17,0.97); backdrop-filter:blur(20px);
    padding:20px; gap:4px; overflow-y:auto;
    border-top:1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open .drop-menu { display:block; position:static; background:transparent; border:none; box-shadow:none; padding-left:16px; }
  .nav-links.open .drop-menu a { color:rgba(255,255,255,0.55); }
  .nav-links.open .drop-menu a:hover { color:var(--teal); }
  .grid-3  { grid-template-columns:1fr; }
  .grid-2  { grid-template-columns:1fr; }
  .grid-4  { grid-template-columns:1fr 1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .apply-grid   { grid-template-columns:1fr; }
  .form-row     { grid-template-columns:1fr; }
  .footer-grid  { grid-template-columns:1fr; }
  .footer-bottom{ flex-direction:column; gap:12px; text-align:center; }
  .mv-grid      { grid-template-columns:1fr; }
  .pillar-strip { grid-template-columns:1fr; border-radius:var(--r); }
  .pillar-item  { border-right:none !important; border-bottom:1px solid var(--bdr); }
  .pillar-item:last-child{ border-bottom:none; }
  .assessment-grid { grid-template-columns:1fr; }
  .ai-deliverable-grid{ grid-template-columns:1fr; }
  .hero-actions { flex-direction:column; align-items:flex-start; }
  .cta-actions  { flex-direction:column; align-items:center; }
  .form-box, .apply-form-box { padding:28px 20px; }
  .quote-wrap   { padding:32px 24px; }
  .steps-grid   { grid-template-columns:1fr; gap:32px; }
  .stat-banner-inner{ grid-template-columns:1fr 1fr; }
  .oci-grid     { grid-template-columns:1fr 1fr; }
  .trust-logos  { gap:16px; }
}
@media(max-width:480px){
  .container    { padding:0 18px; }
  .grid-4       { grid-template-columns:1fr; }
  .oci-grid     { grid-template-columns:1fr; }
  .stat-banner-inner{ grid-template-columns:1fr; }
}
