:root {
  /* Corporate palette — deep navy + gold */
  --primary: #0a1f3d;
  --primary-mid: #12325c;
  --primary-light: #1a4d82;
  --accent: #c9a227;
  --accent-light: #dbb94a;
  --accent-dark: #a8861e;
  --accent-glow: rgba(201, 162, 39, 0.18);

  /* Legacy aliases (used across pages) */
  --bg: #f0f4f9;
  --bg-alt: #ffffff;
  --bg-dark: #071528;
  --text: #0d1b2e;
  --text-muted: #5a6d82;
  --text-light: rgba(255, 255, 255, 0.9);
  --border: rgba(10, 31, 61, 0.1);
  --navy: var(--primary);
  --navy-light: var(--primary-light);
  --cream: #e8edf4;
  --surface: #e8edf4;

  --shadow: 0 20px 50px rgba(10, 31, 61, 0.1);
  --shadow-lg: 0 30px 70px rgba(10, 31, 61, 0.14);
  --radius: 16px;
  --header-offset: 120px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.text-muted-custom {
  color: var(--text-muted) !important;
}

/* ══════════════════════════════════════
   CORPORATE HEADER
══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  transition: box-shadow 0.35s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(10, 31, 61, 0.15);
}

/* Top bar */
.header-topbar {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 0.45rem 0;
  border-bottom: 2px solid var(--accent);
}

.topbar-contacts {
  display: flex;
  gap: 1.75rem;
}

.topbar-contacts a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.2s;
}

.topbar-contacts a i {
  color: var(--accent-light);
  font-size: 0.75rem;
}

.topbar-contacts a:hover {
  color: #fff;
}

.topbar-social {
  display: flex;
  gap: 0.5rem;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.topbar-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

/* Main navbar */
.header-navbar {
  background: #fff;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}

.site-header.scrolled .header-navbar {
  padding: 0.45rem 0;
}

.header-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--accent-light);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(10, 31, 61, 0.2);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.brand-text small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.header-navbar .nav-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  transition: color 0.2s;
}

.header-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.header-navbar .nav-link:hover,
.header-navbar .nav-link.active {
  color: var(--primary);
}

.header-navbar .nav-link:hover::after,
.header-navbar .nav-link.active::after {
  width: 60%;
}

.nav-cta-wrap {
  margin-left: 0.5rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.35rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 14px rgba(10, 31, 61, 0.25);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.nav-cta i {
  font-size: 0.85rem;
  color: var(--accent-light);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(10, 31, 61, 0.3);
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary-mid) 0%, var(--primary-light) 100%);
}

.nav-cta.active {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: var(--primary) !important;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.35);
}

.nav-cta.active i {
  color: var(--primary);
}

.header-navbar .navbar-toggler {
  border: 1.5px solid var(--border);
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
}

.header-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Legacy alias */
.site-nav { /* kept for compat */ }

/* ══════════════════════════════════════
   CORPORATE FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0;
}

.footer-gold-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light), var(--accent-dark));
}

.footer-main {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(201, 162, 39, 0.06), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(26, 77, 130, 0.15), transparent 55%),
    var(--bg-dark);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-brand-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.2;
}

.footer-brand em {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  max-width: 34ch;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}

.footer-contact i {
  color: var(--accent-light);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
  word-break: break-all;
}

.footer-contact a:hover {
  color: var(--accent-light);
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
  color: var(--primary);
}

.footer-bottom {
  padding: 1.25rem 0;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-tagline {
  color: var(--accent-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Remove old footer styles */
.site-footer .brand,
.footer-divider { display: none; }


/* ── Hero ── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(196, 92, 38, 0.07), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(20, 36, 59, 0.05), transparent 55%),
    var(--bg);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  max-width: 14ch;
  margin-bottom: 0.5rem;
}

.hero-rotator-wrap {
  min-height: 1.2em;
  margin-bottom: 1.75rem;
}

.hero-rotator {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-rotator.fade-out {
  opacity: 0;
  transform: translateY(12px);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Stats ── */
.stats-section {
  padding: 4rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number .suffix {
  font-size: 0.55em;
  color: var(--accent);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 18ch;
  margin: 0 auto;
}

/* ── Section common ── */
.section-block {
  padding: 5.5rem 0;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 62ch;
}

/* ── Presence map ── */
.presence-section {
  background: var(--navy);
  color: var(--text-light);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.presence-section .section-label {
  color: rgba(255, 255, 255, 0.55);
}

.presence-section .section-title {
  color: #fff;
}

.presence-map {
  position: relative;
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.75rem;
  width: 100%;
}

.presence-state {
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}

.presence-state:hover {
  background: rgba(196, 92, 38, 0.2);
  border-color: rgba(196, 92, 38, 0.4);
}

.presence-state.active {
  background: rgba(196, 92, 38, 0.25);
  border-color: var(--accent);
  color: #fff;
}

/* ── Services cards ── */
.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream);
  -webkit-text-stroke: 1px var(--navy);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card h4 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* ── CTA banner ── */
.cta-section {
  padding: 5rem 0;
  background:
    linear-gradient(135deg, rgba(20, 36, 59, 0.03), rgba(196, 92, 38, 0.06)),
    var(--bg);
}

.cta-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

/* ── Why / deliverables ── */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Contact ── */
.contact-section {
  padding: 4rem 0 5rem;
  background: var(--bg);
}

.contact-page {
  border-top: none;
  padding: 3.5rem 0 5rem;
}

.contact-page .row {
  align-items: flex-start;
}

.contact-page .col-lg-5,
.contact-page .col-lg-7 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-help-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.contact-help-card ul {
  color: var(--text-muted);
  padding-left: 1.1rem;
  margin: 0;
}

.contact-form-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-offset) + 1rem);
}

.contact-help-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
}

.form-alert {
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.form-alert.alert-success {
  background: #ecfdf3;
  border: 1px solid #86efac;
  color: #166534;
}

.form-alert.alert-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.contact-info-block {
  margin-bottom: 2rem;
}

.contact-info-block h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.contact-info-block a {
  display: block;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}

.contact-info-block a:hover {
  color: var(--accent);
}

.contact-form-wrap h3 {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.form-control {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--text);
}

.form-control:focus {
  background: var(--bg-alt);
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(20, 36, 59, 0.08);
  color: var(--text);
}

.form-control::placeholder {
  color: #9aa3ad;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(10, 31, 61, 0.25);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-light) 100%);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.2s;
}

.btn-outline-navy:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(10, 31, 61, 0.2);
}

/* ── Inner pages ── */
.page-hero {
  padding: 8rem 0 3rem;
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(196, 92, 38, 0.06), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.inner-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.inner-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.inner-card ul {
  color: var(--text-muted);
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.tool-pill {
  display: inline-flex;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
}

/* ── Footer (legacy removed — see corporate footer above) ── */

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast-container {
  z-index: 1080;
}

/* ── Brand icon ── */
.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.text-accent { color: var(--accent) !important; }

/* ── Home hero (multi-page) ── */
.home-hero {
  padding: calc(var(--header-offset) + 2rem) 0 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, var(--accent-glow), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(10, 31, 61, 0.04), transparent 55%),
    var(--bg);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.home-hero .hero-title {
  max-width: none;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 0.25rem;
}

.hero-image-wrap {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hero-badge i {
  font-size: 1.75rem;
  color: var(--accent);
}

.hero-badge strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.2;
}

.hero-badge span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.bg-white-section { background: var(--bg-alt); }
.bg-navy-section { background: var(--navy); }

.img-rounded {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.shadow-img { box-shadow: var(--shadow); }

/* ── Service cards v2 ── */
.service-card-v2 {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-card-v2:hover .service-card-img img {
  transform: scale(1.05);
}

.service-icon {
  position: absolute;
  bottom: -20px;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(20, 36, 59, 0.3);
}

.service-card-body {
  padding: 2rem 1.5rem 1.5rem;
}

.service-card-body h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ── Icon feature cards ── */
.icon-feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
}

.icon-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(196, 92, 38, 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.icon-feature-card h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.icon-feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ── CTA strip ── */
.cta-strip {
  padding: 0 0 5rem;
}

.cta-strip-inner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, var(--primary-light) 100%);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #fff;
}

.cta-strip-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 0.35rem;
}

.cta-strip-inner p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.btn-light-cta {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-light)) !important;
  color: var(--primary) !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}

.btn-light-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.45) !important;
  color: var(--primary) !important;
}

/* ── Page banner ── */
.page-banner {
  position: relative;
  padding: calc(var(--header-offset) + 2.5rem) 0 4rem;
  background-image: var(--banner-img);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 21, 40, 0.92), rgba(10, 31, 61, 0.82));
}

.page-banner .container { z-index: 1; }

.breadcrumb-nav { margin-bottom: 1.25rem; }

.breadcrumb {
  margin: 0;
  --bs-breadcrumb-divider: "›";
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover { color: #fff; }

.breadcrumb-item.active { color: rgba(255, 255, 255, 0.5); }

.page-banner-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-banner-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 60ch;
  margin: 0;
}

/* ── About page ── */
.challenge-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  height: 100%;
}

.challenge-card i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.challenge-card span {
  font-weight: 500;
  color: var(--text);
}

.solution-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(2rem, 4vw, 3rem);
}

.pillar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}

.pillar-card i {
  font-size: 1.5rem;
  color: var(--accent);
}

.pillar-card span {
  font-size: 0.88rem;
  font-weight: 600;
}

.why-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.9);
  height: 100%;
}

.why-card i {
  font-size: 1.35rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Service detail cards ── */
.service-detail-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
}

.service-detail-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.service-detail-body {
  padding: 1.75rem;
}

.service-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(196, 92, 38, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.service-detail-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.service-detail-body ul {
  color: var(--text-muted);
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.structure-flow {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.structure-flow i {
  color: var(--accent);
  font-size: 0.7rem;
  margin: 0 0.15rem;
}

.outcome-badge {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(196, 92, 38, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ── Tool cards ── */
.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tool-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.tool-card i {
  font-size: 1.5rem;
  color: var(--accent);
}

.tool-card span {
  font-size: 0.85rem;
  font-weight: 600;
}

.tool-detail-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}

.tool-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tool-detail-img {
  height: 160px;
  overflow: hidden;
}

.tool-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tool-detail-body {
  padding: 1.5rem;
}

.tool-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}

.tool-detail-body h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.tool-detail-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ── Team page ── */
.team-phase-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

.team-phase-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.team-phase-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-member {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.team-member:last-child { border-bottom: none; }

.team-member-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(196, 92, 38, 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.team-member strong {
  display: block;
  font-size: 0.95rem;
}

.team-member p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0.15rem 0 0;
}

.deliverable-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.deliverable-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.deliverable-card i {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.deliverable-card h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.deliverable-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
}

/* ── Contact info cards ── */
.contact-info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 1.5rem;
}

.contact-info-card .contact-info-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.contact-info-card .contact-info-block:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-info-block h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  :root { --header-offset: 72px; }
  .home-hero { padding: calc(var(--header-offset) + 1.5rem) 0 3rem; }
  .hero-image { height: 300px; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .page-banner { padding: calc(var(--header-offset) + 2rem) 0 3rem; }
  .contact-form-wrap { position: static; }
  .header-navbar .navbar-collapse {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.75rem;
    box-shadow: var(--shadow);
  }
  .nav-cta-wrap {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .nav-cta {
    width: 100%;
    justify-content: center;
  }
  .footer-about { max-width: none; }
}

