/* ═══════════════════════════════════════════════════════════
   AQUATIC STRATEGY — Styles
   Brand: Solar Yellow #FFD32F · Deep Navy #003262
   Type:  Barlow Condensed (800/900) · Barlow (400–700)
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --yellow:     #FFD32F;
  --yellow-hover: #ffe566;
  --navy:       #003262;
  --navy-mid:   #00264d;
  --navy-deep:  #001830;
  --white:      #ffffff;
  --off-white:  #f5f4ef;
  --slate:      #2c3e50;
  --mid:        #7a8999;
  --border:     rgba(255,255,255,0.08);
  --border-light: rgba(0,50,98,0.08);
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--off-white);
  color: var(--slate);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}


/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav {
  position: relative;
  z-index: 30;
  background: var(--navy);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav.scrolled { background: var(--navy); }

.nav-inner {
  position: relative;
  z-index: 31;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo lockup */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img { height: 44px; width: auto; display: block; flex-shrink: 0; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--yellow-hover) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-hamburger span {
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


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

/* Background layers */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(0,50,98,0.8) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 60%, rgba(255,211,47,0.05) 0%, transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%), linear-gradient(to right, black 50%, transparent 85%);
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%), linear-gradient(to right, black 50%, transparent 85%);
  mask-composite: intersect;
}

/* Decorative background mark */
.hero-bg-mark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  opacity: 0.04;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 120px;
  max-width: 720px;
  margin-left: -180px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow-line {
  display: none;
}
.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-body {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}

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

/* Buttons (shared) */
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-dark {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* Hero stats strip */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 50, 98, 0.96) 0%, rgba(0, 24, 48, 0.98) 100%);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -18px 42px rgba(0, 12, 24, 0.18), inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-stats-inner {
  display: flex;
  align-items: stretch;
}

.hero-stat {
  flex: 1;
  padding: 16px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }

.hero-stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 64px;
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-bottom: 3px;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}


/* ═══════════════════════════════════════════════════════════
   SHARED SECTION ELEMENTS
═══════════════════════════════════════════════════════════ */
.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  border: 1.5px solid currentColor;
  padding: 4px calc(10px - 0.25em) 4px 10px;
  border-radius: 2px;
}
.section-label::before {
  display: none;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.title-underline {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 4px;
  text-decoration-thickness: 3px;
}


/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about {
  padding: 88px 0;
  background: var(--off-white);
}

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

.about-body p {
  font-size: 15px;
  line-height: 1.68;
  color: var(--slate);
  margin-bottom: 14px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: var(--navy); font-weight: 600; }

/* Navy visual panel — founder card */
.about-visual {
  background: var(--navy);
  border-radius: 12px;
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,211,47,0.06);
  pointer-events: none;
}

/* Identity block */
.about-visual-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.about-visual-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--navy), 0 0 0 6px var(--yellow);
  margin-bottom: 20px;
}

.about-visual-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
}

.about-visual-role {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* Divider */
.about-visual-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 28px 0;
}

/* Quote */
.about-visual-quote { margin-top: 0; }

.about-visual-quote-text {
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Discovery-call CTA variant */
.about-visual-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 18px;
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin-left: auto;
}

.about-visual-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}

.about-visual-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--white);
  margin: 0;
}

.about-visual-body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.about-visual-action { margin-top: 8px; }

.about-visual-placeholder {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.about-visual:has(.about-visual-placeholder) {
  background: transparent;
  padding: 0;
  border-radius: 0;
  min-height: 0;
  overflow: visible;
}

.about-visual:has(.about-visual-placeholder)::before {
  display: none;
}

.about-visual:has(.about-visual-cta) {
  align-items: flex-end;
  text-align: right;
  justify-content: center;
}


/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
.services {
  background: var(--navy);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.services .section-title { color: var(--white); margin-bottom: 0; }
.services .section-label { color: var(--yellow); }
.services .section-label::before { background: var(--yellow); }

.about .section-label,
.tools-strip .section-label,
.difference .section-label,
.content-section .section-label { color: var(--navy); }

.about-visual .section-label { color: var(--yellow); }

.content-section--navy .section-label { color: var(--yellow); }

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 32px;
  flex-wrap: wrap;
}

.services-intro {
  max-width: 380px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  background: rgba(0, 24, 48, 0.6);
  padding: 32px 28px;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: rgba(0, 38, 77, 0.9); }
.service-card:hover .service-number { color: var(--yellow); }

.service-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.25s;
  display: block;
}

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 19px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.1;
}

.service-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 14px;
}

.service-tag {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(255,211,47,0.3);
  border-radius: 3px;
}

/* Flexible / special card variant */
.service-card--flex {
  background: rgba(0, 24, 48, 0.6);
}


/* ═══════════════════════════════════════════════════════════
   DIFFERENTIATORS
═══════════════════════════════════════════════════════════ */
.difference {
  padding: 88px 0;
  background: var(--off-white);
}

.difference-header {
  margin-bottom: 48px;
}

.difference-header .section-title { margin-bottom: 0; }

.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.difference-point {
  display: flex;
  gap: 20px;
  padding: 36px;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}
.difference-point:nth-child(2n) {
  border-right: none;
}
.difference-point:nth-last-child(-n+2) {
  border-bottom: none;
}

.difference-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.difference-icon svg { width: 20px; height: 20px; }

.difference-point-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.difference-point-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

/* Testimonial panel */
.difference-panel {
  background: var(--navy);
  border-radius: 12px;
  padding: 48px 44px;
  position: sticky;
  top: 88px;
}

.testimonial-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 72px;
  color: var(--yellow);
  line-height: 0.8;
  margin-bottom: 12px;
  display: block;
}

.testimonial-text {
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-attr-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 2px;
}

.testimonial-attr-role {
  font-size: 12px;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 28px 0;
}


/* ═══════════════════════════════════════════════════════════
   CLIENT LOGO STRIP
═══════════════════════════════════════════════════════════ */
.logo-strip {
  background: #fff;
  padding: 64px 0;
}

.logo-strip-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  align-items: center;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  min-height: 72px;
}

.logo-item img {
  max-height: 44px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}


/* ═══════════════════════════════════════════════════════════
   CLIENTS / SECTORS (legacy pills — replaced by logo strip)
═══════════════════════════════════════════════════════════ */
.clients {
  background: var(--navy-deep);
  padding: 80px 0;
}

.clients-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-bottom: 36px;
}

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

.client-pill {
  background: rgba(255,255,255,0.04);
  padding: 20px 24px;
  border-radius: 4px;
  text-align: center;
}

.client-pill-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}


/* ═══════════════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--yellow);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,50,98,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,50,98,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to top, black 40%, transparent 100%);
  mask-image: linear-gradient(to top, black 40%, transparent 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4vw, 52px);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.01em;
}

.cta-sub {
  font-size: 16px;
  color: rgba(0,50,98,0.55);
  margin-top: 14px;
  line-height: 1.6;
  max-width: 480px;
}

.cta-highlight {
  text-decoration: underline;
  text-decoration-color: var(--navy);
  text-underline-offset: 3px;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  padding: 40px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-brand svg { width: 36px; height: 36px; }
.footer-brand-img { height: 38px; width: auto; display: block; }

.footer-wordmark span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  display: block;
  line-height: 0.9;
}
.footer-wordmark span:first-child { color: var(--yellow); }
.footer-wordmark span:last-child  { color: var(--white); }

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--yellow); }

.footer-email {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
  flex-shrink: 0;
}
.footer-email:hover { color: var(--yellow); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
}

.footer-built {
  text-decoration: none;
  color: rgba(255,255,255,0.18);
  font-size: 12px;
  transition: color 0.2s;
}
.footer-built:hover { color: rgba(255,255,255,0.4); }
.footer-built-inner {
  border-bottom: 0.5px solid var(--yellow);
  padding-bottom: 2px;
}


/* ═══════════════════════════════════════════════════════════
   PROJECTS
═══════════════════════════════════════════════════════════ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-card {
  background: var(--white);
  border: 1px solid rgba(0,50,98,0.08);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.project-card:hover {
  border-color: rgba(0,50,98,0.15);
  box-shadow: 0 8px 32px rgba(0,50,98,0.06);
}

.project-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.project-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: #FFD32F;
  padding: 5px 12px;
  border-radius: 100px;
}

.project-scope {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 50, 98, 0.6);
  background: transparent;
  border: 1px solid rgba(0, 50, 98, 0.2);
  padding: 5px 12px;
  border-radius: 100px;
}

.project-scope--current {
  color: #1a9e4a;
  background: transparent;
  border-color: #1a9e4a;
}

.project-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.2;
}

.project-client {
  margin-bottom: 16px;
}

.project-client-wrapper {
  position: relative;
  display: inline-block;
}

.project-client-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(0, 50, 98, 0.5);
  background: rgba(0, 50, 98, 0.06);
  padding: 4px 10px;
  border-radius: 4px;
}

.project-redacted-bar {
  display: inline-block;
  height: 14px;
  vertical-align: middle;
  background: repeating-linear-gradient(
    97deg,
    #111 0px,
    #0a0a0a 2px,
    #1c1c1c 4px,
    #0d0d0d 6px
  );
  border-radius: 2px;
  transform: rotate(-0.6deg);
  user-select: none;
}

.project-redacted-note {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) rotate(-4deg);
  transform-origin: left center;
  font-family: 'Caveat', cursive;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 50, 98, 0.55);
  white-space: nowrap;
  pointer-events: none;
}

.project-summary {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 20px;
}

.project-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.project-highlights li {
  font-size: 13px;
  color: var(--slate);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.project-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.project-services {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,50,98,0.06);
}

.project-service-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid rgba(0,50,98,0.12);
  padding: 4px 12px;
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
}
.project-service-link:hover {
  background: rgba(0,50,98,0.04);
  border-color: rgba(0,50,98,0.2);
}


/* ═══════════════════════════════════════════════════════════
   TOOLS STRIP
═══════════════════════════════════════════════════════════ */
.tools-strip {
  padding: 96px 0;
  background: var(--off-white);
}

.tools-header {
  text-align: center;
  margin-bottom: 56px;
}

.tools-intro {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 540px;
  margin: 16px auto 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tools-discount-note {
  margin: 18px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0,50,98,0.62);
}

.tool-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0,50,98,0.08);
  border-radius: 16px;
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.tool-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(0,50,98,0.06);
  transform: translateY(-3px);
}

.tool-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
}

.tool-tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,50,98,0.35);
  margin-top: 4px;
  display: block;
}

.tool-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  margin-top: 16px;
  flex: 1;
}

.tool-link-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,50,98,0.06);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.tool-card:hover .tool-link-arrow {
  color: var(--yellow);
}

/* Homepage-specific product branding for tools cards */
#tools .tools-grid--homepage .tool-card {
  padding: 36px 24px 12px;
  overflow: hidden;
  border-width: 1px;
}

#tools .tools-grid--homepage .tool-brand-head {
  margin: -36px -24px 18px;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

#tools .tools-grid--homepage .tool-tagline {
  letter-spacing: 0.1em;
}

#tools .tools-grid--homepage .tool-name {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
}

#tools .tools-grid--homepage .tool-logo {
  max-width: 220px;
  max-height: 74px;
  width: auto;
  height: auto;
  object-fit: contain;
}

#tools .tools-grid--homepage .tool-card--curious .tool-logo {
  max-width: 168px;
  max-height: 58px;
}

#tools .tools-grid--homepage .tool-card--imaginex .tool-logo {
  max-width: 170px;
  max-height: 58px;
}

#tools .tools-grid--homepage .tool-card--registrarpro {
  border-color: rgba(27,58,105,0.22);
}
#tools .tools-grid--homepage .tool-card--registrarpro .tool-brand-head {
  background: linear-gradient(135deg, #1B3A69 0%, #26528f 100%);
}

#tools .tools-grid--homepage .tool-card--curious {
  border-color: rgba(233,89,0,0.26);
}
#tools .tools-grid--homepage .tool-card--curious .tool-brand-head {
  background: linear-gradient(135deg, #E95900 0%, #ff7f2f 100%);
}

#tools .tools-grid--homepage .tool-card--imaginex {
  border-color: rgba(255,49,49,0.28);
}
#tools .tools-grid--homepage .tool-card--imaginex .tool-brand-head {
  background: linear-gradient(135deg, #ff3131 0%, #d82020 100%);
}

#tools .tools-grid--homepage .tool-card--imaginex .tool-logo {
  filter: drop-shadow(0 1px 1px rgba(255,255,255,0.3));
}

#tools .tools-grid--homepage .tool-card-hint {
  margin-top: 12px;
  padding-top: 6px;
  border-top: 1px solid rgba(0,50,98,0.08);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0,50,98,0.58);
  text-align: center;
}

#tools .tools-grid--homepage .tool-card--registrarpro .tool-card-hint {
  color: #1B3A69;
}
#tools .tools-grid--homepage .tool-card--curious .tool-card-hint {
  color: #E95900;
}
#tools .tools-grid--homepage .tool-card--imaginex .tool-card-hint {
  color: #FF3131;
}

#tools .tools-grid--homepage .tool-card--registrarpro:hover .tool-card-hint {
  color: #152d52;
}
#tools .tools-grid--homepage .tool-card--curious:hover .tool-card-hint {
  color: #d04e00;
}
#tools .tools-grid--homepage .tool-card--imaginex:hover .tool-card-hint {
  color: #e62020;
}


/* ═══════════════════════════════════════════════════════════
   PAGE HEADER (inner pages)
═══════════════════════════════════════════════════════════ */
.page-header {
  background: var(--navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(0,50,98,0.6) 0%, rgba(0,50,98,0) 60%),
    radial-gradient(ellipse 40% 60% at 10% 70%, rgba(255,211,47,0.04) 0%, rgba(255,211,47,0) 55%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.page-header-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 20px;
}
.page-header-title em {
  font-style: normal;
  color: var(--yellow);
}

.page-header-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 560px;
}


/* ═══════════════════════════════════════════════════════════
   CONTENT SECTIONS (inner pages)
═══════════════════════════════════════════════════════════ */
.content-section {
  padding: 80px 0;
  background: var(--off-white);
}

.content-section--navy {
  background: var(--navy);
}
.content-section--navy p,
.content-section--navy .approach-text,
.content-section--navy .engagement-text {
  color: rgba(255,255,255,0.55);
}
.content-section--navy strong {
  color: var(--white);
}

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.content-section p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.content-section p:last-child { margin-bottom: 0; }
.content-section strong { color: var(--navy); font-weight: 600; }

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


/* ── Founder intro (about page) ─────────────── */
.founder-intro {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 72px;
  align-items: start;
}

.founder-photo {
  display: flex;
  justify-content: center;
}

.founder-photo img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 7px #FFD32F;
}

.founder-letter .section-title {
  margin-top: 12px;
}

.founder-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,50,98,0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-signature-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.founder-signature-title {
  font-size: 13px;
  color: rgba(0,50,98,0.5);
  letter-spacing: 0.04em;
}


/* ── Approach grid (about page) ──────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.approach-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: rgba(255,211,47,0.2);
  display: block;
  margin-bottom: 8px;
}

.approach-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.approach-text {
  font-size: 13px;
  line-height: 1.6;
}


/* ── Engagement grid (services page) ─────────── */
.engagement-grid {
  display: grid;
  gap: 28px;
}

.engagement-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.engagement-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}


/* ── Deliverables list (service detail pages) ── */
.deliverables-list {
  list-style: none;
  padding: 0;
}

.deliverables-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.5;
}
.deliverables-list li:last-child { border-bottom: none; }
.deliverables-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}


/* ── Result stats (service detail pages) ─────── */
.result-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}

.result-stat {
  padding: 28px;
  background: var(--navy);
  border-radius: 8px;
}

.result-stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--yellow);
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.result-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}


/* ── Sectors grid (work page) ────────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.sector-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.sector-text {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}


/* ── Testimonial grid (work page) ────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-card {
  background: rgba(0, 24, 48, 0.6);
  border-radius: 12px;
  padding: 44px;
}


/* ── Contact layout ──────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.contact-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid rgba(0,50,98,0.15);
  border-radius: 4px;
  background: var(--white);
  color: var(--slate);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
}

.form-group textarea { resize: vertical; }

.contact-form .btn-primary {
  border: none;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
}

.contact-info-block {
  margin-bottom: 32px;
}
.contact-info-block:last-child { margin-bottom: 0; }

.contact-info-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.contact-info-link {
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
  transition: color 0.2s;
}
.contact-info-link:hover { color: var(--yellow); }

.contact-info-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}


/* ── Text link button (used on home about section) ── */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 20px;
  transition: color 0.2s;
}
.btn-text:hover { color: var(--yellow); }
.btn-text svg { transition: transform 0.2s; }
.btn-text:hover svg { transform: translateX(4px); }


/* ── Service card link variant ───────────────── */
.service-card--link {
  display: flex;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* ── Services grid full width variant ────────── */
.services-grid--full { margin-top: 0; }


/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero content staggered entrance */
.hero-eyebrow,
.hero h1,
.hero-body,
.hero-actions { animation: fadeUp 0.7s ease both; }
.hero h1        { animation-delay: 0.1s; }
.hero-body      { animation-delay: 0.2s; }
.hero-actions   { animation-delay: 0.3s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.reveal-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-children.revealed > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.reveal-children.revealed > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
.reveal-children.revealed > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.16s; }
.reveal-children.revealed > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }
.reveal-children.revealed > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.32s; }
.reveal-children.revealed > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }
.reveal-children.revealed > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.48s; }
.reveal-children.revealed > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 0.56s; }
.reveal-children.revealed > *:nth-child(9) { opacity: 1; transform: none; transition-delay: 0.64s; }
.reveal-children.revealed > *:nth-child(10) { opacity: 1; transform: none; transition-delay: 0.72s; }
.reveal-children.revealed > *:nth-child(11) { opacity: 1; transform: none; transition-delay: 0.80s; }
.reveal-children.revealed > *:nth-child(12) { opacity: 1; transform: none; transition-delay: 0.88s; }
.reveal-children.revealed > *:nth-child(13) { opacity: 1; transform: none; transition-delay: 0.96s; }
.reveal-children.revealed > *:nth-child(14) { opacity: 1; transform: none; transition-delay: 1.04s; }
.reveal-children.revealed > *:nth-child(15) { opacity: 1; transform: none; transition-delay: 1.12s; }
.reveal-children.revealed > *:nth-child(16) { opacity: 1; transform: none; transition-delay: 1.20s; }
.reveal-children.revealed > *:nth-child(17) { opacity: 1; transform: none; transition-delay: 1.28s; }


/* ═══════════════════════════════════════════════════════════
   OUTCOMES / BENEFITS
═══════════════════════════════════════════════════════════ */
.outcomes {
  position: relative;
  padding: 88px 0;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.outcomes-bg-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  background-image: url('../images/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.025;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

.outcomes .container { position: relative; z-index: 2; }

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

.section-label--light {
  color: var(--yellow) !important;
}
.section-label--light::before {
  background: var(--yellow) !important;
}

.section-title--light {
  color: var(--white);
  margin-bottom: 24px;
}
.section-title--light em {
  color: var(--yellow);
  font-style: italic;
}

.outcomes-intro {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0 auto;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 64px;
}

.outcome-card {
  background: rgba(0, 24, 48, 0.6);
  padding: 32px 28px;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}

.outcome-card:hover {
  background: rgba(0, 38, 77, 0.9);
}
.outcome-card:hover .outcome-icon {
  color: var(--yellow);
}

.outcome-icon {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  color: rgba(255,255,255,0.06);
  display: block;
  margin-bottom: 14px;
  transition: color 0.25s;
}
.outcome-icon svg { width: 40px; height: 40px; display: block; }

.outcome-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 19px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.1;
}

.outcome-text {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 14px;
}

.outcome-tag {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}

.outcomes-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 36px 40px;
  border: 1px solid rgba(255,211,47,0.22);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,211,47,0.06) 0%, rgba(255,211,47,0.02) 100%);
}

.outcomes-footer-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.3;
  max-width: 640px;
}
.outcomes-footer-text em {
  color: var(--yellow);
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  body.nav-open { overflow: hidden; }

  .container { padding: 0 32px; }

  /* Nav */
  .nav-hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    z-index: 29;
    background: var(--navy);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 22px 48px rgba(0, 24, 48, 0.36);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    display: block;
    padding: 14px 32px;
    font-size: 14px;
  }
  .nav-cta {
    margin: 8px 32px 4px;
    text-align: center;
    display: block !important;
  }

  /* Hero */
  .hero-content { padding: 72px 0 130px; margin-left: 0; }
  .hero-bg-mark { width: 360px; height: 360px; right: -100px; }

  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat {
    flex: 1 1 40%;
    padding: 16px 24px;
  }
  .hero-stat:nth-child(2) { border-right: none; }

  /* About */
  .about { padding: 80px 0; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Services */
  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* Outcomes */
  .outcomes { padding: 80px 0; }
  .outcomes-header { margin-bottom: 48px; }
  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  .outcomes-footer {
    padding: 28px 28px;
    gap: 20px;
  }
  .outcomes-footer-text { font-size: 19px; }

  /* Difference */
  .difference { padding: 80px 0; }
  .difference-header { margin-bottom: 40px; }
  .difference-grid {
    grid-template-columns: 1fr;
  }
  .difference-point { border-right: none; }
  .difference-point:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-light); }
  .difference-point:last-child { border-bottom: none; }

  /* Clients */
  .logo-grid { grid-template-columns: repeat(3, 1fr); }

  /* Page header */
  .page-header { padding: 64px 0 56px; }

  /* Content sections */
  .content-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .approach-grid { grid-template-columns: 1fr; }
  .founder-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-photo { position: static; }
  .founder-photo img { width: 180px; height: 180px; }
  .projects-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* CTA */
  .cta-section { padding: 72px 0; }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Footer */
  .footer-inner { gap: 24px; }

  /* Tools */
  .tools-grid { grid-template-columns: 1fr; }
  .tools-strip { padding: 72px 0; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .container { padding: 0 20px; }

  .hero::after { display: none; }

  .hero {
    display: block;
    align-items: flex-start;
    min-height: auto;
  }
  .hero-content { padding: 32px 0 32px; margin-left: 0; }
  .hero h1 { font-size: clamp(38px, 13vw, 48px); }
  .hero-body { font-size: 15px; }
  .hero-bg-mark { display: none; }
  .hero-stats { position: static; }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: auto;
  }
  .hero-actions .btn-primary {
    padding: 13px 20px;
    flex: 0 0 auto;
  }
  .hero-actions .btn-ghost {
    font-size: 13px;
    letter-spacing: 0.04em;
    flex: 0 1 auto;
  }

  /* Page header */
  .page-header { padding: 48px 0 40px; }
  .page-header-title { font-size: clamp(32px, 8vw, 40px); }
  .section-title { font-size: clamp(28px, 10vw, 36px); }

  .hero-stats-inner {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .hero-stat {
    flex: 1 1 25%;
    min-width: 0;
    border-right: 1px solid var(--border);
    border-bottom: none;
    padding: 12px 10px;
  }
  .hero-stat:nth-child(2) { border-right: 1px solid var(--border); }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-number { font-size: 30px; }
  .hero-stat-label {
    display: block;
    font-size: 9px;
    letter-spacing: 0.08em;
    line-height: 1.12;
    margin-top: 3px;
  }

  .services-header { align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }

  /* Outcomes mobile */
  .outcomes { padding: 64px 0; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 16px; }
  .outcome-card { padding: 28px 24px 26px; }
  .outcomes-footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 24px;
  }
  .outcomes-footer-text { font-size: 17px; }

  .logo-grid { grid-template-columns: repeat(2, 1fr); }

  /* Projects */
  .project-highlights { grid-template-columns: 1fr; }
  .project-card { padding: 32px 24px; }

  /* Tools */
  .tools-grid { grid-template-columns: 1fr; }
  .tool-card { padding: 28px 24px; }
  .tools-discount-note {
    margin-top: 14px;
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  #tools .tools-grid--homepage .tool-card {
    padding: 28px 20px 10px;
  }

  #tools .tools-grid--homepage .tool-brand-head {
    margin: -28px -20px 14px;
    min-height: 96px;
    padding: 18px 16px;
  }
  #tools .tools-grid--homepage .tool-logo {
    max-width: 180px;
    max-height: 62px;
  }
  #tools .tools-grid--homepage .tool-card--curious .tool-logo {
    max-width: 136px;
    max-height: 46px;
  }
  #tools .tools-grid--homepage .tool-card--imaginex .tool-logo {
    max-width: 138px;
    max-height: 48px;
  }
  #tools .tools-grid--homepage .tool-card-hint {
    font-size: 9px;
    margin-top: 9px;
    padding-top: 5px;
  }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 16px; }

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

  .about-visual { padding: 36px 28px; min-height: auto; }
  .about-visual-photo { width: 120px; height: 120px; }
  .about-visual-quote-text { font-size: 15px; }

  .difference-panel { padding: 36px 28px; }

  .service-card { padding: 32px 28px; }
  .cta-title { font-size: clamp(30px, 11vw, 40px); }
}
