/* ============================================
   ADVISORY LLP — STYLESHEET
   Palette: Navy #1B2B4B | Gold #C9A84C | Cream #F8F5EF | White #FFFFFF
   Type: Cormorant Garamond (display) | Inter (body) | Montserrat (utility)
   ============================================ */

:root {
  --navy:       #1B2B4B;
  --navy-dark:  #111E35;
  --navy-mid:   #243458;
  --gold:       #C9A84C;
  --gold-light: #E2C97E;
  --gold-pale:  #F5EDD6;
  --cream:      #F8F5EF;
  --white:      #FFFFFF;
  --text:       #2C2C2C;
  --text-muted: #6B7280;
  --border:     rgba(201,168,76,0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-utility: 'Montserrat', sans-serif;

  --radius: 4px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(27,43,75,0.10);
  --shadow-lg: 0 12px 48px rgba(27,43,75,0.18);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* CONTAINER */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* SECTION */
.section { padding: 96px 0; }
.section__eyebrow {
  font-family: var(--font-utility);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 56px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-utility);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  animation: pulse-gold 2.8s ease-in-out infinite;
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(201,168,76,0.4);
  animation: none;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: 10px 24px; font-size: 12px; }
.btn--full { width: 100%; text-align: center; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 16px 8px 0;
  border-radius: 8px;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav__logo:hover .nav__logo-wrapper {
  background: rgba(201,168,76,0.08);
  box-shadow: 0 4px 16px rgba(201,168,76,0.15);
}
.nav__logo-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.25));
}
.nav__logo:hover .nav__logo-icon {
  transform: scale(1.08) rotateZ(-3deg);
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}
.nav__logo-primary {
  display: flex;
  align-items: center;
}
.nav__logo-kairos {
  font-family: var(--font-utility);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.24em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.nav__logo-secondary {
  display: flex;
  align-items: center;
}
.nav__logo-partners {
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  text-transform: uppercase;
  line-height: 1;
}
.nav__logo-tagline {
  font-family: var(--font-utility);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-transform: uppercase;
  line-height: 1.3;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--font-utility);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
}
.nav__cta:hover { background: var(--gold-light) !important; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(36,52,88,0.8) 0%, transparent 50%);
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.hero__content {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero__visual {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.12));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
.hero__arc {
  transform-origin: 210px 210px;
  animation: spin 12s linear infinite;
}
.hero__arc2 {
  transform-origin: 210px 210px;
  animation: spin 18s linear infinite reverse;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero__dot {
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero__dot:nth-child(2) { animation-delay: 0.3s; }
.hero__dot:nth-child(3) { animation-delay: 0.6s; }
.hero__dot:nth-child(4) { animation-delay: 0.9s; }
.hero__dot:nth-child(5) { animation-delay: 1.2s; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; r: 5; }
  50% { opacity: 0.6; r: 7; }
}
.hero__eyebrow {
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.4;
  margin-bottom: 20px;
}
.hero__tagline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__question {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.1vw, 1.35rem);
  font-style: normal;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 620px;
  min-height: 64px;
}
.hero__question strong { font-style: normal; font-weight: 700; color: var(--gold-light); }
.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.1vw, 1.35rem);
  font-style: normal;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 820px;
  min-height: 64px;
}
.hero__sub strong { font-style: normal; font-weight: 700; color: rgba(255,255,255,0.95); }
.hero__question .typed-cursor,
.hero__sub .typed-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--gold);
  margin-left: 2px;
  vertical-align: middle;
  animation: cursorBlink 0.8s steps(1) infinite;
}
@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__stats {
  max-width: 1140px;
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.stat {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-top: 2px solid var(--gold);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.stat:hover { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.5); transform: translateY(-6px); box-shadow: 0 12px 32px rgba(201,168,76,0.2); }
.stat__number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.stat__label {
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}

/* ============================================
   PROBLEM
   ============================================ */
.problem { background: var(--cream); }
.problem .section__eyebrow {
  font-size: 22px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--gold);
}
.problem .section__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  position: relative;
  display: inline-block;
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem__card {
  background: var(--white);
  border: 1px solid rgba(27,43,75,0.08);
  border-top: 3px solid var(--gold);
  padding: 32px 28px;
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
}
.problem__card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.problem__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
}
.problem__icon svg { width: 26px; height: 26px; }
.problem__card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.problem__card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--navy-dark); }
.about .section__eyebrow {
  font-size: 22px;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.about .section__title { color: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about__stat {
  background: rgba(201,168,76,0.05);
  border-top: 2px solid rgba(201,168,76,0.4);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background var(--transition);
}
.about__stat:hover { background: rgba(201,168,76,0.1); }
.about__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.about__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.about__para {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about__transactions { margin-top: 32px; }
.about__tx-label {
  font-family: var(--font-utility);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.about__tx-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about__tx-grid span {
  font-family: var(--font-utility);
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}
.about__tx-grid span:hover {
  transform: translateY(-4px);
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(201,168,76,0.25);
  color: var(--gold-light);
}
.bank-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 3px;
  flex-shrink: 0;
}
.about__tx-more {
  background: rgba(201,168,76,0.15) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services__card {
  border: 1px solid rgba(27,43,75,0.1);
  border-left: 3px solid var(--gold);
  padding: 32px 28px;
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
}
.services__card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.services__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  margin-bottom: 12px;
}
.services__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.services__card ul { display: flex; flex-direction: column; gap: 8px; }
.services__card li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.services__card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================
   WHY US
   ============================================ */
.whyus { background: var(--cream); }

/* Toggle switch comparison */
.toggle-wrap {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.toggle-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 auto 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.25s ease;
}
.toggle-hint:hover { color: var(--gold-light); }
.toggle-hint svg { width: 14px; height: 14px; flex-shrink: 0; }
.toggle-switch {
  display: inline-flex;
  position: relative;
  background: var(--navy-dark);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 30px;
  padding: 6px;
  gap: 4px;
  margin-bottom: 36px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.3), 0 0 0 4px rgba(201,168,76,0.12);
  animation: togglePulse 2.4s ease-in-out 1s 3;
}
@keyframes togglePulse {
  0%, 100% { box-shadow: inset 0 2px 6px rgba(0,0,0,0.3), 0 0 0 4px rgba(201,168,76,0.12); }
  50% { box-shadow: inset 0 2px 6px rgba(0,0,0,0.3), 0 0 0 8px rgba(201,168,76,0); }
}
.toggle-switch__pill {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  width: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 18px rgba(201,168,76,0.45), 0 0 0 1px rgba(255,255,255,0.08) inset;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1), width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
}
.toggle-switch__btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-utility);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: rgba(255,255,255,0.45);
  transition: color 0.35s ease;
}
.toggle-switch__btn.is-active {
  color: var(--navy);
}
.toggle-switch__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 9px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  transition: background 0.35s ease, color 0.35s ease;
}
.toggle-switch__btn.is-active .toggle-switch__icon {
  background: rgba(15,27,56,0.18);
}
.toggle-content {
  position: relative;
  perspective: 1000px;
}
.toggle-content__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.toggle-content__list[hidden] {
  display: none;
}
.toggle-content__list li {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  padding: 20px 30px 20px 60px;
  position: relative;
  color: rgba(255,255,255,0.82);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  animation: barFlipIn 0.55s cubic-bezier(0.34, 1.2, 0.4, 1) both;
  animation-delay: calc(var(--flip-i, 0) * 70ms);
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(15,27,56,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.toggle-content__list li strong {
  font-weight: 700;
  color: var(--gold-light);
}
.toggle-content__list--no li strong {
  color: #F87171;
  font-weight: 600;
}
.toggle-content__list li:hover {
  transform: translateX(6px);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 10px 26px rgba(201,168,76,0.15);
}
@keyframes barFlipIn {
  from { opacity: 0; transform: rotateX(90deg); }
  to { opacity: 1; transform: rotateX(0deg); }
}
.toggle-content__list li:nth-child(1) { --flip-i: 0; }
.toggle-content__list li:nth-child(2) { --flip-i: 1; }
.toggle-content__list li:nth-child(3) { --flip-i: 2; }
.toggle-content__list li:nth-child(4) { --flip-i: 3; }
.toggle-content__list li:nth-child(5) { --flip-i: 4; }
.toggle-content__list li:nth-child(6) { --flip-i: 5; }
.toggle-content__list--no li {
  color: rgba(255,255,255,0.55);
}
.toggle-content__list li::before {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.toggle-content__list--yes li::before {
  content: '✓';
  background: rgba(201,168,76,0.18);
  color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.25);
}
.toggle-content__list--no li::before {
  content: '✗';
  background: rgba(220,38,38,0.12);
  color: #F87171;
}

/* ============================================
   ENGAGEMENT
   ============================================ */
.engagement { background: var(--navy-dark); }
.engagement .section__title { color: var(--white); }
.engagement__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.engagement__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--transition);
}
.engagement__card:hover { transform: translateY(-4px); }
.engagement__card--featured {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  transform: translateY(-8px);
}
.engagement__card--featured:hover { transform: translateY(-12px); }
.engagement__tier {
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.engagement__tagline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.engagement__card ul { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.engagement__card li { font-size: 13.5px; color: rgba(255,255,255,0.65); padding-left: 14px; position: relative; line-height: 1.5; }
.engagement__card li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.engagement__card li:first-child { color: var(--white); font-weight: 700; font-style: italic; }
.engagement__card li:first-child::before { display: none; }
.engagement__card .btn--outline { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }
.engagement__card .btn--outline:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================
   IDEAL
   ============================================ */
.ideal { background: var(--white); }
.ideal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.ideal__profile h3,
.ideal__sectors h3 {
  font-family: var(--font-utility);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.ideal__profile ul { display: flex; flex-direction: column; gap: 10px; }
.ideal__profile li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ideal__profile li:hover {
  transform: translateX(6px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 8px 20px rgba(201,168,76,0.12);
}
.ideal__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
}
.ideal__icon svg { width: 18px; height: 18px; }
.ideal__profile li strong {
  color: var(--navy);
  font-weight: 700;
}
.ideal__sector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ideal__sector {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid rgba(27,43,75,0.08);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-utility);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
  transition: all var(--transition);
}
.ideal__sector-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
}
.ideal__sector-icon svg { width: 15px; height: 15px; }
.ideal__sector:hover { background: var(--gold-pale); border-color: var(--gold); }

/* ============================================
   PROCESS
   ============================================ */
.process { background: var(--cream); }
.process__commitment {
  max-width: 720px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 64px;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}
.process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}
.process__step {
  background: var(--white);
  border: 1px solid rgba(27,43,75,0.08);
  border-top: 3px solid var(--gold);
  padding: 28px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.process__step-num {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.process__step-time {
  font-family: var(--font-utility);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.process__step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.process__line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.3));
  align-self: center;
  margin-top: -24px;
}

/* ============================================
   TEAM
   ============================================ */
.team { background: var(--white); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
  align-items: stretch;
}
.team__grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
}
.team__card {
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
}
.team__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top center, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.team__card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(201,168,76,0.18); }
.team__avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 14px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  flex-shrink: 0;
}
.team__card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.team__role {
  font-size: 12px;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.team__years {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.team__card--flip {
  padding: 0;
  background: none;
  border: none;
  perspective: 1200px;
  overflow: visible;
  height: 100%;
  min-height: 320px;
}
.team__card--flip::before { display: none; }
.team__card--flip:hover { transform: none; box-shadow: none; }
.team__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}
.team__card--flip.is-flipped .team__card-inner {
  transform: rotateY(180deg);
}
@media (hover: hover) and (pointer: fine) {
  .team__card--flip:hover .team__card-inner {
    transform: rotateY(180deg);
  }
}
.team__card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  overflow: hidden;
}
.team__card-back {
  transform: rotateY(180deg);
  justify-content: center;
}
.team__bio-mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  display: block;
  margin-bottom: -6px;
}
.team__bio {
  font-family: var(--font-utility);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
  text-align: left;
  margin: 0;
}
.team__bio strong {
  font-weight: 700;
  color: var(--gold-light);
}
.team__bio--sub {
  font-size: 12px;
}
.team__bio-divider {
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 8px 0;
  border-radius: 2px;
}
.team__phone {
  font-family: var(--font-utility);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: color var(--transition);
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 20px;
  border-radius: 20px;
  margin-top: auto;
}
.team__card > a.team__phone { margin-top: auto; }
.team__phone:hover { color: var(--gold-light); border-color: var(--gold-light); background: rgba(201,168,76,0.08); }
.team__flip-hint {
  font-family: var(--font-utility);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,0.5); }

/* SECTION DIVIDERS */
.section-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}
.section-divider svg { display: block; width: 100%; }
.section-divider--flip { transform: scaleX(-1); }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--navy-dark); }
.contact .section__title { color: var(--white); }
.contact__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 56px;
  margin-top: -32px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__group { display: flex; flex-direction: column; gap: 8px; }
.form__group--full { grid-column: 1 / -1; }
.form__group label {
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form__group select option { background: var(--navy-dark); color: var(--white); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--gold); }
.form__group textarea { resize: vertical; }
.form__group--full .btn { margin-top: 4px; }
.contact__info { display: flex; flex-direction: column; gap: 36px; }
.contact__info-block h3 {
  font-family: var(--font-utility);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact__info-block p { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.6); line-height: 1.7; }
.contact__address { margin-bottom: 10px; }
.contact__map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.35);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.contact__map-link:hover { color: var(--gold-light); border-color: var(--gold-light); }
.contact__partner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact__partner:last-child { border-bottom: none; }
.contact__partner-name { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; }
.contact__partner a { font-size: 14px; color: var(--gold); font-family: var(--font-utility); font-weight: 600; transition: color var(--transition); }
.contact__partner a:hover { color: var(--gold-light); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0A1220;
  padding: 48px 0 24px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 4px; }
.footer__wordmark {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.footer__icon { width: 52px; height: 52px; flex-shrink: 0; filter: drop-shadow(0 2px 6px rgba(201,168,76,0.2)); }
.footer__wm-text { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.footer__wm-name { display: flex; align-items: baseline; gap: 0; }
.footer__wm-k {
  font-family: var(--font-utility);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}
.footer__wm-p {
  font-family: var(--font-utility);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-left: 6px;
}
.footer__wm-llp {
  font-family: var(--font-utility);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-left: 8px;
}
.footer__wm-sub {
  font-family: var(--font-body);
  font-size: 8px;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
}
.footer__brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.footer__links a {
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer__social { display: flex; align-items: center; gap: 20px; }
.footer__social a { color: var(--gold); transition: color var(--transition), transform var(--transition); }
.footer__social a:hover { color: var(--gold-light); transform: scale(1.15); }
.footer__social a svg { width: 28px; height: 28px; }
.footer__social-disabled { opacity: 0.45; pointer-events: none; cursor: default; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .problem__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .process__steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .process__line { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__logo-icon { width: 36px !important; height: 36px !important; }
  .nav__logo-wrapper { gap: 10px; padding: 4px 8px 4px 0; }
  .nav__logo-kairos { font-size: 18px; letter-spacing: 0.18em; }
  .nav__logo-partners { font-size: 9px; }
  .nav__logo-tagline { font-size: 7px; letter-spacing: 0.1em; }
  .nav__links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-dark); padding: 24px; gap: 20px; }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }
  .hero { padding: 120px 24px 60px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .problem__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .toggle-switch__btn { padding: 10px 16px; font-size: 10px; }
  .toggle-content__list li { font-size: 13px; padding: 14px 18px 14px 48px; }
  .engagement__grid { grid-template-columns: 1fr; }
  .engagement__card--featured { transform: none; }
  .ideal__grid { grid-template-columns: 1fr; gap: 40px; }
  .process__steps { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; max-width: 320px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 32px; }
  .footer__links { flex-wrap: wrap; gap: 20px; }
  .ideal__sector-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ideal__sector { padding: 12px 14px; font-size: 12px; }
  .ideal__profile li { padding: 12px 14px; gap: 12px; }
  .ideal__icon { width: 32px; height: 32px; font-size: 14px; }
  .toggle-wrap { max-width: 100%; }
  .toggle-switch { width: 100%; justify-content: center; }
  .toggle-switch__btn { padding: 10px 12px; font-size: 9px; gap: 6px; }
  .toggle-content__list li { font-size: 14px; padding: 14px 16px 14px 44px; }
  .stat { padding: 18px 14px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .scroll-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .hero__question,
  .hero__sub {
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.45;
    text-align: left;
  }
  .hero__question { min-height: 88px; margin-bottom: 10px; }
  .hero__sub { min-height: 120px; margin-bottom: 20px; }
  .hero__question strong,
  .hero__sub strong { font-style: normal; font-weight: 700; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .hero__actions .btn { width: auto; }
  .ideal__sector-grid { grid-template-columns: 1fr; }
  .toggle-switch__btn span.toggle-switch__icon { display: none; }
  .hero__headline { font-size: 2rem; }
  .hero__stats .stat:last-child {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
}

/* SCROLL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scale-in for stat numbers and service cards — slightly more premium feel */
.scale-in {
  opacity: 0;
  transform: translateY(18px) scale(0.92);
  transition: opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.scale-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up, .scale-in { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}