/* ============================================================
   DHIRAJ SOOD — Premium Executive Website
   styles.css | Production Ready
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Core Palette */
  --navy-deepest:  #060E1C;
  --navy-dark:     #0A1628;
  --navy-mid:      #1B2B4B;
  --navy-light:    #2D4A7A;
  --navy-soft:     #3E5E8E;

  --white:         #FFFFFF;
  --off-white:     #F8F9FA;
  --grey-light:    #F0F2F5;
  --grey-mid:      #D1D5DB;
  --grey-cool:     #9CA3AF;

  --charcoal:      #2C2C2C;
  --charcoal-mid:  #4A4A4A;
  --charcoal-soft: #6B6B6B;

  --gold:          #C9A84C;
  --gold-light:    #D4AF37;
  --gold-pale:     #E8C97A;
  --gold-shine:    #F2D980;
  --gold-muted:    #A8873A;

  /* Typography */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-elegant:  'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --section-py:    100px;
  --section-py-sm: 64px;
  --container:     1240px;
  --gutter:        24px;

  /* Effects */
  --shadow-card:   0 4px 24px rgba(10, 22, 40, 0.10);
  --shadow-lift:   0 12px 48px rgba(10, 22, 40, 0.18);
  --shadow-gold:   0 4px 24px rgba(201, 168, 76, 0.25);
  --radius:        4px;
  --radius-md:     8px;
  --radius-lg:     16px;

  /* Transitions */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --duration:      0.4s;
  --duration-fast: 0.2s;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-py) 0;
}

.section--dark {
  background: var(--navy-dark);
  color: var(--white);
}

.section--navy {
  background: var(--navy-mid);
  color: var(--white);
}

.section--deepest {
  background: var(--navy-deepest);
  color: var(--white);
}

.section--grey {
  background: var(--grey-light);
}

.section--offwhite {
  background: var(--off-white);
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  margin: 0 auto 20px;
  border-radius: 2px;
}

.gold-line--left {
  margin: 0 0 20px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

/* Centered section headers: center the label + remove left line */
.section-header--center .section-label {
  justify-content: center;
}

.section-header--center .section-label::before {
  display: none;
}

.section-header--center .section-label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title--white {
  color: var(--white);
}

.section-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--charcoal-soft);
  max-width: 640px;
  line-height: 1.8;
}

.section-subtitle--white {
  color: rgba(255,255,255,0.75);
}

.section-header {
  margin-bottom: 64px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .gold-line {
  margin: 0 auto 20px;
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  padding: 14px 0;
  background: rgba(6, 14, 28, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}

.nav__logo-tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* gembaIQ logo in nav */
.nav__gembaiq {
  display: flex;
  align-items: center;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.15);
  margin-left: 4px;
}

/* White pill container — keeps logo readable on dark backgrounds */
.nav__gembaiq-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 6px;
  padding: 5px 10px;
  transition: background var(--duration-fast) var(--ease);
}

.nav__gembaiq-pill:hover {
  background: var(--white);
}

.nav__gembaiq-pill img {
  height: 22px;
  width: auto;
  display: block;
}

/* Logo pill in footer */
.footer__logo-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
  padding: 6px 12px;
}

.footer__logo-pill img {
  display: block;
}

/* Logo pill on dark photo caption */
.photo-caption__logo-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.9);
  border-radius: 4px;
  padding: 3px 8px;
}

.photo-caption__logo-pill img {
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8);
  transition: color var(--duration-fast) var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration) var(--ease);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius);
  transition: all var(--duration-fast) var(--ease);
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 16px;
}

.nav__mobile .nav__link {
  padding: 14px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav__mobile .nav__link::after { display: none; }

.nav__mobile .nav__cta {
  margin-top: 16px;
  text-align: center;
  display: block;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deepest);
  overflow: hidden;
}

/* --- Hero split layout (photo left / text right) --- */
.hero__split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

/* Photo column */
.hero__photo-col {
  animation: fadeUp 0.9s var(--ease-out) 0.2s both;
}

.hero__photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.hero__photo-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-lg);
}

/* Gold border accent on photo */
.hero__photo-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(201, 168, 76, 0.45);
  pointer-events: none;
}

/* Text column */
.hero__text-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Identity block — name, title, region */
.hero__identity-block {
  animation: fadeUp 0.9s var(--ease-out) 0.35s both;
}

.hero__gembaiq-badge {
  margin-bottom: 20px;
}

.hero__name-main {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.hero__title-main {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 400;
  color: var(--gold-pale);
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.hero__region-main {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* CTA buttons row */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.9s var(--ease-out) 0.5s both;
}

/* Divider between CTAs and headline */
.hero__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: fadeUp 0.9s var(--ease-out) 0.6s both;
}

/* Headline block */
.hero__headline-block {
  animation: fadeUp 0.9s var(--ease-out) 0.65s both;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-pale);
}

.hero__subheadline {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
}

/* Geometric background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(45, 74, 122, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(27, 43, 75, 0.6) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy-deepest) 0%, var(--navy-dark) 50%, var(--navy-mid) 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: var(--navy-light);
  right: -100px;
  top: -100px;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: var(--gold-muted);
  right: 200px;
  bottom: -50px;
  opacity: 0.08;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: var(--navy-soft);
  left: -80px;
  top: 40%;
  opacity: 0.2;
}

/* Decorative geometric line */
.hero__deco {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  opacity: 0.06;
  pointer-events: none;
}

/* Scroll indicator */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  border: 1px solid transparent;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  color: var(--navy-dark);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}

.btn--navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
  z-index: 1;
}

.hero__scroll-text {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================================
   TRUST BAR
   ============================================================ */

.trust-bar {
  background: var(--navy-mid);
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.trust-bar__item:last-child {
  border-right: none;
}

.trust-bar__icon {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.trust-bar__text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

/* ============================================================
   WHY DHIRAJ SOOD — FULL WIDTH (photo is in hero)
   ============================================================ */

/* Full-width credentials container */
.credibility__full {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 2-column grid for credential points */
.credibility__points--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}

.credibility__points--grid .credibility__point {
  border-bottom: 1px solid var(--grey-mid);
  border-top: none;
}

.credibility__points--grid .credibility__point:first-child,
.credibility__points--grid .credibility__point:nth-child(2) {
  border-top: 1px solid var(--grey-mid);
}

.credibility__hero {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 64px;
}

/* Photo column */
.credibility__photo-col {
  position: sticky;
  top: 100px;
}

.credibility__photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.credibility__photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold), transparent 60%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: 2;
  pointer-events: none;
}

.credibility__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-lg);
}

/* Premium monogram placeholder */
.credibility__photo-monogram {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, var(--navy-deepest) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.credibility__photo-monogram::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.credibility__photo-monogram-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}

.credibility__monogram-initials {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 4px 32px rgba(201,168,76,0.3);
  letter-spacing: -2px;
}

.credibility__monogram-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.credibility__monogram-sub {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.credibility__photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px 28px;
  background: linear-gradient(to top, rgba(6,14,28,0.92) 0%, transparent 100%);
  z-index: 3;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.credibility__photo-caption-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.credibility__photo-caption-role {
  font-size: 12px;
  color: var(--gold-pale);
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* Right column — credentials */
.credibility__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.credibility__intro {
  font-family: var(--font-elegant);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--charcoal-mid);
  margin-bottom: 48px;
  font-style: italic;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}

.credibility__points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.credibility__point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--grey-mid);
  transition: background var(--duration-fast) var(--ease);
}

.credibility__point:first-child {
  border-top: 1px solid var(--grey-mid);
}

.credibility__point-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(201,168,76,0.25);
}

.credibility__point-body {
  flex: 1;
}

.credibility__point-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.credibility__point-desc {
  font-size: 15px;
  color: var(--charcoal-soft);
  line-height: 1.7;
}

/* Education — institution logos */
.education-strip {
  margin-top: 0;
  padding: 48px 0 0;
}

.education-strip__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.education-strip__label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-muted);
  border-radius: 2px;
}

.education-strip__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.education-logo-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-md);
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all var(--duration-fast) var(--ease);
  box-shadow: var(--shadow-card);
}

.education-logo-card:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.education-logo-card img {
  width: auto;
  height: 56px;
  object-fit: contain;
  display: block;
}

.education-logo-card__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-dark);
  text-align: center;
  line-height: 1.3;
}

/* ============================================================
   EXECUTIVE IMPACT
   ============================================================ */

.impact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.impact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.impact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06), transparent);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.impact-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.impact-card:hover::before {
  opacity: 1;
}

.impact-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.impact-card__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 12px;
}

.impact-card__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.impact-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ============================================================
   WHO I HELP
   ============================================================ */

.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-dark), var(--navy-light));
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}

.audience-card:hover {
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.audience-card:hover::before {
  transform: scaleX(1);
}

.audience-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.audience-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.audience-card__desc {
  font-size: 13px;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

/* ============================================================
   WHAT PROBLEMS I SOLVE
   ============================================================ */

.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--navy-dark);
  transition: all var(--duration) var(--ease);
  position: relative;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-top-color: var(--gold);
}

.problem-card__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--grey-mid);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--duration) var(--ease);
}

.problem-card:hover .problem-card__number {
  color: rgba(201, 168, 76, 0.3);
}

.problem-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.problem-card__consequence {
  font-size: 13px;
  color: var(--charcoal-soft);
  line-height: 1.7;
}

.problem-card__consequence strong {
  color: var(--charcoal-mid);
  font-weight: 600;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 44px 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-dark), var(--navy-light));
  transition: background var(--duration) var(--ease);
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-lift);
  transform: translateY(-6px);
}

.service-card:hover::after {
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.service-card__icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 14px;
  color: var(--charcoal-soft);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.service-card__bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--charcoal-mid);
}

.service-card__bullet::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   GEMBAI Q APPROACH
   ============================================================ */

.approach__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 48px;
}

.approach__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.2));
  z-index: 0;
}

.approach-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.approach-step__number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  flex-shrink: 0;
}

.approach-step:hover .approach-step__number {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.45);
}

.approach-step__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.approach-step__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.approach__tagline {
  text-align: center;
  padding: 32px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.04);
}

.approach__tagline p {
  font-family: var(--font-elegant);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--gold-pale);
  font-weight: 300;
}

/* ============================================================
   INDUSTRY EXPERIENCE
   ============================================================ */

.industries__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.industry-tag {
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: all var(--duration-fast) var(--ease);
  cursor: default;
  background: rgba(255,255,255,0.03);
}

.industry-tag:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}

/* ============================================================
   CAREER TIMELINE
   ============================================================ */

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.1));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 48px;
  position: relative;
  cursor: pointer;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}

.timeline-item__dot {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 3px var(--gold-muted);
  transition: all var(--duration-fast) var(--ease);
  z-index: 1;
}

.timeline-item:hover .timeline-item__dot {
  transform: translateX(-50%) scale(1.4);
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.2);
}

.timeline-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-mid);
  max-width: 380px;
  width: 100%;
  transition: all var(--duration) var(--ease);
}

.timeline-item:hover .timeline-card {
  box-shadow: var(--shadow-lift);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

.timeline-card__period {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 8px;
}

.timeline-card__company {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal-soft);
  margin-bottom: 6px;
}

.timeline-card__role {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.timeline-card__impact {
  font-size: 13px;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

.timeline-card__tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  background: var(--grey-light);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy-mid);
  letter-spacing: 0.5px;
}

/* ============================================================
   THOUGHT LEADERSHIP
   ============================================================ */

.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.insight-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--duration) var(--ease);
  border: 1px solid var(--grey-mid);
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.insight-card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.insight-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.insight-card__image-icon {
  font-size: 48px;
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

.insight-card__type {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 20px;
  z-index: 1;
}

.insight-card__body {
  padding: 28px 28px 32px;
}

.insight-card__date {
  font-size: 12px;
  color: var(--charcoal-soft);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.insight-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.4;
  margin-bottom: 12px;
}

.insight-card__excerpt {
  font-size: 14px;
  color: var(--charcoal-soft);
  line-height: 1.7;
}

.insights__cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  transition: all var(--duration) var(--ease);
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.7;
  margin-bottom: 24px;
  display: block;
}

.testimonial-card__text {
  font-family: var(--font-elegant);
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-pale);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 3px;
}

.testimonial-card__role {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
}

.testimonial-card__stars {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact__info-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact__info-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 48px;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  transition: color var(--duration-fast) var(--ease);
}

.contact__channel:hover {
  color: var(--gold-pale);
}

.contact__channel-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--duration-fast) var(--ease);
}

.contact__channel:hover .contact__channel-icon {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
}

.contact__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all var(--duration-fast) var(--ease);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-select {
  cursor: pointer;
  appearance: none;
}

.form-select option {
  background: var(--navy-dark);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--navy-deepest);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__brand-tagline {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: