/* ====================================================
   JimWoodsPR — Global Stylesheet
   Brand: Electric Cobalt #2E5BFF · Charcoal #333333 · Terracotta #D66853
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&family=Lato:wght@300;400;700&display=swap');

/* ---- CSS Variables --------------------------------- */
:root {
  --cobalt:        #2E5BFF;
  --cobalt-dark:   #1940d4;
  --cobalt-light:  #5b80ff;
  --cobalt-10:     rgba(46, 91, 255, 0.10);
  --cobalt-20:     rgba(46, 91, 255, 0.20);
  --charcoal:      #333333;
  --charcoal-80:   rgba(51, 51, 51, 0.80);
  --charcoal-50:   rgba(51, 51, 51, 0.50);
  --terracotta:    #D66853;
  --terracotta-dk: #b8523d;
  --white:         #ffffff;
  --off-white:     #f5f4f1;
  --light-gray:    #e5e4df;
  --dark:          #1a1a1a;
  --dark-2:        #111111;

  --font-display:  'Raleway', sans-serif;
  --font-body:     'Lato', sans-serif;

  --max-w:         1240px;
  --nav-h:         80px;
  --sec-v:         108px;
  --sec-v-sm:      64px;

  --ease:          all 0.26s ease;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:     0 24px 64px rgba(0,0,0,0.16);
  --radius:        4px;
  --radius-lg:     8px;
}

/* ---- Reset ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Typography ------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.75rem); font-weight: 800; }
h2 { font-size: clamp(2rem,   3.5vw, 3.1rem);  font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2vw,   1.8rem);  font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }

p  { font-size: 1.0625rem; line-height: 1.78; margin-bottom: 1.25em; color: var(--charcoal-80); }
p:last-child { margin-bottom: 0; }
.lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 300;
  line-height: 1.68;
  color: var(--charcoal-80);
}
.overline {
  display: block;
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 1rem;
}
.overline-terra { color: var(--terracotta); }

/* ---- Layout ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 44px;
}
.section    { padding: var(--sec-v) 0; }
.section-sm { padding: var(--sec-v-sm) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr;          gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr);   gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr);   gap: 28px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr;        gap: 64px; align-items: start; }

/* ---- Navigation ------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled,
.nav.page-nav {
  background: var(--dark);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img {
  height: 38px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--white);
}
.nav-logo-text span { color: var(--cobalt); }
.nav-logo-text .nav-logo-pr { color: var(--terracotta); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--cobalt);
  transition: var(--ease);
}
.nav-links a:hover           { color: var(--white); }
.nav-links a:hover::after    { width: 100%; }
.nav-links a.active          { color: var(--white); }
.nav-links a.active::after   { width: 100%; }
.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
}
.nav-cta:hover     { background: var(--terracotta-dk) !important; }
.nav-cta::after    { display: none !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: var(--ease);
}

/* ---- Buttons --------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--radius);
  transition: var(--ease);
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn-terra  { background: var(--terracotta); color: var(--white); }
.btn-terra:hover { background: var(--terracotta-dk); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-cobalt { background: var(--cobalt); color: var(--white); }
.btn-cobalt:hover { background: var(--cobalt-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--cobalt); border: 2px solid var(--cobalt); }
.btn-outline:hover { background: var(--cobalt); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-white { background: var(--white); color: var(--charcoal); }
.btn-white:hover { background: var(--off-white); }
.btn-lg { padding: 18px 44px; font-size: 0.88rem; }

/* ---- Image Placeholders ---------------------------- */
.img-ph {
  position: relative;
  background: #13151f;
  border: 1px dashed rgba(46, 91, 255, 0.35);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  gap: 10px;
}
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgba(46,91,255,0.035) 18px,
      rgba(46,91,255,0.035) 19px
    );
}
.img-ph-id {
  font-family: 'Courier New', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cobalt-light);
  background: rgba(46,91,255,0.14);
  padding: 4px 10px;
  border-radius: 3px;
  position: relative; z-index: 1;
}
.img-ph-icon {
  width: 32px; height: 32px;
  opacity: 0.25;
  position: relative; z-index: 1;
  flex-shrink: 0;
}
.img-ph-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  max-width: 180px;
  line-height: 1.45;
  position: relative; z-index: 1;
}
/* Sizes */
.img-ph.full-hero  { min-height: 100vh; border: none; border-radius: 0; }
.img-ph.tall       { min-height: 560px; }
.img-ph.half       { aspect-ratio: 4/3; }
.img-ph.landscape  { aspect-ratio: 16/9; }
.img-ph.portrait   { aspect-ratio: 3/4; min-height: 480px; }
.img-ph.card       { aspect-ratio: 3/2; }
.img-ph.wide       { aspect-ratio: 21/9; min-height: 280px; }
.img-ph.square     { aspect-ratio: 1/1; }

/* Real image wrappers — mirrors img-ph sizing */
.site-img           { display: block; width: 100%; height: 100%; object-fit: cover; }
.img-wrap           { overflow: hidden; border-radius: var(--radius); }
.img-wrap.tall      { min-height: 560px; }
.img-wrap.half      { aspect-ratio: 4/3; }
.img-wrap.landscape { aspect-ratio: 16/9; }
.img-wrap.portrait  { aspect-ratio: 3/4; min-height: 480px; }
.img-wrap.card      { aspect-ratio: 3/2; }
.img-wrap.wide      { aspect-ratio: 21/9; min-height: 280px; }

/* ---- Hero (Home) ----------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0; z-index: 0;
}
.hero-bg .img-ph {
  width: 100%; height: 100%;
  border: none; border-radius: 0;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(17,17,17,0.94) 0%,
    rgba(17,17,17,0.78) 50%,
    rgba(46,91,255,0.12) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: var(--nav-h);
  max-width: 760px;
}
.hero-content h1    { color: var(--white); margin-bottom: 1.5rem; }
.hero-content h1 em { font-style: normal; color: var(--cobalt); }
.hero-content .lead { color: rgba(255,255,255,0.78); margin-bottom: 2.75rem; }
.hero-content .overline { color: var(--cobalt); }
.hero-btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page Hero (inner pages) */
.page-hero {
  background: var(--dark);
  padding: 148px 0 88px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(46,91,255,0.14) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero h1    { color: var(--white); margin-bottom: 1.25rem; }
.page-hero .lead { color: rgba(255,255,255,0.68); max-width: 640px; margin-bottom: 0; }
.page-hero .overline { color: var(--cobalt); }

/* ---- Content Sections ------------------------------ */
.section-dark    { background: var(--dark);      color: var(--white); }
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark p  { color: rgba(255,255,255,0.68); }
.section-dark .overline { color: var(--cobalt); }

.section-light   { background: var(--off-white); }
.section-cobalt  { background: var(--cobalt); }
.section-cobalt h2,
.section-cobalt h3,
.section-cobalt p,
.section-cobalt .overline { color: var(--white); }

/* ---- Cards ----------------------------------------- */
/* Service Cards */
.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--ease);
}
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .svc-num {
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 1.25rem;
}
.service-card h3    { margin-bottom: 1rem; font-size: 1.4rem; }
.service-card p     { font-size: 0.9375rem; margin-bottom: 1rem; }
.service-card .svc-deliverables {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--light-gray);
}
.service-card .svc-deliverables h5 {
  color: var(--charcoal-50);
  margin-bottom: 0.6rem;
  font-size: 0.7rem;
}
.service-card .svc-deliverables ul { display: flex; flex-direction: column; gap: 4px; }
.service-card .svc-deliverables li {
  font-size: 0.875rem;
  color: var(--charcoal-80);
  padding-left: 1rem;
  position: relative;
}
.service-card .svc-deliverables li::before {
  content: '–';
  position: absolute; left: 0;
  color: var(--cobalt);
}

/* Phase Cards (dark bg) */
.phase-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  transition: var(--ease);
}
.phase-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(46,91,255,0.3); }
.phase-card .phase-num {
  font-family: var(--font-display);
  font-size: 3.25rem; font-weight: 900;
  color: var(--cobalt); line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0.55;
}
.phase-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.35rem; }
.phase-card p  { color: rgba(255,255,255,0.6); font-size: 0.9375rem; margin-bottom: 0; }

/* Insight/Article Cards */
.insight-card { display: flex; flex-direction: column; }
.insight-card .ic-image { border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
.insight-card .ic-tag {
  display: block; font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cobalt); margin-bottom: 8px;
}
.insight-card h3 { font-size: 1.15rem; margin-bottom: 8px; line-height: 1.35; color: var(--charcoal); }
.insight-card p  { font-size: 0.875rem; margin-bottom: 14px; }
.insight-card .read-more {
  font-family: var(--font-display);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cobalt);
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--ease);
  margin-top: auto;
}
.insight-card .read-more:hover { gap: 10px; }
.insight-card .read-more svg { width: 14px; height: 14px; }

/* Stat Blocks */
.stat-block { text-align: center; }
.stat-block .stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800;
  color: var(--cobalt); line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-block .stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* Value Prop List */
.value-list { display: flex; flex-direction: column; gap: 28px; }
.value-item { display: flex; gap: 20px; align-items: flex-start; }
.value-item .vi-icon {
  width: 44px; height: 44px;
  background: var(--cobalt-10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--cobalt);
}
.value-item h4 { margin-bottom: 4px; font-size: 1.05rem; }
.value-item p  { font-size: 0.9rem; margin-bottom: 0; }

/* Testimonial */
.testimonial {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 8rem; font-weight: 800;
  color: var(--cobalt); opacity: 0.12;
  position: absolute;
  top: -10px; left: 32px;
  line-height: 1;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative; z-index: 1;
}
.testimonial cite {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cobalt);
}

/* ---- CTA Sections ---------------------------------- */
.cta-section {
  background: var(--dark);
  padding: 108px 0;
  text-align: center;
}
.cta-section h2    { color: var(--white); margin-bottom: 1.25rem; }
.cta-section .lead { color: rgba(255,255,255,0.65); margin-bottom: 2.75rem; max-width: 580px; margin-left: auto; margin-right: auto; }

.cta-box {
  background: var(--cobalt);
  border-radius: var(--radius-lg);
  padding: 72px 88px;
  text-align: center;
}
.cta-box h2, .cta-box p { color: var(--white); }
.cta-box p { opacity: 0.85; max-width: 540px; margin: 0 auto 2.5rem; }

/* ---- Pull Quote ------------------------------------ */
.pull-quote {
  border-left: 4px solid var(--cobalt);
  padding: 24px 36px;
  margin: 44px 0;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 300;
  line-height: 1.55;
  font-style: italic;
  color: var(--charcoal);
}
.pull-quote cite {
  display: block;
  font-family: var(--font-display);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cobalt); margin-top: 12px; font-style: normal;
}

/* ---- Dividers -------------------------------------- */
.rule-cobalt { height: 3px; background: linear-gradient(90deg, var(--cobalt) 0%, transparent 100%); margin: 0; }

/* ---- Credential Strip ------------------------------ */
.cred-strip {
  background: var(--cobalt);
  padding: 28px 0;
}
.cred-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.cred-item {
  text-align: center;
}
.cred-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem; font-weight: 800;
  color: var(--white); line-height: 1;
  margin-bottom: 4px;
}
.cred-item span {
  font-size: 0.78rem; font-weight: 400;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
}

/* ---- Forms ----------------------------------------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 22px; }
label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 8px;
}
input, textarea, select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--ease);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px var(--cobalt-10);
}
textarea { min-height: 150px; resize: vertical; }
::placeholder { color: rgba(51,51,51,0.35); }

/* ---- Footer ---------------------------------------- */
footer {
  background: var(--dark-2);
  color: rgba(255,255,255,0.45);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-brand .f-logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.2rem;
  color: var(--white); display: block; margin-bottom: 1rem;
}
.footer-brand .f-logo span { color: var(--cobalt); }
.footer-brand .f-logo .nav-logo-pr { color: var(--terracotta); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.45); }
.footer-col h5 { color: var(--white); margin-bottom: 1.25rem; font-size: 0.72rem; }
.footer-col a {
  display: block; font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  transition: var(--ease);
}
.footer-col a:hover { color: var(--cobalt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: var(--ease); }
.footer-bottom a:hover { color: var(--cobalt); }

/* ---- Fade-in Animations ---------------------------- */
[data-fade] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-fade].visible { opacity: 1; transform: translateY(0); }
[data-fade][data-delay="1"] { transition-delay: 0.08s; }
[data-fade][data-delay="2"] { transition-delay: 0.16s; }
[data-fade][data-delay="3"] { transition-delay: 0.24s; }
[data-fade][data-delay="4"] { transition-delay: 0.32s; }

/* ---- Utilities ------------------------------------- */
.text-cobalt    { color: var(--cobalt); }
.text-terra     { color: var(--terracotta); }
.text-white     { color: var(--white) !important; }
.text-center    { text-align: center; }
.mx-auto        { margin-left: auto; margin-right: auto; }
.max-640        { max-width: 640px; }
.max-760        { max-width: 760px; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-16 { gap: 16px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.align-start { align-items: flex-start; }

/* ---- Responsive ------------------------------------ */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --sec-v: 72px; --sec-v-sm: 48px; }
  .container { padding: 0 22px; }
  .grid-2, .grid-2-1 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--dark);
    padding: 24px 32px 32px;
    gap: 22px;
    box-shadow: var(--shadow-lg);
  }

  .cta-box     { padding: 44px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cred-strip-inner { gap: 28px; }
  .hero-btn-group { flex-direction: column; }
  .hero-btn-group .btn { text-align: center; }
  .testimonial { padding: 36px 28px; }
  .pull-quote  { padding: 18px 24px; }
  .page-hero   { padding: 120px 0 64px; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
}
