/* ===================================
   FOUNTHEAD - Brand Compliant Styles
   Colors: #0A2035, #FFBF00, #FFFFFF
   Fonts: Avenir Next LT Pro, Optima
   =================================== */

/* ---------- @FONT-FACE: AVENIR NEXT ---------- */
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNextLTPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNextLTPro-It.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNextLTPro-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNextLTPro-Demi.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNextLTPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNextLTPro-BoldIt.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNextLTPro-Heavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- @FONT-FACE: OPTIMA ---------- */
@font-face {
  font-family: 'Optima';
  src: url('../fonts/OPTIMA.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Optima';
  src: url('../fonts/Optima_Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Optima';
  src: url('../fonts/Optima Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Optima';
  src: url('../fonts/OPTIMA_B.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --navy: #0A2035;
  --navy-light: #142d4c;
  --navy-lighter: #1a3a5c;
  --gold: #FFBF00;
  --gold-dark: #e6ac00;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --cream: #EAE6DC;
  --sage: #DCE2DD;
  --olive: #858059;
  --cool-gray: #B2B7B6;
  --tan: #B3A17E;
  --brand-red: #E03639;
  --brand-purple: #6D19A5;
  --brand-blue: #0009BC;
  --gray-100: #f5f5f5;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --text-dark: #0A2035;
  --text-body: #374151;
  --text-light: rgba(255,255,255,0.85);
  /* Two-font system (per brand docket):
     --font-heading  =  Avenir Next  — titles, h1-h6, section headings, eyebrows, stat numbers
     --font-body     =  Optima       — subtext, body paragraphs, CTAs, labels (everything else) */
  --font-heading: 'Avenir Next', system-ui, -apple-system, sans-serif;
  --font-body: 'Optima', 'Avenir Next', Georgia, serif;
  --font-accent: 'Optima', 'Avenir Next', sans-serif;
  --shadow-sm: 0 1px 3px rgba(10,32,53,0.08);
  --shadow-md: 0 4px 20px rgba(10,32,53,0.1);
  --shadow-lg: 0 10px 40px rgba(10,32,53,0.15);
  --shadow-xl: 0 20px 60px rgba(10,32,53,0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* ============================================================
     TYPOGRAPHY SCALE — single source of truth (site-wide)
     Reference: About page hero title uses weight 600 (SemiBold).
     All headings stay at 600 max. No 700/800/900 anywhere.
     ============================================================ */
  /* Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;   /* <-- heading cap, matches about hero */

  /* Sizes — universal scale (site-wide, one source of truth) */
  --fs-display: clamp(38px, 4.8vw, 64px);  /* hero h1 */
  --fs-h1: clamp(34px, 4vw, 54px);         /* large page titles */
  --fs-h2: clamp(30px, 3.2vw, 44px);       /* section titles */
  --fs-h3: 28px;                            /* mid headings */
  --fs-h4: 22px;                            /* card titles / column heads */
  --fs-h5: 18px;                            /* small headings, footer col heads */
  --fs-lg: 19px;                            /* large lead paragraph */
  --fs-cta: 17px;                           /* all CTAs/buttons site-wide */
  --fs-body: 16px;                          /* default body */
  --fs-base: 15px;                          /* compact body, list items */
  --fs-sm: 14px;                            /* small body, meta, labels */
  --fs-eyebrow: 13px;                       /* uppercase eyebrows/badges */
  --fs-xs: 12px;                            /* captions, micro, small desc */
  --fs-2xs: 11px;                           /* tiniest — chip labels */
  --fs-stat: 56px;                          /* huge stats numbers */
  --fs-watermark: clamp(120px, 15vw, 220px); /* decorative bg text */

  /* Line heights */
  --lh-tight: 1.2;
  --lh-snug: 1.35;
  --lh-normal: 1.6;
  --lh-loose: 1.7;

  /* Letter spacing */
  --ls-tight: -0.2px;
  --ls-wide: 4px;       /* eyebrows */
}

/* ============================================================
   GLOBAL TYPOGRAPHY CAPS
   Force every heading to semibold (600). This overrides the
   older 700/800/900 values scattered through the stylesheets
   without editing each rule. Body copy stays regular/medium.
   Reference: About page hero title (`.ab-hero__title`) — 600.
   ============================================================ */
h1, h2, h3, h4, h5, h6,
.section__title,
.ab-section-title,
.hero__title,
.ab-hero__title,
.contact-hero__title,
.cta-final__title,
.solution-card__title,
.footer__links h4,
.footer__contact h4,
.footer__brand strong,
.about__mini-stat strong,
.tcard__info strong {
  font-weight: var(--fw-semibold) !important;
  letter-spacing: var(--ls-tight);
}

/* Cap all UI weights: buttons, badges, nav, eyebrows, small labels.
   Nothing on this site should render heavier than 600. */
.btn, .btn--primary, .btn--outline, .btn--gold, .btn--text,
.navbar__cta, .navbar__menu a,
.section__tag, .audience__badge, .clients__eyebrow,
.problems__eyebrow, .ab-eyebrow, .ab-hero__eyebrow,
.contact-hero__eyebrow, .cta-final__badge,
.problems__tab, .clients__ind-badge,
.solution-card__link, .cta-final__link,
.stats-ribbon__number,
.footer__bottom, .footer__bottom-links a {
  font-weight: var(--fw-semibold) !important;
}

html {
  scroll-behavior: smooth;
  font-size: var(--fs-body);
}

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

/* Smooth scroll behavior for all anchor transitions */
* {
  scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

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

.section--light {
  background: var(--off-white);
  position: relative;
}

.text-gold {
  color: var(--gold);
}

/* ---------- TYPOGRAPHY ---------- */
.section__tag {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__tag--light {
  color: var(--gold);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section__title--light {
  color: var(--white);
}

.section__header {
  margin-bottom: 60px;
}

.section__header--center {
  text-align: center;
}

.section__desc {
  font-size: var(--fs-h5);
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-cta);
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn i {
  font-size: var(--fs-xs);
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

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

.btn--primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 30px rgba(255,191,0,0.3);
  transform: translateY(-2px);
}

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

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

.btn--text {
  background: transparent;
  color: var(--gold);
  padding: 8px 8px 8px 0;
  font-family: var(--font-heading);
  font-size: var(--fs-cta);
  font-weight: var(--fw-semibold);
  white-space: nowrap;
}

.btn--text:hover {
  color: var(--gold-dark);
}

.btn--cta {
  background: var(--gold);
  color: var(--navy);
  padding: 18px 42px;
  font-size: var(--fs-body);
  font-weight: 700;
}

.btn--cta:hover {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10,32,53,0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1360px;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar__logo .logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__menu a {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
}

.navbar__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.navbar__menu a:hover::after {
  width: 100%;
}

.navbar__cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  font-family: var(--font-heading);
  transition: var(--transition);
}

.navbar__cta:hover {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(255,191,0,0.3);
}

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

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.hero__overlay--dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,32,53,0.88) 0%, rgba(10,32,53,0.65) 50%, rgba(10,32,53,0.75) 100%);
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  width: 100%;
  padding-bottom: 120px;
  padding-top: 180px;
}

.hero__left {
  flex: 1;
  padding-top: 40px;
}

.hero__right {
  flex: 1;
  padding-top: 90px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.5vw, 54px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
  letter-spacing: 0.2px;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll span {
  font-size: var(--fs-2xs);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- HERO BG IMAGE ---------- */
.hero__bg--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- STATS RIBBON ---------- */
.stats-ribbon {
  background: var(--navy);
  padding: 0;
  position: relative;
  z-index: 10;
}

.stats-ribbon__track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 40px;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.stats-ribbon__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  position: relative;
}

.stats-ribbon__accent {
  width: 260px;
  max-width: 100%;
  height: 9px;
  background: var(--gold);
  border-radius: 0;
  margin: 0 0 20px 0;
}

.stats-ribbon__number {
  font-family: var(--font-heading);
  font-size: var(--fs-stat);
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 16px;
}

.stats-ribbon__desc {
  font-size: var(--fs-cta);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  width: 260px;
  max-width: 100%;
  margin: 0;
  text-align: center;
}

/* ---------- ABOUT ---------- */
.about {
  position: relative;
  overflow: hidden;
}

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

.about__text {
  font-size: var(--fs-cta);
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.8;
}

.about__tagline {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--gold-dark, #e6ac00);
  line-height: var(--lh-snug);
  margin-bottom: 24px;
}

.btn--gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: var(--fs-base);
  text-decoration: none;
  transition: var(--transition);
}

.btn--gold:hover {
  background: #e6ac00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,191,0,0.3);
}

.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.about__shapes {
  position: relative;
  width: 500px;
  height: 460px;
}

.about__img-wrapper {
  position: absolute;
  left: 0;
  top: 20px;
  width: 440px;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 2;
  box-shadow: var(--shadow-xl);
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: var(--fs-lg);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.about__video-play i {
  margin-left: 3px;
}

.about__video-play:hover {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(255,191,0,0.4);
}

.about__shape--rect {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-md);
  bottom: -20px;
  right: -30px;
  transform: rotate(6deg);
  opacity: 0.6;
  z-index: 1;
  transition: var(--transition-slow);
}

.about__mini-stat {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--navy);
  border: 1px solid rgba(255,191,0,0.2);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  box-shadow: var(--shadow-xl);
}

.about__mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,191,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: var(--fs-body);
}

.about__mini-stat strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 800;
}

.about__mini-stat span {
  font-size: var(--fs-2xs);
  color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px;
  font-weight: 600;
}

.about__visual:hover .about__shape--rect {
  transform: rotate(10deg) scale(1.05);
  opacity: 0.8;
}

/* ---------- FOLD 4: AUDIENCE (Split Layout) ---------- */
.audience {
  background: var(--white);
  padding: 0;
  overflow: hidden;
}

.audience__layout {
  display: flex;
  min-height: 700px;
}

.audience__content {
  flex: 1;
  padding: 80px 20px 80px 80px;
}

.audience__badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.audience__content .section__title {
  margin-bottom: 24px;
}

.audience__title-plane {
  position: relative;
  line-height: 0.95;
}

.audience__plane-img {
  display: inline-block;
  width: 260px;
  height: auto;
  vertical-align: middle;
  margin-left: 8px;
  opacity: 0.85;
}

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

.audience__row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(10,32,53,0.08);
  transition: var(--transition);
}

.audience__row:last-child {
  border-bottom: none;
}

.audience__row:hover {
  padding-left: 8px;
  background: rgba(255,191,0,0.02);
}

.audience__row-text {
  flex: 1;
}

.audience__row-text h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}

.audience__row-text p {
  font-size: var(--fs-cta);
  color: var(--gray-500);
  line-height: 1.7;
}

.audience__row-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: var(--fs-h5);
  flex-shrink: 0;
  transition: var(--transition);
  margin-top: 4px;
}

.audience__row:hover .audience__row-icon {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
}

.audience__image {
  flex: 0 0 580px;
  position: relative;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.audience__image img {
  max-height: 110%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  transform: scale(1.08);
  transform-origin: bottom center;
}

/* ---------- FOLD 5: SOLUTIONS ---------- */
.solutions {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255,191,0,0.25);
  background: var(--gold);
}

.solution-card:hover .solution-card__title {
  color: var(--navy);
}

.solution-card:hover .solution-card__desc {
  color: rgba(10,32,53,0.75);
}

.solution-card:hover .solution-card__link {
  color: var(--white);
  font-weight: 600;
}

.solution-card__img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.solution-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solution-card:hover .solution-card__img img {
  transform: scale(1.08);
}

.solution-card__body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.solution-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.solution-card__desc {
  font-size: var(--fs-cta);
  color: rgba(10,32,53,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

/* Navy pill CTA — replaces the old gold-on-white text link */
.solution-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  padding: 10px 22px;
  border-radius: 50px;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.solution-card__link i {
  font-size: var(--fs-2xs);
  transition: transform 0.3s ease;
}

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

.solution-card__link:hover i {
  transform: translateX(4px);
}

.solutions__cta {
  text-align: center;
}

/* ---------- FOLD 6: CLIENTS ---------- */
.clients {
  position: relative;
  overflow: hidden;
}

.clients__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(120px, 15vw, 220px);
  font-weight: 900;
  color: rgba(10,32,53,0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -5px;
}

.clients .section__header {
  position: relative;
  z-index: 1;
}

.clients__eyebrow {
  display: block;
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.clients__split {
  display: flex;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.clients__industries {
  flex: 0 0 240px;
}

.clients__ind-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  margin-bottom: 20px;
}

.clients__ind-list {
  display: flex;
  flex-direction: column;
}

.clients__ind-list li {
  padding: 10px 16px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
}

.clients__ind-list li:hover,
.clients__ind-list li.active {
  color: var(--navy);
  font-weight: 700;
  background: rgba(255,191,0,0.06);
  padding-left: 20px;
  border-color: var(--gold);
}

.clients__logos {
  flex: 1;
}

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

.client-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  height: 90px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  cursor: default;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.client-tile:hover {
  border-color: rgba(255,191,0,0.3);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.client-tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.client-tile:hover img {
  transform: scale(1.05);
}

/* ---------- FOLD 7: PROBLEMS (Interactive Tabs) ---------- */
.problems {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.problems__eyebrow {
  display: block;
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.problems .section__title {
  color: var(--white);
}

.problems__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.problems__tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 480px;
}

.problems__tab {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 2px dashed rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-size: var(--fs-cta);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  gap: 14px;
}

.problems__tab:last-child {
  border-bottom: none;
}

.problems__tab:hover {
  color: rgba(255,255,255,0.85);
}

.problems__tab.active {
  color: var(--white);
  font-weight: var(--fw-semibold);
}

.problems__display {
  position: relative;
  padding: 0;
}

.problems__img-wrap {
  position: relative;
  width: 72%;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  transform: rotate(8deg) translateY(20px);
  transform-origin: center;
  margin-left: auto;
  margin-right: 0;
  border: 1px solid var(--gold);
  box-shadow: 6px 12px 30px rgba(0,0,0,0.35);
}

.problems__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.15s ease;
}

/* Description sits bottom-left, below the tilted image — matches PPT placement */
.problems__desc {
  font-family: var(--font-body);
  font-size: var(--fs-cta);
  color: var(--white);
  line-height: 1.6;
  transition: opacity 0.15s ease;
  margin: 60px 0 0 0;
  text-align: left;
  max-width: 70%;
}

/* ---------- FOLD 8: PROCESS ---------- */
/* ============================================================
   FOLD 8 — OUR PROCESS (Rigorous process · Desired outcomes)
   PPTX-style 6-step flow with alternating navy/gold steps
   ============================================================ */
.process {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding: 110px 0 130px;
}

/* ---------- Intro (title left + copy right) ---------- */
.process__intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}
.process__intro-head .section__title {
  margin: 0;
  text-align: left;
}
.process__intro-copy p {
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.75;
  margin: 8px 0 0;
}

/* ---------- Steps row ---------- */
.process__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  padding: 0 10px;
}
.process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  --bubble-size: 110px;
  --arc-color: rgba(220, 226, 221, 0.85);
  --num-size: 46px;
}

/* The arc on top (light gray half-moon canopy behind the disc) */
.process__bubble {
  position: relative;
  width: var(--bubble-size);
  height: var(--bubble-size);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.process__arc {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--bubble-size) + 24px);
  height: calc((var(--bubble-size) + 24px) / 2);
  background: var(--arc-color);
  border-radius: calc(var(--bubble-size) + 24px) calc(var(--bubble-size) + 24px) 0 0;
  z-index: 0;
  box-shadow: 0 6px 14px rgba(10, 32, 53, 0.06);
}

/* Big colored disc (navy or gold) */
.process__disc {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 36px;
  box-shadow: 0 10px 24px rgba(10, 32, 53, 0.12);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.process__step--navy .process__disc {
  background: var(--navy);
  color: var(--gold);
}
.process__step--gold .process__disc {
  background: var(--gold);
  color: var(--navy);
}

/* Vertical connector line below disc */
.process__line {
  width: 2px;
  background: linear-gradient(180deg, rgba(10,32,53,0.25) 0%, rgba(10,32,53,0.45) 100%);
  display: block;
  position: relative;
}
.process__line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid rgba(10, 32, 53, 0.55);
}

/* Small numbered circle */
.process__num {
  width: var(--num-size);
  height: var(--num-size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-top: 10px;
  box-shadow: 0 6px 14px rgba(10, 32, 53, 0.16);
}
.process__step--navy .process__num {
  background: var(--navy);
  color: var(--white);
}
.process__step--gold .process__num {
  background: var(--gold);
  color: var(--navy);
}

/* Label tag (rectangular pill below number) */
.process__label {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(10, 32, 53, 0.10);
}
.process__step--navy .process__label {
  background: var(--navy);
  color: var(--white);
}
.process__step--gold .process__label {
  background: var(--gold);
  color: var(--navy);
}

/* Up vs Down vertical positioning to create the alternating zigzag */
.process__step--up .process__line { height: 60px; }
.process__step--down .process__line { height: 150px; }
.process__step--down { padding-top: 0; }

/* Hover */
.process__step:hover .process__disc {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 32px rgba(10, 32, 53, 0.18);
}

/* Responsive */
@media (max-width: 1100px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process__step--up .process__line,
  .process__step--down .process__line { height: 60px; }
}
@media (max-width: 768px) {
  .process { padding: 80px 0 90px; }
  .process__intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .process__intro-head .section__title { font-size: clamp(28px, 6vw, 36px); }
  .process__steps { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .process__step { --bubble-size: 90px; --num-size: 40px; }
  .process__label { font-size: 12px; padding: 8px 14px; white-space: normal; }
}
@media (max-width: 480px) {
  .process__steps { grid-template-columns: 1fr; row-gap: 28px; }
}

/* ---------- FOLD 8B: CREATIVE JOURNEY ---------- */
/* ---------- FOLD 9: TESTIMONIALS ---------- */
.testimonials {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials__carousel {
  position: relative;
}

.testimonials__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding-top: 40px;
}

.testimonials__belt {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials__pair {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 4px;
}

.tcard {
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 80px 28px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: visible;
  animation: tcardFadeUp 0.6s ease both;
}

.tcard:nth-child(1) { animation-delay: 0.1s; }
.tcard:nth-child(2) { animation-delay: 0.25s; }
.tcard:nth-child(3) { animation-delay: 0.4s; }

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

/* Quote icon */
.tcard__quote-box::before {
  content: '\201C';
  display: block;
  font-family: var(--font-accent);
  font-size: var(--fs-h2);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.tcard:hover {
  box-shadow: 0 14px 36px rgba(10,32,53,0.25);
  transform: translateY(-4px);
}

/* Logo pill — gold tab, half inside / half outside card top-left */
.tcard__logo {
  position: absolute;
  top: -30px;
  left: 14px;
  width: 140px;
  height: 88px;
  object-fit: contain;
  object-position: center;
  background: var(--gold);
  padding: 10px;
  border-radius: 12px;
  border: 2px solid var(--gold);
  box-shadow: 0 6px 16px rgba(255,191,0,0.3);
  filter: none;
  -webkit-filter: none;
  z-index: 2;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.tcard:hover .tcard__logo {
  box-shadow: 0 8px 22px rgba(255,191,0,0.5);
  transform: translateY(-2px);
}

.tcard__photo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 2px solid rgba(255,255,255,0.2);
}

.tcard__info {
  margin-bottom: 16px;
}

.tcard__info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--white);
}

.tcard__info span {
  font-size: var(--fs-eyebrow);
  color: rgba(255,255,255,0.7);
}

.tcard__quote-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  border-left: 3px solid var(--gold);
  text-align: left;
}

.tcard__quote-box p {
  font-size: var(--fs-sm);
  color: var(--text-body);
  line-height: 1.6;
  font-weight: 500;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonials__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: var(--fs-sm);
}

.testimonials__arrow:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.testimonials__dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

/* ---------- FOLD 10: CTA FINAL ---------- */
.cta-final {
  background: var(--navy);
  position: relative;
  overflow: visible;
}

.cta-final__layout {
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 0 40px;
}

.cta-final__content {
  flex: 1;
  padding: 80px 60px 80px 80px;
}

.cta-final__badge {
  display: inline-block;
  background: rgba(255,191,0,0.12);
  border: 1px solid rgba(255,191,0,0.3);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: 24px;
}

.cta-final__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 40px;
}

.cta-final__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cta-final__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: var(--fs-h5);
  font-weight: 700;
  font-family: var(--font-heading);
  transition: var(--transition);
  padding: 8px 0;
  border-bottom: 2px solid var(--white);
}

.cta-final__link:hover {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.cta-final__link i {
  font-size: var(--fs-sm);
  transition: transform 0.3s ease;
}

.cta-final__link:hover i {
  transform: translateX(6px);
}

.cta-final__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-body);
  font-weight: 500;
  transition: var(--transition);
  padding: 12px 0;
}

.cta-final__email:hover {
  color: var(--gold);
}

.cta-final__image {
  flex: 0 0 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: -80px;
  z-index: 2;
}

.cta-final__image img {
  width: 110%;
  max-width: 550px;
  height: auto;
  display: block;
  filter: drop-shadow(0 -8px 25px rgba(0,0,0,0.25));
}

/* CTA to Footer divider */
.cta-final::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,191,0,0.3), var(--gold), rgba(255,191,0,0.3), transparent);
}

/* ---------- FOOTER (white bg, navy + gold accents) ---------- */
.footer {
  position: relative;
  background: var(--white);
  color: var(--gray-600);
  padding: 84px 0 0;
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.footer::after {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,191,0,0.07) 0%, rgba(255,191,0,0) 70%);
  pointer-events: none;
}

.footer .container { position: relative; z-index: 1; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--gray-200);
}

/* Brand column */
.footer__brand { display: flex; flex-direction: column; }

.footer__logo,
.footer__tagline { display: none; }

.footer__brand h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  line-height: 1.35;
}
.footer__brand h4 .text-gold { color: var(--gold); }

.footer__brand p {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 340px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* Column heads */
.footer__links h4,
.footer__contact h4 {
  position: relative;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  font-weight: 700;
  margin-bottom: 26px;
  padding-bottom: 14px;
  letter-spacing: -0.2px;
}
.footer__links h4::after,
.footer__contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Link columns */
.footer__links ul,
.footer__contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li { padding: 5px 0; }
.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  color: var(--gray-600);
  transition: var(--transition);
  position: relative;
}
.footer__links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.footer__links a:hover { color: var(--navy); }
.footer__links a:hover::before { width: 14px; }

/* Contact column */
.footer__contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  color: var(--gray-600);
  padding: 8px 0;
  line-height: 1.55;
}
.footer__contact ul li a {
  color: var(--gray-600);
  transition: var(--transition);
}
.footer__contact ul li a:hover { color: var(--navy); }

.footer__contact i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,191,0,0.15);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: var(--fs-xs);
  flex-shrink: 0;
}

/* Bottom row — copyright | privacy/terms | credit */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  color: var(--gray-500);
}

.footer__bottom-links {
  display: flex;
  gap: 28px;
}
.footer__bottom-links a {
  color: var(--gray-500);
  transition: var(--transition);
}
.footer__bottom-links a:hover { color: var(--navy); }

.footer__credit {
  font-size: var(--fs-xs);
  color: var(--gray-500);
}
.footer__credit a {
  color: var(--navy);
  font-weight: var(--fw-semibold);
  transition: var(--transition);
}
.footer__credit a:hover { color: var(--gold); }

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader__content {
  text-align: center;
}

.preloader__logo {
  margin: 0 auto 24px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

.preloader__bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 auto 20px;
  overflow: hidden;
}

.preloader__fill {
  width: 0%;
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  animation: preloaderFill 2.2s ease forwards;
}

@keyframes preloaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

.preloader__tagline {
  font-size: var(--fs-sm);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: preloaderFadeIn 0.5s ease 0.5s forwards;
  opacity: 0;
}

@keyframes preloaderFadeIn {
  to { opacity: 1; }
}

/* ---------- ANIMATIONS ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE: 1024px ---------- */
@media (max-width: 1024px) {
  .hero__layout { gap: 40px; }
  .stats-ribbon__item { padding: 0 24px; }
  .solutions__grid { grid-template-columns: repeat(2, 1fr); }
  .audience__layout { flex-direction: column; }
  .audience__image { flex: none; height: 400px; width: 100%; }
  .audience__content { padding: 60px 40px; }
  .clients__logo-grid { grid-template-columns: repeat(3, 1fr); }
  .problems__layout { grid-template-columns: 1fr; gap: 40px; }
  .process__path { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .process__node { flex: 0 0 calc(25% - 15px); padding-top: 0 !important; }
  .process__node::after { display: none; }
  .cta-final__layout { flex-direction: column; padding: 40px 20px; }
  .cta-final__content { padding: 60px 40px; }
  .cta-final__image { flex: none; height: 350px; width: 100%; }
  .footer__grid { grid-template-columns: 1.3fr 1fr 1.2fr; gap: 40px; }
}

/* ---------- RESPONSIVE: 768px ---------- */
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .navbar__menu, .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__menu.active {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,32,53,0.98); padding: 24px; gap: 16px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }
  .hero__layout { flex-direction: column; align-items: flex-start; gap: 24px; padding-bottom: 80px; }
  .hero__right { padding-bottom: 0; }
  .hero__actions { justify-content: flex-start; }
  .hero__scroll { display: none; }
  .stats-ribbon__track { flex-direction: column; align-items: center; gap: 32px; padding: 48px 20px; }
  .stats-ribbon__item + .stats-ribbon__item::before { display: none; }
  .stats-ribbon__item { padding: 0; }
  .stats-ribbon__number { font-size: var(--fs-h2); }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .audience__content { padding: 48px 24px; }
  .solutions__grid { grid-template-columns: 1fr 1fr; }
  .clients__split { flex-direction: column; gap: 32px; }
  .clients__industries { flex: none; width: 100%; }
  .clients__ind-list { display: flex; flex-wrap: wrap; gap: 8px; }
  .clients__ind-list li { border-bottom: none; padding: 6px 14px; font-size: var(--fs-eyebrow); background: var(--cream); border-radius: 20px; }
  .clients__logo-grid { grid-template-columns: repeat(3, 1fr); }
  .problems__layout { grid-template-columns: 1fr; gap: 32px; }
  .problems__img-wrap { height: 260px; }
  .process__node { flex: 0 0 calc(33.33% - 14px); }
  .process__node::after { display: none; }
  .testimonials__pair { grid-template-columns: 1fr; }
  .tcard { padding: 28px 24px; }
  .cta-final__layout { padding: 30px 16px; }
  .cta-final__content { padding: 48px 24px; text-align: center; }
  .cta-final__actions { align-items: center; }
  .cta-final__image { height: 300px; }
  .footer { padding-top: 60px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; padding-bottom: 40px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; padding: 22px 0 26px; }
  .footer__bottom-links { gap: 22px; }
}

/* ---------- RESPONSIVE: 480px ---------- */
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero__title { font-size: var(--fs-h3); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .stats-ribbon__number { font-size: var(--fs-h2); }
  .about__shapes { width: 300px; height: 300px; }
  .about__img-wrapper { width: 280px; height: 270px; }
  .about__shape--rect { width: 140px; height: 140px; right: -15px; bottom: -10px; }
  .about__mini-stat { bottom: 10px; left: -10px; padding: 12px 16px; }
  .audience__content { padding: 40px 20px; }
  .audience__image { height: 320px; }
  .solutions__grid { grid-template-columns: 1fr; }
  .clients__logo-grid { grid-template-columns: repeat(2, 1fr); }
  .process__node { flex: 0 0 calc(50% - 10px); }
  .process__node::after { display: none; }
  .process__circle { width: 90px; height: 90px; }
  .process__circle span { font-size: var(--fs-2xs); }
  .cta-final__image { height: 260px; }
  .cta-final__image img { max-height: 260px; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* =====================================================
   v1.3 MOBILE POLISH — Tightens spacing, fixes overflow,
   improves readability across all pages on small screens.
   ===================================================== */

@media (max-width: 768px) {
  /* Body — prevent any horizontal overflow caused by transforms/wide images */
  html, body { overflow-x: hidden; }

  /* Section padding — tighter on mobile so content breathes */
  .section { padding: 60px 0; }
  .container { padding-left: 20px; padding-right: 20px; }

  /* Hero — proper mobile sizing */
  .hero { min-height: 88vh; padding-top: 100px; }
  .hero__title { font-size: clamp(28px, 8vw, 42px); line-height: 1.15; }
  .hero__subtitle { font-size: 15px; line-height: 1.55; }
  .hero__layout { grid-template-columns: 1fr; gap: 24px; }
  .hero__actions { flex-wrap: wrap; gap: 12px; }
  .hero__actions .btn { flex: 1 1 auto; min-width: 140px; text-align: center; justify-content: center; }
  .hero__scroll { display: none; }

  /* Stats ribbon — vertical on mobile, no need to scroll */
  .stats-ribbon__track { grid-template-columns: 1fr; gap: 30px; padding: 40px 24px; }
  .stats-ribbon__number { font-size: clamp(32px, 8vw, 42px); }

  /* About + audience + solutions — single column with proper image sizing */
  .about__grid, .audience__layout { grid-template-columns: 1fr; gap: 32px; }
  .about__img-wrapper { max-height: 320px; }
  .about__img { max-height: 320px; object-fit: cover; }

  /* Audience founder image — slightly larger on mobile, no head crop,
     section bg transparent so PNG cutout blends cleanly with page (no white box). */
  .audience { background: transparent !important; }
  .audience__image {
    flex: none !important;
    height: auto !important;
    min-height: 400px;
    width: 100% !important;
    overflow: visible !important;
    align-items: center !important;
    padding-top: 16px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
  .audience__image img {
    max-height: 460px !important;     /* slightly bigger (was 380) */
    height: auto !important;
    width: auto !important;
    max-width: 92% !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
    filter: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* Problems Fold 7 — remove rotation on mobile so image reads cleanly */
  .problems__layout { grid-template-columns: 1fr; gap: 28px; }
  .problems__tabs { gap: 8px; }
  .problems__tab { font-size: 14px; padding: 10px 14px; }
  .problems__img-wrap {
    width: 100%;
    height: 220px;
    transform: none;
    margin: 0 auto;
  }
  .problems__desc { margin-top: 18px; font-size: 15px; text-align: center; }

  /* Process steps — vertical stack, no overflow */
  .process__steps { flex-direction: column; align-items: center; gap: 28px; }
  .process__step { flex-direction: row; align-items: center; gap: 14px; }
  .process__line { display: none; }

  /* Testimonials — single column, scrollable belt */
  .testimonials__pair { grid-template-columns: 1fr; gap: 16px; }
  .tcard { padding: 24px; }

  /* CTA final — show full founder image (no head crop) on mobile */
  .cta-final__layout { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .cta-final__image {
    flex: none !important;
    height: auto !important;
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
    margin-top: 0 !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .cta-final__image img {
    width: auto !important;
    max-width: 80% !important;
    max-height: 380px !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  /* Footer — proper stack on mobile */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Navbar mobile menu — solid #0A2035 background, full-screen panel,
     z-index above everything so hero/page content cannot bleed through */
  .navbar__cta { display: none; }
  .navbar__menu {
    list-style: none;
    margin: 0;
    position: fixed !important;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100% !important;
    height: calc(100vh - 70px) !important;
    background: #0A2035 !important;
    background-color: #0A2035 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 32px 28px !important;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999 !important;
    overflow-y: auto;
  }
  .navbar__menu.active { transform: translateX(0); }
  .navbar__menu li {
    width: 100%;
    list-style: none;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .navbar__menu a {
    display: block;
    padding: 18px 4px;
    font-size: 17px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
  }
  .navbar__menu a:hover,
  .navbar__menu a:focus { color: #FFBF00 !important; }
  .navbar__toggle { display: flex; z-index: 10000; position: relative; }

  /* Hamburger → X animation when toggle is active */
  .navbar__toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: #FFBF00; }
  .navbar__toggle.active span:nth-child(2) { opacity: 0; }
  .navbar__toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: #FFBF00; }
  .navbar__toggle span { transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease; }
}

@media (max-width: 480px) {
  /* Extra-small phones: even tighter spacing */
  .section { padding: 48px 0; }
  .container { padding-left: 16px; padding-right: 16px; }
  .hero__title { font-size: clamp(26px, 9vw, 36px); }
  .section__title { font-size: clamp(24px, 7vw, 32px); }
  .stats-ribbon__number { font-size: 30px; }
  .stats-ribbon__desc { font-size: 13px; }
  .about__shapes { padding: 0; }
  .about__mini-stat { right: -8px; bottom: -8px; padding: 12px; }
  .clients__logo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .clients__ind-list { padding: 0; }
  .clients__ind-list li { font-size: 14px; padding: 10px 14px; }
  .solutions__grid { grid-template-columns: 1fr; gap: 18px; }
  .solution-card__img { height: 180px; }
}

/* =====================================================
   v1.4 — THANK YOU PAGE
   Hero-style confirmation with animated tick, meta cards
   and quick-link grid for onward navigation.
   ===================================================== */
.ty-hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #0A2035 0%, #0E2A48 100%);
  color: #fff;
  overflow: hidden;
}
.ty-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.ty-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.ty-hero__orb--a { width: 380px; height: 380px; background: #FFBF00; top: -120px; right: -80px; }
.ty-hero__orb--b { width: 320px; height: 320px; background: #2453A6; bottom: -100px; left: -80px; }
.ty-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.ty-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.ty-check {
  margin: 0 auto 32px;
  display: inline-block;
}
.ty-check__circle {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: ty-draw-circle 0.9s 0.1s ease-out forwards;
}
.ty-check__tick {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  animation: ty-draw-tick 0.5s 0.9s ease-out forwards;
}
@keyframes ty-draw-circle { to { stroke-dashoffset: 0; } }
@keyframes ty-draw-tick   { to { stroke-dashoffset: 0; } }

.ty-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFBF00;
  padding: 6px 16px;
  border: 1px solid rgba(255,191,0,0.4);
  border-radius: 999px;
  margin-bottom: 18px;
}
.ty-title {
  font-family: var(--font-display, 'Optima', Georgia, serif);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  margin: 0 0 18px 0;
  font-weight: 700;
}
.ty-lede {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 auto 44px;
}
.ty-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}
.ty-meta__item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 16px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.ty-meta__item i {
  color: #FFBF00;
  font-size: 20px;
  flex-shrink: 0;
}
.ty-meta__item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.ty-meta__item span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.ty-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.ty-cta .btn { padding: 14px 26px; font-size: 14px; }
.ty-cta .btn i { font-size: 13px; }

.ty-meanwhile {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.ty-meanwhile__label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.ty-meanwhile__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ty-quicklink {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  text-align: left;
  text-decoration: none;
  color: #fff;
  transition: all 0.25s ease;
}
.ty-quicklink:hover {
  background: rgba(255,191,0,0.08);
  border-color: rgba(255,191,0,0.40);
  transform: translateY(-2px);
}
.ty-quicklink i {
  color: #FFBF00;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.ty-quicklink span { display: block; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.75); }
.ty-quicklink strong { display: block; font-size: 14px; color: #fff; margin-bottom: 4px; font-weight: 700; }

@media (max-width: 768px) {
  .ty-hero { padding: 100px 0 60px; min-height: auto; }
  .ty-check svg { width: 90px; height: 90px; }
  .ty-meta,
  .ty-meanwhile__grid { grid-template-columns: 1fr; }
  .ty-meta__item, .ty-quicklink { text-align: left; }
  .ty-cta { flex-direction: column; align-items: stretch; }
  .ty-cta .btn { width: 100%; justify-content: center; }
}

/* =====================================================
   v1.5 MOBILE — extra fixes for user-reported issues:
   - Testimonials: one card at a time on mobile (carousel)
   - About chapters: hide vertical dashed line, image-first
   - Team cards: no overlap (remove -100px photo overhang)
   - CTA-final founder: tighter container, no head clip
   ===================================================== */

@media (max-width: 768px) {

  /* TESTIMONIALS — single full card at a time on mobile.
     Keep tcard's NATIVE block layout intact (don't break its absolute-positioned
     logo). Just show/hide individual cards. JS rotates every 3 seconds. */
  .testimonials__viewport {
    overflow: visible !important;
  }
  .testimonials__belt {
    display: block !important;
    transform: none !important;
    transition: none !important;
  }
  .testimonials__pair {
    display: block !important;
    grid-template-columns: none !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
  }
  /* Hide every tcard except the mobile-active one */
  .testimonials__pair .tcard {
    display: none !important;
  }
  .testimonials__pair .tcard.is-mobile-active {
    display: block !important;          /* tcard native display */
    width: 100% !important;
    margin: 30px 0 0 0 !important;       /* room for logo overhang at top */
    animation: tcard-fade 0.5s ease both;
  }
  @keyframes tcard-fade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .testimonials__controls { margin-top: 18px; }
  .testimonials__dots { gap: 6px; }
  .testimonials__dot { width: 8px; height: 8px; }

  /* ABOUT — eras section: hide dashed connector line, image always on top */
  .ab2-eras__list::before { display: none !important; }
  .ab2-era,
  .ab2-era--right {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .ab2-era--right .ab2-era__media,
  .ab2-era .ab2-era__media { order: -1 !important; }     /* image always FIRST */
  .ab2-era__media {
    min-height: 200px !important;
    height: 220px !important;
    border-radius: 16px;
    overflow: hidden;
  }
  .ab2-era__chip { left: 14px; top: 14px; }

  /* ABOUT — team cards: no photo overhang on mobile, no overlap */
  .ab2-team__row {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding-top: 0 !important;
  }
  .ab2-leader-card {
    padding: 28px 22px 28px !important;
  }
  .ab2-leader-card__photo,
  .ab2-leader-card--featured .ab2-leader-card__photo {
    width: 150px !important;
    height: 150px !important;
    margin-top: 0 !important;             /* no overhang → no overlap */
    margin-bottom: 18px !important;
  }

  /* CTA-FINAL founder image — slightly larger, full head visible, no crop */
  .cta-final { padding-bottom: 0 !important; }
  .cta-final__layout { padding-bottom: 0 !important; }
  .cta-final__image {
    max-height: none !important;
    min-height: 380px !important;
    margin: 28px 0 0 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  .cta-final__image img {
    width: auto !important;
    max-width: 82% !important;       /* slightly bigger (was 70%) */
    max-height: 420px !important;     /* slightly bigger (was 320) */
    object-position: center top !important;
    filter: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
}


/* =====================================================
   v1.5.4 — Mobile NAVBAR fix
   On mobile:
   - Navbar background is ALWAYS solid navy (not transparent).
     Fixes invisible hamburger on light page sections.
   - Hamburger toggle visible, larger touch target, high contrast.
   - Mobile menu opens instantly on click (no scroll required).
   ===================================================== */

@media (max-width: 768px) {
  .navbar {
    background: rgba(10,32,53,0.97) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    backdrop-filter: blur(20px) !important;
    padding: 12px 0 !important;
    box-shadow: 0 2px 14px rgba(0,0,0,0.18);
  }
  .navbar.scrolled {
    background: rgba(10,32,53,0.99) !important;
    padding: 10px 0 !important;
  }
  .navbar__inner {
    align-items: center;
    padding-left: 18px !important;
    padding-right: 14px !important;
  }
  .navbar__logo .logo-img {
    height: 44px !important;
  }

  /* Hamburger — always visible + bigger tap target */
  .navbar__toggle {
    display: flex !important;
    position: relative !important;
    z-index: 10001 !important;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06) !important;
    border-radius: 8px !important;
    padding: 0 !important;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .navbar__toggle span {
    display: block;
    width: 24px !important;
    height: 2.5px !important;
    background: #FFFFFF !important;
    border-radius: 2px;
    margin: 2.5px 0 !important;
  }
  /* Lock body when menu open (prevents background scroll) */
  body.nav-open {
    overflow: hidden !important;
    touch-action: none;
  }
}

/* v1.5.5 — Testimonials: logo should NOT cover the client's face on mobile.
   Reposition the client/company logo above the photo (smaller, top-center)
   instead of the desktop top-left absolute overhang. */
@media (max-width: 768px) {
  .testimonials__pair .tcard {
    padding: 24px 22px 28px !important;   /* remove the 80px top padding meant for logo overhang */
  }
  .testimonials__pair .tcard.is-mobile-active {
    margin: 12px 0 0 0 !important;
  }
  .testimonials__pair .tcard__logo {
    position: static !important;
    display: block !important;
    width: 92px !important;
    height: 56px !important;
    margin: 0 auto 16px !important;
    padding: 6px !important;
    border-radius: 10px !important;
    object-fit: contain;
  }
  .testimonials__pair .tcard__photo {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 14px !important;
  }
}
