/* ==========================================================================
   TRUE PATHWAY FINANCIALS — MASTER STYLESHEET
   Brand: Navy #031762 | Blue #0B55CC | Gold #FFC700
   ========================================================================== */

:root {
  --navy: #031762;
  --navy-dark: #020f42;
  --blue: #0B55CC;
  --blue-light: #3a78e0;
  --gold: #FFC700;
  --gold-dark: #e6b300;
  --light-blue: #76A0E2;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gray-50: #f5f6fa;
  --gray-100: #eef0f5;
  --gray-200: #dde1ec;
  --gray-400: #8b93a7;
  --gray-600: #545a6b;
  --gray-800: #2c2c2c;
  --gray-900: #151822;
  --shadow-sm: 0 2px 8px rgba(3, 23, 98, 0.06);
  --shadow-md: 0 8px 24px rgba(3, 23, 98, 0.1);
  --shadow-lg: 0 20px 50px rgba(3, 23, 98, 0.15);
  --shadow-xl: 0 30px 80px rgba(3, 23, 98, 0.2);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --font-body: 'Arial', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Arial', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --container: 1200px;
}

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--navy);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── Container ───────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  padding-left: 48px;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 720px;
  margin-bottom: 48px;
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(3, 23, 98, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}

.btn-primary > * { position: relative; z-index: 1; }

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3, 23, 98, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(255, 199, 0, 0.4);
}

.btn-gold:hover {
  color: var(--navy);
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 199, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

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

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

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

.btn-arrow {
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}

.btn-arrow:hover {
  gap: 14px;
  color: var(--blue);
}

.btn-arrow::after {
  content: "→";
  transition: transform var(--transition);
}

/* ─── Navigation ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-brand img {
  height: 52px;
  width: auto;
  transition: transform var(--transition);
}

.nav-brand:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (max-width: 960px) {
  .nav-links, .nav-cta .btn {
    display: none;
  }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--gray-100);
  }
  .nav.open .nav-cta .btn {
    display: inline-flex;
  }
}

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 180px 0 140px;
  background: linear-gradient(135deg, #fcfdff 0%, #f0f4ff 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(11, 85, 204, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 199, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(11, 85, 204, 0.08);
  border: 1px solid rgba(11, 85, 204, 0.15);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--transition);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
}

.hero-badge-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  background: rgba(255, 199, 0, 0.4);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--navy);
  animation: fadeInUp 0.8s 0.1s var(--transition) backwards;
}

.hero h1 .highlight {
  position: relative;
  display: inline-block;
  color: var(--blue);
}

.hero h1 .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.25em;
  background: var(--gold);
  z-index: -1;
  opacity: 0.7;
}

.hero p {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
  animation: fadeInUp 0.8s 0.2s var(--transition) backwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s var(--transition) backwards;
}

.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s 0.4s var(--transition) backwards;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--gold));
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.hero-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  background: #e6f7ed;
  color: #1a7a3a;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.hero-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-metric-value {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.hero-metric-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}

.hero-chart {
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--blue), var(--navy));
  border-radius: 4px 4px 0 0;
  opacity: 0.9;
  animation: growBar 1s ease-out backwards;
}

.hero-chart-bar:nth-child(1) { height: 40%; animation-delay: 0.5s; }
.hero-chart-bar:nth-child(2) { height: 55%; animation-delay: 0.6s; }
.hero-chart-bar:nth-child(3) { height: 45%; animation-delay: 0.7s; }
.hero-chart-bar:nth-child(4) { height: 70%; animation-delay: 0.8s; }
.hero-chart-bar:nth-child(5) { height: 65%; animation-delay: 0.9s; }
.hero-chart-bar:nth-child(6) { height: 85%; animation-delay: 1.0s; }
.hero-chart-bar:nth-child(7) { height: 75%; animation-delay: 1.1s; background: linear-gradient(180deg, var(--gold), var(--gold-dark)); }
.hero-chart-bar:nth-child(8) { height: 100%; animation-delay: 1.2s; background: linear-gradient(180deg, var(--gold), var(--gold-dark)); }

@keyframes growBar {
  from { height: 0; }
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.hero-card-footer strong { color: var(--navy); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .hero { padding: 140px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
}

/* ─── Trust Bar ──────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 40px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.trust-item-value {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-item-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ─── Section Base ────────────────────────────────────────────────────────── */
.section {
  padding: 120px 0;
  position: relative;
}

.section-sm { padding: 80px 0; }

.section-bg {
  background: var(--gray-50);
}

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

.section-navy h1,
.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-navy .section-subtitle,
.section-navy p {
  color: rgba(255, 255, 255, 0.8);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 80px;
}

.section-header .eyebrow {
  padding-left: 0;
}

.section-header .eyebrow::before {
  display: none;
}

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

/* ─── Services ───────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card.featured::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(11, 85, 204, 0.25);
}

.service-card.featured .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(255, 199, 0, 0.3);
}

.service-icon svg { width: 30px; height: 30px; }

.service-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-card.featured .service-tag {
  color: var(--gold-dark);
}

.service-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

.service-desc {
  color: var(--gray-600);
  margin-bottom: 24px;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.service-price {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}

.service-price strong {
  font-size: 1.75rem;
  color: var(--navy);
  font-weight: 900;
  display: block;
  margin-top: 4px;
}

.service-features {
  list-style: none;
  margin-bottom: 32px;
}

.service-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: rgba(11, 85, 204, 0.1);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.service-card.featured .service-features li::before {
  background: rgba(255, 199, 0, 0.2);
  color: var(--gold-dark);
}

@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ─── Founding Client Program ────────────────────────────────────────────── */
.founding-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.founding-section::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -300px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 199, 0, 0.1) 0%, transparent 60%);
  border-radius: 50%;
}

.founding-section::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(11, 85, 204, 0.3) 0%, transparent 60%);
  border-radius: 50%;
}

.founding-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 28px;
  box-shadow: 0 8px 20px rgba(255, 199, 0, 0.3);
}

.founding-inner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  line-height: 1.15;
}

.founding-inner h2 .highlight {
  color: var(--gold);
}

.founding-inner p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.65;
}

.founding-features {
  list-style: none;
  margin-bottom: 40px;
}

.founding-features li {
  padding: 12px 0 12px 36px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.founding-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23031762'><path fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.spots-counter {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 199, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.spots-counter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent, var(--gold));
}

.spots-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.spots-number {
  font-size: 6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, #fff4b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.spots-total {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}

.spots-discount {
  display: inline-block;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: 999px;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.spots-detail {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .founding-inner { grid-template-columns: 1fr; gap: 50px; }
}

/* ─── Team ────────────────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(3, 23, 98, 0.7), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover .team-photo::after {
  opacity: 1;
}

.team-info {
  padding: 32px 28px;
  text-align: center;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-title {
  font-size: 0.875rem;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.team-credentials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.team-credential {
  padding: 4px 12px;
  background: var(--gray-50);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid var(--gray-100);
}

.team-bio {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.team-badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 0.6875rem;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

@media (max-width: 720px) {
  .team-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ─── Process ────────────────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gray-200) 0, var(--gray-200) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--navy);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step:hover .process-number {
  background: var(--navy);
  color: var(--gold);
  transform: scale(1.08);
}

.process-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid::before { display: none; }
}

/* ─── About / Founder ────────────────────────────────────────────────────── */
.founder-section {
  padding: 120px 0;
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.founder-photo-wrap {
  position: relative;
}

.founder-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -20px -20px 20px 20px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.founder-photo-wrap::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100%;
  height: 100%;
  background: var(--navy);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.08;
}

.founder-photo {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.founder-credential {
  padding: 8px 16px;
  background: var(--white);
  border: 2px solid var(--gray-100);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.founder-content p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.75;
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-100);
}

.founder-stat-value {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.founder-stat-label {
  font-size: 0.8125rem;
  color: var(--gray-600);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 960px) {
  .founder-inner { grid-template-columns: 1fr; gap: 60px; }
  .founder-photo-wrap { max-width: 420px; margin: 0 auto; }
}

/* ─── CTA Section ────────────────────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 199, 0, 0.08) 0%, transparent 40%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

/* ─── Contact ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.75;
}

.contact-methods {
  list-style: none;
}

.contact-method {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-method:last-child { border-bottom: none; }

.contact-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(11, 85, 204, 0.2);
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-method-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-method-value {
  font-size: 1.0625rem;
  color: var(--navy);
  font-weight: 600;
}

.contact-method-value a:hover {
  color: var(--blue);
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--gold));
}

.booking-card h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.booking-card p {
  color: var(--gray-600);
  margin-bottom: 32px;
}

.booking-list {
  list-style: none;
  margin-bottom: 32px;
}

.booking-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.booking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23031762'><path fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ─── Page Header ────────────────────────────────────────────────────────── */
.page-header {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #fcfdff 0%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(11, 85, 204, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: var(--gray-400);
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 600;
}

.breadcrumb span {
  color: var(--gray-400);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: #ffffff;
  color: #4a5068;
  border-top: 1px solid #e8ecf4;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.footer-brand img {
  height: 70px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #4a5068;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--navy);
  font-size: 0.9375rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
  color: #4a5068;
}

.footer-col a {
  color: #4a5068;
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid #e8ecf4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  color: #8a90a8;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-bottom a {
  color: #8a90a8;
}

.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── Reveal Animations ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Utilities ──────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }

.divider {
  height: 1px;
  background: var(--gray-100);
  margin: 60px 0;
}

/* ─── Scroll to Top ──────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 100;
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--blue);
  transform: translateY(-4px);
}


/* ─── Social links ──────────────────────────────────────────────────────── */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(3,23,98,0.08);
  color: #031762;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.social-link:hover {
  background: #FFC700;
  color: #031762;
  transform: translateY(-3px);
}

/* ── Footer inner grid support (alias for footer-grid) ── */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-links {
  display: contents;
}
@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
