:root {
  /* Colors — official Brand Style Guide v1.0 (July 2026) */
  --navy: #17375E;
  --bronze: #B88746;
  --emerald: #2FA36B;
  --emerald-dark: #27875A;
  --ivory: #F8F7F4;
  --graphite: #2D343D;
  --muted: #5A6472;
  --muted-2: #8A93A0;
  --border: #EAE8E2;
  --footer-navy: #102946;
  --cream: #E8D5B5;
  --white: #FFFFFF;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  --shadow-sm: 0 6px 20px rgba(23,55,94,0.07);
  --shadow-md: 0 16px 40px rgba(23,55,94,0.12);
  --shadow-lg: 0 24px 60px rgba(23,55,94,0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
#services, #about, #testimonials, #contact { scroll-margin-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--ivory);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: var(--emerald); }
a:hover { color: var(--navy); }
h1, h2, h3, p { margin: 0; }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Stagger: grid children reveal in sequence rather than all at once */
.service-grid .service-card:nth-child(1), .stat-row .stat:nth-child(1), .included-grid .included-item:nth-child(1), .problem-benefits .problem-benefit:nth-child(1), .why-values-grid .value-card:nth-child(1), .industry-grid .industry-card:nth-child(1), .process-steps .process-step:nth-child(1) { transition-delay: 0s; }
.service-grid .service-card:nth-child(2), .stat-row .stat:nth-child(2), .included-grid .included-item:nth-child(2), .problem-benefits .problem-benefit:nth-child(2), .why-values-grid .value-card:nth-child(2), .industry-grid .industry-card:nth-child(2), .process-steps .process-step:nth-child(2) { transition-delay: 0.08s; }
.service-grid .service-card:nth-child(3), .stat-row .stat:nth-child(3), .included-grid .included-item:nth-child(3), .problem-benefits .problem-benefit:nth-child(3), .why-values-grid .value-card:nth-child(3), .industry-grid .industry-card:nth-child(3), .process-steps .process-step:nth-child(3) { transition-delay: 0.16s; }
.service-grid .service-card:nth-child(4), .stat-row .stat:nth-child(4), .included-grid .included-item:nth-child(4), .problem-benefits .problem-benefit:nth-child(4), .why-values-grid .value-card:nth-child(4), .industry-grid .industry-card:nth-child(4), .process-steps .process-step:nth-child(4) { transition-delay: 0.24s; }

/* Sticky nav gains depth once the page scrolls */
.nav { transition: box-shadow 0.25s ease, background-color 0.25s ease; }
.nav.is-scrolled { box-shadow: 0 2px 16px rgba(23,55,94,0.08); }

/* Hero decorative rings drift gently with scroll (skipped under reduced motion) */
.hero-deco { transition: transform 0.35s linear; will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero-deco { transition: none !important; transform: none !important; }
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-align: center;
}
.btn-navy { background: var(--navy); color: var(--white); font-size: 14px; padding: 12px 24px; }
.btn-navy:hover { background: var(--bronze); color: var(--white); }
.btn-emerald { background: var(--emerald); color: var(--white); }
.btn-emerald:hover { background: var(--emerald-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--bronze); color: var(--cream); }

/* NAV */
.nav { background: var(--ivory); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; }
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 20px clamp(24px, 6vw, 80px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
a.brand { display: block; text-decoration: none; color: inherit; }
.brand-row { display: flex; align-items: center; gap: 14px; }
.brand-icon { height: 40px; width: auto; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 0.12em; color: var(--navy); line-height: 1.3; }
.brand-tagline { display: flex; align-items: center; gap: 8px; margin-top: 7px; }
.tagline-rule { width: 18px; height: 1.5px; background: var(--bronze); }
.brand-tagline span[data-i18n] { font-family: var(--font-display); font-weight: 600; font-size: 9.5px; letter-spacing: 0.16em; color: var(--navy); white-space: nowrap; }

.nav-links { display: flex; gap: 32px; font-size: 14.5px; font-weight: 500; }
.nav-links a { color: var(--graphite); }
.nav-links a:hover { color: var(--navy); }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.lang-toggle { display: flex; align-items: center; gap: 4px; }
.lang-btn { border: none; background: none; font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--muted); padding: 6px; cursor: pointer; }
.lang-btn.is-active { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.lang-sep { color: var(--muted-2); }

@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* HERO */
.hero { background: var(--navy); padding: clamp(64px, 9vw, 120px) clamp(24px, 6vw, 80px); position: relative; overflow: hidden; }
.hero-deco { position: absolute; border-radius: 4px; pointer-events: none; }
.hero-deco-1 { right: -120px; top: -120px; width: 480px; height: 480px; border: 1px solid rgba(184,135,70,0.25); transform: rotate(18deg); }
.hero-deco-2 { right: 40px; bottom: -180px; width: 380px; height: 380px; border: 1px solid rgba(255,255,255,0.08); transform: rotate(-12deg); }

.hero-inner {
  max-width: 1240px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 64px; align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(184,135,70,0.5); border-radius: 999px; padding: 8px 18px; margin-bottom: 32px;
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); }
.pill span[data-i18n] { color: var(--cream); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; }

.hero h1 {
  font-family: var(--font-display); font-size: clamp(38px, 5vw, 64px); font-weight: 800;
  color: var(--white); line-height: 1.06; letter-spacing: -0.02em; margin: 0 0 24px;
}
.hero-sub { color: rgba(255,255,255,0.78); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.65; margin: 0 0 40px; max-width: 520px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-note { color: rgba(255,255,255,0.7); font-size: 13px; margin: 20px 0 0; }

.hero-photo-wrap { display: flex; justify-content: center; position: relative; }
.hero-photo {
  width: 100%; max-width: 460px; aspect-ratio: 4 / 4.6; object-fit: cover;
  border-radius: 16px; box-shadow: 0 32px 64px rgba(0,0,0,0.25); display: block;
}
.hero-photo-card {
  position: absolute; bottom: 28px; left: 28px; right: 28px; max-width: 404px; margin: 0 auto;
  background: rgba(248,247,244,0.97); border-radius: 12px; padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
}
.bars { display: flex; align-items: flex-end; gap: 4px; height: 34px; }
.bars.bars-sm { height: 30px; margin-left: auto; }
.bar { width: 8px; border-radius: 2px; }
.bar-1 { height: 14px; background: var(--bronze); }
.bar-2 { height: 22px; background: var(--navy); }
.bar-3 { height: 34px; background: var(--emerald); }
.bars-sm .bar-1 { height: 12px; } .bars-sm .bar-2 { height: 20px; } .bars-sm .bar-3 { height: 30px; }

.hero-photo-card-title { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--navy); }
.hero-photo-card-sub { font-size: 12.5px; color: var(--muted); }

/* SOCIAL PROOF */
.social-proof { background: var(--white); border-bottom: 1px solid var(--border); padding: 28px clamp(24px, 6vw, 80px); }
.social-proof-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.social-proof-label { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: var(--muted-2); white-space: nowrap; }
.social-proof-tags { display: flex; gap: clamp(24px, 4vw, 56px); flex-wrap: wrap; }
.social-proof-tags span { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #B9BFC8; letter-spacing: 0.04em; }

/* ABOUT */
.about { padding: clamp(72px, 9vw, 120px) clamp(24px, 6vw, 80px); }
.about-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 64px; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: 16px; display: block; }
.corner { position: absolute; width: 72px; height: 72px; }
.corner-tl { top: -14px; left: -14px; border-top: 3px solid var(--bronze); border-left: 3px solid var(--bronze); border-radius: 16px 0 0 0; }
.corner-br { bottom: -14px; right: -14px; border-bottom: 3px solid var(--bronze); border-right: 3px solid var(--bronze); border-radius: 0 0 16px 0; }

.eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; color: var(--bronze); margin-bottom: 18px; }
.about h2 { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 42px); font-weight: 800; color: var(--navy); margin: 0 0 24px; line-height: 1.12; letter-spacing: -0.015em; }
.about-p { font-size: 16.5px; line-height: 1.7; margin: 0 0 18px; color: var(--graphite); max-width: 520px; }
.about-p-muted { color: var(--muted); margin-bottom: 32px; }

.stat-row { display: flex; gap: clamp(28px, 4vw, 56px); flex-wrap: wrap; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--bronze); }
.stat-num-sm { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--bronze); line-height: 1.3; }
.stat-label { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

/* SERVICES */
.services { background: var(--white); padding: clamp(72px, 9vw, 120px) clamp(24px, 6vw, 80px); }
.services-inner { max-width: 1240px; margin: 0 auto; }
.services-head { max-width: 620px; margin-bottom: 56px; }
.services h2 { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 42px); font-weight: 800; color: var(--navy); margin: 0 0 18px; line-height: 1.12; letter-spacing: -0.015em; }
.services-head p { font-size: 16.5px; line-height: 1.7; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.service-card {
  background: var(--ivory); border-radius: 16px; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 18px;
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1), box-shadow 0.2s ease, background-color 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); background: var(--white); transform: translateY(-4px); }
@media (prefers-reduced-motion: reduce) {
  .service-card:hover { transform: none; }
}
.service-glyph {
  width: 52px; height: 52px; border-radius: 14px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--cream);
}
.service-card h3 { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--navy); line-height: 1.25; }
.service-card p { font-size: 14.5px; line-height: 1.65; color: var(--muted); flex: 1; }
.service-card .learn-more { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--emerald); }
.service-card:hover .learn-more { color: var(--navy); }

/* TESTIMONIAL */
.testimonial { padding: clamp(72px, 9vw, 120px) clamp(24px, 6vw, 80px); }
.testimonial-card {
  max-width: 900px; margin: 0 auto; position: relative;
  background: var(--white); border-radius: 16px;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 6vw, 80px);
  box-shadow: 0 16px 48px rgba(23,55,94,0.08);
}
.testimonial-bar { position: absolute; top: 0; left: clamp(28px, 6vw, 80px); width: 64px; height: 4px; background: var(--emerald); border-radius: 0 0 4px 4px; }
.testimonial-quote { font-family: var(--font-accent); font-style: italic; font-size: clamp(24px, 3.2vw, 36px); line-height: 1.35; color: var(--navy); }
.testimonial-attr { display: flex; align-items: center; gap: 18px; margin-top: 36px; flex-wrap: wrap; }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, #ECEAE4, #F1EFE9); }
.testimonial-name { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--navy); }
.testimonial-role { font-size: 13px; color: var(--muted); }

/* CTA + LEAD FORM */
.cta { background: var(--navy); padding: clamp(72px, 9vw, 110px) clamp(24px, 6vw, 80px); position: relative; overflow: hidden; }
.cta-deco { position: absolute; left: -100px; bottom: -160px; width: 420px; height: 420px; border: 1px solid rgba(184,135,70,0.25); border-radius: 4px; transform: rotate(24deg); pointer-events: none; }
.cta-inner {
  max-width: 1240px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start;
}
.cta h2 { font-family: var(--font-display); font-size: clamp(30px, 3.8vw, 46px); font-weight: 800; color: var(--white); margin: 0 0 16px; line-height: 1.1; letter-spacing: -0.015em; }
.cta-copy p { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.65; }
.cta-phone-line { margin-top: 24px !important; color: rgba(255,255,255,0.6); font-size: 14px; }
.cta-phone { color: var(--cream); font-weight: 700; }

.lead-form-card { background: var(--white); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-lg); }
.form-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); margin: 0 0 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--graphite); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--graphite);
  background: var(--ivory); border: 1px solid var(--border); border-radius: 10px; padding: 11px 12px;
}
.field textarea { resize: vertical; min-height: 90px; font-family: var(--font-body); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--emerald); outline-offset: 1px; }
.field-optional { font-weight: 400; color: var(--muted-2); text-transform: none; letter-spacing: 0; }
.form-submit { width: 100%; margin-top: 4px; }
.form-success { text-align: center; padding: 24px 0; font-size: 16px; color: var(--navy); font-weight: 600; font-family: var(--font-display); }
.form-consent { font-size: 12px; line-height: 1.6; color: var(--muted-2); margin: 14px 0 0; }
.form-consent a { color: var(--emerald); text-decoration: underline; }

@media (max-width: 860px) {
  .cta-inner { grid-template-columns: 1fr; }
}

/* FOOTER */
.footer { background: var(--footer-navy); padding: 56px clamp(24px, 6vw, 80px) 36px; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand { max-width: 320px; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-icon { height: 36px; }
.footer-brand-name { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; color: var(--white); line-height: 1.3; }
.footer-tagline { font-family: var(--font-accent); font-style: italic; font-size: 19px; color: var(--bronze); }
.footer-contact { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 16px; line-height: 1.5; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--bronze); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 14px; }
.footer-legal a { color: rgba(255,255,255,0.5); font-size: 12px; }
.footer-legal a:hover { color: var(--bronze); }

.footer-cols { display: flex; gap: clamp(40px, 6vw, 96px); flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-head { font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,0.8); font-size: 14px; }
.footer-col a:hover { color: var(--bronze); }

.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 12.5px; color: rgba(255,255,255,0.45); }

/* SERVICE DETAIL PAGES */
.breadcrumb { max-width: 1240px; margin: 0 auto; padding: 20px clamp(24px, 6vw, 80px) 0; font-size: 13.5px; color: var(--muted-2); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--navy); }

.page-hero { padding: clamp(48px, 7vw, 88px) clamp(24px, 6vw, 80px) clamp(56px, 8vw, 96px); }
.page-hero-inner { max-width: 800px; margin: 0 auto; text-align: left; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 4.4vw, 52px); font-weight: 800; color: var(--navy); line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 22px; }
.page-hero-sub { font-size: clamp(16px, 1.5vw, 18.5px); line-height: 1.7; color: var(--muted); margin: 0 0 36px; max-width: 640px; }
.page-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero-ctas .btn-outline { color: var(--navy); border-color: var(--border); }
.page-hero-ctas .btn-outline:hover { border-color: var(--bronze); color: var(--navy); }

/* Page hero with photo: two-column layout, text left / image right */
.page-hero-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; align-items: center; }
.page-hero-grid .page-hero-inner { max-width: 100%; margin: 0; }
.page-hero-photo-wrap { position: relative; }
.page-hero-photo { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: 16px; display: block; box-shadow: var(--shadow-md); }
.page-hero-photo-wrap .corner-tl { top: -14px; left: -14px; border-top: 3px solid var(--bronze); border-left: 3px solid var(--bronze); border-radius: 16px 0 0 0; }
.page-hero-photo-wrap .corner-br { bottom: -14px; right: -14px; border-bottom: 3px solid var(--bronze); border-right: 3px solid var(--bronze); border-radius: 0 0 16px 0; }
@media (max-width: 700px) {
  .page-hero-photo-wrap { order: -1; }
}

.included { background: var(--white); padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px); }
.included-inner { max-width: 1240px; margin: 0 auto; }
.included h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--navy); margin: 0 0 40px; letter-spacing: -0.01em; }
.included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.included-item { display: flex; gap: 16px; align-items: flex-start; background: var(--ivory); border-radius: 14px; padding: 24px 26px; }
.included-check { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--emerald); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; }
.included-item p { font-size: 15px; line-height: 1.6; color: var(--graphite); }

.teach { padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px); }
.teach-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; align-items: center; }
.teach-copy h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--navy); margin: 0 0 22px; letter-spacing: -0.01em; }
.teach-copy p { font-size: 16.5px; line-height: 1.75; color: var(--graphite); max-width: 560px; }
.teach-card { background: var(--navy); border-radius: 16px; padding: 40px 36px; box-shadow: var(--shadow-sm); }
.teach-card-eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: 0.12em; color: var(--bronze); margin-bottom: 16px; }
.teach-card-quote { font-family: var(--font-accent); font-style: italic; font-size: clamp(19px, 2vw, 23px); line-height: 1.4; color: var(--white); }

.cross-links { background: var(--ivory); padding: clamp(48px, 7vw, 80px) clamp(24px, 6vw, 80px); border-top: 1px solid var(--border); }
.cross-links-inner { max-width: 1240px; margin: 0 auto; }
.cross-links-head { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; color: var(--muted-2); margin-bottom: 24px; }
.cross-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.cross-card { background: var(--white); border-radius: 14px; padding: 22px 24px; display: flex; flex-direction: column; gap: 6px; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.cross-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.cross-card-title { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--navy); }
.cross-card-arrow { font-size: 13.5px; color: var(--emerald); font-weight: 600; }

.page-cta { background: var(--navy); padding: clamp(56px, 8vw, 90px) clamp(24px, 6vw, 80px); text-align: center; }
.page-cta-inner { max-width: 640px; margin: 0 auto; }
.page-cta h2 { font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; color: var(--white); margin: 0 0 18px; letter-spacing: -0.01em; }
.page-cta p { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.65; margin: 0 0 32px; }
.page-cta-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.page-cta-phone { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 20px !important; }
.page-cta-phone a { color: var(--cream); font-weight: 700; }

/* PROBLEM TO OUTCOME (homepage) */
.problem-outcome { background: var(--ivory); padding: clamp(64px, 8vw, 100px) clamp(24px, 6vw, 80px); border-top: 1px solid var(--border); }
.problem-outcome-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.problem-outcome h2 { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; color: var(--navy); line-height: 1.2; letter-spacing: -0.015em; margin: 0 0 48px; }
.problem-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; text-align: left; }
.problem-benefit { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border-radius: 14px; padding: 24px 26px; box-shadow: var(--shadow-sm); }
.problem-benefit-icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--emerald); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.problem-benefit p { font-size: 15.5px; line-height: 1.6; color: var(--graphite); font-weight: 600; margin: 0; }

/* WHY 3 POINT SERVICES (brand values) */
.why-values { background: var(--ivory); padding: clamp(72px, 9vw, 120px) clamp(24px, 6vw, 80px); }
.why-values-inner { max-width: 1240px; margin: 0 auto; }
.why-values-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.why-values-head .eyebrow { display: block; text-align: center; }
.why-values-head h2 { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 42px); font-weight: 800; color: var(--navy); margin: 0 0 18px; line-height: 1.12; letter-spacing: -0.015em; }
.why-values-head p { font-size: 16.5px; line-height: 1.7; color: var(--muted); }
.why-values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.value-card { background: var(--white); border-radius: 16px; padding: 40px 32px; text-align: center; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s ease, transform 0.2s ease; }
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
@media (prefers-reduced-motion: reduce) { .value-card:hover { transform: none; } }
.value-badge { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--cream); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.value-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--navy); margin: 0 0 12px; }
.value-card p { font-size: 14.5px; line-height: 1.65; color: var(--muted); }

/* WHO WE SERVE (industry cards, homepage) */
.who-we-serve { background: var(--white); padding: clamp(72px, 9vw, 120px) clamp(24px, 6vw, 80px); }
.who-we-serve-inner { max-width: 1240px; margin: 0 auto; }
.who-we-serve-head { max-width: 640px; margin-bottom: 40px; }
.who-we-serve-head h2 { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 42px); font-weight: 800; color: var(--navy); margin: 0 0 18px; line-height: 1.12; letter-spacing: -0.015em; }
.who-we-serve-head p { font-size: 16.5px; line-height: 1.7; color: var(--muted); }
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.industry-card { background: var(--ivory); border-radius: 16px; padding: 32px 28px; transition: box-shadow 0.2s ease; }
.industry-card:hover { box-shadow: var(--shadow-sm); }
.industry-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy); margin: 0 0 10px; }
.industry-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* Reusable: Process steps (service detail pages) */
.process { background: var(--ivory); padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px); }
.process-inner { max-width: 1240px; margin: 0 auto; }
.process h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--navy); margin: 0 0 40px; letter-spacing: -0.01em; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.process-step { background: var(--white); border-radius: 14px; padding: 28px 24px; box-shadow: var(--shadow-sm); }
.process-step-num { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--bronze); margin-bottom: 12px; }
.process-step h3 { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--navy); margin: 0 0 8px; }
.process-step p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* Reusable: FAQ (service detail pages) */
.faq { background: var(--white); padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px); }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--navy); margin: 0 0 32px; letter-spacing: -0.01em; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy); margin: 0 0 8px; }
.faq-a { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0; }

/* Reusable: Related industries (service detail pages) */
.related-industries { background: var(--ivory); padding: clamp(48px, 7vw, 80px) clamp(24px, 6vw, 80px); border-top: 1px solid var(--border); }
.related-industries-inner { max-width: 1240px; margin: 0 auto; }
.related-industries-head { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; color: var(--muted-2); margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.related-card { background: var(--white); border-radius: 14px; padding: 22px 24px; }
.related-card-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--navy); margin: 0 0 6px; }
.related-card p { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* Reusable: generic content page (About / Privacy / Terms / Accessibility) */
.content-hero { background: var(--navy); padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px); text-align: center; }
.content-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 4.4vw, 52px); font-weight: 800; color: var(--white); margin: 0 0 18px; letter-spacing: -0.02em; }
.content-hero p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 640px; margin: 0 auto; line-height: 1.65; }
.content-page { background: var(--white); padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px); }
.content-page-inner { max-width: 800px; margin: 0 auto; }
.content-page h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); margin: 40px 0 16px; }
.content-page h2:first-child { margin-top: 0; }
.content-page p { font-size: 15.5px; line-height: 1.75; color: var(--graphite); margin: 0 0 18px; }
.content-page ul { padding-left: 22px; margin: 0 0 18px; }
.content-page li { font-size: 15.5px; line-height: 1.75; color: var(--graphite); margin-bottom: 8px; }
.content-page .updated-date { font-size: 13px; color: var(--muted-2); margin-bottom: 8px; }

/* About page: team grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin: 32px 0; }
.team-card { background: var(--ivory); border-radius: 14px; padding: 28px 24px; text-align: center; }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #ECEAE4, #F1EFE9); margin: 0 auto 16px; }
.team-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy); }
.team-role { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

/* Services hub page */
.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
