/* ============================================
   BRITE HIRE — Main Stylesheet
   ============================================
   Brand Colors:
     Navy       #1F4F7A  — primary
     Gold       #FACD1A  — accent (CTA blocks, dividers)
     Gold Deep  #9C7D0A  — accessibility variant (links, small accents on light bg)
     Ink        #14171C  — body text
     Slate      #5A6573  — secondary text
     Mist       #D9DEE5  — subtle borders
     Cloud      #F5F4EF  — warm-white surface
     Paper      #FFFFFF  — pure white
   Typography:
     Display  Libre Franklin 900 (Franklin Gothic Heavy web equivalent)
     Body     Libre Franklin 400/500
   ============================================ */

/* ---- 1. RESET & BASE ----------------------- */

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

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

body {
  font-family: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: #14171C;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #9C7D0A;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

a:hover {
  border-bottom-color: #9C7D0A;
}

/* ---- 2. LAYOUT PRIMITIVES ------------------ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-cloud {
  background-color: #F5F4EF;
}

.section-navy {
  background-color: #1F4F7A;
  color: #FFFFFF;
}

.section-ink {
  background-color: #14171C;
  color: #FFFFFF;
}

/* ---- 3. TYPOGRAPHY ------------------------- */

.eyebrow {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #9C7D0A;
  margin-bottom: 20px;
  display: inline-block;
}

.eyebrow-gold {
  color: #FACD1A;
}

.eyebrow-slate {
  color: #5A6573;
}

h1, .h1 {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1F4F7A;
  margin-bottom: 24px;
}

.h1-paper { color: #FFFFFF; }
.h1-gold { color: #FACD1A; }

h2, .h2 {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1F4F7A;
  margin-bottom: 20px;
}

.h2-paper { color: #FFFFFF; }

h3, .h3 {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.25;
  color: #1F4F7A;
  margin-bottom: 12px;
}

h4, .h4 {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
  color: #14171C;
  margin-bottom: 8px;
}

p {
  margin-bottom: 18px;
}

p:last-child { margin-bottom: 0; }

.lede {
  font-size: 1.25rem;
  line-height: 1.55;
  color: #14171C;
  font-weight: 400;
  margin-bottom: 32px;
}

.lede-paper { color: rgba(255, 255, 255, 0.92); }

.italic-note {
  font-style: italic;
  color: #5A6573;
}

.gold-rule {
  display: block;
  width: 56px;
  height: 3px;
  background-color: #FACD1A;
  margin: 24px 0 32px;
  border: 0;
}

.gold-rule-center {
  margin-left: auto;
  margin-right: auto;
}

/* ---- 4. BUTTONS ---------------------------- */

.btn {
  display: inline-block;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.4px;
  padding: 16px 32px;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: #FACD1A;
  color: #1F4F7A;
  border-color: #FACD1A;
}

.btn-primary:hover {
  background-color: #1F4F7A;
  color: #FACD1A;
  border-color: #FACD1A;
  border-bottom-color: #FACD1A;
}

.btn-secondary {
  background-color: transparent;
  color: #1F4F7A;
  border-color: #1F4F7A;
}

.btn-secondary:hover {
  background-color: #1F4F7A;
  color: #FFFFFF;
  border-bottom-color: #1F4F7A;
}

.btn-secondary-paper {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-secondary-paper:hover {
  background-color: #FFFFFF;
  color: #1F4F7A;
  border-bottom-color: #FFFFFF;
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.text-link {
  display: inline-block;
  font-weight: 600;
  color: #9C7D0A;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.text-link::after {
  content: " →";
}

.text-link:hover {
  border-bottom-color: #9C7D0A;
}

.text-link-paper {
  color: #FACD1A;
}

.text-link-paper:hover {
  border-bottom-color: #FACD1A;
}

/* ---- 5. HEADER & NAV ----------------------- */

.site-header {
  background-color: #FFFFFF;
  border-bottom: 3px solid #FACD1A;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 24px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.site-logo {
  display: block;
  border-bottom: none;
}

.site-logo img {
  height: 72px;
  width: auto;
}

.site-logo:hover {
  border-bottom: none;
}

.site-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.site-nav a {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #14171C;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: all 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #1F4F7A;
  border-bottom-color: #FACD1A;
}

.site-nav .btn {
  padding: 10px 20px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1F4F7A;
  margin: 5px 0;
  transition: all 0.2s ease;
}

/* ---- 6. HERO BLOCKS ------------------------ */

.hero {
  padding: 96px 0 80px;
}

.hero-navy {
  background-color: #1F4F7A;
  color: #FFFFFF;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-navy::before,
.hero-navy::after {
  content: "";
  position: absolute;
  background-color: #FACD1A;
  opacity: 0.06;
  border-radius: 50%;
  pointer-events: none;
}

.hero-navy::before {
  width: 480px;
  height: 480px;
  top: -200px;
  right: -150px;
}

.hero-navy::after {
  width: 320px;
  height: 320px;
  bottom: -180px;
  left: -120px;
}

.hero-navy .container { position: relative; z-index: 1; }

.hero-editorial {
  background-color: #FFFFFF;
  padding: 80px 0 96px;
  position: relative;
  border-bottom: 1px solid #D9DEE5;
}

.hero-editorial::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #FACD1A 0%, #FACD1A 40%, transparent 100%);
}

.hero-editorial .eyebrow {
  color: #9C7D0A;
  font-size: 12px;
  margin-bottom: 32px;
}

.hero-editorial h1 {
  color: #1F4F7A;
  margin-bottom: 32px;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
}

.hero-editorial .h1-gold-accent {
  color: #1F4F7A;
}

.hero-editorial .h1-gold-accent::after {
  content: ".";
  color: #FACD1A;
}

.hero-editorial .lede {
  color: #14171C;
  max-width: 760px;
  font-size: 1.3rem;
  line-height: 1.55;
}

.hero-cloud {
  background-color: #F5F4EF;
  padding: 96px 0;
}

/* ---- 7. PROOF STRIP ------------------------ */

.proof-strip {
  background-color: #14171C;
  color: #FFFFFF;
  padding: 56px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof-number {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  color: #FACD1A;
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 12px;
  max-width: 220px;
}

/* ---- 8. CARDS ------------------------------ */

.card-grid {
  display: grid;
  gap: 32px;
}

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

.card {
  background-color: #FFFFFF;
  border: 1px solid #D9DEE5;
  padding: 32px;
  border-radius: 2px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card-accent-top {
  border-top: 4px solid #FACD1A;
}

.card-cloud {
  background-color: #F5F4EF;
  border: none;
}

.card-number {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.6px;
  color: #FACD1A;
  margin-bottom: 16px;
  display: block;
}

.card-list {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.card-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 15px;
}

.card-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #FACD1A;
  font-weight: 700;
}

/* ---- 9. METHOD / PILLARS ------------------- */

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

.method-pillar .pillar-number {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px;
  color: #FACD1A;
  margin-bottom: 12px;
  display: block;
}

.method-pillar h3 {
  color: #1F4F7A;
  margin-bottom: 12px;
}

.method-pillar .pillar-tagline {
  font-style: italic;
  color: #5A6573;
  margin-bottom: 16px;
  font-size: 15px;
}

/* ---- 10. CASE STUDY BLOCKS ----------------- */

.case-study {
  background-color: #FFFFFF;
  border: 1px solid #D9DEE5;
  padding: 40px;
  border-radius: 2px;
  border-left: 4px solid #FACD1A;
}

.case-study-meta {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #9C7D0A;
  margin-bottom: 16px;
}

.case-study h3 {
  color: #1F4F7A;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.case-study-stats {
  display: flex;
  gap: 32px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.case-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.case-stat-number {
  font-weight: 900;
  font-size: 1.6rem;
  color: #1F4F7A;
}

.case-stat-label {
  font-size: 14px;
  color: #5A6573;
}

/* ---- 11. PULL QUOTE ------------------------ */

.pull-quote {
  background-color: #F5F4EF;
  border-left: 4px solid #FACD1A;
  padding: 32px 40px;
  margin: 48px 0;
  position: relative;
}

.pull-quote p {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.45;
  color: #1F4F7A;
  font-style: italic;
  margin-bottom: 16px;
}

.pull-quote cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #5A6573;
}

/* ---- 12. PHOTO PLACEHOLDERS ---------------- */

.photo-placeholder {
  background: repeating-linear-gradient(
    45deg,
    #F5F4EF,
    #F5F4EF 10px,
    #ECEAE0 10px,
    #ECEAE0 20px
  );
  border: 2px dashed #1F4F7A;
  color: #1F4F7A;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 32px;
  border-radius: 2px;
  min-height: 240px;
}

.photo-placeholder span {
  display: block;
  max-width: 280px;
  line-height: 1.5;
}

.photo-placeholder .ph-tag {
  display: inline-block;
  background-color: #1F4F7A;
  color: #FFFFFF;
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 1.4px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.photo-placeholder-tall {
  min-height: 500px;
}

.photo-placeholder-short {
  min-height: 180px;
}

/* ---- 13. FORM STYLES ----------------------- */

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #14171C;
  margin-bottom: 8px;
}

.form-group label .required {
  color: #B33A3A;
}

.form-group label .optional {
  color: #5A6573;
  font-weight: 400;
  font-style: italic;
  font-size: 13px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #D9DEE5;
  border-radius: 2px;
  font-family: inherit;
  font-size: 16px;
  color: #14171C;
  background-color: #FFFFFF;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1F4F7A;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}

.form-footnote {
  font-size: 13px;
  color: #5A6573;
  margin-top: 16px;
  line-height: 1.5;
}

/* ---- 14. FOOTER ---------------------------- */

.site-footer {
  background-color: #1F4F7A;
  color: rgba(255, 255, 255, 0.85);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-col h4 {
  color: #FACD1A;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid transparent;
}

.footer-col a:hover {
  color: #FACD1A;
  border-bottom-color: #FACD1A;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 16px;
}

.footer-newsletter input[type="email"] {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  padding: 12px 14px;
  width: 100%;
  font-size: 14px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.footer-newsletter input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter button {
  background-color: #FACD1A;
  color: #1F4F7A;
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.4px;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.footer-newsletter button:hover {
  background-color: #FFFFFF;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
}

.footer-socials a svg {
  display: block;
}

.footer-socials a:hover {
  background-color: #FACD1A;
  color: #1F4F7A;
  border-color: #FACD1A;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 16px;
}

/* ---- 15. UTILITIES ------------------------- */

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.two-col-photo-left {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}

/* About page-specific */
.about-hero {
  background-color: #FFFFFF;
  padding: 80px 0 96px;
  position: relative;
  border-bottom: 1px solid #D9DEE5;
}

.about-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #FACD1A 0%, #FACD1A 40%, transparent 100%);
}

.about-hero .about-name {
  color: #1F4F7A;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  margin-bottom: 8px;
}

.about-hero .about-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #5A6573;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.about-hero-photo {
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(20, 23, 28, 0.08);
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.credentials-block h4 {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #9C7D0A;
  font-weight: 700;
  margin-bottom: 14px;
}

.credentials-block ul {
  list-style: none;
  padding: 0;
}

.credentials-block li {
  padding: 8px 0;
  border-bottom: 1px solid #D9DEE5;
  font-size: 15px;
  line-height: 1.4;
}

.credentials-block li:last-child {
  border-bottom: none;
}

.commitment {
  position: relative;
  padding-left: 0;
}

.commitment .commitment-number {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.8px;
  color: #FACD1A;
  margin-bottom: 8px;
  display: block;
}

.commitment h3 {
  color: #1F4F7A;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.pull-quote-large {
  background-color: #1F4F7A;
  color: #FFFFFF;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.pull-quote-large::before,
.pull-quote-large::after {
  content: "";
  position: absolute;
  background-color: #FACD1A;
  opacity: 0.06;
  border-radius: 50%;
  pointer-events: none;
}

.pull-quote-large::before {
  width: 320px;
  height: 320px;
  top: -160px;
  right: -100px;
}

.pull-quote-large::after {
  width: 240px;
  height: 240px;
  bottom: -120px;
  left: -100px;
}

.pull-quote-large blockquote {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.35;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.pull-quote-large cite {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FACD1A;
  position: relative;
  z-index: 1;
}

/* Process steps (Services Overview, "How engagements begin") */
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #D9DEE5;
}

.process-step:last-child {
  border-bottom: none;
}

.process-number {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  color: #FACD1A;
  letter-spacing: -0.02em;
}

.process-content h3 {
  color: #1F4F7A;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.process-content p {
  color: #14171C;
  margin-bottom: 0;
}

/* ---- 16. RESPONSIVE ------------------------ */

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px 32px;
    border-bottom: 1px solid #D9DEE5;
    gap: 20px;
    align-items: flex-start;
  }

  .site-nav.open { display: flex; }

  .site-nav .btn { width: 100%; }

  .card-grid-3,
  .card-grid-4,
  .method-grid,
  .two-col,
  .two-col-text,
  .two-col-photo-left,
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .card-grid-2 {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .section {
    padding: 64px 0;
  }

  .hero, .hero-navy {
    padding: 64px 0;
  }
}

@media (max-width: 600px) {
  .container, .container-narrow {
    padding: 0 20px;
  }

  .header-inner {
    padding: 0 20px;
  }

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

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

  .case-study {
    padding: 28px 24px;
  }

  .pull-quote {
    padding: 24px 28px;
  }

  .process-step {
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 20px 0;
  }

  .process-number {
    font-size: 1.8rem;
  }

  .btn-row {
    flex-direction: column;
  }

  .btn-row .btn {
    width: 100%;
  }
}
