/*
Theme Name: Ekko Media
Author: Ekko Media
Description: Custom theme for Ekko Media, a full-service advertising agency. Strategy. Action. Results.
Version: 1.0
Text Domain: ekko-media
*/

/* =============================================
   CUSTOM PROPERTIES
============================================= */
:root {
  --black: #000000;
  --white: #FFFFFF;
  --off-white: #F7F4EF;
  --ocean-blue: #3189B8;
  --ocean-dark: #22608A;
  --sand: #E8D5B0;
  --coastal-grey: #C9CDD4;
  --mid-grey: #6B6B6B;
  --light-grey: #E8E8E8;
  --dark-grey: #111111;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --font-body: 'Manrope', sans-serif;
  --nav-h: 100px;
  --max-w: 1260px;
  --pad-x: clamp(20px, 4vw, 60px);
  --sec-y: clamp(64px, 8vw, 120px);
}

/* =============================================
   RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { cursor: pointer; }

/* =============================================
   LAYOUT
============================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* =============================================
   TYPOGRAPHY
============================================= */
.d1 {
  font-family: var(--font-display);
  font-size: clamp(68px, 11vw, 148px);
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
.d2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.93;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.d3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 52px);
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.serif-it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.5;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}
.tag::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
}
.btn svg { flex-shrink: 0; }
.btn-blue { background: var(--ocean-blue); color: var(--white); }
.btn-blue:hover { background: var(--ocean-dark); transform: translateY(-1px); }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: #222; }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--off-white); }
.btn-white-solid { background: var(--white); color: var(--black); }
.btn-white-solid:hover { background: var(--off-white); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); padding: 13.5px 26.5px; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); padding: 13.5px 26.5px; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-outline-w { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); padding: 13.5px 26.5px; display:inline-flex;align-items:center;gap:10px;font-family:var(--font-body);font-size:11.5px;letter-spacing:.15em;text-transform:uppercase;font-weight:700;text-decoration:none; }
.btn-outline-w:hover { border-color: var(--white); }

/* =============================================
   NAVIGATION
============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease, border-color 0.3s ease;
}
/* Transparent nav for hero pages */
body.hero-nav .nav {
  background: transparent;
  border-bottom-color: transparent;
}
body.hero-nav .nav.scrolled {
  background: var(--black);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 88px; width: auto; display:block; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.12em;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: var(--ocean-blue);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 1px;
}
.nav-links .nav-cta:hover { background: var(--ocean-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #0a0a0a;
  padding: 28px var(--pad-x);
  z-index: 99;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.mobile-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.mobile-nav .mnav-cta {
  display: inline-block;
  background: var(--ocean-blue);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 1px;
}

/* =============================================
   MAIN FOOTER
============================================= */
.footer {
  background: #060606;
  padding: clamp(52px, 6vw, 80px) 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-logo { height: 30px; width: auto; margin-bottom: 18px; }
.footer-brand-text {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 240px; }
.footer-contact { margin-top: 18px; }
.footer-contact a {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--white); }
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bot p { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--white); }

/* Simple footer (secondary pages) */
.footer-simple {
  background: #060606;
  padding: clamp(28px, 3vw, 44px) 0;
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
}
.foot-inner p { font-size: 12px; color: rgba(255,255,255,0.2); }
.foot-links { display: flex; gap: 20px; }
.foot-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.foot-links a:hover { color: var(--white); }

/* =============================================
   REVEAL ANIMATIONS
============================================= */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.rv.vis { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }
.rv-d4 { transition-delay: 0.4s; }

/* =============================================
   HOMEPAGE: HERO
============================================= */
.hero-home {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-layer-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-layer-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 10% 60%, rgba(49,137,184,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 20%, rgba(49,137,184,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 72px;
  width: 100%;
}
.hero-eyebrow { color: var(--ocean-blue); margin-bottom: 28px; }
.hero-h1 { color: var(--white); }
.hero-h1 .blue { color: var(--ocean-blue); }
.hero-sub {
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 28px 0 44px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-divider {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 80px;
  padding-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 66px);
  color: var(--white);
  line-height: 1;
}
.hero-stat-num .accent { color: var(--ocean-blue); }
.hero-stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* =============================================
   TICKER
============================================= */
.ticker {
  background: var(--ocean-blue);
  overflow: hidden;
  padding: 11px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tick 28s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--white);
  white-space: nowrap;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  flex-shrink: 0;
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   HOMEPAGE: ABOUT INTRO
============================================= */
.about-intro {
  background: var(--off-white);
  padding: var(--sec-y) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-left .tag { color: var(--ocean-blue); margin-bottom: 18px; }
.about-left h2 { margin-bottom: 24px; }
.about-left p { color: var(--mid-grey); font-size: 15.5px; line-height: 1.75; margin-bottom: 14px; }
.about-left .cta-row { margin-top: 32px; }
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.acard { padding: 28px 24px; position: relative; }
.acard-1 { background: var(--off-white); }
.acard-2 { background: var(--sand); }
.acard-3 { background: var(--ocean-blue); color: var(--white); }
.acard-4 { background: var(--black); color: var(--white); }
.acard-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 10px;
}
.acard-1 .acard-num { color: var(--ocean-blue); }
.acard-2 .acard-num { color: rgba(0,0,0,0.38); }
.acard-3 .acard-num, .acard-4 .acard-num { color: rgba(255,255,255,0.45); }
.acard-body { font-size: 13px; line-height: 1.65; }
.acard-1 .acard-body { color: var(--mid-grey); }
.acard-2 .acard-body { color: rgba(0,0,0,0.68); }

/* =============================================
   HOMEPAGE: SERVICES
============================================= */
.services {
  background: var(--black);
  padding: var(--sec-y) 0;
}
.services .tag { color: var(--ocean-blue); margin-bottom: 16px; }
.services h2 { color: var(--white); margin-bottom: clamp(40px, 5vw, 72px); max-width: 680px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.svc-card {
  background: #0f0f0f;
  padding: clamp(24px, 3vw, 44px);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: background 0.25s;
}
.svc-card:hover { background: #161616; }
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--ocean-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s ease;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-bg-num {
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(49,137,184,0.18);
  position: absolute;
  top: 12px; right: 16px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.svc-icon {
  width: 38px; height: 38px;
  background: rgba(49,137,184,0.12);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.svc-icon svg { width: 18px; height: 18px; stroke: var(--ocean-blue); fill: none; stroke-width: 1.6; }
.svc-title {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 28px);
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.svc-desc { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.72; margin-bottom: 20px; }
.svc-more {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean-blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* =============================================
   HOMEPAGE: WHY EKKO
============================================= */
.why {
  background: var(--white);
  padding: var(--sec-y) 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.why-left .tag { color: var(--mid-grey); margin-bottom: 16px; }
.why-left h2 { margin-bottom: 10px; }
.why-left .serif-it { color: var(--mid-grey); display: block; margin-bottom: 36px; }
.pillar {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-grey);
}
.pillar:first-of-type { border-top: 1px solid var(--light-grey); }
.pillar-n { font-family: var(--font-display); font-size: 28px; color: var(--ocean-blue); line-height: 1; }
.pillar-t { font-weight: 700; font-size: 14.5px; margin-bottom: 5px; }
.pillar-b { font-size: 13.5px; color: var(--mid-grey); line-height: 1.65; }
.why-right {
  background: var(--black);
  padding: clamp(32px, 4vw, 52px);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.why-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 2vw, 23px);
  color: var(--white);
  line-height: 1.52;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.why-quote span { color: var(--ocean-blue); }
.kpi-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 700;
  margin-bottom: 14px;
}
.kpi-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.kpi-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
}
.kpi-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ocean-blue);
  flex-shrink: 0;
}
.why-not {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

/* =============================================
   HOMEPAGE: CLIENTS
============================================= */
.clients {
  background: #0a0a0a;
  padding: clamp(52px, 6vw, 80px) 0;
}
.clients-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}
.clients-hdr .tag { color: rgba(255,255,255,0.45); }
.clients-hdr p { font-size: 13px; color: rgba(255,255,255,0.4); max-width: 320px; text-align: right; }
.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 52px;
}
.client-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}
.client-logo-wrap img {
  max-height: 90px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: filter 0.3s, opacity 0.3s;
}
.client-logo-wrap img:hover { filter: brightness(0) invert(1); opacity: 1; }
.client-logo-wrap a { display: flex; align-items: center; justify-content: center; }

/* =============================================
   HOMEPAGE: AUDIT TEASER
============================================= */
.audit-teaser {
  background: #080808;
  padding: var(--sec-y) 0;
  position: relative;
  overflow: hidden;
}
.audit-teaser::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,137,184,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.audit-teaser-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.audit-teaser-stats {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}
.at-stat { text-align: center; }
.at-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  line-height: 1;
}
.at-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* =============================================
   HOMEPAGE: BOOKING SECTION
============================================= */
.booking-section {
  background: var(--off-white);
  padding: var(--sec-y) 0;
}
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.booking-left .tag { color: var(--mid-grey); margin-bottom: 16px; }
.booking-card {
  background: var(--black);
  padding: clamp(28px, 3.5vw, 44px);
}
.booking-card-icon {
  width: 48px; height: 48px;
  background: rgba(49,137,184,0.12);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.booking-card-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.booking-card-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.72;
}

/* =============================================
   ABOUT PAGE: HERO
============================================= */
.hero-about {
  background: var(--black);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 10% 65%, rgba(49,137,184,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-about-content { position: relative; z-index: 2; max-width: 840px; }

/* =============================================
   ABOUT PAGE: STORY
============================================= */
.story {
  background: var(--off-white);
  padding: var(--sec-y) 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.story-stat { padding: clamp(20px, 2.5vw, 30px); }
.story-stat-a { background: var(--white); }
.story-stat-b { background: var(--sand); }
.story-stat-c { background: var(--ocean-blue); color: var(--white); }
.story-stat-d { background: var(--black); color: var(--white); }
.story-stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  margin-bottom: 6px;
}
.story-stat-a .story-stat-num { color: var(--ocean-blue); }
.story-stat-b .story-stat-num { color: rgba(0,0,0,0.4); }
.story-stat-c .story-stat-num, .story-stat-d .story-stat-num { color: rgba(255,255,255,0.4); }
.story-stat-lbl { font-size: 13px; line-height: 1.55; }
.story-stat-a .story-stat-lbl, .story-stat-b .story-stat-lbl { color: var(--mid-grey); }
.story-stat-c .story-stat-lbl, .story-stat-d .story-stat-lbl { color: rgba(255,255,255,0.65); }

/* =============================================
   ABOUT PAGE: TEAM
============================================= */
.team {
  background: var(--black);
  padding: var(--sec-y) 0;
}
.team .tag { color: var(--ocean-blue); margin-bottom: 16px; }
.team h2 { color: var(--white); margin-top: 16px; margin-bottom: clamp(36px, 4vw, 56px); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.team-card { background: #0f0f0f; padding: clamp(24px, 3vw, 40px); }
.team-initials {
  width: 56px; height: 56px;
  background: var(--ocean-blue);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.team-name { font-family: var(--font-display); font-size: clamp(18px, 2vw, 26px); color: var(--white); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 4px; }
.team-role { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ocean-blue); font-weight: 700; margin-bottom: 16px; }
.team-bio { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.72; }

/* =============================================
   ABOUT PAGE: VALUES
============================================= */
.values {
  background: var(--off-white);
  padding: var(--sec-y) 0;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.values-right { background: var(--black); padding: clamp(32px, 4vw, 52px); }
.values-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 25px);
  color: var(--white);
  line-height: 1.52;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.values-quote span { color: var(--ocean-blue); }
.metric-title { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 700; margin-bottom: 14px; }
.metric-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.metric-list li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.65); }
.metric-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--ocean-blue); flex-shrink: 0; }
.not-metric { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }

/* =============================================
   ABOUT PAGE: PMQ SECTION
============================================= */
.pmq-about {
  background: var(--white);
  padding: var(--sec-y) 0;
}
.pmq-about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.pmq-about-right { background: var(--black); padding: clamp(28px, 3.5vw, 44px); }
.pmq-detail-title { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.pmq-detail-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pmq-detail-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.55; }
.pmq-detail-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--ocean-blue); flex-shrink: 0; margin-top: 6px; }

/* =============================================
   ABOUT PAGE: CTA
============================================= */
.about-cta { background: var(--ocean-blue); padding: clamp(52px, 6vw, 80px) 0; }
.about-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.about-cta .tag { color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.about-cta h2 { color: var(--white); margin-bottom: 10px; }
.about-cta p { color: rgba(255,255,255,0.75); max-width: 520px; font-size: 15px; }

/* =============================================
   AUDIT PAGE
============================================= */
.audit-page-wrap {
  background: #080808;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.audit-page { flex: 1; padding: calc(var(--nav-h) + 64px) 0 80px; }
.audit-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.audit-intro .tag { color: var(--ocean-blue); margin-bottom: 16px; justify-content: center; }
.audit-intro h1 { color: var(--white); margin-bottom: 20px; }
.audit-intro p { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.75; }
.trust-bar { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 28px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; }
.trust-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--ocean-blue); }
.quiz-box {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.quiz-prog { height: 4px; background: var(--light-grey); }
.quiz-prog-bar { height: 100%; background: var(--ocean-blue); transition: width 0.4s ease; }
.quiz-inner { padding: clamp(28px, 4vw, 52px); }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeUp 0.3s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz-step-lbl { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--ocean-blue); margin-bottom: 12px; }
.quiz-q { font-family: var(--font-display); font-size: clamp(20px, 2.8vw, 34px); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.08; color: var(--black); margin-bottom: 24px; }
.quiz-opts { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border: 1.5px solid var(--light-grey);
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.18s;
  text-align: left;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  width: 100%;
  line-height: 1.45;
}
.quiz-opt:hover { border-color: var(--ocean-blue); background: rgba(49,137,184,0.04); }
.quiz-opt.sel { border-color: var(--ocean-blue); background: rgba(49,137,184,0.07); }
.opt-radio { width: 18px; height: 18px; border: 1.5px solid var(--coastal-grey); border-radius: 50%; flex-shrink: 0; transition: all 0.18s; }
.quiz-opt.sel .opt-radio { background: var(--ocean-blue); border-color: var(--ocean-blue); }
.quiz-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--light-grey); }
.qbtn-back { background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 11px; color: var(--mid-grey); letter-spacing: 0.12em; text-transform: uppercase; display: flex; align-items: center; gap: 5px; font-weight: 600; }
.qbtn-back:hover { color: var(--black); }
.qbtn-next { background: var(--ocean-blue); border: none; cursor: pointer; font-family: var(--font-body); font-size: 11px; color: var(--white); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; padding: 13px 26px; border-radius: 1px; transition: background 0.2s; }
.qbtn-next:hover:not(:disabled) { background: var(--ocean-dark); }
.qbtn-next:disabled { background: var(--coastal-grey); cursor: not-allowed; }
.quiz-result { display: none; animation: fadeUp 0.4s ease; }
.quiz-result.show { display: block; }
.result-top { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.result-score { font-family: var(--font-display); font-size: 72px; line-height: 1; }
.result-score-of { font-size: 12px; color: var(--mid-grey); letter-spacing: 0.1em; text-transform: uppercase; }
.result-meter { flex: 1; height: 6px; background: var(--light-grey); border-radius: 3px; overflow: hidden; }
.result-meter-fill { height: 100%; border-radius: 3px; transition: width 1.2s ease; }
.result-lbl { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.result-h { font-family: var(--font-display); font-size: clamp(22px, 3vw, 36px); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.05; margin-bottom: 10px; }
.result-msg { font-size: 14px; color: var(--mid-grey); line-height: 1.7; margin-bottom: 28px; }
.audit-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--mid-grey); }
.fg input, .fg textarea, .fg select {
  padding: 12px 16px;
  border: 1.5px solid var(--light-grey);
  border-radius: 1px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.fg input:focus, .fg textarea:focus { border-color: var(--ocean-blue); }
.form-submit {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border-radius: 1px;
  transition: background 0.2s;
  width: 100%;
}
.form-submit:hover { background: var(--ocean-blue); }
.form-note { font-size: 11px; color: var(--mid-grey); text-align: center; }
.quiz-success { display: none; text-align: center; padding: 40px 0; }
.quiz-success.show { display: block; animation: fadeUp 0.4s ease; }
.success-check { width: 60px; height: 60px; background: rgba(49,137,184,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.audit-footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; }
.audit-footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.audit-footer-inner p { font-size: 12px; color: rgba(255,255,255,0.2); }
.audit-footer-inner a { font-size: 11px; color: rgba(255,255,255,0.3); text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; transition: color 0.2s; }
.audit-footer-inner a:hover { color: var(--white); }

/* =============================================
   SERVICE PAGES
============================================= */
.hero-service {
  min-height: 85vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-service .hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  width: 100%;
}
.hero-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.hero-back:hover { color: var(--white); }
.detail { background: var(--off-white); padding: var(--sec-y) 0; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.detail-left .tag { color: var(--mid-grey); margin-bottom: 16px; }
.detail-left h2 { margin-bottom: 16px; }
.detail-left .serif-it { color: var(--mid-grey); display: block; margin-bottom: 28px; }
.detail-left p { color: var(--mid-grey); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.points { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.points li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--mid-grey); line-height: 1.6; }
.points li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--ocean-blue); flex-shrink: 0; margin-top: 7px; }
.process { background: var(--black); padding: var(--sec-y) 0; }
.process .tag { color: var(--ocean-blue); margin-bottom: 16px; }
.process h2 { color: var(--white); margin-bottom: clamp(36px, 4vw, 56px); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.step { background: #0f0f0f; padding: clamp(24px, 3vw, 36px); position: relative; }
.step-n { font-family: var(--font-display); font-size: 52px; color: rgba(255,255,255,0.08); position: absolute; top: 16px; right: 20px; line-height: 1; }
.step-icon { width: 36px; height: 36px; background: rgba(49,137,184,0.12); border-radius: 3px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step-icon svg { width: 17px; height: 17px; stroke: var(--ocean-blue); fill: none; stroke-width: 1.6; }
.step-title { font-family: var(--font-display); font-size: clamp(18px, 2vw, 24px); color: var(--white); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 10px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.72; }
.stats { background: var(--ocean-blue); padding: clamp(44px, 5vw, 64px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,0.15); }
.stat { background: transparent; padding: clamp(20px, 2.5vw, 32px); text-align: center; }
.stat-n { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 60px); color: var(--white); line-height: 1; }
.stat-l { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 6px; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.4; }
.cta-block { background: var(--off-white); padding: var(--sec-y) 0; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.cta-left .tag { color: var(--mid-grey); margin-bottom: 16px; }
.cta-left h2 { margin-bottom: 16px; }
.cta-left p { color: var(--mid-grey); font-size: 15px; line-height: 1.75; }
.cta-right { background: var(--black); padding: clamp(28px, 3.5vw, 44px); }
.cf { display: flex; flex-direction: column; gap: 11px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.cf .fg label { color: rgba(255,255,255,0.4); }
.cf .fg input, .cf .fg textarea {
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.cf .fg input::placeholder, .cf .fg textarea::placeholder { color: rgba(255,255,255,0.25); }
.cf .fg input:focus, .cf .fg textarea:focus { border-color: var(--ocean-blue); }
.cf-submit {
  background: var(--ocean-blue);
  color: var(--white);
  border: none;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border-radius: 1px;
  transition: background 0.2s;
  width: 100%;
}
.cf-submit:hover { background: var(--ocean-dark); }
.cf-note { font-size: 11px; color: rgba(255,255,255,0.3); text-align: center; }

/* =============================================
   PMQ PAGE
============================================= */
.hero-pmq {
  min-height: 90vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-pmq .hero-h1 .blue { color: var(--ocean-blue); }
.hero-pmq .hero-h1 .sand { color: var(--sand); }
.hero-sub { color: rgba(255,255,255,0.55); max-width: 520px; margin: 24px 0 36px; }
.hero-contact {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hc-item { display: flex; flex-direction: column; gap: 4px; }
.hc-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 600; }
.hc-val { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 600; text-decoration: none; transition: color 0.2s; }
.hc-val:hover { color: var(--ocean-blue); }
.market { background: #0c0c0c; padding: var(--sec-y) 0; }
.market-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,6vw,96px); align-items: start; }
.market-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.mstat { background: rgba(255,255,255,0.04); padding: clamp(20px,2.5vw,32px); }
.mstat-num { font-family: var(--font-display); font-size: clamp(28px,3.5vw,48px); color: var(--ocean-blue); line-height: 1; margin-bottom: 8px; }
.mstat-lbl { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.55; }
.svc-sec { background: var(--off-white); padding: var(--sec-y) 0; }
.svc-sec .tag { color: var(--mid-grey); margin-bottom: 16px; }
.svc-sec h2 { margin-bottom: 16px; }
.svc-sec .serif-it { color: var(--mid-grey); display: block; margin-bottom: clamp(36px,4vw,56px); }
.svc-sec .svc-grid { background: rgba(0,0,0,0.06); }
.svc-sec .svc-card { background: #f5f2ed; }
.svc-sec .svc-card:hover { background: #eeebe4; }
.svc-sec .svc-title { color: var(--black); }
.svc-sec .svc-desc { color: rgba(0,0,0,0.55); }
.dev-sec { background: var(--white); padding: var(--sec-y) 0; }
.dev-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(48px,6vw,96px); align-items: start; }
.pmq-badge { display: inline-flex; align-items: center; background: var(--ocean-blue); color: var(--white); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
.dev-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 28px; }
.dev-card { background: var(--off-white); padding: clamp(20px,2.5vw,28px); }
.dev-card-icon { font-family: var(--font-display); font-size: 32px; color: var(--ocean-blue); margin-bottom: 8px; }
.dev-card-t { font-weight: 700; font-size: 13.5px; margin-bottom: 4px; }
.dev-card-d { font-size: 12.5px; color: var(--mid-grey); line-height: 1.55; }
.pkg-sec { background: var(--black); padding: var(--sec-y) 0; }
.pkg-sec .tag { color: var(--ocean-blue); margin-bottom: 16px; }
.pkg-sec h2 { color: var(--white); margin-bottom: 8px; }
.pkg-sec .serif-it { color: rgba(255,255,255,0.5); display: block; margin-bottom: clamp(36px,4vw,56px); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.pkg { background: #0f0f0f; padding: clamp(24px,3vw,40px); }
.pkg-name { font-family: var(--font-display); font-size: clamp(22px,2.5vw,32px); color: var(--white); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 4px; }
.pkg-price { font-family: var(--font-display); font-size: clamp(36px,4.5vw,56px); color: var(--ocean-blue); line-height: 1; margin: 12px 0; }
.pkg-price-note { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pkg-items { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.pkg-items li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; }
.pkg-items li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--ocean-blue); flex-shrink: 0; margin-top: 6px; }
.pkg-featured { background: #141414; outline: 1px solid var(--ocean-blue); outline-offset: -1px; }
.pkg-featured-badge { display: inline-block; background: var(--ocean-blue); color: var(--white); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; }
.pkg-notice { margin-top: 32px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.25); }
.pkg-notice a { color: rgba(255,255,255,0.4); }
.audit-sec { background: #080808; padding: var(--sec-y) 0; }
.audit-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(40px,6vw,80px); align-items: start; }
.audit-lhs .tag { color: var(--ocean-blue); margin-bottom: 18px; }
.audit-lhs h2 { color: var(--white); margin-bottom: 18px; }
.audit-lhs .serif-it { color: rgba(255,255,255,0.5); display: block; margin-bottom: 36px; }
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.trust-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.45); }
.trust-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--ocean-blue); flex-shrink: 0; }
.contact-sec { background: var(--off-white); padding: var(--sec-y) 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,80px); align-items: center; }
.contact-deets { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.contact-deets a { font-size: 14px; color: var(--black); text-decoration: none; display: flex; align-items: center; gap: 8px; font-weight: 600; transition: color 0.2s; }
.contact-deets a:hover { color: var(--ocean-blue); }
.back-strip { background: var(--black); padding: clamp(36px,4vw,56px) 0; text-align: center; }
.back-strip p { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }

/* =============================================
   BOOK A CALL PAGE
============================================= */
.hero-book {
  background: var(--black);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.book-form-section { background: var(--off-white); padding: var(--sec-y) 0; }
.book-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.book-left .tag { color: var(--mid-grey); margin-bottom: 16px; }
.book-form-box { background: var(--black); padding: clamp(28px,3.5vw,44px); }
.book-form-title { font-family: var(--font-display); font-size: 20px; color: var(--white); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.book-form .fg label { color: rgba(255,255,255,0.4); }
.book-form .fg input, .book-form .fg textarea, .book-form .fg select {
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.book-form .fg input::placeholder,
.book-form .fg textarea::placeholder { color: rgba(255,255,255,0.25); }
.book-form .fg input:focus, .book-form .fg textarea:focus { border-color: var(--ocean-blue); }
.book-form textarea { min-height: 100px; resize: vertical; }

/* =============================================
   COMING SOON PAGES
============================================= */
.coming-soon-page {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.coming-soon-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) var(--pad-x) 80px;
}
.coming-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ocean-blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.coming-tag::before, .coming-tag::after { content: ''; display: block; width: 22px; height: 1px; background: var(--ocean-blue); }

/* =============================================
   FORM SHARED ELEMENTS
============================================= */
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; animation: fadeUp 0.4s ease; }
.success-icon {
  width: 44px; height: 44px;
  background: rgba(49,137,184,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; gap: 2px; }
  .market-inner { grid-template-columns: 1fr; }
  .dev-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-right { position: static; }
  .audit-teaser-inner { grid-template-columns: 1fr; }
  .audit-teaser-stats { justify-content: center; }
  .booking-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bot { flex-direction: column; text-align: center; }
  .story-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .pmq-about-inner { grid-template-columns: 1fr; }
  .about-cta-inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cf-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-divider { grid-template-columns: 1fr; gap: 22px; margin-top: 52px; padding-top: 32px; }
  .audit-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .hero-contact { flex-direction: column; gap: 20px; }
  .market-stats { grid-template-columns: 1fr 1fr; }
  .dev-cards { grid-template-columns: 1fr; }
  .book-inner { grid-template-columns: 1fr; }
  .clients-hdr p { text-align: left; }
  .story-right { display: grid !important; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .about-cards { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .market-stats { grid-template-columns: 1fr 1fr; }
  .trust-bar { flex-direction: column; align-items: center; gap: 12px; }
}

/* =============================================
   KNOWLEDGE HUB / CASE STUDY CONTENT GRIDS
============================================= */
.kh-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.cs-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.cs-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 16px;
}
.cs-stats-bar {
  display: grid;
  gap: 2px;
  background: rgba(255,255,255,0.15);
}

/* =============================================
   MOBILE OVERRIDES (max-width: 768px)
============================================= */
@media (max-width: 768px) {
  /* Audit intro: left-align on mobile to match rest of site */
  .audit-intro {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .audit-intro .tag { justify-content: flex-start; }
  .trust-bar { justify-content: flex-start; flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Content grids: single column on mobile */
  .kh-article-grid { grid-template-columns: 1fr; }
  .cs-listing-grid { grid-template-columns: 1fr; }
  .cs-results-grid { grid-template-columns: 1fr; }
  .cs-stats-bar { grid-template-columns: repeat(2, 1fr) !important; }

  /* Packages grid on PMQ */
  .pkg-grid { grid-template-columns: 1fr; }

  /* Booking card: full width on mobile */
  .booking-card { padding: clamp(24px, 3vw, 36px); }

  /* Hero contact row wraps cleanly */
  .hero-contact { gap: 16px; }

  /* Story right grid: keep 2 col on tablet */
  .story-right { grid-template-columns: 1fr 1fr !important; }

  /* PMQ dev cards: single column */
  .dev-cards { grid-template-columns: 1fr !important; }

  /* About CTA buttons stack */
  .about-cta-inner > div:last-child { flex-direction: column; align-items: flex-start; }

  /* Service stats: 2 col on mobile */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Quiz box: remove excess padding */
  .quiz-inner { padding: clamp(20px, 4vw, 36px); }

  /* Single article: full width body */
  .article-body { font-size: 15px; }

  /* Case study sections: stack on mobile */
  .cs-work-grid { grid-template-columns: 1fr !important; }
}

/* =============================================
   SMALL MOBILE (max-width: 480px)
============================================= */
@media (max-width: 480px) {
  /* Stats bar on case study: single column */
  .cs-stats-bar { grid-template-columns: 1fr !important; }

  /* Story right: full width on small mobile */
  .story-right { grid-template-columns: 1fr 1fr !important; }

  /* Service card form: stack */
  .cf-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Buttons always readable */
  .btn { font-size: 11px; padding: 13px 22px; }

  /* Trust bar alignment */
  .trust-bar { align-items: flex-start; }
}
