/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Design Tokens ── */
:root {
  --bg:          #0b1728;
  --bg2:         #0f1e35;
  --bg-card:     rgba(255,255,255,0.04);
  --border:      rgba(255,255,255,0.07);
  --accent:      #c9a84c;
  --accent-h:    #d4b55a;
  --accent-soft: rgba(201,168,76,0.12);
  --text:        #ffffff;
  --text-muted:  rgba(255,255,255,0.55);
  --radius:      14px;
  --shadow:      0 8px 40px rgba(0,0,0,0.5);
  --font:        'Inter', sans-serif;
  --max:         1200px;
  --pad:         clamp(20px, 4vw, 72px);
  --muted:       rgba(255,255,255,0.55);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Light Theme ── */
[data-theme="light"] {
  --bg:         #f0f4fa;
  --bg2:        #e2e8f4;
  --bg-card:    rgba(0,0,0,0.03);
  --border:     rgba(0,0,0,0.09);
  --text:       #1a2540;
  --text-muted: rgba(26,37,64,0.55);
  --muted:      rgba(26,37,64,0.55);
  --shadow:     0 8px 40px rgba(0,0,0,0.1);
}
[data-theme="light"] .nav.scrolled {
  background: rgba(240,244,250,0.94);
  border-bottom-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .nav-pill {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .nav-pill a { color: rgba(26,37,64,0.6); }
[data-theme="light"] .nav-pill a:hover,
[data-theme="light"] .nav-pill a.active { background: rgba(0,0,0,0.07); color: var(--accent); }
[data-theme="light"] .nav-social a { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.1); color: rgba(26,37,64,0.6); }
[data-theme="light"] .nav-hamburger span { background: var(--text); }
[data-theme="light"] .nav-mobile { background: var(--bg); }
[data-theme="light"] .nav-mobile a { color: rgba(26,37,64,0.7); }

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background 0.3s;
}
.nav.scrolled {
  background: rgba(11,23,40,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-brand span { color: var(--accent); }

/* pill */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 8px 10px;
}
.nav-pill a {
  padding: 6px 11px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-pill a:hover,
.nav-pill a.active {
  background: rgba(255,255,255,0.1);
  color: var(--text);
}
.nav-pill a.active { color: var(--accent); }

/* social icons */
.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.nav-social a:hover {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: rgba(201,168,76,0.3);
}

/* theme toggle */
.nav-theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); cursor: pointer; flex-shrink: 0;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.nav-theme-toggle:hover { color: var(--accent); background: var(--accent-soft); border-color: rgba(201,168,76,0.3); }
[data-theme="light"] .nav-theme-toggle { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.1); color: rgba(26,37,64,0.65); }
[data-theme="dark"]  .nav-theme-toggle::before { content: '☀'; font-size: 15px; line-height: 1; }
[data-theme="light"] .nav-theme-toggle::before { content: '☾'; font-size: 15px; line-height: 1; }

/* CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 100px;
  background: var(--accent);
  color: #0b1728;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--accent-h); transform: translateY(-1px); }
.nav-cta .arrow {
  width: 22px; height: 22px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-muted);
}
.nav-mobile a:hover { color: var(--accent); }

/* ══════════════════════════════
   HERO (Home page only)
══════════════════════════════ */
.hero-page {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* radial glow behind circular photo */
.hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 80%;
  background: radial-gradient(ellipse 55% 55% at 50% 44%, rgba(201,168,76,0.13) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* animated rings around circular photo */
.hero-rings {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  left: 0; top: 0;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(201,168,76,0.22);
  animation: ring-pulse 5s ease-in-out infinite;
}
.hero-ring:nth-child(1) { width: 370px; height: 370px; animation-delay: 0s; }
.hero-ring:nth-child(2) { width: 500px; height: 500px; animation-delay: 1.5s; border-color: rgba(201,168,76,0.13); }
.hero-ring:nth-child(3) { width: 650px; height: 650px; animation-delay: 3s; border-color: rgba(201,168,76,0.06); }
@keyframes ring-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.03); }
}

/* circular portrait photo */
.hero-photo-wrap {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 3;
  background: var(--bg2);
  border: 2px solid rgba(201,168,76,0.55);
  box-shadow:
    0 0 0 10px rgba(201,168,76,0.06),
    0 0 0 20px rgba(201,168,76,0.03),
    0 0 80px rgba(201,168,76,0.22),
    0 20px 60px rgba(0,0,0,0.6);
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 6%;
  filter: contrast(1.05) saturate(1.06);
}

/* main headline — bottom left */
.hero-headline-wrap {
  position: absolute;
  bottom: 120px;
  left: 48px;
  max-width: 420px;
  z-index: 3;
}
.hero-headline {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-headline .accent { color: var(--accent); }

/* stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 72px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 48px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  font-size: 1.1rem;
  opacity: 0.7;
}
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

/* ══════════════════════════════
   INNER PAGES (shared)
══════════════════════════════ */
.page-header {
  padding: 108px 48px 36px;
  max-width: var(--max);
  margin: 0 auto;
}
.page-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 14px;
}
.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.3px;
  max-width: 640px;
}
.page-title .accent { color: var(--accent); }
.page-sub {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}

.page-content {
  padding: 0 48px 100px;
  max-width: var(--max);
  margin: 0 auto;
}

/* divider */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 48px;
  max-width: var(--max);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════
   ABOUT PAGE
══════════════════════════════ */

/* ── New about hero layout ── */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: center;
  padding-top: 16px;
  margin-bottom: 64px;
}
.about-hero-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(201,168,76,0.35);
  box-shadow: 0 0 40px rgba(201,168,76,0.12), 0 20px 60px rgba(0,0,0,0.5);
  flex-shrink: 0;
}
.about-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-name {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.about-role {
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.about-bio {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.about-stats-inline {
  display: flex;
  margin-bottom: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-stat {
  flex: 1;
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat-lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent);
  color: #0b1728;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 8px;
  transition: background 0.2s, transform 0.2s;
}
.about-cta:hover { background: var(--accent-h); transform: translateY(-2px); }

/* Legacy — kept for safety */
.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 52px; align-items: start; }
.about-photo { border-radius: 20px; overflow: hidden; aspect-ratio: 3/4; max-height: 480px; position: relative; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about-photo-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--accent);
  color: #0b1728;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.85rem;
}
.about-photo-badge span { display: block; font-size: 1.3rem; font-weight: 800; }
.about-text h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; line-height: 1.3; }
.about-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; font-size: 0.9rem; }

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.pillar:hover { border-color: var(--accent); color: var(--text); }
.pillar-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.brands {
  margin-top: 18px;
}
.brands h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.brand-tag {
  padding: 6px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

/* stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 60px;
}
.stats-row .stat-card {
  background: var(--bg2);
  padding: 32px 24px;
  text-align: center;
}
.stats-row .stat-card .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stats-row .stat-card .lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ══════════════════════════════
   PORTFOLIO PAGE
══════════════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.p-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.p-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.p-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.45);
}
.p-card:hover::before { opacity: 1; }

.p-card-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.p-card-thumb .thumb-icon {
  width: 48px; height: 48px;
  color: rgba(255,255,255,0.6);
  stroke-width: 1.3;
}
.p-card-thumb .thumb-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.35);
  padding: 4px 12px;
  border-radius: 100px;
  text-align: center;
  max-width: 90%;
  line-height: 1.4;
  backdrop-filter: blur(4px);
}
.thumb-indigo  { background: linear-gradient(145deg,#4f46e5,#7c3aed); }
.thumb-teal    { background: linear-gradient(145deg,#0d9488,#0891b2); }
.thumb-rose    { background: linear-gradient(145deg,#e11d48,#ea580c); }
.thumb-sky     { background: linear-gradient(145deg,#2563eb,#0ea5e9); }
.thumb-emerald { background: linear-gradient(145deg,#059669,#10b981); }
.thumb-amber   { background: linear-gradient(145deg,#d97706,#c9a84c); }

.p-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.p-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}
.p-card-impact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.p-card-impact li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}
.badge-p { background:rgba(239,68,68,.2);  color:#f87171; }
.badge-a { background:rgba(201,168,76,.15); color:var(--accent); }
.badge-i { background:rgba(16,185,129,.2);  color:#6ee7b7; }

/* ── Certifications ── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cert-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}
.cert-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.cert-badge-icon {
  width: 44px; height: 44px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cert-name {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
  color: var(--text);
}
.cert-issuer {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 3px;
}
.cert-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── Awards ── */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.award-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.award-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.award-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.award-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.award-name {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}
.award-org {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
}
.award-year {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.award-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: gap 0.2s;
}
.award-link:hover { gap: 8px; }

/* ══════════════════════════════
   SERVICES PAGE
══════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, background 0.2s;
}
.svc-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}
.svc-icon {
  width: 48px; height: 48px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}
.svc-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.svc-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(201,168,76,0.15);
}

/* ══════════════════════════════
   TESTIMONIALS PAGE
══════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}
.testi-card:hover { border-color: rgba(201,168,76,0.3); }
.testi-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; }
.testi-quote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testi-quote::before { content: '"'; color: var(--accent); font-size: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.88rem; }
.testi-role { font-size: 0.75rem; color: var(--text-muted); }
.testi-company {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 2px 8px;
  border-radius: 100px;
  align-self: flex-start;
}

/* ══════════════════════════════
   INSIGHTS PAGE
══════════════════════════════ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ins-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.ins-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.ins-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.ins-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* photo gallery strip for multi-image cards */
.ins-thumb-gallery {
  display: flex;
  width: 100%;
  height: 100%;
}
.ins-thumb-gallery img {
  flex: 1;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-right: 2px solid var(--bg);
}
.ins-thumb-gallery img:last-child { border-right: none; }

.ins-thumb-pmo    { background: linear-gradient(135deg,#4f46e5,#7c3aed); }
.ins-thumb-hosp   { background: linear-gradient(135deg,#0d9488,#059669); }
.ins-thumb-cyber  { background: linear-gradient(135deg,#e11d48,#ea580c); }
.ins-thumb-icon {
  width: 48px; height: 48px;
  color: rgba(255,255,255,0.4);
  stroke-width: 1.3;
}
.ins-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.ins-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 10px;
  border-radius: 100px;
  align-self: flex-start;
}
.ins-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}
.ins-hook {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.ins-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.ins-link:hover { gap: 8px; }

/* insights section heading */
.section-heading {
  margin-bottom: 28px;
  margin-top: 60px;
}
.section-heading:first-child { margin-top: 0; }
.section-heading h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.section-heading p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── Insights tab switcher ── */
.insights-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  padding: 5px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  width: fit-content;
}
.ins-tab {
  padding: 11px 32px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font);
  white-space: nowrap;
}
.ins-tab.active {
  background: var(--accent);
  color: #0b1728;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.ins-tab:hover:not(.active) {
  color: var(--text);
  background: rgba(255,255,255,0.07);
}
.ins-panel { display: none; }
.ins-panel.active { display: block; }

/* ── Image slideshow ── */
.ins-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
.ins-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: block;
}
.ins-slideshow .slide.active {
  opacity: 1;
  z-index: 1;
}
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.55);
  color: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.slide-btn:hover { background: rgba(201,168,76,0.75); color: #0b1728; }
.slide-prev { left: 8px; }
.slide-next { right: 8px; }
.slide-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
}
.slide-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.slide-dot.active {
  background: var(--accent);
  transform: scale(1.35);
}

/* ══════════════════════════════
   PORTFOLIO SHOWCASE
══════════════════════════════ */
.portfolio-showcase { display: flex; flex-direction: column; }
.showcase-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 40px;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.showcase-item:first-child { padding-top: 0; }
.showcase-item:last-child { border-bottom: none; }
.showcase-accent-bar {
  position: absolute;
  left: -48px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.showcase-item:hover .showcase-accent-bar { opacity: 1; }
.showcase-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(201,168,76,0.16);
  line-height: 1;
  letter-spacing: -2px;
  padding-top: 6px;
  user-select: none;
  text-align: right;
}
.showcase-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.showcase-brand {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
}
.showcase-type-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.showcase-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 22px;
  color: var(--text);
}
.showcase-metrics {
  display: flex;
  gap: 40px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.showcase-metric { display: flex; flex-direction: column; gap: 3px; }
.metric-val {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.metric-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.showcase-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 660px;
}
.showcase-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.showcase-pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 100px;
  background: var(--accent-soft);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--accent);
}

/* ══════════════════════════════
   AWARDS FEATURE LIST
══════════════════════════════ */
.awards-feature-list { display: flex; flex-direction: column; gap: 24px; }
.award-feature {
  display: grid;
  grid-template-columns: 400px 1fr;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.award-feature:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  transform: translateY(-3px);
}
.award-feature-img { overflow: hidden; min-height: 280px; }
.award-feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.award-feature:hover .award-feature-img img { transform: scale(1.04); }
.award-feature-body {
  padding: 48px;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.award-feature-num {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  letter-spacing: -4px;
  margin-bottom: -8px;
}
.award-feature-name {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}
.award-feature-org { font-size: 0.88rem; font-weight: 600; color: var(--accent); }
.award-feature-year { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; }
.award-feature-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.award-feature-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  transition: gap 0.2s;
}
.award-feature-link:hover { gap: 12px; }

/* ══════════════════════════════
   SERVICES CATEGORIES
══════════════════════════════ */
.svc-section { margin-bottom: 72px; }
.svc-section:last-child { margin-bottom: 0; }
.svc-section-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.svc-section-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(201,168,76,0.16);
  line-height: 1;
  letter-spacing: -2px;
  flex-shrink: 0;
}
.svc-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 4px;
}
.svc-section-title { font-size: 1.2rem; font-weight: 700; line-height: 1.2; }
.svc-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ══════════════════════════════
   TESTIMONIALS CAROUSEL
══════════════════════════════ */
.testi-stage {
  position: relative;
  height: calc(100vh - 180px);
  min-height: 500px;
  display: flex;
  flex-direction: column;
}
.testi-track-outer {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.testi-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testi-slide {
  min-width: 100%;
  height: 100%;
  padding: 40px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  box-sizing: border-box;
}
.testi-slide-company {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 16px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.2);
}
.testi-slide-stars { color: var(--accent); font-size: 1rem; letter-spacing: 3px; }
.testi-slide-mark {
  font-size: 7rem;
  line-height: 0.5;
  color: rgba(201,168,76,0.13);
  font-family: Georgia, serif;
}
.testi-slide-quote {
  font-size: 1.07rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  max-width: 740px;
  font-style: italic;
}
.testi-slide-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid rgba(201,168,76,0.35);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  margin: 0 auto 6px;
}
.testi-slide-name { font-weight: 700; font-size: 0.95rem; }
.testi-slide-role { font-size: 0.78rem; color: var(--text-muted); }
.testi-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: all 0.2s;
}
.testi-nav-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.testi-prev { left: 12px; }
.testi-next { right: 12px; }
.testi-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 0 0;
  flex-shrink: 0;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.35s;
  padding: 0;
}
.testi-dot.active { background: var(--accent); width: 28px; }

/* ══════════════════════════════
   HERO: ORBIT TEXT & ANIMATIONS
══════════════════════════════ */
.hero-text-orbit {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 430px;
  height: 430px;
  z-index: 2;
  pointer-events: none;
  animation: orbit-rotate 24s linear infinite;
}
.orbit-text {
  font-size: 9.5px;
  font-family: var(--font);
  font-weight: 700;
  fill: rgba(201,168,76,0.38);
  text-transform: uppercase;
  letter-spacing: 3.5px;
}
@keyframes orbit-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes photo-appear {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.hero-photo-wrap { animation: photo-appear 1s cubic-bezier(0.34,1.56,0.64,1) 0.1s both; }
@keyframes line-slide-in {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: none; }
}
.hero-hl1 { display: block; animation: line-slide-in 0.7s ease 0.4s both; }
.hero-hl2 { display: block; animation: line-slide-in 0.7s ease 0.65s both; }
.hero-hl3 { display: block; animation: line-slide-in 0.7s ease 0.9s both; }
@keyframes stats-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.hero-stats { animation: stats-up 0.7s ease 1.1s both; }

/* ══════════════════════════════
   CONTACT PAGE
══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.contact-link:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}
.contact-link-icon {
  width: 42px; height: 42px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-link-text strong { display: block; font-size: 0.88rem; font-weight: 700; }
.contact-link-text span { font-size: 0.8rem; color: var(--text-muted); }

/* ── Footer ── */
.footer {
  padding: 28px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-brand { font-weight: 700; font-size: 0.9rem; }
.footer-brand span { color: var(--accent); }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.78rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1150px) {
  .nav-social { display: none; }
}

@media (max-width: 1023px) {
  .nav { padding: 14px 20px; }
  .nav-pill { display: none; }
  .nav-social { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-brand { display: flex !important; }

  .hero-headline-wrap { bottom: 120px; left: 24px; max-width: 300px; }
  .hero-headline { font-size: 1.9rem; }
  .hero-photo-wrap { width: 220px; height: 220px; }
  .hero-ring:nth-child(1) { width: 290px; height: 290px; }
  .hero-ring:nth-child(2) { width: 390px; height: 390px; }
  .hero-ring:nth-child(3) { width: 500px; height: 500px; }
  .stat-item { padding: 0 20px; }

  .page-header { padding: 120px 24px 48px; }
  .page-content { padding: 0 24px 80px; }
  .divider { margin: 0 24px; }

  .about-hero { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-photo { max-width: 280px; margin: 0 auto; aspect-ratio: 3/4; }
  .about-name { font-size: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); min-width: 0; }
  .portfolio-grid .p-card { min-width: 0; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { grid-template-columns: 1fr 1fr; }

  .insights-tabs { width: 100%; border-radius: 14px; flex-direction: column; }
  .ins-tab { border-radius: 10px; text-align: center; }

  .footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
  .footer-links { justify-content: center; }
}

@media (max-width: 767px) {
  .hero-photo-wrap { width: 190px; height: 190px; top: 42%; }
  .hero-ring:nth-child(1) { width: 250px; height: 250px; }
  .hero-ring:nth-child(2) { width: 340px; height: 340px; }
  .hero-ring:nth-child(3) { display: none; }
  .hero-headline { font-size: 1.7rem; }
  .hero-headline-wrap { bottom: 110px; }
  .stat-item { padding: 0 14px; }
  .stat-num { font-size: 1.3rem; }
  .stat-label { font-size: 0.68rem; }

  .services-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .about-stats-inline { flex-wrap: wrap; }
  .about-stat { flex: 1 1 45%; }
}

/* ══════════════════════════════
   CERT LOGO BOXES (OFFICIAL BRAND)
══════════════════════════════ */
.cert-logo-box {
  width: 52px; height: 52px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 0;
}
.cert-logo-box svg { display: block; }
.cl-abbr {
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: white;
  line-height: 1;
}
.cl-sub {
  font-size: 0.42rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1;
  margin-top: 3px;
}
.cl-pmi    { background: linear-gradient(135deg, #1a4e8a, #2563eb); }
.cl-itil   { background: linear-gradient(135deg, #6d28d9, #9333ea); }
.cl-cisco  { background: linear-gradient(135deg, #0369a1, #0ea5e9); }
.cl-oracle { background: linear-gradient(135deg, #b91c1c, #ef4444); }
.cl-forti  { background: linear-gradient(135deg, #991b1b, #dc2626); }
.cl-pmo    { background: linear-gradient(135deg, #0f4c75, #0369a1); }

/* ══════════════════════════════
   AWARDS FEATURE: responsive
══════════════════════════════ */
@media (max-width: 900px) {
  .award-feature { grid-template-columns: 1fr; }
  .award-feature-img { min-height: 220px; max-height: 260px; }
  .award-feature-body { padding: 28px; }
  .award-feature-num { font-size: 3rem; }
  .award-feature-name { font-size: 1.2rem; }
}

/* ══════════════════════════════
   PORTFOLIO SHOWCASE: responsive
══════════════════════════════ */
@media (max-width: 767px) {
  .showcase-item { grid-template-columns: 48px 1fr; gap: 20px; padding: 36px 0; }
  .showcase-num { font-size: 2.5rem; }
  .showcase-title { font-size: 1.3rem; }
  .showcase-metrics { gap: 24px; }
  .metric-val { font-size: 1.2rem; }
}

/* ══════════════════════════════
   SERVICES SECTIONS: responsive
══════════════════════════════ */
@media (max-width: 767px) {
  .svc-section-num { font-size: 2rem; }
  .svc-2col { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   TESTIMONIALS CAROUSEL: sizing
══════════════════════════════ */
.testi-stage {
  height: auto;
  min-height: 480px;
}
@media (max-width: 767px) {
  .testi-slide { padding: 32px 48px; }
  .testi-slide-quote { font-size: 0.88rem; }
  .testi-nav-btn { width: 36px; height: 36px; }
}

/* ══════════════════════════════
   INSIGHTS: new section layout
══════════════════════════════ */
.ins-section { margin-bottom: 80px; }

.ins-section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.ins-section-hd-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ins-section-hd-icon {
  width: 36px; height: 36px;
  background: var(--accent-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.ins-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 2px;
}
.ins-section-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.ins-section-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}

/* featured speech card */
.ins-featured {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: var(--bg2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  min-height: 300px;
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
}
.ins-featured:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.ins-featured-media {
  position: relative;
  overflow: hidden;
}
.ins-featured-media .ins-slideshow {
  position: absolute;
  inset: 0;
}
.ins-featured-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 10;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--accent);
  color: #0b1728;
  padding: 4px 10px;
  border-radius: 100px;
}
.ins-featured-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.ins-featured-title {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
}
.ins-featured-hook {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

/* CTA button (gold filled) */
.ins-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--accent);
  color: #0b1728;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.ins-cta-btn:hover { background: var(--accent-h); transform: translateY(-2px); }
.ins-cta-btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: 10px;
}

/* 3-col grid for remaining speech cards */
.ins-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* card-level CTA (ghost/outline style) */
.ins-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  transition: background 0.2s, border-color 0.2s;
  align-self: flex-start;
  margin-top: auto;
}
.ins-card-cta:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.ins-body { display: flex; flex-direction: column; gap: 10px; }

/* article horizontal card */
.ins-article-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.ins-article-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.ins-article-img {
  overflow: hidden;
}
.ins-article-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s;
}
.ins-article-card:hover .ins-article-img img { transform: scale(1.04); }
.ins-article-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.ins-article-title {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
}
.ins-article-hook {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.ins-article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.ins-article-pub { color: var(--accent); font-weight: 600; }
.ins-article-dot { opacity: 0.4; }

/* bottom CTA block */
.ins-bottom-cta {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  margin-top: 20px;
}
.ins-bottom-cta h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.ins-bottom-cta p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* Insights responsive */
@media (max-width: 1023px) {
  .ins-featured { grid-template-columns: 1fr; min-height: auto; }
  .ins-featured-media { height: 240px; }
  .ins-featured-body { padding: 28px 32px; }
  .ins-featured-title { font-size: 1.1rem; }
  .ins-grid-3 { grid-template-columns: 1fr 1fr; }
  .ins-article-card { grid-template-columns: 1fr; }
  .ins-article-img { height: 220px; }
  .ins-article-body { padding: 28px 32px; }
}
@media (max-width: 767px) {
  .ins-grid-3 { grid-template-columns: 1fr; }
  .ins-featured-body { padding: 24px; }
  .ins-article-body { padding: 24px; }
  .ins-bottom-cta { padding: 40px 24px; }
  .ins-bottom-cta h2 { font-size: 1.4rem; }
  .ins-section-hd { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── CSS alias: --muted maps to --text-muted ── */
:root { --muted: rgba(255,255,255,0.55); }

/* ── Services Viewport Layout ── */
.svc-viewport { display: grid; grid-template-columns: 300px 1fr; height: calc(100vh - 72px); overflow: hidden; margin-top: 72px; }
.svc-nav { background: var(--bg2); border-right: 1px solid var(--border); display: flex; flex-direction: column; padding: 40px 0 32px; overflow-y: auto; }
.svc-nav-header { padding: 0 32px 32px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.svc-nav-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.svc-nav-title { font-size: 1.6rem; font-weight: 800; color: var(--text); }
.svc-nav-list { list-style: none; flex: 1; padding: 12px 0; }
.svc-nav-item { display: flex; align-items: center; gap: 12px; width: 100%; padding: 16px 32px; background: none; border: none; cursor: pointer; text-align: left; transition: background 0.2s, color 0.2s; position: relative; color: var(--muted); font-family: inherit; }
.svc-nav-item::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 0; background: var(--accent); border-radius: 0 3px 3px 0; transition: height 0.25s ease; }
.svc-nav-item.active, .svc-nav-item:hover { background: rgba(201,168,76,0.06); color: var(--text); }
.svc-nav-item.active::before { height: 100%; }
.svc-nav-item.active .svc-nav-num { color: var(--accent); }
.svc-nav-item.active .svc-nav-arrow { opacity: 1; transform: translateX(0); color: var(--accent); }
.svc-nav-num { font-size: 0.72rem; font-weight: 800; color: rgba(255,255,255,0.25); width: 20px; transition: color 0.2s; }
.svc-nav-label { font-size: 0.88rem; font-weight: 600; flex: 1; }
.svc-nav-arrow { opacity: 0; transform: translateX(-4px); transition: opacity 0.2s, transform 0.2s; }
.svc-nav-cta { margin: 24px 32px 0; display: block; text-align: center; background: var(--accent); color: #0b1728; font-size: 0.82rem; font-weight: 700; padding: 12px 20px; border-radius: 8px; transition: opacity 0.2s; }
.svc-nav-cta:hover { opacity: 0.85; }
.svc-panels { overflow-y: auto; position: relative; background: var(--bg); }
.svc-panel { display: none; padding: 52px 56px; animation: svcFadeIn 0.35s ease forwards; min-height: 100%; }
.svc-panel.active { display: block; }
@keyframes svcFadeIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
.svc-panel-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 10px; }
.svc-panel-title { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; color: var(--text); margin-bottom: 14px; }
.svc-panel-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.65; max-width: 560px; margin-bottom: 40px; }
.svc-panel-header { border-bottom: 1px solid var(--border); padding-bottom: 32px; margin-bottom: 36px; }
.svc-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.svc-panel-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: border-color 0.25s, transform 0.25s; }
.svc-panel-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.svc-panel-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 18px; }
.svc-panel-card-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.svc-panel-card-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.svc-panel-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-panel-tags span { font-size: 0.72rem; font-weight: 600; color: rgba(201,168,76,0.8); background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.15); border-radius: 4px; padding: 3px 9px; }
@media (max-width: 900px) {
  .svc-viewport { grid-template-columns: 1fr; height: auto; overflow: visible; margin-top: 0; }
  .svc-nav { border-right: none; border-bottom: 1px solid var(--border); flex-direction: row; overflow-x: auto; padding: 0; }
  .svc-nav-header { display: none; }
  .svc-nav-list { display: flex; padding: 0; }
  .svc-nav-item { padding: 16px 20px; white-space: nowrap; }
  .svc-nav-item::before { top: auto; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; border-radius: 3px 3px 0 0; transition: width 0.25s ease; }
  .svc-nav-item.active::before { width: 80%; height: 3px; }
  .svc-nav-arrow { display: none; }
  .svc-nav-cta { display: none; }
  .svc-panel { padding: 32px var(--pad); }
  .svc-panel-grid { grid-template-columns: 1fr; }
}

/* ── Testimonials Luxury Grid ── */
.testi-luxury-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-luxury-card { background: var(--bg2); border: 1px solid rgba(201,168,76,0.12); border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; opacity: 0; transform: translateX(-40px); transition: opacity 0.65s ease, transform 0.65s ease, border-color 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden; }
.testi-luxury-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); opacity: 0; transition: opacity 0.3s ease; }
.testi-luxury-card:hover::before { opacity: 1; }
.testi-luxury-card.tl-visible { opacity: 1; transform: translateX(0); }
.testi-luxury-card:hover { border-color: rgba(201,168,76,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.1); }
.testi-luxury-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.testi-luxury-company { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); }
.testi-luxury-stars { font-size: 0.75rem; color: var(--accent); letter-spacing: 1px; }
.testi-luxury-quote-mark { font-size: 4rem; line-height: 0.7; font-family: Georgia, serif; color: rgba(201,168,76,0.25); margin-bottom: 16px; display: block; }
.testi-luxury-quote { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.75; flex: 1; margin-bottom: 28px; font-style: italic; }
.testi-luxury-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; }
.testi-luxury-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.08)); border: 1.5px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; color: var(--accent); flex-shrink: 0; }
.testi-luxury-name { font-size: 0.875rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.testi-luxury-role { font-size: 0.78rem; color: var(--muted); margin-top: 3px; }
@media (max-width: 900px) { .testi-luxury-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testi-luxury-grid { grid-template-columns: 1fr; } }

/* ── Insights Innovation Tabs ── */
.ins-tabs-wrapper { margin-bottom: 40px; }
.ins-tabs { display: inline-flex; align-items: center; gap: 4px; background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 6px; position: relative; }
.ins-tab { display: flex; align-items: center; gap: 10px; padding: 12px 22px; background: none; border: none; border-radius: 10px; cursor: pointer; font-size: 0.875rem; font-weight: 600; color: var(--muted); transition: color 0.25s ease; position: relative; z-index: 1; white-space: nowrap; font-family: inherit; }
.ins-tab.active { color: var(--text); }
.ins-tab-icon { display: flex; align-items: center; opacity: 0.6; transition: opacity 0.25s; }
.ins-tab.active .ins-tab-icon { opacity: 1; color: var(--accent); }
.ins-tab-count { background: rgba(201,168,76,0.12); color: var(--accent); font-size: 0.68rem; font-weight: 800; padding: 2px 7px; border-radius: 20px; border: 1px solid rgba(201,168,76,0.2); }
.ins-tab-indicator { position: absolute; top: 6px; left: 6px; height: calc(100% - 12px); background: rgba(255,255,255,0.06); border-radius: 10px; border: 1px solid rgba(255,255,255,0.06); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; z-index: 0; }
.ins-tab-panel { display: none; animation: insTabFade 0.35s ease forwards; }
.ins-tab-panel.active { display: block; }
@keyframes insTabFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
