/* ============================================================
   ANALITICA — Shared Stylesheet v2
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── TOKENS ── */
:root {
  --navy-deep:    #080F1E;
  --navy-mid:     #0D1B36;
  --navy-light:   #162444;
  --accent:       #3B82F6;
  --accent-light: #60A5FA;
  --accent-glow:  rgba(59,130,246,0.16);
  --gold:         #F59E0B;
  --gold-light:   #FCD34D;
  --white:        #FFFFFF;
  --off-white:    #F8FAFC;
  --text-muted:   #94A3B8;
  --text-body:    #CBD5E1;
  --border:       rgba(255,255,255,0.08);
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --shadow-sm:    0 4px 16px rgba(0,0,0,0.12);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.22);
  --shadow-lg:    0 20px 64px rgba(0,0,0,0.32);
  --ease:         cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.15rem; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent-light); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 28px; height: 2px; background: var(--accent); flex-shrink: 0;
}
.section-desc {
  font-size: 1.05rem; color: var(--text-body); line-height: 1.82; max-width: 620px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.92rem;
  font-family: 'Inter', sans-serif; cursor: pointer; border: none;
  transition: all 0.22s var(--ease);
}
.btn svg { transition: transform 0.22s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--accent); color: var(--white);
  box-shadow: 0 4px 20px rgba(59,130,246,0.38);
}
.btn-primary:hover {
  background: var(--accent-light); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,130,246,0.48);
}
.btn-secondary {
  background: rgba(255,255,255,0.06); color: var(--white);
  border: 1px solid var(--border); backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--accent); border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-gold {
  background: var(--gold); color: var(--navy-deep); font-weight: 700;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 72px;
  background: rgba(8,15,30,0.82);
  backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}
nav.scrolled { background: rgba(8,15,30,0.97); }

.nav-logo { display: flex; align-items: center; gap: 11px; color: var(--white); }
.nav-logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.nav-logo-text { font-size: 1.05rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--text-body); font-size: 0.875rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.nav-cta {
  background: var(--accent); color: var(--white) !important;
  padding: 9px 20px; font-weight: 600; margin-left: 4px;
}
.nav-links a.nav-cta:hover { background: var(--accent-light); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--white); padding: 6px;
}
.nav-mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(8,15,30,0.98); backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  padding: 16px 6%; flex-direction: column; gap: 4px; z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text-body); font-size: 1rem; font-weight: 500;
  padding: 13px 16px; border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-mobile a.nav-cta {
  background: var(--accent); color: var(--white) !important;
  text-align: center; font-weight: 600; margin-top: 8px; border-radius: 10px;
}

/* ── SECTIONS ── */
section { padding: 100px 6%; }
.container { max-width: 1200px; margin: 0 auto; }

.section-light  { background: var(--off-white); color: var(--navy-deep); }
.section-light .section-label { color: var(--accent); }
.section-light .section-label::before { background: var(--accent); }
.section-light .section-desc { color: #475569; }
.section-light h2, .section-light h3 { color: var(--navy-deep); }
.section-mid  { background: var(--navy-mid); }
.section-dark { background: var(--navy-deep); }
.section-grad { background: linear-gradient(160deg, #0b1528 0%, #0f1e3d 50%, #0b1528 100%); }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-label::before { display: none; }
.section-header.center .section-desc { margin: 0 auto; }
.section-header h2 { margin-bottom: 16px; }

/* ── PAGE HERO ── */
.page-hero {
  min-height: 56vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-full { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }

.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,15,30,0.94) 0%, rgba(8,15,30,0.76) 55%, rgba(8,15,30,0.48) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.055) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 20%, transparent 80%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 130px 6% 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.28);
  color: var(--accent-light); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.hero-content h1 { max-width: 760px; margin-bottom: 22px; }
.hero-content h1 .accent { color: var(--accent-light); }
.hero-content .section-desc { margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  margin-top: 64px; padding-top: 48px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 2.2rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
}
.hero-stat-label { font-size: 0.83rem; color: var(--text-muted); }

/* ── LOGOS MARQUEE ── */
.logos-section {
  padding: 48px 0; overflow: hidden;
  background: #ffffff;
  border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0;
}
.logos-eyebrow {
  text-align: center; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #94a3b8; margin-bottom: 28px;
}
.logos-track-wrap { position: relative; overflow: hidden; }
.logos-track-wrap::before, .logos-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.logos-track-wrap::before { left: 0; background: linear-gradient(90deg, #ffffff, transparent); }
.logos-track-wrap::after { right: 0; background: linear-gradient(-90deg, #ffffff, transparent); }
.logos-track {
  display: flex; gap: 40px; align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
.logo-chip {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  white-space: nowrap;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}
.logo-chip img {
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.2s;
}
.logo-chip:hover { border-color: #cbd5e1; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.logo-chip:hover img { filter: grayscale(0%); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PAIN POINTS ── */
.pain-card {
  border-left: 3px solid var(--accent);
  background: rgba(59,130,246,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 28px 32px;
}
.pain-icon { font-size: 1.6rem; margin-bottom: 14px; }
.pain-quote { font-size: 1rem; font-style: italic; color: var(--white); line-height: 1.75; margin-bottom: 12px; }
.pain-attr { font-size: 0.78rem; color: var(--accent-light); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── THREE PILLARS ── */
.pillars-wrap {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.pillar-panel {
  padding: 44px 36px; position: relative;
  transition: background 0.25s var(--ease);
}
.pillar-panel:not(:last-child) { border-right: 1px solid var(--border); }
.pillar-panel:hover { background: rgba(59,130,246,0.06); }
.pillar-step {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.pillar-label {
  display: inline-block;
  background: rgba(59,130,246,0.14); border: 1px solid rgba(59,130,246,0.25);
  color: var(--accent-light); font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px; letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.pillar-panel .card-icon { margin-bottom: 18px; }
.pillar-panel h3 { font-size: 1.2rem; margin-bottom: 12px; }
.pillar-panel > p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.pillar-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pillar-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.85rem; color: var(--text-body);
}
.pillar-list li::before {
  content: '→'; color: var(--accent); font-size: 0.78rem; flex-shrink: 0; margin-top: 2px;
}

/* ── STATS BAR ── */
.stats-bar {
  padding: 72px 6%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-block { text-align: center; padding: 0 24px; }
.stat-block + .stat-block { border-left: 1px solid var(--border); }
.stat-num {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }

/* ── ACCELERATOR CARDS ── */
.accel-card {
  background: linear-gradient(140deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px 36px; position: relative; overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.accel-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.accel-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.4); }
.accel-name {
  font-size: 2rem; font-weight: 900; letter-spacing: -0.02em;
  color: var(--accent-light); margin-bottom: 4px;
}
.accel-subtitle { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.accel-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ── CARDS (generic) ── */
.card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.35); box-shadow: var(--shadow-md); }
.card-light {
  background: var(--white); border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm);
}
.card-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--accent-glow); border: 1px solid rgba(59,130,246,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 1.4rem;
}
.card h3 { margin-bottom: 10px; }
.card p, .card-light p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.72; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2col { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; }
.grid-2col-rev { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--accent) 60%, rgba(59,130,246,0.08));
}
.tl-item { position: relative; padding-bottom: 44px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -33px; top: 5px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); border: 2px solid var(--navy-mid);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.18);
}
.tl-item.current .tl-dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(245,158,11,0.22); }
.tl-era { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 5px; }
.tl-item.current .tl-era { color: var(--gold-light); }
.tl-item h4 { font-size: 1.05rem; margin-bottom: 7px; }
.tl-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── FEATURED WORK CAROUSEL ── */
.fw-carousel { position: relative; }
.fw-track-wrap { overflow: hidden; }
.fw-track { display: flex; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.fw-slide { flex: 0 0 100%; width: 100%; }
.fw-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 8px 0;
}
.fw-img img {
  border-radius: 20px; width: 100%; height: 320px; object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.fw-metrics { display: flex; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.fw-metric-num { font-size: 1.6rem; font-weight: 900; color: var(--accent); }
.fw-metric-label { font-size: 0.75rem; color: #64748b; margin-top: 2px; }
.fw-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 24px;
}
.fw-dots { display: flex; gap: 8px; }
.fw-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #cbd5e1; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.25s; padding: 0;
}
.fw-dot.active { background: var(--accent); transform: scale(1.25); }
.fw-arrow {
  background: none; border: 1px solid #cbd5e1; border-radius: 50%;
  width: 38px; height: 38px; font-size: 1.1rem; cursor: pointer;
  color: var(--navy-deep); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.fw-arrow:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
@media (max-width: 768px) {
  .fw-inner { grid-template-columns: 1fr; gap: 28px; }
  .fw-img img { height: 220px; }
}

/* ── FOUNDER CARDS ── */
.founder-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.founder-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.35); }
.founder-photo { width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: cover; object-position: center top; }
.founder-body { padding: 28px; }
.founder-body h3 { font-size: 1.1rem; margin-bottom: 3px; }
.founder-role { font-size: 0.82rem; color: var(--accent-light); font-weight: 600; margin-bottom: 3px; }
.founder-prev { font-size: 0.78rem; color: #475569; margin-bottom: 16px; }
.founder-body p { font-size: 0.86rem; color: #334155; line-height: 1.7; }
.founder-tag {
  display: block; margin-top: 14px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); background: rgba(255,255,255,0.06);
  border: 1px solid var(--border); padding: 4px 12px; border-radius: 6px;
}

/* ── CASE STUDY CARDS ── */
.cs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.cs-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cs-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.3); }
.cs-img-wrap { position: relative; height: 210px; overflow: hidden; }
.cs-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.cs-card:hover .cs-img-wrap img { transform: scale(1.05); }
.cs-industry-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(8,15,30,0.82); backdrop-filter: blur(10px);
  border: 1px solid var(--border); color: var(--accent-light);
}
.cs-service-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(59,130,246,0.18); backdrop-filter: blur(10px);
  border: 1px solid rgba(59,130,246,0.4); color: #93c5fd;
}
.cs-service-badge-2 { top: 46px; }
.cs-body { padding: 28px; }
.cs-body h3 { font-size: 1.08rem; margin-bottom: 10px; line-height: 1.4; }
.cs-body p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; }
.cs-metrics { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid var(--border); }
.cs-metric-num {
  font-size: 1.5rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--accent-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cs-metric-label { font-size: 0.74rem; color: var(--text-muted); margin-top: 3px; }

/* ── FILTER TABS ── */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-tab {
  padding: 8px 20px; border-radius: 100px; cursor: pointer;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.85rem; font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s var(--ease);
}
.filter-tab.active, .filter-tab:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* ── TESTIMONIAL CAROUSEL ── */
.t-carousel { position: relative; }
.t-track-wrap { overflow: hidden; }
.t-track { display: flex; transition: transform 0.42s cubic-bezier(0.4,0,0.2,1); }
.t-slide { min-width: 100%; }
.t-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 52px;
  max-width: 820px; margin: 0 auto; text-align: center;
}
.t-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 4px; margin-bottom: 24px; }
.t-quote {
  font-size: clamp(1rem, 2.2vw, 1.22rem); font-style: italic;
  color: var(--white); line-height: 1.78; margin-bottom: 30px;
}
.t-author-name { font-size: 0.96rem; font-weight: 700; margin-bottom: 4px; }
.t-author-role { font-size: 0.82rem; color: var(--text-muted); }
.t-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.t-btn {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s var(--ease); font-family: 'Inter', sans-serif;
}
.t-btn:hover { background: var(--accent); border-color: var(--accent); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px; border-radius: 4px; cursor: pointer;
  background: rgba(255,255,255,0.2); transition: all 0.25s var(--ease);
}
.t-dot.active { background: var(--accent); width: 24px; }

/* ── CTA BAND ── */
.cta-band {
  padding: 100px 6%; text-align: center;
  background: linear-gradient(160deg, #0a1428 0%, #0e1d3b 50%, #0a1428 100%);
  border-top: 1px solid var(--border);
}
.cta-band h2 { max-width: 640px; margin: 0 auto 18px; }
.cta-band p { font-size: 1.05rem; color: var(--text-body); max-width: 520px; margin: 0 auto 38px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 46px; box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--navy-deep); letter-spacing: 0.04em; margin-bottom: 7px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #E2E8F0; border-radius: var(--radius-sm);
  font-size: 0.92rem; font-family: 'Inter', sans-serif;
  color: var(--navy-deep); background: #F8FAFC;
  transition: border-color 0.2s, background 0.2s; outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--accent); color: var(--white); border: none;
  border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 700;
  font-family: 'Inter', sans-serif; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: #2563EB; transform: translateY(-1px); }

/* ── CONTACT ITEM ── */
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail + .contact-detail { margin-top: 24px; }
.contact-detail-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  background: rgba(59,130,246,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-text strong {
  display: block; font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--navy-deep); margin-bottom: 3px;
}
.contact-detail-text span { font-size: 0.92rem; color: #475569; }

/* ── FOOTER ── */
footer { background: var(--navy-deep); border-top: 1px solid var(--border); }
.footer-top {
  max-width: 1200px; margin: 0 auto; padding: 64px 6% 48px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; color: var(--white); margin-bottom: 14px; }
.footer-logo svg { width: 30px; height: 30px; }
.footer-logo-text { font-size: 0.92rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-tagline { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; max-width: 280px; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 8px; transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.footer-social a:hover { color: var(--white); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.87rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 20px 6%;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ── MISC ── */
.text-accent { color: var(--accent-light); }
.text-gold { color: var(--gold-light); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-block + .stat-block { border-left: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pillars-wrap { grid-template-columns: 1fr; }
  .pillar-panel:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 768px) {
  section { padding: 72px 5%; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-2col, .grid-2col-rev { grid-template-columns: 1fr; }
  .cs-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 28px; }
  .t-card { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; }
}
