/* ═══════ CUSTOM PROPERTIES ═══════ */
:root {
  --black: #0a0a0a;
  --black-mid: #111111;
  --black-card: #161616;
  --yellow: #f5c518;
  --yellow-bright: #ffe44d;
  --yellow-light: #fff3b0;
  --yellow-dim: rgba(245,197,24,0.10);
  --yellow-hover: rgba(245,197,24,0.06);
  --white: #fafaf8;
  --off-white: #f2f1ed;
  --gray-100: #e8e7e3;
  --gray-200: #d4d3cf;
  --gray-300: #b0afa8;
  --gray-400: #8a8980;
  --gray-500: #6b6a62;
  --gray-600: #4a4940;
  --text: #1a1a18;
  --navy: #003366;
  --navy-light: #004080;
  --navy-dark: #002244;
  --navy-mid: #002d5a;
  --navy-dim: rgba(0,51,102,0.10);
  --navy-hover: rgba(0,51,102,0.06);
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Crimson Pro', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
::selection { background: rgba(245,197,24,0.25); color: var(--black); }
::-moz-selection { background: rgba(245,197,24,0.25); color: var(--black); }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
section[id] { scroll-margin-top: 80px; }
a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ═══════ WP ADMIN BAR ═══════ */
.admin-bar nav { top: 32px; }
.admin-bar .nav-center.open { top: 108px; }
@media (max-width: 782px) {
  .admin-bar nav { top: 46px; }
  .admin-bar .nav-center.open { top: 122px; }
}

/* ═══════ NAV ═══════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(0,51,102,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.25); }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.nav-logo {
  height: 90px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
  position: relative;
  top: 8px;
  background: radial-gradient(circle, rgba(255,255,255,1) 40%, rgba(255,255,255,0.9) 60%, transparent 71%);
  border-radius: 50%;
  padding: 4px;
}
.mobile-nav-extras {
  display: none !important;
  list-style: none;
}
.nav-brand-text h1 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.nav-brand-text span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.nav-center {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-center a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
.nav-center a:hover { color: var(--white); }
.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  border-radius: 1px;
  transition: width 0.25s;
}
.nav-center a:hover::after { width: 100%; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}
.nav-btn {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 22px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s;
}
.nav-btn:hover {
  background: var(--yellow-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,197,24,0.35);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
}
.nav-toggle svg {
  width: 24px; height: 24px;
  color: var(--white);
  transition: transform 0.3s;
}
.nav-toggle.active svg { transform: rotate(90deg); }

/* ═══════ HERO ═══════ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 1;
  background: url(../images/hero-bg.jpg) center/cover no-repeat;
}
.hero-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,34,68,0.72) 0%, rgba(0,51,102,0.62) 50%, rgba(0,34,68,0.78) 100%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-content.vis {
  opacity: 1;
  transform: translateY(0);
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-pill .dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}
.hero h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h2 em {
  font-style: italic;
  color: var(--yellow);
  text-shadow: 0 0 40px rgba(245,197,24,0.15);
}
.hero-text {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 32px;
  background: var(--yellow);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--yellow-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,197,24,0.35);
}
.btn-outline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-visual.vis {
  opacity: 1;
  transform: translateY(0);
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 20px 0;
}

/* ── Floating badges ── */
.hero-float {
  position: absolute;
  z-index: 2;
  border-radius: 12px;
  animation: floatIn 0.8s ease both;
}
.hero-float-monitoring {
  top: -6px; right: -16px;
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.hero-float-monitoring strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.hero-float-monitoring > span:last-child {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  display: none;
}
.hero-float-pulse {
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.hero-float-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  animation: pulse-ring 2s ease infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.hero-float-credential {
  bottom: -28px; left: -24px;
  background: rgba(0,51,102,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  animation-delay: 0.3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-float-check {
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-check svg {
  width: 24px; height: 24px;
  stroke: var(--black);
  stroke-width: 2.5;
}
.hero-float-credential strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.hero-float-credential span {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Main card ── */
.hero-card {
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 28px;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.2),
    0 0 0 1px rgba(245,197,24,0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(245,197,24,0.06), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}
.hero-card-badge {
  background: var(--yellow);
  color: var(--black);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--yellow);
}
.hero-card-status::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Operations grid ── */
.hero-ops-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.hero-ops-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(0,20,50,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  transition: border-color 0.25s;
}
.hero-ops-row:hover {
  border-color: rgba(255,255,255,0.12);
}
.hero-ops-icon {
  font-size: 0.9rem;
  color: var(--yellow);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.hero-ops-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  flex: 1;
}
.hero-ops-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-ops-status-dot.active {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.4);
}
.hero-ops-status-dot.standby {
  background: var(--yellow);
  box-shadow: 0 0 8px rgba(245,197,24,0.3);
}

/* ── Stats footer ── */
.hero-card-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-card-stat div {
  text-align: center;
  padding: 14px 8px;
  background: rgba(0,20,50,0.5);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-card-stat .num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.hero-card-stat .lbl {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════ SERVICES ═══════ */
.services {
  padding: 100px 48px;
  background: var(--white);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 20px;
}
.svc-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 36px 30px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--yellow);
  border-radius: 0 0 2px 0;
  transition: height 0.4s;
}
.svc-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.svc-card:hover::before { height: 100%; }
.svc-icon-wrap {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--yellow);
  margin-bottom: 20px;
}
.svc-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray-500);
}

/* ═══════ WHY ═══════ */
.why {
  padding: 100px 48px;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  right: -10%; top: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.06), transparent 60%);
  border-radius: 50%;
}
.why .section-label { color: rgba(255,255,255,0.45); }
.why .section-label::before { background: rgba(245,197,24,0.4); }
.why .section-title { color: var(--white); }
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.why-item {
  padding: 36px 24px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  transition: all 0.3s;
}
.why-item:hover {
  background: rgba(245,197,24,0.04);
  border-color: rgba(245,197,24,0.1);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--yellow-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--yellow);
  border: 1px solid rgba(245,197,24,0.15);
}
.why-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-item p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}

/* ═══════ STATS ═══════ */
.stats {
  padding: 72px 48px;
  background: var(--navy);
  border-top: none;
  border-bottom: none;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.stat-card {
  text-align: center;
  padding: 28px 16px;
  transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-2px); }
.stat-card .num {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .lbl {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}

/* ═══════ CONTACT ═══════ */
.contact {
  padding: 100px 48px;
  background: var(--white);
}
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-left h2 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact-left h2 em {
  font-style: italic;
  color: var(--yellow);
}
.contact-left > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 32px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-row-icon {
  width: 42px; height: 42px;
  background: var(--yellow-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--yellow);
  flex-shrink: 0;
  border: 1px solid rgba(245,197,24,0.15);
}
.contact-row-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.contact-row-val {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
}
.contact-row-val a { color: var(--navy); text-decoration: none; }
.contact-row-val a:hover { color: var(--yellow); }
.contact-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -60%; right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,197,24,0.1), transparent 60%);
  border-radius: 50%;
}
.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.contact-card > p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  position: relative;
}
.contact-card .btn-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 16px 40px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
.contact-card .btn-cta:hover {
  background: var(--yellow-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,197,24,0.25);
}

/* ═══════ NAV ACTIVE STATE ═══════ */
.nav-center a.active { color: var(--white); }
.nav-center a.active::after { width: 100%; }

/* ═══════ SERVICE CARD LINKS ═══════ */
a.svc-card { text-decoration: none; display: block; }
.svc-card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--yellow);
  transition: color 0.25s, letter-spacing 0.3s;
}
a.svc-card:hover .svc-card-link { color: var(--navy); letter-spacing: 0.02em; }

/* ═══════ PAGE HERO (Inner Pages) ═══════ */
.page-hero {
  padding: 140px 48px 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-compact { padding: 130px 48px 60px; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(245,197,24,0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(245,197,24,0.04) 0%, transparent 40%);
}
.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--yellow);
  text-shadow: 0 0 40px rgba(245,197,24,0.2);
}
.page-hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto 32px;
}
.page-hero-icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  background: var(--yellow-dim);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--yellow);
}
.page-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.btn-outline-light:hover {
  border-color: var(--yellow);
  background: rgba(245,197,24,0.1);
  color: var(--yellow);
}

/* ═══════ BREADCRUMBS ═══════ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 0.78rem;
  font-weight: 500;
}
.breadcrumbs a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.25s;
}
.breadcrumbs a:hover { color: var(--yellow); }
.breadcrumbs .sep { color: rgba(255,255,255,0.2); }
.breadcrumbs .current { color: rgba(255,255,255,0.65); }

/* ═══════ SERVICE PAGE CONTENT ═══════ */
.svc-page-content { padding: 80px 48px; background: var(--white); }
.svc-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.svc-page-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
}
.svc-page-intro p { margin-bottom: 20px; }
.svc-page-intro p:last-child { margin-bottom: 0; }
.svc-page-features { margin-top: 56px; }
.svc-page-features h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  transition: all 0.3s;
}
.feature-item:hover {
  background: var(--white);
  border-color: var(--gray-200);
  transform: translateX(4px);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray-500);
}

/* Benefits */
.svc-page-benefits { margin-top: 56px; }
.svc-page-benefits h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.benefit-card {
  display: flex;
  gap: 14px;
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  transition: all 0.3s;
}
.benefit-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
}
.benefit-check {
  width: 28px; height: 28px;
  background: var(--yellow-dim);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--yellow);
  flex-shrink: 0;
  font-weight: 700;
}
.benefit-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.benefit-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-500);
}

/* Sidebar */
.svc-page-sidebar { position: sticky; top: 100px; }
.sidebar-cta {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  margin-bottom: 24px;
}
.sidebar-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.sidebar-cta p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.sidebar-cta .btn-cta {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 24px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 12px;
}
.sidebar-cta .btn-cta:hover {
  background: var(--yellow-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.3);
}
.sidebar-phone {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.25s;
}
.sidebar-phone:hover { color: var(--yellow); }

.sidebar-services {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-services h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.sidebar-services ul { list-style: none; }
.sidebar-services li { margin-bottom: 4px; }
.sidebar-services li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: all 0.25s;
}
.sidebar-services li a:hover {
  background: var(--white);
  color: var(--navy);
}
.sidebar-services li.active a {
  background: var(--yellow-dim);
  color: var(--navy);
  font-weight: 600;
}
.sidebar-svc-icon {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.sidebar-stats {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 28px;
}
.sidebar-stat {
  text-align: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.sidebar-stat:last-child { border-bottom: none; }
.sidebar-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.sidebar-stat .lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}

/* ═══════ SERVICES OVERVIEW PAGE ═══════ */
.svc-featured { padding: 80px 48px 0; background: var(--white); }
.svc-featured-inner { max-width: 1200px; margin: 0 auto; }
.svc-featured-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  margin-top: 24px;
}
.svc-featured-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.svc-featured-content h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.svc-featured-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.svc-featured-list {
  list-style: none;
  margin-bottom: 28px;
}
.svc-featured-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-featured-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--yellow-dim);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
}
.svc-featured-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.svc-featured-stat {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}
.svc-featured-stat .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.svc-featured-stat .lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}

.svc-overview { padding: 80px 48px; background: var(--white); }
.svc-overview-inner { max-width: 1200px; margin: 0 auto; }
.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 20px;
}
a.svc-overview-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 36px 30px;
  text-decoration: none;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  display: block;
}
a.svc-overview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--yellow);
  border-radius: 0 0 2px 0;
  transition: height 0.4s;
}
a.svc-overview-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
a.svc-overview-card:hover::before { height: 100%; }
a.svc-overview-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
a.svc-overview-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray-500);
}

/* ═══════ ABOUT PAGE ═══════ */
.about-story { padding: 80px 48px; background: var(--white); }
.about-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}
.about-story-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.about-story-content h2 em {
  font-style: italic;
  color: var(--yellow);
}
.about-story-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.about-story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.about-stat-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}
.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.about-stat-card.highlight {
  background: var(--navy);
  border-color: #222;
}
.about-stat-card.highlight .num { color: var(--yellow); }
.about-stat-card.highlight .lbl { color: rgba(255,255,255,0.5); }
.about-stat-card .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.about-stat-card .lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
  display: block;
}

.about-values { padding: 80px 48px; background: var(--off-white); }
.about-values-inner { max-width: 1200px; margin: 0 auto; }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}
.about-value-card:hover {
  transform: translateY(-4px);
  border-color: var(--gray-200);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.about-value-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--yellow);
}
.about-value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.about-value-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray-500);
}

.about-credentials {
  padding: 48px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.about-credentials-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.25s;
}
.credential-item:hover { color: var(--navy); }
.credential-icon {
  width: 28px; height: 28px;
  background: var(--yellow-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════ CONTACT PAGE ═══════ */
.contact-page { padding: 80px 48px; background: var(--white); }
.contact-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.contact-form-wrap > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.form-group .req { color: var(--yellow); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 13px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: 10px;
  color: var(--text);
  transition: all 0.25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8980' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.full { grid-column: 1 / -1; }
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-submit {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 40px;
  background: var(--navy);
  color: var(--yellow);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,10,10,0.2);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-note {
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.5;
}
.form-note a { color: var(--navy); font-weight: 600; text-decoration: none; }
.form-note a:hover { color: var(--yellow); }
.form-feedback {
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  animation: feedbackIn 0.3s ease;
}
@keyframes feedbackIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-feedback.success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: #15803d;
}
.form-feedback.error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #b91c1c;
}

/* Contact Info Sidebar */
.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 36px 28px;
  margin-bottom: 24px;
}
.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info-row:last-child { margin-bottom: 0; }

.contact-emergency-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  margin-bottom: 24px;
}
.emergency-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-emergency-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.emergency-phone {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.25s;
}
.emergency-phone:hover { color: var(--yellow-bright); }

.contact-trust-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-600);
}
.trust-check {
  width: 22px; height: 22px;
  background: var(--yellow-dim);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════ SITE CTA (Inner Pages) ═══════ */
.site-cta {
  padding: 80px 48px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.site-cta::before {
  content: '';
  position: absolute;
  left: 50%; top: -40%;
  width: 600px; height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(245,197,24,0.06), transparent 60%);
  border-radius: 50%;
}
.site-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.site-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.site-cta p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.site-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════ FOOTER (Updated) ═══════ */
footer {
  background: var(--navy-dark);
  border-top: none;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 48px 40px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo {
  height: 76px;
  width: auto;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
  background: radial-gradient(circle, rgba(255,255,255,1) 40%, rgba(255,255,255,0.9) 60%, transparent 71%);
  border-radius: 50%;
  padding: 4px;
}
.footer-logo-link strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1.15;
}
.footer-logo-link span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-col ul a:hover { color: var(--yellow); }
.footer-address,
.footer-hours {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 5px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
}
.footer-bottom .badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

/* ═══════ INDUSTRIES (Homepage) ═══════ */
.industries {
  padding: 100px 48px;
  background: var(--navy);
}
.industries-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.industries .section-label { color: rgba(255,255,255,0.45); }
.industries .section-label::before { background: rgba(245,197,24,0.4); }
.industries .section-title { color: var(--white); }
.industries-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  margin-bottom: 48px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.35s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.industry-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.industry-icon {
  width: 48px; height: 48px;
  background: var(--yellow-dim);
  border: 1px solid rgba(245,197,24,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--yellow);
  margin-bottom: 18px;
}
.industry-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

/* ═══════ PROCESS (Homepage) ═══════ */
.process {
  padding: 100px 48px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 600px;
  margin-bottom: 56px;
}
.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  padding: 32px 24px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  transition: all 0.3s;
}
.process-step:hover {
  background: var(--white);
  border-color: var(--gray-200);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.process-num {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray-500);
}
.process-connector {
  width: 40px;
  min-width: 40px;
  height: 2px;
  background: var(--gray-200);
  align-self: center;
  margin-top: -20px;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -2px; top: -3px;
  width: 8px; height: 8px;
  border-right: 2px solid var(--gray-300);
  border-top: 2px solid var(--gray-300);
  transform: rotate(45deg);
}

/* ═══════ TRUST STRIP (Homepage) ═══════ */
.trust-strip {
  padding: 48px;
  background: var(--navy-dark);
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-strip-icon {
  width: 36px; height: 36px;
  background: var(--yellow-dim);
  border: 1px solid rgba(245,197,24,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--yellow);
  flex-shrink: 0;
  font-weight: 700;
}
.trust-strip-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.trust-strip-item span {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}

/* ═══════ SERVICE APPROACH (Services Page) ═══════ */
.svc-approach {
  padding: 80px 48px;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
}
.svc-approach-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.svc-approach-text .section-title {
  margin-bottom: 24px;
}
.svc-approach-text .section-title em {
  font-style: italic;
  color: var(--yellow);
}
.svc-approach-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.svc-approach-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-approach-point {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  transition: all 0.3s;
}
.svc-approach-point:hover {
  border-color: var(--gray-200);
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.svc-approach-point-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.svc-approach-point h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.svc-approach-point p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-500);
}

/* ═══════ SERVICE INDUSTRIES (Services Page) ═══════ */
.svc-industries {
  padding: 80px 48px;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
}
.svc-industries-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.svc-industries .section-label {
  justify-content: center;
}
.svc-industries .section-title {
  margin-bottom: 16px;
}
.svc-industries-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 40px;
}
.svc-industries-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.industry-tag {
  display: inline-block;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all 0.25s;
}
.industry-tag:hover {
  border-color: var(--yellow);
  background: var(--yellow-dim);
  color: var(--navy);
}

/* ═══════ REVEALS ═══════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: min(400px, 100%); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { flex-wrap: wrap; gap: 16px; }
  .process-connector { display: none; }
  .process-step { flex: 1 1 calc(50% - 8px); min-width: 0; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .svc-approach-inner { grid-template-columns: 1fr; }
  /* Inner pages */
  .svc-page-inner { grid-template-columns: 1fr; }
  .svc-page-sidebar { position: static; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .svc-featured-card { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-center, .nav-right { display: none; }
  .nav-toggle { display: block; }
  .nav-center.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: rgba(0,34,68,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    z-index: 999;
    animation: mobileMenuIn 0.25s ease;
  }
  .nav-center.open a {
    font-size: 1rem;
    padding: 4px 0;
    color: rgba(255,255,255,0.8);
  }
  /* Mobile menu: show phone + CTA inside nav-center when open */
  .nav-center.open .mobile-nav-extras {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-center.open .mobile-nav-extras .nav-phone {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
  }
  .nav-center.open .mobile-nav-extras .nav-btn {
    display: inline-block;
    text-align: center;
    padding: 12px 24px;
    font-size: 0.88rem;
  }
  .hero { padding: 110px 24px 60px; min-height: auto; }
  .hero h2 { font-size: clamp(2rem, 6vw, 2.8rem); }
  .hero-inner { min-width: 0; width: 100%; }
  .hero-content, .hero-visual { min-width: 0; max-width: 100%; }
  .hero-text { max-width: 100%; }
  .hero-card-stack { max-width: 100%; padding: 10px 0; }
  .hero-card { max-width: 100%; }
  .hero-float-monitoring { right: 0; top: -2px; }
  .hero-float-credential { left: 0; bottom: 0; }
  .services, .why, .contact, .industries, .process { padding: 60px 24px; }
  .stats { padding: 48px 24px; }
  .trust-strip { padding: 36px 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: 1fr; }
  .process-step { flex: 1 1 100%; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-left h2 { font-size: 2rem; }
  .svc-approach { padding: 48px 24px; }
  .svc-industries { padding: 48px 24px; }
  /* Inner pages */
  .page-hero { padding: 110px 24px 60px; }
  .page-hero-compact { padding: 100px 24px 48px; }
  .page-hero h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .svc-page-content { padding: 48px 24px; }
  .svc-page-sidebar { grid-template-columns: 1fr; }
  .svc-featured { padding: 48px 24px 0; }
  .svc-featured-card { padding: 36px 24px; }
  .svc-overview { padding: 48px 24px; }
  .svc-overview-grid { grid-template-columns: 1fr; }
  .about-story { padding: 48px 24px; }
  .about-values { padding: 48px 24px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-credentials { padding: 36px 24px; }
  .about-credentials-inner { gap: 20px; justify-content: flex-start; }
  .contact-page { padding: 48px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-trust-items { grid-template-columns: 1fr; }
  .site-cta { padding: 60px 24px; }
  .footer-inner { padding: 40px 24px 30px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; text-align: center; }
}

@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .hero { padding: 100px 20px 48px; }
  .hero h2 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .hero-text { font-size: 0.9rem; max-width: 100%; }
  .hero-pill { font-size: 0.65rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
  .hero-card { padding: 20px; }
  .hero-card-stat .num { font-size: 1.2rem; }
  .hero-float { position: relative; top: auto; right: auto; bottom: auto; left: auto; }
  .hero-card-stack { display: flex; flex-direction: column; gap: 10px; padding: 0; }
  .hero-float-monitoring { order: -1; align-self: flex-end; }
  .hero-float-credential { align-self: flex-start; }
  .stat-card .num { font-size: 2.2rem; }
  .contact-left h2 { font-size: 1.7rem; }
  .contact-card { padding: 36px 24px; }
  .contact-card h3 { font-size: 1.5rem; }
  .services, .why, .contact, .industries, .process { padding: 48px 20px; }
  .stats { padding: 40px 20px; }
  .trust-strip { padding: 32px 20px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .svc-approach { padding: 36px 20px; }
  .svc-industries { padding: 36px 20px; }
  /* Inner pages */
  .page-hero { padding: 96px 20px 44px; }
  .page-hero-btns { flex-direction: column; }
  .page-hero-btns a { text-align: center; }
  .svc-page-content { padding: 36px 20px; }
  .feature-item { flex-direction: column; gap: 12px; }
  .svc-featured-content h2 { font-size: 1.6rem; }
  .about-story-content h2 { font-size: 1.8rem; }
  .contact-form-wrap h2 { font-size: 1.6rem; }
  .site-cta { padding: 48px 20px; }
  .footer-inner { padding: 36px 20px 24px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { padding: 16px 20px; }
}
