/*
 * COMMERXY — styles.css
 * Consumer Goods eCommerce Consulting & Operations
 *
 * Brand: Navy #0C1E3C | Teal #2A9D8F | Deep #07101F
 * Font:  Plus Jakarta Sans (400 500 600 700 800)
 * Max-width: 1200px
 *
 * Table of Contents
 * -----------------
 *  1.  Design Tokens
 *  2.  Reset & Base
 *  3.  Typography
 *  4.  Layout & Container
 *  5.  Navigation
 *  6.  Buttons
 *  7.  Hero (Full-viewport dark)
 *  8.  Page Hero (Inner pages)
 *  9.  Section Utilities
 * 10.  Section Headers
 * 11.  Problem Cards
 * 12.  Framework Cards (Assess / Build / Scale)
 * 13.  Metrics Grid
 * 14.  Platform Strip
 * 15.  Service Cards
 * 16.  Differentiation Block
 * 17.  Process / Phase Detail (How We Work)
 * 18.  About Page Components
 * 19.  FAQ Accordion
 * 20.  Contact & Forms
 * 21.  CTA Block
 * 22.  Blog Components
 * 23.  Footer
 * 24.  Scroll Reveal Animations
 * 25.  Utilities
 * 26.  Responsive Overrides
 */


/* ============================================================
   1. Design Tokens
   ============================================================ */

:root {
  /* Brand palette — derived from Commerxy logo */
  --navy:         #0C1E3C;               /* Primary brand */
  --navy-mid:     #122D55;               /* Hover/active */
  --navy-deep:    #07101F;               /* Hero / footer bg */
  --teal:         #2A9D8F;               /* Accent — use sparingly */
  --teal-dark:    #228879;               /* Teal hover */
  --teal-light:   #3DB5A7;               /* Teal on dark backgrounds */
  --teal-dim:     rgba(42,157,143,0.10); /* Teal tint backgrounds */

  /* Neutrals */
  --white:          #FFFFFF;
  --bg:             #F7F9FC;             /* Page background */
  --surface:        #EEF2F7;             /* Card / section surface */
  --border:         #E2E8F0;
  --border-strong:  #CBD5E0;

  /* Text */
  --text-primary:       #0C1E3C;
  --text-secondary:     #4A5568;
  --text-light:         #718096;
  --text-inverse:       #FFFFFF;
  --text-inverse-dim:   rgba(255,255,255,0.70);
  --text-inverse-faint: rgba(255,255,255,0.45);

  /* Typography */
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  1.5rem;    /* 24px */
  --text-3xl:  1.875rem;  /* 30px */
  --text-4xl:  2.25rem;   /* 36px */
  --text-5xl:  3rem;      /* 48px */
  --text-6xl:  3.75rem;   /* 60px */
  --text-7xl:  4.5rem;    /* 72px */

  /* Spacing (8px base) */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;
  --sp-32:  8rem;

  /* Layout */
  --max-w:        1200px;
  --max-w-text:   720px;
  --max-w-narrow: 560px;
  --nav-h:        80px;

  /* Shape */
  --radius:    6px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.09), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.13), 0 4px 8px rgba(0,0,0,0.06);

  /* Transitions */
  --transition:      200ms ease;
  --transition-slow: 350ms ease;
}


/* ============================================================
   2. Reset & Base
   ============================================================ */

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

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

body {
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}


/* ============================================================
   3. Typography
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  line-height: 1.12;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-6xl); font-weight: 800; line-height: 1.06; }
h2 { font-size: var(--text-4xl); font-weight: 700; }
h3 { font-size: var(--text-2xl); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: var(--text-xl);  font-weight: 600; letter-spacing: 0; }
h5 { font-size: var(--text-base); font-weight: 600; letter-spacing: 0; }

p {
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 68ch;
}

p + p { margin-top: var(--sp-4); }

strong { font-weight: 700; color: var(--text-primary); }

/* Section eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}

/* Eyebrow on dark backgrounds */
.eyebrow--light {
  color: var(--teal-light);
}

.eyebrow--light::before {
  background: var(--teal-light);
}

/* Override paragraph max-width */
.p-full  { max-width: none; }
.p-wide  { max-width: 80ch; }
.p-narrow { max-width: 50ch; }


/* ============================================================
   4. Layout & Container
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.container--text   { max-width: var(--max-w-text); }
.container--narrow { max-width: var(--max-w-narrow); }

.section-pad    { padding-block: var(--sp-24); }
.section-pad--sm { padding-block: var(--sp-16); }
.section-pad--lg { padding-block: var(--sp-32); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.two-col--60-40 {
  grid-template-columns: 1.5fr 1fr;
}

.two-col--40-60 {
  grid-template-columns: 1fr 1.5fr;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}


/* ============================================================
   5. Navigation
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition:
    background var(--transition-slow),
    border-color var(--transition-slow),
    box-shadow var(--transition-slow);
}

/* Transparent state — dark hero pages, not yet scrolled */
.nav:not(.is-scrolled) {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Solid state — scrolled OR non-hero inner pages */
.nav.is-scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 16px rgba(0,0,0,0.07);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-8);
}

/* Logo */
.nav__logo {
  display: block;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.nav__logo img {
  height: 36px;
  width: auto;
  transition: opacity var(--transition);
}

/* Light logo (white) — shown on transparent/dark nav */
.nav__logo-light { display: block; }
.nav__logo-dark  { display: none; }

.nav.is-scrolled .nav__logo-light { display: none; }
.nav.is-scrolled .nav__logo-dark  { display: block; }

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  position: relative;
  padding-block: var(--sp-2);
  transition: color var(--transition);
  color: rgba(255,255,255,0.80);
  white-space: nowrap;
}

.nav:not(.is-scrolled) .nav__link { color: rgba(255,255,255,0.80); }
.nav:not(.is-scrolled) .nav__link:hover { color: var(--white); }

.nav.is-scrolled .nav__link { color: var(--text-secondary); }
.nav.is-scrolled .nav__link:hover { color: var(--navy); }

/* Underline indicator */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav.is-scrolled .nav__link.is-active { color: var(--navy); }
.nav:not(.is-scrolled) .nav__link.is-active { color: var(--white); }

/* Nav CTA */
.nav__actions { flex-shrink: 0; }

/* Hamburger — mobile only */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--sp-2);
  cursor: pointer;
  flex-shrink: 0;
}

.nav__toggle-bar {
  display: block;
  height: 1.5px;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
  transform-origin: center;
}

.nav:not(.is-scrolled) .nav__toggle-bar { background: var(--white); }
.nav.is-scrolled      .nav__toggle-bar { background: var(--navy); }

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: var(--sp-8) var(--sp-6);
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: var(--sp-1);
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile-link {
  display: block;
  padding: var(--sp-4) 0;
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav__mobile-link:hover,
.nav__mobile-link.is-active {
  color: var(--teal);
}

.nav__mobile-cta {
  margin-top: var(--sp-6);
}

.nav__mobile-cta .btn {
  width: 100%;
  justify-content: center;
}

/* Skip link — accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  padding: var(--sp-2) var(--sp-4);
  background: var(--navy);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 2000;
  transition: top var(--transition);
}

.skip-link:focus {
  top: var(--sp-4);
}


/* ============================================================
   6. Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.btn:active { transform: translateY(1px); }

/* Primary — teal filled */
.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: 0 4px 16px rgba(42,157,143,0.35);
}

/* Ghost — white outline on dark backgrounds */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.80);
}

/* Outline — navy outline on light backgrounds */
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

/* Navy filled */
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  box-shadow: 0 4px 16px rgba(12,30,60,0.25);
}

/* Size variants */
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
}

.btn--lg {
  padding: 0.9rem 2.25rem;
  font-size: var(--text-base);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}


/* ============================================================
   7. Hero — Full-viewport dark section
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  /*
   * EDIT: Drop your hero image at img/hero-bg.jpg and it activates here.
   * Recommended: dark warehouse/fulfillment center aerial shot, 1920px+ wide.
   * The overlay below darkens it automatically.
   */
  background-color: var(--navy-deep);
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
}

/* Dark overlay — adjust last rgba value to control darkness (0.90 = darker) */
/* EDIT: Increase alpha (e.g. 0.95) if your image is too bright */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,16,31,0.94) 0%,
    rgba(12,30,60,0.90) 55%,
    rgba(7,16,31,0.96) 100%
  );
  z-index: 0;
}

/* Subtle dot-grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(42,157,143,0.06) 0.5px,
    transparent 0.5px
  );
  background-size: 32px 32px;
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--nav-h) + var(--sp-20)) var(--sp-6) var(--sp-16);
}

.hero__eyebrow {
  margin-bottom: var(--sp-6);
}

.hero__headline {
  font-size: var(--text-7xl);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 16ch;
  margin-bottom: var(--sp-6);
}

.hero__headline em {
  font-style: italic;
  color: var(--teal-light);
}

.hero__sub {
  font-size: var(--text-xl);
  line-height: 1.65;
  color: var(--text-inverse-dim);
  max-width: 54ch;
  margin-bottom: var(--sp-10);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.hero__note {
  font-size: var(--text-sm);
  color: var(--text-inverse-faint);
  letter-spacing: 0.01em;
  max-width: none;
  margin-bottom: var(--sp-16);
}

/* Stat bar — anchored at bottom of hero */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: var(--sp-10);
  margin-top: var(--sp-4);
}

.hero__stat {
  padding: 0 var(--sp-6) 0 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hero__stat:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: var(--sp-6);
}

.hero__stat:not(:first-child):not(:last-child) {
  padding-inline: var(--sp-6);
}

.hero__stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.hero__stat-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  max-width: 20ch;
}


/* ============================================================
   8. Page Hero — Inner pages (dark, smaller)
   ============================================================ */

.page-hero {
  position: relative;
  background-color: var(--navy-deep);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,16,31,0.97) 0%, rgba(12,30,60,0.94) 100%);
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(42,157,143,0.05) 0.5px, transparent 0.5px);
  background-size: 32px 32px;
  z-index: 0;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--nav-h) + var(--sp-16)) var(--sp-6) var(--sp-16);
}

.page-hero__eyebrow {
  margin-bottom: var(--sp-5);
}

.page-hero__headline {
  font-size: var(--text-5xl);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 20ch;
  margin-bottom: var(--sp-5);
}

.page-hero__sub {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--text-inverse-dim);
  max-width: 54ch;
}


/* ============================================================
   9. Section Utilities
   ============================================================ */

.section--white   { background: var(--white); }
.section--bg      { background: var(--bg); }
.section--surface { background: var(--surface); }
.section--navy    { background: var(--navy); }
.section--dark    { background: var(--navy-deep); }

/* Light-text overrides for dark sections */
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4,
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 {
  color: var(--white);
}

.section--navy p,
.section--dark p {
  color: var(--text-inverse-dim);
}


/* ============================================================
   10. Section Headers
   ============================================================ */

.section-header {
  margin-bottom: var(--sp-12);
}

.section-header--center {
  text-align: center;
}

.section-header--center p,
.section-header--center .eyebrow {
  margin-inline: auto;
  justify-content: center;
}

.section-header .eyebrow {
  margin-bottom: var(--sp-4);
}

.section-header__title {
  margin-bottom: var(--sp-4);
}

.section-header__sub {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--text-secondary);
}

.section--navy .section-header__sub,
.section--dark .section-header__sub {
  color: var(--text-inverse-dim);
}


/* ============================================================
   11. Problem Cards
   ============================================================ */

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: var(--sp-6);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.problem-card__text {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
  max-width: none;
  font-style: italic;
}

.problems-note {
  text-align: center;
  margin-top: var(--sp-8);
  font-size: var(--text-sm);
  color: var(--text-light);
  font-style: italic;
  max-width: none;
}


/* ============================================================
   12. Framework Cards — Assess / Build / Scale
   ============================================================ */

.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.framework-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--teal);
  padding: var(--sp-8);
  transition: background var(--transition), border-color var(--transition);
}

.framework-card:hover {
  background: rgba(255,255,255,0.07);
}

.framework-card__step {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: var(--sp-4);
}

.framework-card__name {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--sp-4);
}

.framework-card__desc {
  font-size: var(--text-base);
  color: var(--text-inverse-dim);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
  max-width: none;
}

.framework-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.framework-card__list li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.framework-card__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
  margin-top: 7px;
}

.framework-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--teal-light);
  text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}

.framework-card__link:hover {
  gap: var(--sp-3);
  color: var(--white);
}

.framework-card__link svg {
  width: 14px;
  height: 14px;
}


/* ============================================================
   13. Metrics Grid
   ============================================================ */

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.metric-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.metric-card__number {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--sp-3);
}

.metric-card__number span {
  color: var(--teal);
}

.metric-card__label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.45;
  max-width: none;
  font-weight: 500;
}


/* ============================================================
   14. Platform Strip
   ============================================================ */

.platform-strip {
  padding-top: var(--sp-12);
  border-top: 1px solid var(--border);
  margin-top: var(--sp-12);
}

.platform-strip__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: var(--sp-6);
  max-width: none;
}

.platform-strip__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2) var(--sp-3);
}

.platform-item {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-2) var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.platform-item:hover {
  color: var(--text-secondary);
  border-color: var(--border-strong);
  background: var(--white);
}


/* ============================================================
   15. Service Cards
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

/* Teal top-border reveal on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

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

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

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--teal-dim);
  border-radius: var(--radius);
  margin-bottom: var(--sp-5);
  color: var(--teal);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card__number {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-3);
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.01em;
}

.service-card__body {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
  max-width: none;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 100px;
  background: var(--surface);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}


/* ============================================================
   16. Differentiation Block
   ============================================================ */

.diff-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.diff-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  transition: background var(--transition);
}

.diff-list__item:hover {
  background: rgba(255,255,255,0.07);
}

.diff-list__item::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: var(--teal-light);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.diff-callout {
  margin-top: var(--sp-10);
  padding: var(--sp-8);
  border: 1px solid rgba(42,157,143,0.25);
  border-radius: var(--radius-lg);
  background: rgba(42,157,143,0.05);
}

.diff-callout p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  max-width: none;
}

.diff-callout strong {
  color: var(--teal-light);
}


/* ============================================================
   17. Process / Phase Detail — How We Work page
   ============================================================ */

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

.phase {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-16);
  padding: var(--sp-16) 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.phase:first-child {
  border-top: none;
}

.phase__sidebar {}

.phase__step {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-3);
}

.phase__name {
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--sp-4);
}

.phase__sidebar-note {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: 1.6;
  max-width: 24ch;
}

.phase__body {}

.phase__headline {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}

.phase__description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

.phase__deliverables-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--sp-4);
}

.phase__deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.phase__deliverable {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

.phase__deliverable::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background: var(--teal);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.phase__cta-note {
  padding: var(--sp-5) var(--sp-6);
  background: var(--surface);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: none;
}

.phase__cta-note strong {
  color: var(--navy);
}


/* ============================================================
   18. About Page Components
   ============================================================ */

.about-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-16);
  align-items: start;
}

.about-photo__placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  border: 2px dashed var(--border-strong);
  color: var(--text-light);
  font-size: var(--text-sm);
  text-align: center;
  padding: var(--sp-6);
}

/* EDIT: Replace .about-photo__placeholder with an <img> once you have a headshot */
.about-photo__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.about-credentials {
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.credential-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.credential-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.about-bio h3 {
  margin-bottom: var(--sp-4);
}

.about-bio p {
  max-width: none;
}

.about-bio p + p {
  margin-top: var(--sp-5);
}

.about-bio p + h3 {
  margin-top: var(--sp-10);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.value-card {
  padding: var(--sp-7) var(--sp-6);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.value-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-2);
}

.value-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.01em;
}

.value-card__body {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  max-width: none;
  line-height: 1.65;
}

/* LinkedIn callout */
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), color var(--transition);
  margin-top: var(--sp-6);
}

.linkedin-btn:hover {
  border-color: #0077B5;
  color: #0077B5;
  box-shadow: 0 0 0 3px rgba(0,119,181,0.12);
}

/* Career timeline */
.career-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.career-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--border);
}

.career-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-5);
  padding: var(--sp-6) 0;
  position: relative;
}

.career-item + .career-item {
  border-top: 1px solid var(--border);
}

.career-item__marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  letter-spacing: -0.03em;
}

.career-item__content {}

.career-item__dates {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-1);
}

.career-item__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-1);
  letter-spacing: -0.01em;
}

.career-item__company {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--sp-3);
}

.career-item__body {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: none;
}


/* ============================================================
   19. FAQ Accordion
   ============================================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  font-family: var(--font);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover,
.faq-question.is-open {
  color: var(--navy);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  color: var(--teal);
}

.faq-question.is-open .faq-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
}

.faq-answer {
  display: none;
  padding-bottom: var(--sp-6);
}

.faq-answer.is-open {
  display: block;
}

.faq-answer p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 68ch;
}

.faq-answer p + p {
  margin-top: var(--sp-3);
}


/* ============================================================
   20. Contact & Forms
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--sp-16);
  align-items: start;
}

/* Calendly embed container */
.calendly-embed {
  width: 100%;
  min-height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* EDIT: Remove border/placeholder styles after embedding Calendly */
  border: 2px dashed var(--border-strong);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-10);
  text-align: center;
  color: var(--text-light);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.contact-detail__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--sp-1);
}

.contact-detail__value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
}

.contact-form__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}

.contact-form__sub {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--sp-7);
  max-width: none;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.form-label span {
  color: var(--teal);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: var(--text-sm);
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,157,143,0.12);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Custom select arrow */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-submit {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}

.form-submit .btn {
  width: 100%;
}

.form-note {
  font-size: var(--text-xs);
  color: var(--text-light);
  text-align: center;
  max-width: none;
}

.form-status {
  display: none;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  line-height: 1.5;
  max-width: none;
}

.form-status.is-success {
  display: block;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}

.form-status.is-error {
  display: block;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}


/* ============================================================
   21. CTA Block
   ============================================================ */

.cta-block {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.cta-block .eyebrow {
  justify-content: center;
  margin-bottom: var(--sp-5);
}

.cta-block__headline {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: var(--sp-5);
}

.cta-block__sub {
  font-size: var(--text-lg);
  color: var(--text-inverse-dim);
  line-height: 1.65;
  margin-bottom: var(--sp-10);
  max-width: 52ch;
  margin-inline: auto;
}

.cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
}

.cta-block__note {
  margin-top: var(--sp-5);
  font-size: var(--text-sm);
  color: var(--text-inverse-faint);
  max-width: none;
}


/* ============================================================
   22. Blog Components
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}

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

.blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: var(--text-sm);
}

.blog-card__body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__category {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-3);
}

.blog-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-3);
  flex: 1;
}

.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: none;
  margin-bottom: var(--sp-4);
}

.blog-card__meta {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.blog-card__meta::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--border-strong);
}

/* Coming soon blog badge */
.blog-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--teal-dim);
  border: 1px solid rgba(42,157,143,0.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: var(--sp-3);
}


/* ============================================================
   23. Footer
   ============================================================ */

.footer {
  background: var(--navy-deep);
  color: var(--text-inverse-dim);
  padding-block: var(--sp-16) var(--sp-8);
}

.footer__top {
  display: grid;
  grid-template-columns: 300px 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  display: block;
  line-height: 0;
  margin-bottom: var(--sp-4);
}

.footer__logo img {
  height: 32px;
  width: auto;
}

.footer__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 28ch;
  margin-top: var(--sp-4);
}

.footer__tagline {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: var(--sp-2);
}

.footer__nav-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--sp-5);
}

.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__nav-link:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.30);
  max-width: none;
}

.footer__legal {
  display: flex;
  gap: var(--sp-5);
}

.footer__legal-link {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.30);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__legal-link:hover {
  color: rgba(255,255,255,0.65);
}


/* ============================================================
   24. Scroll Reveal Animations
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* Stagger children */
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.50s ease, transform 0.50s ease;
}

[data-reveal-group].is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.00s; }
[data-reveal-group].is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
[data-reveal-group].is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.16s; }
[data-reveal-group].is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }
[data-reveal-group].is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.32s; }
[data-reveal-group].is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }


/* ============================================================
   25. Utilities
   ============================================================ */

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-teal    { color: var(--teal); }
.text-navy    { color: var(--navy); }
.text-light   { color: var(--text-light); }
.text-sm      { font-size: var(--text-sm); }
.text-lg      { font-size: var(--text-lg); }
.font-600     { font-weight: 600; }
.font-700     { font-weight: 700; }
.font-800     { font-weight: 800; }

.mt-4  { margin-top: var(--sp-4);  }
.mt-6  { margin-top: var(--sp-6);  }
.mt-8  { margin-top: var(--sp-8);  }
.mt-10 { margin-top: var(--sp-10); }
.mt-12 { margin-top: var(--sp-12); }
.mb-4  { margin-bottom: var(--sp-4);  }
.mb-6  { margin-bottom: var(--sp-6);  }
.mb-8  { margin-bottom: var(--sp-8);  }
.mb-12 { margin-bottom: var(--sp-12); }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: var(--sp-8);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}


/* ============================================================
   26. Responsive Overrides
   ============================================================ */

/* Wide screens */
@media (min-width: 1400px) {
  .container { padding-inline: var(--sp-8); }
}

/* Below 1200px */
@media (max-width: 1200px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top  { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer__top > :first-child { grid-column: 1 / -1; }
}

/* Tablet — below 1024px */
@media (max-width: 1024px) {
  :root {
    --text-7xl: 3.5rem;
    --text-6xl: 3rem;
    --text-5xl: 2.5rem;
  }

  .three-col      { grid-template-columns: 1fr 1fr; }
  .two-col        { grid-template-columns: 1fr; gap: var(--sp-10); }
  .two-col--60-40 { grid-template-columns: 1fr; }
  .two-col--40-60 { grid-template-columns: 1fr; }

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

  .phase {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

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

  .about-layout { grid-template-columns: 1fr; }
  .about-photo  { max-width: 280px; }

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

  .contact-layout { grid-template-columns: 1fr; }

  .diff-layout { grid-template-columns: 1fr; }

  .career-timeline::before { display: none; }
}

/* Tablet — below 768px */
@media (max-width: 768px) {
  :root {
    --text-7xl: 2.75rem;
    --text-5xl: 2.25rem;
    --text-4xl: 2rem;
    --sp-24: 4.5rem;
    --sp-32: 6rem;
  }

  .nav__links,
  .nav__actions { display: none; }

  .nav__toggle { display: flex; }

  .hero__headline { font-size: var(--text-5xl); }

  .hero__stats { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .hero__stat  { padding: 0; border: none; }
  .hero__stat:last-child { padding: 0; }

  .problems-grid  { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .metrics-grid   { grid-template-columns: 1fr 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }

  .three-col { grid-template-columns: 1fr; }

  .page-hero__headline { font-size: var(--text-4xl); }

  .cta-block__headline { font-size: var(--text-4xl); }

  .form-row { grid-template-columns: 1fr; }
}

/* Mobile — below 480px */
@media (max-width: 480px) {
  :root {
    --text-7xl: 2.25rem;
    --text-5xl: 2rem;
    --text-4xl: 1.875rem;
  }

  .hero__headline { font-size: var(--text-5xl); }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn { justify-content: center; }

  .hero__stats { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }

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

  .cta-block__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-block__actions .btn { justify-content: center; }

  .footer__top    { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal  { justify-content: center; }

  .contact-form { padding: var(--sp-6); }
}
