/* ═══════════════════════════════════════════════════════════════════════ */
/*  FUDE MARKETING — Global Stylesheet                                     */
/*  Shared across all pages. Based on the original index.html system.      */
/* ═══════════════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #545454;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── CSS Variables ────────────────────────────────────────────────── */
:root {
  --primary: #608c96;
  --accent: #db9707;
  --light-blue: #bbe1e9;
  --dark: #545454;
  --ink: #1a2e33;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.75);
  --glass-shadow: 0 8px 40px rgba(96, 140, 150, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Typography ───────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
p  { font-size: clamp(0.95rem, 1.5vw, 1.05rem); line-height: 1.75; color: #6b7a7c; }

/* ─── Layout Helpers ───────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}
.section-intro { max-width: 640px; margin: 0 auto 60px; }

/* ─── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 15px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px rgba(219, 151, 7, 0.30);
}
.btn-primary:hover {
  background: #c48806;
  box-shadow: 0 8px 32px rgba(219, 151, 7, 0.40);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.btn-sm { padding: 11px 22px; font-size: 0.82rem; }

/* ─── Glass Card ───────────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

/* ─── Scroll Animation ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════════════════ */
/*  NAV                                                                    */
/* ═══════════════════════════════════════════════════════════════════════ */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
nav.site-nav.scrolled,
nav.site-nav.solid {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 1px 0 rgba(96,140,150,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1260px;
  margin: 0 auto;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 54px;
  width: auto;
  transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.03); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.03em;
  transition: color 0.3s;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.7rem;
  opacity: 0.6;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(96,140,150,0.15);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(96,140,150,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  list-style: none;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--dark);
  transition: background 0.25s, color 0.25s;
}
.dropdown-menu a:hover {
  background: rgba(187,225,233,0.35);
  color: var(--primary);
}
.dropdown-menu a::after { display: none; }

/* Right side: lang switcher + cta */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(96,140,150,0.08);
  border-radius: 100px;
  padding: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.lang-switch a {
  padding: 6px 11px;
  border-radius: 100px;
  color: var(--dark);
  transition: all 0.3s;
  text-transform: uppercase;
}
.lang-switch a.active {
  background: var(--primary);
  color: #fff;
}
.lang-switch a:not(.active):hover { color: var(--primary); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(96,140,150,0.1);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  padding: 12px 4px;
  border-bottom: 1px solid rgba(96,140,150,0.08);
}
.mobile-menu .mobile-sub {
  padding-left: 18px;
  font-size: 0.92rem;
  color: #6b7a7c;
}
.mobile-menu .mobile-group-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 14px 4px 4px;
  border: none;
}
.mobile-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  align-items: center;
}

/* ─── Icon sizing (Lucide) ─────────────────────────────────────────── */
.proof-icon svg   { width: 17px; height: 17px; stroke: var(--primary); stroke-width: 1.75; fill: none; flex-shrink: 0; }
.service-icon svg { width: 26px; height: 26px; stroke: var(--primary); stroke-width: 1.5;  fill: none; }
.step-icon-ring svg { width: 30px; height: 30px; stroke: var(--ink); stroke-width: 1.5; fill: none; }
.value-icon svg   { width: 34px; height: 34px; stroke: var(--primary); stroke-width: 1.5; fill: none; display: block; margin: 0 auto; }
.perk-check svg   { width: 12px; height: 12px; stroke: var(--primary); stroke-width: 2.5; fill: none; }
.btn svg          { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; flex-shrink: 0; }
.pill-icon svg    { width: 14px; height: 14px; stroke: var(--primary); stroke-width: 2; fill: none; }

/* ═══════════════════════════════════════════════════════════════════════ */
/*  HERO (generic + home variants)                                         */
/* ═══════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 140px 24px 80px;
}
.hero.hero-sm {
  min-height: auto;
  padding: 160px 24px 90px;
}

/* ─── HERO: SPLIT (text left, video right) ───────────────────────────── */
.hero.hero-split {
  padding: 130px 24px 80px;
  min-height: auto;
}
.hero-split-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content-left {
  text-align: left;
  max-width: 560px;
  margin: 0;
}
.hero-content-left .hero-actions { justify-content: flex-start; }

/* Right column: video card */
.hero-video-card {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 560px;
}
.hero-video-shell {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: #08161a;
  box-shadow:
    0 30px 70px rgba(30,58,66,0.28),
    0 6px 20px rgba(30,58,66,0.12);
  transform: translateZ(0);
  isolation: isolate;
}
.hero-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Subtle overlay to blend with brand colors */
.hero-video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,58,66,0) 55%, rgba(30,58,66,0.45) 100%);
  pointer-events: none;
}
/* Accent shape peeking from behind the card */
.hero-video-accent {
  position: absolute;
  top: -30px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.18;
  z-index: -1;
}
.hero-video-card::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  background: var(--light-blue);
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(2px);
  z-index: -1;
}

/* Floating label on the video card */
.hero-video-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(8,22,26,0.18);
  z-index: 2;
}
.hero-video-tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(219,151,7,0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(219,151,7,0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(219,151,7,0.05); }
}

/* Mobile stack */
@media (max-width: 980px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-content-left {
    text-align: center;
    margin: 0 auto;
    max-width: 640px;
  }
  .hero-content-left .hero-actions { justify-content: center; }
  .hero-video-card { justify-self: center; max-width: 460px; }
  .hero-video-shell { aspect-ratio: 16 / 10; border-radius: 22px; }
}
@media (max-width: 600px) {
  .hero.hero-split { padding: 120px 18px 60px; }
  .hero-video-tag { font-size: 0.72rem; padding: 8px 14px; left: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-el { display: none; }
  .hero-video-shell {
    background: linear-gradient(135deg, #1e3a42, #608c96);
  }
  .hero-video-tag-dot { animation: none; }
}

.blob-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  animation: floatBlob 14s ease-in-out infinite alternate;
}
.blob-1 { width: 520px; height: 520px; background: var(--light-blue); top: -100px; right: -120px; animation-duration: 16s; }
.blob-2 { width: 380px; height: 380px; background: var(--primary); opacity: 0.18; bottom: -60px; left: -80px; animation-duration: 20s; animation-delay: -5s; }
.blob-3 { width: 280px; height: 280px; background: var(--light-blue); top: 40%; left: 40%; opacity: 0.30; animation-duration: 12s; animation-delay: -9s; }
@keyframes floatBlob {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -40px) scale(1.06); }
  100% { transform: translate(-20px, 30px) scale(0.96); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(187, 225, 233, 0.5);
  border: 1px solid rgba(96, 140, 150, 0.25);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}
.hero h1 em { font-style: italic; color: var(--primary); }
.hero h1 { margin-bottom: 24px; color: var(--ink); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
  color: #6b7a7c;
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}
.hero-scroll span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════════════ */
/*  PROOF BAR                                                              */
/* ═══════════════════════════════════════════════════════════════════════ */
.proof-bar {
  background: linear-gradient(135deg, #f7fbfc 0%, #edf6f8 100%);
  border-top: 1px solid rgba(96,140,150,0.12);
  border-bottom: 1px solid rgba(96,140,150,0.12);
  padding: 22px 0;
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 28px;
}
.proof-divider {
  width: 1px;
  height: 20px;
  background: rgba(96,140,150,0.25);
}
.proof-icon { display: flex; align-items: center; }

/* ═══════════════════════════════════════════════════════════════════════ */
/*  SERVICES                                                               */
/* ═══════════════════════════════════════════════════════════════════════ */
.services-section { background: linear-gradient(180deg, #ffffff 0%, #f4fafc 100%); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  padding: 44px 36px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--light-blue));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(96,140,150,0.18); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(187,225,233,0.6), rgba(96,140,150,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card h3 { margin-bottom: 14px; color: var(--ink); }
.service-card p { flex: 1; }
.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(219,151,7,0.1);
  border-radius: 100px;
  padding: 4px 12px;
  margin-top: 20px;
  align-self: flex-start;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 18px;
  transition: gap 0.3s;
}
.service-card-link:hover { gap: 10px; }
.service-card-link::after { content: '→'; }

/* ═══════════════════════════════════════════════════════════════════════ */
/*  HOW IT WORKS                                                           */
/* ═══════════════════════════════════════════════════════════════════════ */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 50px 32px;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(96,140,150,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon-ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-blue), rgba(96,140,150,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 4px 20px rgba(96,140,150,0.20);
}
.step-card h3 { margin-bottom: 12px; font-size: 1.1rem; color: var(--ink); }

/* ═══════════════════════════════════════════════════════════════════════ */
/*  VALUES                                                                 */
/* ═══════════════════════════════════════════════════════════════════════ */
.values-section { background: linear-gradient(180deg, #f4fafc 0%, #edf6f8 100%); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.value-card {
  padding: 38px 28px;
  text-align: center;
  transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-4px); }
.value-icon { margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--ink); }
.value-card p { font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════════════════ */
/*  DARK SECTION (bilingual, CTAs)                                         */
/* ═══════════════════════════════════════════════════════════════════════ */
.dark-section {
  background: linear-gradient(135deg, #1a2e33 0%, #2a4a52 100%);
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,0.9);
}
.dark-section .blob-wrap .blob-1 {
  background: var(--primary);
  opacity: 0.25;
  width: 600px; height: 600px;
  top: -200px; right: -100px;
}
.dark-section .blob-wrap .blob-2 {
  background: var(--light-blue);
  opacity: 0.1;
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  animation-duration: 18s;
}
.dark-section h2 { color: #fff; }
.dark-section p { color: rgba(255,255,255,0.75); }
.dark-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stat-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  backdrop-filter: blur(12px);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/*  ABOUT PAGE BLOCKS                                                      */
/* ═══════════════════════════════════════════════════════════════════════ */
.about-lead {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.about-lead p { font-size: 1.08rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.two-col.reverse > *:first-child { order: 2; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
}
.feature-list li strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }
.feature-list .pill-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(187,225,233,0.5);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 3px;
}

.principle-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.principle-card h3 { font-size: 1.15rem; color: var(--ink); }
.principle-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.2em;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.bullet-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--dark);
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/*  VIDEO EMBED (YouTube iframe responsive + presenter card)               */
/* ═══════════════════════════════════════════════════════════════════════ */
.video-showcase {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(96,140,150,0.22);
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.presenter-card {
  padding: 32px 28px;
  text-align: center;
}
.presenter-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(96,140,150,0.2);
  background: linear-gradient(135deg, var(--light-blue), rgba(96,140,150,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 2rem;
}
.presenter-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.presenter-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.presenter-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}
.presenter-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.presenter-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(187,225,233,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s;
}
.presenter-socials a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.presenter-socials svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* Service page: "What [service] means" styled list */
.feature-block {
  max-width: 820px;
  margin: 0 auto;
}
.feature-block h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.feature-block > p { margin-bottom: 20px; }
.feature-block ul.bullet-list { margin-bottom: 32px; }

/* ═══════════════════════════════════════════════════════════════════════ */
/*  CONTACT / LEAD CAPTURE                                                 */
/* ═══════════════════════════════════════════════════════════════════════ */
.contact-section { background: linear-gradient(180deg, #ffffff 0%, #f4fafc 100%); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-text h2 { margin-bottom: 18px; }
.contact-text p { margin-bottom: 28px; }
.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}
.contact-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}
.perk-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(96,140,150,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-form-card { padding: 44px 40px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}
input, textarea, select {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(96,140,150,0.25);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: #a0adb0; }
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(96,140,150,0.12);
  background: #fff;
}
textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; font-size: 0.95rem; padding: 17px 32px; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: #a0adb0;
  margin-top: 14px;
  font-style: italic;
}
.form-note strong { color: var(--primary); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════════ */
/*  FAQ ACCORDION                                                          */
/* ═══════════════════════════════════════════════════════════════════════ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(187,225,233,0.5);
  border-radius: 16px;
  padding: 4px 28px;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(96,140,150,0.06);
}
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(96,140,150,0.14);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  margin-left: auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(187,225,233,0.5);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 400;
  transition: all var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}
.faq-item .faq-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.faq-item .faq-body {
  padding: 0 0 26px;
  color: var(--dark);
  line-height: 1.7;
  font-size: 0.95rem;
  border-top: 1px solid rgba(96,140,150,0.12);
  padding-top: 18px;
  margin-top: -4px;
}
.faq-item .faq-body p + p { margin-top: 10px; }
.faq-item .faq-body strong { color: var(--ink); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════════ */
/*  BLOG INDEX — CARD GRID                                                 */
/* ═══════════════════════════════════════════════════════════════════════ */
.category-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 48px;
  padding: 14px 22px;
  max-width: 960px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(96,140,150,0.12);
  box-shadow: 0 6px 24px rgba(96,140,150,0.1);
}
.category-bar .cat-btn {
  appearance: none;
  background: transparent;
  border: none;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  cursor: pointer;
  border-radius: 999px;
  transition: all var(--transition);
  white-space: nowrap;
}
.category-bar .cat-btn:hover {
  background: rgba(96,140,150,0.08);
  color: var(--primary);
}
.category-bar .cat-btn.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(219,151,7,0.35);
}
@media (max-width: 720px) {
  .category-bar {
    padding: 10px 14px;
    border-radius: 22px;
  }
  .category-bar .cat-btn { padding: 8px 14px; font-size: 0.82rem; }
}

.blog-card.is-hidden { display: none; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(96,140,150,0.1);
  box-shadow: 0 6px 20px rgba(96,140,150,0.08);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(96,140,150,0.18);
  border-color: var(--primary);
}
.blog-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light-blue), #d9ecf0);
}
.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-badge.accent { background: var(--accent); }
.blog-card-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-card-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(var(--primary), var(--primary));
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.4s ease;
}
.blog-card-body h3 a:hover { background-size: 100% 1.5px; }
.blog-card-excerpt {
  color: var(--dark);
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
}
.blog-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(96,140,150,0.1);
  font-size: 0.82rem;
  color: var(--dark);
}
.blog-card-author .author-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.blog-card-author .author-role { color: #a0adb0; font-size: 0.78rem; }

/* Newsletter */
.newsletter-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 48px;
  text-align: center;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(187,225,233,0.6);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(96,140,150,0.12);
}
.newsletter-card h2 { margin-bottom: 10px; }
.newsletter-card p { color: var(--dark); margin-bottom: 22px; }
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 180px;
}
.newsletter-form .btn { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════════ */
/*  BLOG ARTICLE — SINGLE POST                                             */
/* ═══════════════════════════════════════════════════════════════════════ */
.article-hero {
  padding: 110px 0 60px;
  background: linear-gradient(180deg, var(--light-blue) 0%, #e9f4f7 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.article-hero .container { max-width: 860px; position: relative; z-index: 1; }
.article-meta-top {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.article-meta-top .dot {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.article-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 18px;
}
.article-hero .article-lede {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  max-width: 680px;
}
.article-author-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(96,140,150,0.15);
}
.article-author-row .author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.article-author-row .author-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.article-author-row .author-meta {
  font-size: 0.82rem;
  color: #8a9699;
}

.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 56px 0 40px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark);
}
.article-body h2 {
  font-size: 1.65rem;
  margin: 48px 0 18px;
  color: var(--ink);
}
.article-body h3 {
  font-size: 1.22rem;
  margin: 36px 0 14px;
  color: var(--ink);
}
.article-body p { margin-bottom: 18px; }
.article-body p + p { margin-top: 0; }
.article-body ul, .article-body ol {
  margin: 10px 0 22px;
  padding-left: 22px;
}
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body em { color: var(--primary); font-style: italic; }
.article-body a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(96,140,150,0.35);
  text-underline-offset: 3px;
  font-weight: 500;
}
.article-body a:hover { text-decoration-color: var(--primary); }
.article-body blockquote {
  margin: 30px 0;
  padding: 22px 28px;
  border-left: 4px solid var(--accent);
  background: rgba(187,225,233,0.25);
  border-radius: 0 12px 12px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
}
.article-body .callout {
  margin: 30px 0;
  padding: 26px 28px;
  background: linear-gradient(135deg, rgba(187,225,233,0.35), rgba(255,255,255,0.6));
  border: 1px solid rgba(96,140,150,0.15);
  border-radius: var(--radius);
}
.article-body .callout h4 {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.article-body .callout p:last-child { margin-bottom: 0; }

/* Share + back */
.article-footer-meta {
  max-width: 740px;
  margin: 0 auto;
  padding: 32px 0;
  border-top: 1px solid rgba(96,140,150,0.12);
  border-bottom: 1px solid rgba(96,140,150,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.article-footer-meta a { color: var(--primary); text-decoration: none; font-weight: 500; font-size: 0.9rem; }
.article-footer-meta .share-group { display: flex; gap: 10px; }
.article-footer-meta .share-group a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(187,225,233,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.article-footer-meta .share-group a:hover {
  background: var(--primary); color: #fff;
}
.article-footer-meta .share-group svg { width: 16px; height: 16px; }

/* Related posts */
.related-posts {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 0 0;
}
.related-posts h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.5rem;
}

@media (max-width: 960px) {
  .article-body { font-size: 1rem; padding: 40px 0 20px; }
  .article-hero { padding: 90px 0 40px; }
  .newsletter-card { padding: 36px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════ */
/*  FOOTER                                                                 */
/* ═══════════════════════════════════════════════════════════════════════ */
footer {
  background: #1a2e33;
  padding: 64px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 58px;
  width: auto;
  margin-bottom: 4px;
  /* lighten the teal to stand out on dark footer */
  filter: brightness(1.25) saturate(0.85);
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.7;
  margin-top: 18px;
}
.footer-tagline {
  font-style: italic;
  color: rgba(255,255,255,0.4) !important;
  font-size: 0.82rem !important;
  margin-top: 12px;
}
.footer-links h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--light-blue); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--light-blue); }

/* ─── Floating CTA ─────────────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/*  RESPONSIVE                                                             */
/* ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links, .nav-right .btn-primary { display: none; }
  .hamburger { display: flex; }
  .dark-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse > *:first-child { order: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .video-showcase { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .section-pad { padding: 70px 0; }
  .contact-form-card { padding: 28px 20px; }
  .service-card, .step-card, .value-card, .principle-card { padding: 32px 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .proof-item { padding: 6px 14px; font-size: 0.72rem; }
  .floating-cta { bottom: 16px; right: 16px; }
  .stat-grid { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 140px; }
  .footer-top { grid-template-columns: 1fr; }
  .nav-logo img { height: 44px; }
}
