/* ============================================================
   ONIZUKA STUDIO — MAIN STYLESHEET
   onizukastudio.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --white:        #FFFFFF;
  --off-white:    #F4F7FA;
  --light-gray:   #E8EDF3;
  --mid-gray:     #8A97A8;
  --charcoal:     #1A2332;
  --charcoal-mid: #334155;
  --navy:         #1E3A5F;
  --navy-mid:     #2C5282;
  --steel:        #4A7FA5;
  --steel-light:  #7FB3CC;
  --sky:          #D6E8F5;
  --sage:         #3D6B5E;
  --sage-mid:     #4A8573;
  --sage-light:   #C5DDD8;
  --sage-pale:    #EAF3F1;
  --border:       #D1DCE8;
  --shadow:       rgba(30,58,95,0.08);
  --font-head:    'Lora', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--off-white); color: var(--charcoal); line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; letter-spacing: -0.4px; }
a { color: var(--sage-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── SKIP LINK ─────────────────────────────────────────────── */
.skip-link { position: absolute; top: -100%; left: 0; background: var(--navy); color: white; padding: 8px 16px; z-index: 9999; border-radius: 0 0 4px 0; font-size: 14px; }
.skip-link:focus { top: 0; }

/* ── SECTION LABEL ─────────────────────────────────────────── */
.section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sage-mid); margin-bottom: 14px; }
.section-label::after { content: ''; width: 48px; height: 2px; background: var(--sage-light); display: inline-block; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-primary { background: var(--navy); color: white; padding: 15px 30px; border-radius: 5px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--sage); color: white; transform: translateY(-1px); }
.btn-secondary { font-size: 14px; font-weight: 500; color: var(--charcoal-mid); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; padding-bottom: 2px; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.btn-secondary:hover { color: var(--navy); border-color: var(--navy); }
.btn-white { background: white; color: var(--navy); padding: 15px 34px; border-radius: 5px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { background: #A8D5C8; color: var(--navy); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.7); padding: 15px 26px; border-radius: 5px; font-size: 14px; font-weight: 500; text-decoration: none; border: 1px solid rgba(255,255,255,0.25); transition: all 0.2s; display: inline-flex; align-items: center; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: white; }
.link-arrow { font-size: 14px; font-weight: 600; color: var(--sage-mid); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; padding-bottom: 2px; border-bottom: 1px solid var(--sage-light); transition: gap 0.2s; white-space: nowrap; }
.link-arrow:hover { gap: 10px; color: var(--navy); }

/* ── NAVIGATION ────────────────────────────────────────────── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); height: 90px; box-shadow: 0 2px 12px var(--shadow); transition: height 0.35s ease, box-shadow 0.35s ease; }
.site-header nav { max-width: 1400px; margin: 0 auto; padding: 0 40px; height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 24px; transition: height 0.35s ease; }
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 80px; width: auto; display: block; transition: height 0.3s ease; }
.nav-logo-dot { color: var(--sage-mid); }
.site-header.scrolled { height: 70px; box-shadow: 0 2px 16px var(--shadow); }
.site-header.scrolled nav { height: 70px; }
.site-header.scrolled .nav-logo img { height: 58px; width: auto; }
.site-header.scrolled .nav-links { display: flex; gap: 2px; align-items: center; }
.site-header.scrolled .nav-links a { font-size: 13px; padding: 7px 9px; }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--charcoal-mid); padding: 8px 12px; border-radius: 4px; text-decoration: none; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--navy); background: var(--off-white); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-cta { background: var(--navy) !important; color: white !important; padding: 9px 18px !important; border-radius: 5px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--sage) !important; color: white !important; }

/* Mobile menu toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }


/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: #0C1A2B; padding: 0; }

/* Top accent */
.site-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--steel) 50%, transparent 100%);
}

/* Contact strip */
.footer-contact-strip {
  background: rgba(74,133,115,0.10);
  border-bottom: 1px solid rgba(74,133,115,0.18);
  padding: 14px 80px;
}
.footer-contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.footer-contact-label {
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-right: 4px;
}
.footer-contact-strip a {
  font-size: 13px; color: rgba(168,213,200,0.75);
  text-decoration: none; transition: color 0.2s;
}
.footer-contact-strip a:hover { color: #A8D5C8; }
.footer-contact-cta {
  font-weight: 600 !important;
  border-bottom: 1px solid rgba(168,213,200,0.3);
  padding-bottom: 1px;
}
.footer-contact-sep { color: rgba(255,255,255,0.18); }

/* Main content */
.footer-main {
  max-width: 1100px; margin: 0 auto;
  padding: 52px 80px 44px;
  display: grid;
  grid-template-columns: 1.3fr 1.7fr;
  gap: 64px;
  align-items: start;
}
.footer-brand-col {}
.footer-logo-img { height: 48px; width: auto; display: block; margin-bottom: 18px; }
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.38);
  line-height: 1.75; max-width: 260px; margin-bottom: 22px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.35);
  text-decoration: none; transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 5px 12px; letter-spacing: 0.03em;
}
.footer-social a:hover {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.25);
}

/* Nav columns */
.footer-nav-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.footer-col h4 {
  font-size: 9px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  margin-bottom: 14px; font-family: var(--font-body);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px; color: rgba(255,255,255,0.48);
  text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-col-spacer { margin-top: 22px; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 80px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,0.18);
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }
.upwork-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px; padding: 6px 14px;
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.4);
}
.green-dot { width: 6px; height: 6px; background: #6fda44; border-radius: 50%; flex-shrink: 0; }

/* Footer responsive */
@media (max-width: 900px) {
  .footer-contact-strip, .footer-main, .footer-bottom { padding-left: 32px; padding-right: 32px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-tagline { max-width: 100%; }
}
@media (max-width: 560px) {
  .footer-nav-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
/* ── PAGE CONTENT OFFSET ───────────────────────────────────── */
.page-content { padding-top: 90px; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero { min-height: calc(100vh - 70px); display: grid; grid-template-columns: 1fr 1fr; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 80px 56px 80px 80px; background: var(--white); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sage-mid); margin-bottom: 28px; }
.hero-eyebrow-line { width: 36px; height: 2px; background: var(--sage-mid); flex-shrink: 0; }
.hero h1 { font-family: var(--font-head); font-size: clamp(36px, 4.2vw, 54px); font-weight: 700; line-height: 1.12; letter-spacing: -1px; color: var(--navy); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--sage-mid); }
.hero-sub { font-size: 17px; color: var(--charcoal-mid); line-height: 1.75; max-width: 480px; margin-bottom: 16px; }
.hero-sub strong { color: var(--charcoal); font-weight: 600; }
.hero-note { font-size: 14px; color: var(--mid-gray); font-style: italic; line-height: 1.6; max-width: 460px; margin-bottom: 40px; padding: 14px 18px; border-left: 3px solid var(--sage-light); background: var(--sage-pale); border-radius: 0 5px 5px 0; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust { display: flex; gap: 0; padding-top: 32px; border-top: 1px solid var(--border); }
.trust-item { display: flex; flex-direction: column; gap: 4px; padding-right: 32px; margin-right: 32px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.trust-num { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--navy); line-height: 1; }
.trust-label { font-size: 12px; color: var(--mid-gray); line-height: 1.4; max-width: 130px; }
.hero-right { position: relative; background: linear-gradient(160deg, #1E3A5F 0%, #152840 60%, #0E1F33 100%); display: flex; align-items: center; justify-content: center; min-height: 600px; overflow: hidden; }
.hero-right-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 30%, rgba(74,133,115,0.25) 0%, transparent 55%), radial-gradient(ellipse at 80% 70%, rgba(74,127,165,0.2) 0%, transparent 55%); }
.hero-right img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder { position: relative; z-index: 2; text-align: center; color: rgba(255,255,255,0.5); padding: 40px; font-size: 14px; }
.hero-img-placeholder .icon { font-size: 48px; margin-bottom: 16px; }

/* ── WHO BAND ──────────────────────────────────────────────── */
.who-band { background: var(--charcoal); padding: 28px 80px; }
.who-band-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 48px; }
.who-band-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); white-space: nowrap; flex-shrink: 0; }
.who-band-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.who-band-items { display: flex; gap: 36px; flex-wrap: wrap; }
.who-band-item { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; }
.who-band-item::before { content: ''; width: 6px; height: 6px; background: var(--sage-mid); border-radius: 50%; flex-shrink: 0; }

/* ── PROBLEM SECTION ───────────────────────────────────────── */
.problem { background: var(--navy); padding: 96px 80px; position: relative; overflow: hidden; }
.problem::before { content: ''; position: absolute; top: -120px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(74,133,115,0.1) 0%, transparent 70%); pointer-events: none; }
.problem-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.problem .section-label { color: #A8D5C8; }
.problem .section-label::after { background: rgba(168,213,200,0.3); }
.problem h2 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 700; color: white; line-height: 1.2; letter-spacing: -0.6px; margin-bottom: 18px; }
.problem h2 em { font-style: italic; color: #A8D5C8; }
.problem-intro { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 24px; }
.problem-punchline { font-family: var(--font-head); font-size: 17px; font-style: italic; color: #A8D5C8; line-height: 1.5; }
.problem-list { list-style: none; }
.problem-item { display: flex; align-items: flex-start; gap: 14px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.problem-item:first-child { padding-top: 0; }
.problem-arrow { color: var(--steel-light); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.problem-item p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0; }

/* ── TWO SIDES ─────────────────────────────────────────────── */
.two-sides { background: var(--white); padding: 96px 80px; }
.two-sides-header { max-width: 1100px; margin: 0 auto 56px; }
.two-sides-header h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.8px; margin-bottom: 16px; max-width: 640px; }
.two-sides-header p { font-size: 16px; color: var(--charcoal-mid); line-height: 1.75; max-width: 640px; }
.two-sides-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.side-card { border-radius: 10px; padding: 48px 40px; }
.side-card-web { background: var(--navy); }
.side-card-ops { background: var(--sage); }
.side-card-tag { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.side-card h3 { font-size: 26px; font-weight: 700; color: white; line-height: 1.2; letter-spacing: -0.4px; margin-bottom: 14px; }
.side-card p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 28px; }
.side-services { display: flex; flex-direction: column; gap: 10px; }
.side-service-item { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); }
.side-service-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); flex-shrink: 0; }
.two-sides-bridge { max-width: 1100px; margin: 24px auto 0; background: var(--off-white); border: 1px solid var(--border); border-radius: 8px; padding: 24px 36px; display: flex; align-items: center; gap: 24px; }
.bridge-icon { font-size: 24px; flex-shrink: 0; }
.bridge-text { font-size: 15px; color: var(--charcoal-mid); line-height: 1.65; }
.bridge-text strong { color: var(--navy); font-weight: 600; }

/* ── PROOF STATS ───────────────────────────────────────────── */
.proof { background: var(--navy); padding: 56px 80px; }
.proof-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 24px 32px; border-right: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 8px; }
.proof-item:last-child { border-right: none; }
.proof-icon { font-size: 20px; margin-bottom: 4px; }
.proof-num { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: white; line-height: 1; }
.proof-num span { color: var(--steel-light); }
.proof-label { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ── PROCESS ───────────────────────────────────────────────── */
.process { background: var(--off-white); padding: 96px 80px; }
.process-header { max-width: 1100px; margin: 0 auto 60px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.process-header h2 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.8px; }
.process-header p { font-size: 15px; color: var(--mid-gray); max-width: 320px; text-align: right; line-height: 1.65; }
.process-steps { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); }
.process-step { background: var(--white); padding: 40px 32px; transition: background 0.3s; }
.process-step:hover { background: var(--sage-pale); }
.process-step-num { font-family: var(--font-head); font-size: 64px; font-weight: 700; color: var(--light-gray); line-height: 1; margin-bottom: 20px; transition: color 0.3s; }
.process-step:hover .process-step-num { color: var(--sage-light); }
.process-step-icon { font-size: 28px; margin-bottom: 16px; }
.process-step h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.process-step p { font-size: 14px; color: var(--charcoal-mid); line-height: 1.7; margin: 0; }
.process-note { max-width: 1100px; margin: 20px auto 0; font-size: 13px; color: var(--mid-gray); font-style: italic; text-align: center; }

/* ── MCP SECTION ───────────────────────────────────────────── */
.mcp { background: var(--navy); padding: 96px 80px; position: relative; overflow: hidden; }
.mcp::before { content: 'MCP'; position: absolute; right: -30px; bottom: -40px; font-family: var(--font-head); font-size: 260px; font-weight: 700; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; user-select: none; letter-spacing: -8px; }
.mcp::after { content: ''; position: absolute; top: -120px; left: -80px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(74,133,115,0.12) 0%, transparent 70%); pointer-events: none; }
.mcp-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.mcp-header { text-align: center; margin-bottom: 60px; }
.mcp-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: #A8D5C8; margin-bottom: 20px; }
.mcp-eyebrow::before,.mcp-eyebrow::after { content: ''; width: 32px; height: 1px; background: rgba(168,213,200,0.4); }
.mcp-header h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; color: white; letter-spacing: -0.8px; line-height: 1.15; max-width: 720px; margin: 0 auto 16px; }
.mcp-header h2 em { font-style: italic; color: #A8D5C8; }
.mcp-header-sub { font-size: 17px; color: rgba(255,255,255,0.52); line-height: 1.75; max-width: 640px; margin: 0 auto; }
.mcp-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; align-items: start; }
.mcp-explain { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 40px; }
.mcp-explain-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #A8D5C8; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.mcp-explain-label::after { content: ''; flex: 1; height: 1px; background: rgba(168,213,200,0.2); }
.mcp-explain p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 14px; }
.mcp-explain p:last-child { margin-bottom: 0; }
.mcp-explain strong { color: white; font-weight: 600; }
.mcp-actions-col { display: flex; flex-direction: column; gap: 14px; }
.mcp-action-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-left: 3px solid #A8D5C8; border-radius: 0 8px 8px 0; padding: 18px 20px; transition: background 0.2s; }
.mcp-action-card:hover { background: rgba(168,213,200,0.08); }
.mcp-action-title { font-size: 13px; font-weight: 600; color: white; margin-bottom: 5px; line-height: 1.4; }
.mcp-action-body { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.6; }
.mcp-platforms { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 40px; text-align: center; }
.mcp-platforms-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.mcp-platform-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.mcp-tag { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 7px 18px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); transition: all 0.2s; }
.mcp-tag:hover { background: rgba(168,213,200,0.15); border-color: rgba(168,213,200,0.3); color: #A8D5C8; }

/* ── CASE STUDIES ──────────────────────────────────────────── */
.casestudies { background: var(--white); padding: 96px 80px; }
.cs-header { max-width: 1100px; margin: 0 auto 56px; display: flex; justify-content: space-between; align-items: flex-end; }
.cs-header h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.8px; }
.cs-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cs-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.3s, transform 0.2s; }
.cs-card:hover { box-shadow: 0 16px 40px var(--shadow); transform: translateY(-3px); }
.cs-card-img { height: 200px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 0; overflow: hidden; }
.cs-img-1 { background: linear-gradient(135deg, #1E3A5F 0%, #152840 100%); }
.cs-img-2 { background: linear-gradient(135deg, #2C5282 0%, #1E3A5F 100%); }
.cs-img-3 { background: linear-gradient(135deg, #3D6B5E 0%, #2A4D44 100%); }
.cs-img-4 { background: linear-gradient(135deg, #2A4D6B 0%, #1A3550 100%); }
.cs-img-label { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; padding: 3px 10px; font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 1.5px; text-transform: uppercase; }
.cs-type-pill { position: absolute; top: 12px; right: 12px; padding: 3px 10px; border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; z-index: 1; }
.cs-type-auto { background: rgba(74,133,115,0.3); color: #A8D5C8; border: 1px solid rgba(74,133,115,0.4); }
.cs-type-web { background: rgba(74,127,165,0.3); color: #B3D4EC; border: 1px solid rgba(74,127,165,0.4); }
.cs-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.cs-industry { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sage-mid); margin-bottom: 10px; }
.cs-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 12px; }
.cs-card p { font-size: 14px; color: var(--charcoal-mid); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.cs-result { background: var(--sage-pale); border-left: 3px solid var(--sage-mid); border-radius: 0 5px 5px 0; padding: 11px 14px; font-size: 13px; font-weight: 500; color: var(--sage); line-height: 1.5; margin-bottom: 20px; }
.cs-link { font-size: 13px; font-weight: 600; color: var(--steel); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.cs-link:hover { gap: 8px; color: var(--navy); }

/* ── SUPPORT BAND ──────────────────────────────────────────── */
.support-band { background: var(--sage); padding: 80px 80px; position: relative; overflow: hidden; }
.support-band::before { content: ''; position: absolute; right: -60px; top: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%); pointer-events: none; }
.support-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.support-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.support-label::after { content: ''; width: 40px; height: 1px; background: rgba(255,255,255,0.25); }
.support-band h2 { font-size: clamp(26px, 2.8vw, 38px); font-weight: 700; color: white; line-height: 1.2; letter-spacing: -0.6px; margin-bottom: 18px; }
.support-band h2 em { font-style: italic; color: rgba(255,255,255,0.75); }
.support-copy { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 28px; }
.support-quote { font-family: var(--font-head); font-size: 17px; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.6; padding-left: 20px; border-left: 3px solid rgba(255,255,255,0.3); }
.support-cards { display: flex; flex-direction: column; gap: 16px; }
.support-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start; transition: background 0.2s; }
.support-card:hover { background: rgba(255,255,255,0.15); }
.support-card-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.support-card-title { font-size: 14px; font-weight: 600; color: white; margin-bottom: 5px; }
.support-card-body { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── AUTOMATION FILES ──────────────────────────────────────── */
.af { background: var(--off-white); padding: 96px 80px; position: relative; overflow: hidden; }
.af::before { content: 'AF'; position: absolute; right: -30px; top: 50%; transform: translateY(-50%); font-family: var(--font-head); font-size: 340px; font-weight: 700; color: rgba(30,58,95,0.03); line-height: 1; pointer-events: none; user-select: none; }
.af-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.af-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 40px; }
.af-header h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.8px; }
.af-header h2 em { font-style: italic; color: var(--sage); }
.af-hashtag { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: white; padding: 10px 20px; border-radius: 24px; font-size: 13px; font-weight: 600; white-space: nowrap; flex-shrink: 0; text-decoration: none; transition: background 0.2s; }
.af-hashtag:hover { background: var(--sage); color: white; }
.af-posts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.af-post { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 32px; display: flex; gap: 20px; transition: box-shadow 0.3s; text-decoration: none; color: inherit; }
.af-post:hover { box-shadow: 0 6px 24px var(--shadow); }
.af-post-num { font-family: var(--font-head); font-size: 52px; font-weight: 700; color: var(--light-gray); line-height: 1; flex-shrink: 0; margin-top: -4px; }
.af-post-tag { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--sage-mid); margin-bottom: 8px; }
.af-post h3 { font-size: 19px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.af-post p { font-size: 14px; color: var(--charcoal-mid); line-height: 1.7; margin-bottom: 18px; }
.af-post-link { font-size: 13px; font-weight: 600; color: var(--sage-mid); }

/* ── CLOSING CTA ───────────────────────────────────────────── */
.closing { background: var(--charcoal); padding: 112px 80px; text-align: center; position: relative; overflow: hidden; }
.closing::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 15% 50%, rgba(74,133,115,0.15) 0%, transparent 55%), radial-gradient(ellipse at 85% 50%, rgba(74,127,165,0.12) 0%, transparent 55%); }
.closing-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.closing h2 { font-size: clamp(32px, 4.2vw, 52px); font-weight: 700; color: white; letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px; }
.closing h2 em { font-style: italic; color: #A8D5C8; }
.closing p { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 44px; }
.closing-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .site-header nav, .footer-inner { padding: 0 40px; }
  .footer-bottom { padding: 24px 40px; }
  .hero-left { padding: 60px 40px; }
  .problem, .two-sides, .mcp, .casestudies, .support-band, .af, .closing { padding-left: 40px; padding-right: 40px; }
  .proof, .process, .who-band { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 768px) {
  .site-header nav { padding: 0 24px; }
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: white; flex-direction: column; gap: 0; padding: 16px 0; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; border-bottom: 1px solid var(--light-gray); border-radius: 0; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-cta { margin-top: 12px; border-top: 2px solid var(--border); padding-top: 20px; }
  .nav-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 280px; }
  .hero-left { padding: 48px 24px; }
  .problem-inner, .two-sides-grid, .mcp-body, .support-inner, .af-posts, .cs-grid { grid-template-columns: 1fr; }
  .proof-inner, .process-steps { grid-template-columns: 1fr 1fr; }
  .proof-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-top { flex-direction: column; }
  .footer-nav { gap: 40px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-inner { padding: 0 24px; }
  .footer-bottom { padding: 24px; }
  .who-band { padding: 20px 24px; }
  .who-band-inner { flex-wrap: wrap; gap: 16px; }
  .who-band-items { gap: 12px; }
  .problem, .two-sides, .mcp, .casestudies, .support-band, .af, .closing { padding: 64px 24px; }
  .proof, .process { padding: 48px 24px; }
  .hero-trust { flex-wrap: wrap; gap: 24px; }
  .trust-item { border-right: none; padding-right: 0; margin-right: 0; }
  .process-header { flex-direction: column; }
  .process-header p { text-align: left; max-width: 100%; }
  /* Fix: scrolled state must not override mobile display:none */
  .site-header.scrolled .nav-links { display: none; }
  .site-header.scrolled .nav-links.open { display: flex; }
  /* Fix: logo at 80px height renders ~302px wide — overflows 390px iPhone viewport */
  .nav-logo img { height: 56px; }
  .site-header.scrolled .nav-logo img { height: 44px; }
}

@media (max-width: 480px) {
  .proof-inner, .process-steps { grid-template-columns: 1fr; }
  .two-sides-grid { grid-template-columns: 1fr; }
}

/* ── PRINT STYLES ──────────────────────────────────────────── */
@media print {
  .site-header, .nav-toggle { display: none; }
  .page-content { padding-top: 0; }
  a { color: var(--navy); }
}


/* ============================================================
   HOMEPAGE REDESIGN — NEW SECTIONS
   O'Leary positioning, urgency-forward layout
   ============================================================ */
    /* ─────────────────────────────────────────────
       SECTION 1: HERO
    ───────────────────────────────────────────── */
    .hero {
      padding-top: 0;
      display: grid; grid-template-columns: 1fr 1fr;
      min-height: calc(100vh - 88px);
      min-height: 100vh;
    }
    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 80px 64px 80px 32px; max-width: 660px; margin-left: auto;
    }
    .hero-kicker {
      display: inline-block; background: rgba(74,133,115,.1);
      color: var(--sage); font-size: .75rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 20px; margin-bottom: 28px;
      border: 1px solid rgba(74,133,115,.2);
    }
    .hero-h1 {
      font-family: var(--font-head); font-size: clamp(2.6rem, 4vw, 3.6rem);
      font-weight: 700; line-height: 1.13; color: var(--navy); margin-bottom: 24px;
    }
    .hero-h1 em { font-style: italic; color: var(--sage); }
    .hero-sub {
      font-size: 1.05rem; color: var(--mid-gray); line-height: 1.8;
      margin-bottom: 18px; max-width: 480px;
    }
    .hero-sub strong { color: var(--navy); font-weight: 600; }
    .hero-distinction {
      font-size: .9rem; font-weight: 600; color: var(--sage);
      margin-bottom: 36px; letter-spacing: .01em;
    }
    .hero-distinction::before { content: '→ '; }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
    .hero-proof {
      display: flex; gap: 32px; padding-top: 32px;
      border-top: 1px solid var(--border);
    }
    .hero-proof-item { }
    .hero-proof-num {
      font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
      color: var(--navy); line-height: 1;
    }
    .hero-proof-label { font-size: .78rem; color: var(--mid-gray); margin-top: 4px; }

    .hero-right {
      position: relative; overflow: hidden; background: var(--off-white);
    }
    .hero-right img {
      width: 100%; height: 100%; object-fit: cover;
      object-position: center top;
    }
    /* IMAGE NEEDED: /images/hero-main.jpg — professional person at desk working with laptop, modern office, warm tones. Approx 800x900px. */

    /* ─────────────────────────────────────────────
       SECTION 2: URGENCY BANNER
    ───────────────────────────────────────────── */
    .urgency-bar {
      background: var(--navy);
      padding: 22px 32px;
    }
    .urgency-bar-inner {
      max-width: var(--max); margin: 0 auto;
      display: flex; align-items: center; justify-content: center; gap: 12px;
      text-align: center;
    }
    .urgency-bar p {
      color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 400;
    }
    .urgency-bar strong { color: #fff; font-weight: 600; }
    .urgency-bar a {
      color: #8ecfb8; font-weight: 600; font-size: .9rem;
      border-bottom: 1px solid rgba(142,207,184,.4);
      white-space: nowrap;
    }

    /* ─────────────────────────────────────────────
       SECTION 3: THE REAL PROBLEM
    ───────────────────────────────────────────── */
    .problem {
      padding: 60px 32px;
      background: var(--warm-white);
    }
    .problem-inner {
      max-width: var(--max); margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .problem-h2 {
      font-family: var(--font-head); font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: 24px;
    }
    .problem-h2 em { font-style: italic; color: var(--sage); }
    .problem-body { font-size: 1rem; color: var(--mid-gray); line-height: 1.85; margin-bottom: 24px; }
    .problem-body strong { color: var(--navy); font-weight: 600; }
    .problem-stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px;
    }
    .stat-card {
      background: #fff; border: 1px solid var(--border);
      border-radius: 10px; padding: 24px;
    }
    .stat-num {
      font-family: var(--font-head); font-size: 2.2rem; font-weight: 700;
      color: var(--navy); line-height: 1;
    }
    .stat-num sup { font-size: 1rem; vertical-align: super; }
    .stat-label { font-size: .82rem; color: var(--mid-gray); margin-top: 6px; line-height: 1.4; }
    .problem-visual {
      position: relative;
    }
    .problem-img-wrap {
      border-radius: 12px; overflow: hidden;
      box-shadow: 0 24px 64px rgba(30,58,95,.15);
    }
    .problem-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
    /* IMAGE NEEDED: /images/problem-visual.jpg — small business owner looking slightly overwhelmed at screen, realistic candid feel. Approx 600x750px. */
    .problem-badge {
      position: absolute; bottom: -20px; left: -28px;
      background: #fff; border: 1px solid var(--border);
      border-radius: 12px; padding: 18px 22px;
      box-shadow: 0 8px 24px rgba(30,58,95,.12);
    }
    .problem-badge-quote {
      font-family: var(--font-head); font-size: .95rem; font-style: italic;
      color: var(--navy); line-height: 1.5; max-width: 220px;
    }
    .problem-badge-attr {
      font-size: .72rem; color: var(--mid-gray); margin-top: 8px; font-weight: 500;
      text-transform: uppercase; letter-spacing: .06em;
    }

    /* ─────────────────────────────────────────────
       SECTION 4: WHAT WE ACTUALLY DO
    ───────────────────────────────────────────── */
    .services {
      padding: 100px 32px;
      background: #fff;
    }
    .services-head {
      max-width: var(--max); margin: 0 auto 64px;
    }
    .services-h2 {
      font-family: var(--font-head); font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 700; color: var(--navy); margin-bottom: 16px;
    }
    .services-sub {
      font-size: 1rem; color: var(--mid-gray); max-width: 540px; line-height: 1.75;
    }
    .services-grid {
      max-width: var(--max); margin: 0 auto;
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    }
    .service-card {
      border: 1px solid var(--border); border-radius: 12px;
      padding: 36px 32px; position: relative; overflow: hidden;
      transition: box-shadow .25s, transform .25s;
    }
    .service-card:hover { box-shadow: 0 12px 40px rgba(30,58,95,.1); transform: translateY(-4px); }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 3px; background: var(--sage);
    }
    .service-card.card-2::before { background: var(--steel); }
    .service-card.card-3::before { background: var(--navy); }
    .service-icon {
      width: 48px; height: 48px; border-radius: 10px; margin-bottom: 24px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
    }
    .icon-sage { background: rgba(74,133,115,.1); }
    .icon-steel { background: rgba(74,127,165,.1); }
    .icon-navy { background: rgba(30,58,95,.08); }
    .service-h3 {
      font-family: var(--font-head); font-size: 1.25rem; font-weight: 700;
      color: var(--navy); margin-bottom: 12px; line-height: 1.3;
    }
    .service-tagline {
      font-size: .85rem; font-weight: 600; color: var(--sage);
      margin-bottom: 16px; text-transform: uppercase; letter-spacing: .05em;
    }
    .service-card.card-2 .service-tagline { color: var(--steel); }
    .service-card.card-3 .service-tagline { color: var(--navy); opacity: .7; }
    .service-body { font-size: .9rem; color: var(--mid-gray); line-height: 1.7; margin-bottom: 24px; }
    .service-list { list-style: none; margin-bottom: 28px; }
    .service-list li {
      font-size: .85rem; color: var(--navy); padding: 7px 0;
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; gap: 10px;
    }
    .service-list li:last-child { border-bottom: none; }
    .service-list li::before { content: '→'; color: var(--sage); font-weight: 600; flex-shrink: 0; }
    .service-card.card-2 .service-list li::before { color: var(--steel); }
    .service-card.card-3 .service-list li::before { color: var(--navy); opacity: .5; }
    .service-link {
      font-size: .85rem; font-weight: 600; color: var(--sage);
      display: inline-flex; align-items: center; gap: 6px;
      border-bottom: 1px solid rgba(74,133,115,.3);
      padding-bottom: 2px; transition: gap .2s;
    }
    .service-link:hover { gap: 10px; }
    .service-card.card-2 .service-link { color: var(--steel); border-color: rgba(74,127,165,.3); }
    .service-card.card-3 .service-link { color: var(--navy); border-color: rgba(30,58,95,.2); }

    /* ─────────────────────────────────────────────
       SECTION 5: KILL YOUR SUBSCRIPTIONS
    ───────────────────────────────────────────── */
    .kill-subs {
      background: var(--navy);
      padding: 100px 32px;
      position: relative; overflow: hidden;
    }
    .kill-subs::before {
      content: '';
      position: absolute; top: -60%; right: -10%;
      width: 700px; height: 700px; border-radius: 50%;
      background: radial-gradient(circle, rgba(74,133,115,.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .kill-subs-inner {
      max-width: var(--max); margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
      position: relative; z-index: 1;
    }
    .kill-subs-h2 {
      font-family: var(--font-head); font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 20px;
    }
    .kill-subs-h2 em { font-style: italic; color: #8ecfb8; }
    .kill-subs-body { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.8; margin-bottom: 32px; }
    .kill-subs-body strong { color: #fff; font-weight: 600; }
    .kill-subs-cta { display: flex; gap: 14px; flex-wrap: wrap; }

    .sub-killers {
      display: flex; flex-direction: column; gap: 16px;
    }
    .sub-killer-row {
      display: flex; align-items: center; gap: 20px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px; padding: 20px 24px;
      transition: background .2s;
    }
    .sub-killer-row:hover { background: rgba(255,255,255,.09); }
    .sub-killer-icon { font-size: 1.8rem; flex-shrink: 0; width: 44px; text-align: center; }
    .sub-killer-text { flex: 1; }
    .sub-killer-name { font-weight: 600; color: #fff; font-size: .95rem; margin-bottom: 3px; }
    .sub-killer-desc { font-size: .82rem; color: rgba(255,255,255,.55); }
    .sub-killer-saving {
      font-family: var(--font-head); font-size: 1rem; font-weight: 700;
      color: #8ecfb8; flex-shrink: 0; text-align: right;
    }
    .sub-killer-saving small { display: block; font-family: var(--font-body); font-size: .7rem; font-weight: 400; color: rgba(255,255,255,.4); }

    /* ─────────────────────────────────────────────
       SECTION 6: HOW WE WORK  (3-step)
    ───────────────────────────────────────────── */
    .how {
      padding: 100px 32px;
      background: var(--warm-white);
    }
    .how-inner { max-width: var(--max); margin: 0 auto; }
    .how-head { text-align: center; margin-bottom: 64px; }
    .how-h2 {
      font-family: var(--font-head); font-size: clamp(2rem, 3vw, 2.6rem);
      font-weight: 700; color: var(--navy); margin-bottom: 14px;
    }
    .how-sub { font-size: 1rem; color: var(--mid-gray); max-width: 480px; margin: 0 auto; line-height: 1.75; }
    .how-steps {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
      position: relative;
    }
    .how-steps::before {
      content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%;
      height: 1px; background: var(--border); z-index: 0;
    }
    .how-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
    .how-step-num {
      width: 72px; height: 72px; border-radius: 50%;
      background: #fff; border: 2px solid var(--sage);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
      color: var(--sage); margin: 0 auto 24px; position: relative; z-index: 1;
    }
    .how-step-title {
      font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
      color: var(--navy); margin-bottom: 10px;
    }
    .how-step-body { font-size: .85rem; color: var(--mid-gray); line-height: 1.7; }

    /* ─────────────────────────────────────────────
       SECTION 7: SOCIAL PROOF
    ───────────────────────────────────────────── */
    .proof {
      padding: 90px 32px;
      background: var(--charcoal);
    }
    .proof-inner {
      max-width: var(--max); margin: 0 auto;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
    }
    .proof-stat {
      text-align: center; padding: 40px 24px;
      border-right: 1px solid rgba(255,255,255,.08);
    }
    .proof-stat:last-child { border-right: none; }
    .proof-num {
      font-family: var(--font-head); font-size: 3rem; font-weight: 700;
      color: #fff; line-height: 1; margin-bottom: 10px;
    }
    .proof-num sup { font-size: 1.2rem; vertical-align: super; }
    .proof-label { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.5; max-width: 140px; margin: 0 auto; }
    .proof-label strong { color: rgba(255,255,255,.8); font-weight: 500; display: block; margin-bottom: 4px; font-size: .88rem; }

    /* ─────────────────────────────────────────────
       SECTION 8: CASE STUDIES
    ───────────────────────────────────────────── */
    .work {
      padding: 100px 32px;
      background: #fff;
    }
    .work-inner { max-width: var(--max); margin: 0 auto; }
    .work-head {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 56px; flex-wrap: wrap; gap: 20px;
    }
    .work-h2 {
      font-family: var(--font-head); font-size: clamp(2rem, 3vw, 2.6rem);
      font-weight: 700; color: var(--navy);
    }
    .work-see-all {
      font-size: .85rem; font-weight: 600; color: var(--sage);
      display: inline-flex; align-items: center; gap: 6px;
      border-bottom: 1px solid rgba(74,133,115,.3); padding-bottom: 2px;
      white-space: nowrap;
    }
    .work-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .case-card {
      border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
      transition: box-shadow .25s, transform .25s;
      display: flex; flex-direction: column;
    }
    .case-card:hover { box-shadow: 0 12px 40px rgba(30,58,95,.1); transform: translateY(-4px); }
    .case-card-img {
      height: 200px; background: var(--off-white); position: relative;
      overflow: hidden;
    }
    .case-card-img img { width: 100%; height: 100%; object-fit: cover; }
    /* IMAGE NEEDED: /images/case-hr.jpg, case-safety.jpg, case-sales.jpg — abstract/conceptual images for each case study. Each ~600x400px. */
    .case-img-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.5rem;
    }
    .case-tag {
      position: absolute; top: 14px; left: 14px;
      background: var(--navy); color: #fff;
      font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 4px;
    }
    .case-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
    .case-result {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(74,133,115,.08); color: var(--sage);
      font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
      padding: 5px 12px; border-radius: 4px; margin-bottom: 16px;
      border: 1px solid rgba(74,133,115,.2);
    }
    .case-h3 {
      font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
      color: var(--navy); margin-bottom: 10px; line-height: 1.35;
    }
    .case-desc { font-size: .88rem; color: var(--mid-gray); line-height: 1.65; flex: 1; }
    .case-link {
      margin-top: 20px; font-size: .82rem; font-weight: 600; color: var(--sage);
      display: inline-flex; align-items: center; gap: 6px;
      border-bottom: 1px solid rgba(74,133,115,.3); padding-bottom: 2px;
      align-self: flex-start; transition: gap .2s;
    }
    .case-link:hover { gap: 10px; }

    /* ─────────────────────────────────────────────
       SECTION 9: AI-BUILT WEBSITES
    ───────────────────────────────────────────── */
    .ai-sites {
      padding: 100px 32px;
      background: var(--off-white);
    }
    .ai-sites-inner {
      max-width: var(--max); margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .ai-sites-visual {
      position: relative;
    }
    .ai-sites-img { border-radius: 12px; overflow: hidden; box-shadow: 0 24px 60px rgba(30,58,95,.15); }
    .ai-sites-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
    /* IMAGE NEEDED: /images/ai-website.jpg — clean screenshot or mockup of a modern website being built, or a browser frame with fresh design. ~800x600px. */
    .ai-sites-badge {
      position: absolute; bottom: -18px; right: -20px;
      background: var(--sage); color: #fff;
      border-radius: 10px; padding: 16px 20px;
      box-shadow: 0 8px 24px rgba(74,133,115,.3);
    }
    .ai-badge-num {
      font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
      line-height: 1;
    }
    .ai-badge-label { font-size: .72rem; font-weight: 500; opacity: .85; margin-top: 4px; }

    .ai-sites-h2 {
      font-family: var(--font-head); font-size: clamp(1.9rem, 3vw, 2.6rem);
      font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 20px;
    }
    .ai-sites-h2 em { font-style: italic; color: var(--sage); }
    .ai-sites-body { font-size: 1rem; color: var(--mid-gray); line-height: 1.8; margin-bottom: 24px; }
    .ai-sites-body strong { color: var(--navy); font-weight: 600; }
    .ai-sites-points { list-style: none; margin-bottom: 32px; }
    .ai-sites-points li {
      font-size: .9rem; color: var(--navy);
      padding: 9px 0; border-bottom: 1px solid var(--border);
      display: flex; align-items: flex-start; gap: 12px; line-height: 1.5;
    }
    .ai-sites-points li:last-child { border-bottom: none; }
    .ai-sites-points li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

    /* ─────────────────────────────────────────────
       SECTION 10: PRODUCTS
    ───────────────────────────────────────────── */
    .products {
      padding: 100px 32px;
      background: #fff;
    }
    .products-inner { max-width: var(--max); margin: 0 auto; }
    .products-head { margin-bottom: 56px; }
    .products-h2 {
      font-family: var(--font-head); font-size: clamp(2rem, 3vw, 2.6rem);
      font-weight: 700; color: var(--navy); margin-bottom: 14px;
    }
    .products-sub { font-size: 1rem; color: var(--mid-gray); max-width: 500px; line-height: 1.75; }
    .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .product-card {
      border: 1px solid var(--border); border-radius: 12px; padding: 32px;
      transition: box-shadow .25s, transform .25s;
    }
    .product-card:hover { box-shadow: 0 12px 40px rgba(30,58,95,.1); transform: translateY(-4px); }
    .product-badge-pill {
      display: inline-block; font-size: .68rem; font-weight: 600;
      letter-spacing: .08em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 20px; margin-bottom: 20px;
    }
    .pill-live { background: rgba(74,133,115,.1); color: var(--sage); border: 1px solid rgba(74,133,115,.2); }
    .pill-soon { background: rgba(74,127,165,.1); color: var(--steel); border: 1px solid rgba(74,127,165,.2); }
    .product-h3 {
      font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
      color: var(--navy); margin-bottom: 10px;
    }
    .product-desc { font-size: .88rem; color: var(--mid-gray); line-height: 1.7; margin-bottom: 20px; }
    .product-link {
      font-size: .82rem; font-weight: 600; color: var(--sage);
      display: inline-flex; align-items: center; gap: 6px;
      border-bottom: 1px solid rgba(74,133,115,.3); padding-bottom: 2px;
    }

    /* ─────────────────────────────────────────────
       SECTION 11: FROM THE AUTOMATION FILES
    ───────────────────────────────────────────── */
    .blog {
      padding: 100px 32px;
      background: var(--warm-white);
    }
    .blog-inner { max-width: var(--max); margin: 0 auto; }
    .blog-head {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
    }
    .blog-h2 {
      font-family: var(--font-head); font-size: clamp(1.8rem, 2.5vw, 2.4rem);
      font-weight: 700; color: var(--navy);
    }
    .blog-h2 em { font-style: italic; color: var(--sage); }
    .blog-see-all {
      font-size: .85rem; font-weight: 600; color: var(--sage);
      display: inline-flex; align-items: center; gap: 6px;
      border-bottom: 1px solid rgba(74,133,115,.3); padding-bottom: 2px;
      white-space: nowrap;
    }
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .blog-card {
      background: #fff; border: 1px solid var(--border); border-radius: 10px;
      overflow: hidden; transition: box-shadow .25s, transform .25s;
    }
    .blog-card:hover { box-shadow: 0 8px 32px rgba(30,58,95,.08); transform: translateY(-3px); }
    .blog-card-img {
      height: 180px; background: var(--off-white); overflow: hidden;
    }
    .blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
    .blog-card-body { padding: 24px; }
    .blog-cat {
      font-size: .7rem; font-weight: 600; color: var(--sage);
      text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px;
    }
    .blog-card-h3 {
      font-family: var(--font-head); font-size: 1rem; font-weight: 700;
      color: var(--navy); margin-bottom: 8px; line-height: 1.4;
    }
    .blog-card-desc { font-size: .84rem; color: var(--mid-gray); line-height: 1.6; margin-bottom: 16px; }
    .blog-read {
      font-size: .8rem; font-weight: 600; color: var(--sage);
      display: inline-flex; align-items: center; gap: 5px;
    }

    /* ─────────────────────────────────────────────
       SECTION 12: CLOSING CTA
    ───────────────────────────────────────────── */
    .cta-close {
      padding: 120px 32px;
      background: var(--navy);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-close::before {
      content: '';
      position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%);
      width: 800px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(74,133,115,.15) 0%, transparent 70%);
    }
    .cta-close-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
    .cta-close-kicker {
      display: inline-block; background: rgba(142,207,184,.15);
      color: #8ecfb8; font-size: .72rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 6px 16px; border-radius: 20px; margin-bottom: 28px;
      border: 1px solid rgba(142,207,184,.2);
    }
    .cta-close-h2 {
      font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 20px;
    }
    .cta-close-h2 em { font-style: italic; color: #8ecfb8; }
    .cta-close-body {
      font-size: 1.05rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 40px;
    }
    .cta-close-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
    .cta-close-contact { color: rgba(255,255,255,.5); font-size: .85rem; }
    .cta-close-contact a { color: rgba(255,255,255,.75); border-bottom: 1px solid rgba(255,255,255,.2); }
    .cta-close-contact a:hover { color: #fff; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--charcoal);
      border-top: 1px solid rgba(255,255,255,.06);
      padding: 60px 32px 32px;
    }
    .footer-inner {
      max-width: var(--max); margin: 0 auto;
    }
    .footer-top {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand {}
    .footer-logo {
      font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
      color: #fff; margin-bottom: 14px;
    }
    .footer-logo span { color: #8ecfb8; }
    .footer-brand-desc { font-size: .84rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
    .footer-upwork {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
      border-radius: 6px; padding: 8px 14px;
      font-size: .75rem; color: rgba(255,255,255,.6); font-weight: 500;
    }
    .footer-col-head {
      font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.35);
      letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s; }
    .footer-links a:hover { color: rgba(255,255,255,.9); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.07);
      padding-top: 28px; display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-legal { font-size: .78rem; color: rgba(255,255,255,.3); }
    .footer-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
      border-radius: 20px; padding: 6px 14px;
      font-size: .72rem; color: rgba(255,255,255,.5); font-weight: 500;
    }
    .footer-badge::before { content: '●'; color: var(--sage); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 80px 32px 48px; max-width: 100%; margin-left: 0; }
      .hero-right { height: 400px; }
      .problem-inner { grid-template-columns: 1fr; }
      .problem-visual { order: 2; }
      .problem-badge { position: relative; bottom: auto; left: auto; margin-top: 20px; }
      .services-grid { grid-template-columns: 1fr; }
      .kill-subs-inner { grid-template-columns: 1fr; }
      .how-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
      .how-steps::before { display: none; }
      .proof-inner { grid-template-columns: 1fr 1fr; }
      .proof-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
      .work-grid { grid-template-columns: 1fr; }
      .ai-sites-inner { grid-template-columns: 1fr; }
      .ai-sites-badge { position: relative; bottom: auto; right: auto; margin-top: 20px; display: inline-block; }
      .products-grid { grid-template-columns: 1fr 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      .container, .hero-left { padding-left: 20px; padding-right: 20px; }
      .nav-links { display: none; }
      .hero-proof { flex-wrap: wrap; gap: 20px; }
      .problem-stats { grid-template-columns: 1fr; }
      .problem-fit ul { grid-template-columns: 1fr !important; }
      .how-steps { grid-template-columns: 1fr; }
      .proof-inner { grid-template-columns: 1fr; }
      .products-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .urgency-bar-inner { flex-direction: column; }
    }


/* ── SCROLL REVEAL (.sr) ────────────────────────────────────── */
.sr { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.sr.d1 { transition-delay: .1s; }
.sr.d2 { transition-delay: .2s; }
.sr.d3 { transition-delay: .3s; }
.sr.d4 { transition-delay: .4s; }
.sr.visible { opacity: 1; transform: translateY(0); }

/* ── EYEBROW LABELS (new homepage sections) ─────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sage-mid); margin-bottom: 18px;
}
.eyebrow::before { content:''; display:block; width:28px; height:2px; background:var(--sage-mid); }
.eyebrow-white { color: rgba(255,255,255,.65); }
.eyebrow-white::before { background: rgba(255,255,255,.4); }

/* ── NEW HOMEPAGE BUTTON CLASSES ────────────────────────────── */
/* Used in hero-actions, kill-subs CTA, closing CTA */
.btn-loud {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--navy);
  padding: 16px 32px; border-radius: 5px;
  font-size: 16px; font-weight: 700;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-loud:hover { background: #A8D5C8; color: var(--navy); transform: translateY(-2px); }
.btn-loud-sage {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage-mid); color: white;
  padding: 16px 32px; border-radius: 5px;
  font-size: 16px; font-weight: 700;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-loud-sage:hover { background: var(--sage); color: white; transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.55); color: white;
  padding: 14px 28px; border-radius: 5px;
  font-size: 15px; font-weight: 600;
  transition: border-color .2s, background .2s;
  text-decoration: none;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.1); color: white; }


/* ── HOMEPAGE TARGETED FIXES ────────────────────────────────── */

/* Process section: bigger, bolder heading */
.how-h2 { font-size: clamp(1.8rem, 3vw, 2.8rem) !important; line-height: 1.25 !important; }

/* Kill-subs: fix eyebrow and link contrast */
.kill-subs .eyebrow-white { color: rgba(255,255,255,.8); }
.kill-subs .btn-outline-white { margin-top: 0; }

/* Problem section: darken heading for contrast */
.problem-h2 { color: var(--navy) !important; }
.problem-h2 em { color: var(--sage); }
.problem .eyebrow { color: var(--sage-mid); }

/* Closing CTA: ensure buttons are fully visible */
.cta-close .btn-loud {
  background: white; color: var(--navy); font-size: 1rem; font-weight: 700;
  padding: 16px 34px;
}
.cta-close .btn-outline-white {
  border: 2px solid rgba(255,255,255,.6); color: white;
  font-size: 1rem; padding: 15px 30px;
}
.cta-close-actions { gap: 16px; margin-bottom: 32px; }

/* Hero actions — make sure they render */
.hero-actions .btn-primary { font-size: 1rem; padding: 15px 30px; }
.hero-actions .btn-secondary { padding: 15px 0; font-size: 1rem; font-weight: 600; }

/* Proof stat: "100%" needs to fit */
.proof-num { font-size: clamp(2rem, 3.5vw, 3rem); }

/* ── "Including this one." callout ──────────────────────────── */
.ai-built-callout {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--sage-mid);
  margin-bottom: 16px;
  padding: 8px 16px;
  background: var(--sage-pale);
  border-left: 3px solid var(--sage-mid);
  border-radius: 0 5px 5px 0;
}

/* ── AI-BUILT WEBSITES: wider image container ───────────────── */
.ai-sites-img img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}


/* ── OUR WORK: real photo backgrounds ──────────────────────── */
.cs-img-1 { background: url('/images/banner-case-hr.jpg') center/cover no-repeat; }
.cs-img-2 { background: url('/images/banner-case-invoice.jpg') center/cover no-repeat; }
.cs-img-3 { background: url('/images/banner-case-blueprint.jpg') center/cover no-repeat; }
.cs-img-4 { background: url('/images/banner-case-field.jpg') center/cover no-repeat; }
.cs-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,31,51,0.1) 0%, rgba(14,31,51,0.78) 60%, rgba(14,31,51,0.9) 100%);
  pointer-events: none;
}
.cs-img-label { z-index: 1; }
.cs-card-img h2 {
  position: relative; z-index: 1;
  color: white; font-size: 17px; font-weight: 700; line-height: 1.3;
  margin: 0; padding: 0 14px 14px;
}

/* ── ABOUT: center 2-col team grid ─────────────────────────── */
.team-grid-2col { margin: 0 auto !important; }

/* ── BLOG POST: header background template ──────────────────── */
.blog-post-header {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 64px 80px 0 !important;
}
.blog-post-header::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 480px; height: 480px;
  background: url('/images/logo.png') center/contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
  filter: grayscale(1) brightness(5);
}
.blog-post-header a,
.blog-post-header .back-link { color: #A8D5C8 !important; }
.blog-post-header .category-pill {
  background: rgba(255,255,255,0.1) !important;
  color: rgba(255,255,255,0.8) !important;
}
.blog-post-header .read-meta { color: rgba(255,255,255,0.5) !important; }
.blog-post-header h1 { color: white !important; }
.blog-post-header .article-lede {
  color: rgba(255,255,255,0.7) !important;
  border-bottom-color: rgba(255,255,255,0.12) !important;
  margin-bottom: 0 !important;
  padding-bottom: 32px !important;
}

/* ── CONTACT: mobile iframe fix ─────────────────────────────── */
.contact-form-wrap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
}
.contact-form-wrap iframe {
  min-height: 650px;
  width: 100% !important;
  display: block;
  border: none;
}
@media (max-width: 640px) {
  .contact-form-wrap { overflow-x: hidden; }
  .contact-form-wrap iframe { min-height: 750px; }
}

/* ── CONTACT: responsive layout grids (replaces inline styles) ── */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── CONTACT: section and card wrappers (replaces inline styles) ── */
.contact-section {
  background: var(--white);
  padding: 96px 80px;
}
.contact-form-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
}
.contact-faq-section {
  background: var(--charcoal);
  padding: 64px 80px;
}
@media (max-width: 768px) {
  .contact-section { padding: 60px 24px; }
  .contact-form-card { padding: 24px; }
  .contact-faq-section { padding: 48px 24px; }
}

/* ── CASE STUDY: banner image ───────────────────────────────── */
.case-study-banner {
  width: 100%; aspect-ratio: 16/6;
  object-fit: cover; object-position: center;
  display: block; border-radius: 10px;
  margin-bottom: 48px;
  box-shadow: 0 8px 32px rgba(30,58,95,0.15);
}


/* ── ABOUT: team cards full-width, stack on mobile ─── */
@media (max-width: 768px) {
  section[aria-labelledby="team-heading"] div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}


/* ── NAVY HERO → CONTENT GAP ────────────────────────────────── */
/* Ensures visible white space between navy hero and first content section */
.page-content > section[style*="background:var(--navy)"] + section,
.page-content > section[style*="background:var(--navy)"] + .casestudies,
.page-content > section[style*="background:var(--navy)"] + .two-sides {
  margin-top: 0;
  padding-top: 56px !important;
}

/* Logo image — fill nav height minus minimal padding */
