/* ============================================================
   JPM MEDIA — GLOBAL STYLESHEET
   ============================================================ */

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

/* --- DESIGN TOKENS ----------------------------------------- */
:root {
  /* Brand Blues */
  --navy:          #0D2B45;
  --blue-dark:     #1565C0;
  --blue-mid:      #2196F3;
  --blue-light:    #64B5F6;
  --blue-pale:     #BBDEFB;
  --blue-mist:     #E3F2FD;

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #F7FBFF;
  --gray-50:       #F0F4F8;
  --gray-100:      #E1E8F0;
  --gray-200:      #C5D2DE;
  --gray-400:      #8097AC;
  --gray-600:      #4A6275;
  --gray-800:      #1E2D3D;

  /* Accent */
  --accent:        #1565C0;
  --accent-hover:  #0D47A1;

  /* BTF Brand (Behind the Funnel) */
  --btf-dark:      #0D2B45;
  --btf-mid:       #1565C0;
  --btf-light:     #64B5F6;

  /* Typography */
  --font-sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif:    'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-py:    100px;
  --container:     1200px;
  --radius:        12px;
  --radius-lg:     20px;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(13, 43, 69, 0.08);
  --shadow-md:     0 8px 32px rgba(13, 43, 69, 0.12);
  --shadow-lg:     0 20px 60px rgba(13, 43, 69, 0.16);

  /* Transitions */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

.serif { font-family: var(--font-serif); font-style: italic; font-weight: 700; }

p { color: var(--gray-600); line-height: 1.75; font-size: 1.0625rem; }

.text-sm  { font-size: 0.875rem; }
.text-lg  { font-size: 1.125rem; }
.text-xl  { font-size: 1.25rem; }

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

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

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

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

/* --- SECTION HEADERS --------------------------------------- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--blue-mist);
  border: 1px solid var(--blue-pale);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

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

.section-header p {
  margin-top: 16px;
  font-size: 1.1rem;
}

/* --- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.35);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
}
.btn-outline:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.btn-lg { padding: 18px 36px; font-size: 1.0625rem; border-radius: 10px; }

/* --- CARDS ------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-body { padding: 32px; }

/* --- NAVIGATION ------------------------------------------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease);
}

#navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo svg { height: 38px; width: auto; }
.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-dark);
  background: var(--blue-mist);
}

.nav-links a.btf-link {
  color: var(--blue-dark);
  font-weight: 600;
  background: var(--blue-mist);
  border: 1px solid var(--blue-pale);
}

.nav-links a.btf-link:hover {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* --- HERO -------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--white) 0%, var(--blue-mist) 60%, #dbeeff 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 24px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--blue-dark);
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--navy);
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-card-float {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  text-align: center;
  position: relative;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.stat-chip {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.stat-chip .num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue-dark);
  display: block;
}

.stat-chip .label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- TRUST BAR -------------------------------------------- */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 32px 0;
}

.trust-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  white-space: nowrap;
}

.client-pill {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  transition: all 0.2s var(--ease);
}
.client-pill:hover { border-color: var(--blue-pale); color: var(--blue-dark); }

/* --- SERVICES CARDS --------------------------------------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-mid));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blue-pale);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-mist);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg { width: 26px; height: 26px; color: var(--blue-dark); }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* --- TESTIMONIALS ----------------------------------------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-size: 1.5rem;
  color: var(--blue-light);
  margin-bottom: 16px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info .name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.author-info .role {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* --- TEAM CARDS ------------------------------------------- */
.team-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}

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

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
  border: 4px solid var(--blue-pale);
}

.team-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.team-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-dark);
  padding: 8px 16px;
  border: 1px solid var(--blue-pale);
  border-radius: 100px;
  background: var(--blue-mist);
  transition: all 0.2s var(--ease);
}
.linkedin-btn:hover {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}

/* --- BLOG CARDS ------------------------------------------- */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

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

.blog-thumb-num {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  position: absolute;
  right: 16px;
  bottom: -8px;
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 12px;
  border-radius: 100px;
}

.blog-body { padding: 24px; }

.blog-meta {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.875rem;
  line-height: 1.65;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-top: 16px;
  transition: gap 0.2s var(--ease);
}
.read-more:hover { gap: 8px; }

/* --- PODCAST CARD ----------------------------------------- */
.episode-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s var(--ease);
}
.episode-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

.ep-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.ep-info { flex: 1; }
.ep-info h4 { font-size: 0.9375rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.ep-info p { font-size: 0.8rem; line-height: 1.5; }
.ep-meta { font-size: 0.75rem; color: var(--gray-400); font-weight: 500; margin-top: 4px; }

.ep-play {
  width: 44px;
  height: 44px;
  background: var(--blue-mist);
  border: 1px solid var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}
.ep-play:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.ep-play:hover svg { color: var(--white); }
.ep-play svg { width: 16px; height: 16px; color: var(--blue-dark); margin-left: 2px; }

/* --- CTA SECTION ------------------------------------------ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 60%, var(--blue-mid) 100%);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-label {
  color: var(--blue-light);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

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

.cta-section p {
  color: rgba(255,255,255,0.75);
}

/* --- FOOTER ----------------------------------------------- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
}

.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .nav-logo-text { color: var(--white); }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.8; max-width: 300px; }

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links { display: flex; gap: 12px; align-items: center; }
.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s var(--ease);
}
.social-links a:hover { background: var(--blue-dark); color: var(--white); }
.social-links svg { width: 16px; height: 16px; }

/* --- PAGE HERO (inner pages) ------------------------------ */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--white) 0%, var(--blue-mist) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-100);
}

.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

/* --- BEHIND THE FUNNEL SPECIAL ----------------------------- */
.btf-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3d6e 50%, var(--blue-dark) 100%);
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(33,150,243,0.2) 0%, transparent 60%);
}

.btf-hero h1 { color: var(--white); }
.btf-hero p { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 600px; margin: 20px auto 0; }

.btf-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--blue-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 80px 0;
}

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- DIVIDER ---------------------------------------------- */
.divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-mid));
  border-radius: 4px;
  margin: 20px 0;
}

/* --- BADGE PILLS ------------------------------------------ */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.badge-blue { background: var(--blue-mist); color: var(--blue-dark); border: 1px solid var(--blue-pale); }
.badge-navy { background: var(--navy); color: var(--white); }

/* --- PROJECT/CLIENT GRID ---------------------------------- */
.client-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s var(--ease);
}
.client-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-pale); }

.client-initial {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.client-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.client-card .industry { font-size: 0.8rem; font-weight: 600; color: var(--blue-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.client-card p { font-size: 0.875rem; line-height: 1.65; }

/* --- STATS STRIP ------------------------------------------ */
.stats-strip {
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  padding: 60px 0;
}

.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item .number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
}

.stat-item .desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  font-weight: 500;
}

/* --- MOBILE NAV ------------------------------------------- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 16px 20px;
  border-radius: 10px;
  transition: all 0.2s var(--ease);
  border: 1px solid var(--gray-100);
}

.mobile-nav a:hover { background: var(--blue-mist); border-color: var(--blue-pale); color: var(--blue-dark); }

.mobile-nav-cta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

/* --- RESPONSIVE ------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-label { justify-content: center; }
  .hero-visual { order: -1; }

  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse { direction: ltr; }

  .trust-bar-inner { justify-content: center; }

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

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
}

/* --- UTILITIES --------------------------------------------- */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-navy { color: var(--navy) !important; }
.text-blue { color: var(--blue-dark) !important; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.bg-off-white { background: var(--off-white); }
.bg-blue-mist { background: var(--blue-mist); }

/* --- FADE IN ANIMATION ------------------------------------ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeInUp 0.65s var(--ease) both;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
.fade-in-delay-4 { animation-delay: 0.4s; }
