/* ===================================
   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;
}

.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; }
}
