/* ═══════════════════════════════════════════════════════
   Do Proper IT — Shared Stylesheet
   ═══════════════════════════════════════════════════════ */

/* ═══ RESET & BASE ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #0F1219;
  color: #F5F1EB;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0F1219; }
::-webkit-scrollbar-thumb { background: #4A6741; border-radius: 3px; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══ TOP BAR ═══ */
.top-bar {
  width: 100%;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #4A6741, #5C8251);
  color: #F5F1EB;
  position: sticky;
  top: 0;
  z-index: 1001;
  transition: all 0.3s;
}
.top-bar.hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.top-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}
.top-bar-btn.dark { background: #1A1F2E; color: #C67A3C; }
.top-bar-btn.outline { border: 1px solid rgba(26,31,46,0.4); color: #1A1F2E; }

/* ═══ NAV ═══ */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 0 5%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15,18,25,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74,103,65,0.2);
  transition: background 0.3s;
}
.main-nav.scrolled { background: rgba(15,18,25,0.95); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 20px rgba(74,103,65,0.35); }
.nav-logo-text { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: #F5F1EB; font-family: 'Space Grotesk', sans-serif; }
.nav-logo-text span { color: #C67A3C; }
.nav-logo-sub { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #7A8FAD; }
.nav-links { display: none; align-items: center; gap: 24px; }
.nav-links a { font-size: 14px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: #7A8FAD; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #C67A3C; }
.nav-actions { display: none; align-items: center; gap: 12px; }
.nav-social { display: flex; align-items: center; gap: 8px; }
.nav-social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(122,143,173,0.28);
  color: #F5F1EB;
  background: rgba(245,241,235,0.06);
  transition: all 0.2s ease;
}
.nav-social-link:hover {
  color: #C67A3C;
  border-color: rgba(198,122,60,0.55);
  background: rgba(198,122,60,0.12);
  transform: translateY(-1px);
}
.nav-phone { font-size: 14px; font-weight: 700; color: #7A8FAD; font-family: 'JetBrains Mono', monospace; transition: color 0.2s; }
.nav-phone:hover { color: #C67A3C; }
.nav-cta {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #C67A3C;
  color: #C67A3C;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.2s;
}
.nav-cta:hover { background: #C67A3C; color: #0F1219; transform: translateY(-1px); }
.mobile-toggle { display: block; background: none; border: none; color: #F5F1EB; cursor: pointer; padding: 8px; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9998;
  background: rgba(15,18,25,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  animation: slideDown 0.3s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #F5F1EB;
  font-family: 'Space Grotesk', sans-serif;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #C67A3C; }
.mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #F5F1EB; cursor: pointer; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .mobile-toggle { display: none; }
}

/* ═══ BREADCRUMB ═══ */
.breadcrumb {
  padding: 12px 5%;
  background: rgba(26,31,46,0.3);
  border-bottom: 1px solid rgba(74,103,65,0.1);
}
.breadcrumb-list {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: #7A8FAD;
  flex-wrap: wrap;
}
.breadcrumb-list a { color: #7A8FAD; transition: color 0.2s; }
.breadcrumb-list a:hover { color: #C67A3C; }
.breadcrumb-list .sep { color: #4A6741; }
.breadcrumb-list .current { color: #F5F1EB; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 5% 100px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,18,25,0.92) 0%, rgba(15,18,25,0.7) 50%, rgba(74,103,65,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-content { grid-template-columns: 1fr 1fr; align-items: center; }
}
.hero-badges { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.badge-veteran {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  background: rgba(74,103,65,0.2);
  border: 1px solid rgba(74,103,65,0.4);
  color: #5C8251;
}
.badge-serving {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7A8FAD;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4A6741;
  box-shadow: 0 0 8px #4A6741;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #F5F1EB;
}
.hero h1 .copper { color: #C67A3C; text-shadow: 0 0 40px rgba(198,122,60,0.4); }
.hero h1 .sage { color: #4A6741; font-size: 0.82em; }
.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #B8A88A;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #C67A3C;
  color: #0F1219;
  box-shadow: 0 0 28px rgba(198,122,60,0.35);
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(198,122,60,0.5); color: #0F1219; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #4A6741;
  color: #4A6741;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}
.btn-secondary:hover { background: rgba(74,103,65,0.1); transform: translateY(-2px); }
.btn-sage {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #4A6741;
  color: #F5F1EB;
  box-shadow: 0 0 20px rgba(74,103,65,0.25);
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-sage:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(74,103,65,0.4); }
.btn-sage-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #4A6741;
  color: #4A6741;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}
.btn-sage-outline:hover { background: rgba(74,103,65,0.1); transform: translateY(-2px); }

/* Hero card */
.hero-card {
  background: rgba(26,31,46,0.85);
  border: 1px solid rgba(74,103,65,0.2);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(12px);
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(74,103,65,0.15);
}
.hero-card-avatar { display: flex; align-items: center; gap: 12px; }
.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #4A6741, #5C8251);
  color: #F5F1EB;
  font-family: 'Space Grotesk', sans-serif;
}
.avatar-name { font-size: 15px; font-weight: 700; color: #F5F1EB; font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; letter-spacing: 0.03em; }
.avatar-role { font-size: 12px; color: #7A8FAD; }
.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(74,103,65,0.3);
  color: #5C8251;
}
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #4A6741; animation: pulse 2s infinite; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.hero-tag {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(74,103,65,0.08);
  border: 1px solid rgba(74,103,65,0.2);
  color: #7A8FAD;
}
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hero-stat {
  text-align: center;
  padding: 14px 8px;
  border-radius: 12px;
  background: rgba(74,103,65,0.06);
  border: 1px solid rgba(74,103,65,0.12);
}
.hero-stat-val {
  font-size: 24px;
  font-weight: 700;
  color: #C67A3C;
  font-family: 'JetBrains Mono', monospace;
}
.hero-stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7A8FAD;
  margin-top: 4px;
}

/* ═══ TRUST BAR ═══ */
.trust-bar {
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(26,31,46,0.5);
  border-top: 1px solid rgba(74,103,65,0.1);
  border-bottom: 1px solid rgba(74,103,65,0.1);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7A8FAD;
}
.trust-chevron { color: #4A6741; }

/* ═══ MOUNTAIN DIVIDER ═══ */
.mountain-divider { width: 100%; overflow: hidden; line-height: 0; }
.mountain-divider svg { width: 100%; height: 60px; }
.mountain-divider.flip { transform: scaleY(-1); }
@media (min-width: 640px) { .mountain-divider svg { height: 80px; } }
@media (min-width: 1024px) { .mountain-divider svg { height: 120px; } }

/* ═══ SECTION LABELS ═══ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4A6741;
  margin-bottom: 16px;
}
.section-label-line { width: 20px; height: 2px; background: #4A6741; box-shadow: 0 0 8px #4A6741; }
.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #F5F1EB;
}
.section-title .copper { color: #C67A3C; }
.section-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #7A8FAD;
  max-width: 560px;
  margin: 0 auto;
}

/* ═══ SERVICES ═══ */
.services-section {
  padding: 80px 5% 100px;
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663392614686/HdVcX6YQu432b6cLeVsomL/topo-pattern-Cny5RoEJjV9J8ThvvSfNjA.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.03;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  position: relative;
  border-radius: 16px;
  padding: 28px;
  overflow: hidden;
  background: rgba(26,31,46,0.5);
  border: 1px solid rgba(74,103,65,0.12);
  transition: all 0.3s;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(74,103,65,0.3); }
.service-card.featured { border-color: rgba(198,122,60,0.3); }
.service-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #C67A3C, #4A6741);
}
.service-card.featured .featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(198,122,60,0.15);
  border: 1px solid rgba(198,122,60,0.3);
  color: #C67A3C;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(74,103,65,0.1);
  border: 1px solid rgba(74,103,65,0.2);
}
.service-icon svg { width: 22px; height: 22px; color: #5C8251; }
.service-card.featured .service-icon { background: rgba(198,122,60,0.1); border-color: rgba(198,122,60,0.25); }
.service-card.featured .service-icon svg { color: #C67A3C; }
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #F5F1EB;
  margin-bottom: 8px;
}
.service-card p { font-size: 14px; line-height: 1.6; color: #7A8FAD; margin-bottom: 16px; }
.service-items { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #7A8FAD;
}
.service-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4A6741;
  flex-shrink: 0;
}
.service-card.featured .service-item::before { background: #C67A3C; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4A6741;
  transition: color 0.2s, gap 0.2s;
}
.service-card-link:hover { color: #C67A3C; gap: 10px; }
.service-card.featured .service-card-link { color: #C67A3C; }
.service-card.featured .service-card-link:hover { color: #D4944F; }

/* ═══ CIRCUIT DIVIDER ═══ */
.circuit-divider { width: 100%; overflow: hidden; position: relative; }
.circuit-divider img { width: 100%; height: 200px; object-fit: cover; opacity: 0.15; }
.circuit-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0F1219, transparent 20%, transparent 80%, #0F1219);
}

/* ═══ ABOUT ═══ */
.about-section {
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.about-bg { position: absolute; inset: 0; }
.about-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.06; }
.about-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.about-card {
  border-radius: 16px;
  padding: 32px;
  background: rgba(26,31,46,0.7);
  border: 1px solid rgba(74,103,65,0.2);
  backdrop-filter: blur(12px);
}
.about-avatar {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, #4A6741, #5C8251);
  margin-bottom: 20px;
}
.about-card h3 { font-size: 24px; font-weight: 700; text-transform: uppercase; color: #F5F1EB; margin-bottom: 4px; }
.about-card .role { font-size: 14px; color: #C67A3C; font-weight: 600; margin-bottom: 16px; }
.about-card .bio { font-size: 15px; line-height: 1.7; color: #7A8FAD; margin-bottom: 20px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.about-tag {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(74,103,65,0.1);
  border: 1px solid rgba(74,103,65,0.2);
  color: #5C8251;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p { font-size: 15px; line-height: 1.8; color: #7A8FAD; margin-bottom: 16px; }
.about-text .highlight { color: #C67A3C; font-weight: 600; }

/* ═══ PROCESS ═══ */
.process-section {
  padding: 80px 5%;
  background: #1A1F2E;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
.process-card {
  border-radius: 16px;
  padding: 28px;
  background: rgba(15,18,25,0.6);
  border: 1px solid rgba(74,103,65,0.12);
  transition: all 0.3s;
}
.process-card:hover { transform: translateY(-4px); border-color: rgba(74,103,65,0.3); }
.process-num {
  font-size: 36px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: #4A6741;
  opacity: 0.3;
  margin-bottom: 12px;
}
.process-card h3 { font-size: 18px; font-weight: 700; text-transform: uppercase; color: #F5F1EB; margin-bottom: 8px; }
.process-card p { font-size: 14px; line-height: 1.6; color: #7A8FAD; }

/* ═══ TESTIMONIALS ═══ */
.reviews-section { padding: 80px 5%; background: #1A1F2E; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  position: relative;
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
  background: rgba(15,18,25,0.6);
  border: 1px solid rgba(74,103,65,0.12);
  transition: all 0.3s;
}
.review-card:hover { transform: translateY(-4px); }
.review-quote-mark {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.04;
  color: #C67A3C;
  font-family: 'Space Grotesk', sans-serif;
}
.review-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-stars svg { width: 14px; height: 14px; fill: #C67A3C; color: #C67A3C; }
.review-text { font-size: 14px; line-height: 1.6; font-style: italic; color: #7A8FAD; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-initials {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, #4A6741, #5C8251);
  color: #F5F1EB;
  font-family: 'Space Grotesk', sans-serif;
}
.review-name { font-size: 14px; font-weight: 700; color: #F5F1EB; }
.review-role { font-size: 12px; color: #7A8FAD; }

/* ═══ CTA BANNER ═══ */
.cta-banner {
  position: relative;
  padding: 80px 5%;
  overflow: hidden;
  text-align: center;
}
.cta-banner-bg { position: absolute; inset: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,18,25,0.85), rgba(74,103,65,0.3));
}
.cta-banner-content { position: relative; z-index: 10; }

/* ═══ CONTACT ═══ */
.contact-section { padding: 80px 5%; background: #0F1219; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-phone-box {
  border-radius: 12px;
  padding: 20px;
  background: rgba(74,103,65,0.08);
  border: 1px solid rgba(74,103,65,0.25);
  margin-bottom: 32px;
}
.contact-phone-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #4A6741; margin-bottom: 8px; }
.contact-phone-number {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  color: #C67A3C;
  text-shadow: 0 0 24px rgba(198,122,60,0.3);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 16px;
  transition: color 0.2s;
}
.contact-phone-number:hover { color: #F5F1EB; }
.contact-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74,103,65,0.1);
  border: 1px solid rgba(74,103,65,0.2);
}
.contact-info-icon svg { width: 18px; height: 18px; color: #5C8251; }
.contact-info-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #4A6741; margin-bottom: 2px; }
.contact-info-value { font-size: 14px; font-weight: 500; color: #F5F1EB; }
.contact-info-value a { transition: color 0.2s; }
.contact-info-value a:hover { color: #C67A3C; }

/* ═══ FORM ═══ */
.contact-form-card {
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  background: rgba(26,31,46,0.8);
  border: 1px solid rgba(74,103,65,0.25);
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4A6741, #C67A3C);
}
.form-title { font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: #F5F1EB; margin-bottom: 4px; }
.form-subtitle { font-size: 14px; color: #7A8FAD; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.form-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #4A6741; }
.form-input {
  width: 100%;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  background: rgba(245,241,235,0.04);
  border: 1px solid rgba(245,241,235,0.1);
  color: #F5F1EB;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: #4A6741; box-shadow: 0 0 0 2px rgba(74,103,65,0.2); }
.form-input::placeholder { color: rgba(245,241,235,0.3); }
select.form-input { appearance: none; cursor: pointer; }
select.form-input option { background: #1A1F2E; color: #F5F1EB; }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #4A6741, #5C8251);
  color: #F5F1EB;
  box-shadow: 0 0 28px rgba(74,103,65,0.25);
  font-family: 'Space Grotesk', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(74,103,65,0.4); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-privacy { text-align: center; font-size: 12px; color: #7A8FAD; margin-top: 8px; }
.form-success { text-align: center; padding: 40px 0; }
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h4 { font-size: 20px; font-weight: 700; text-transform: uppercase; color: #C67A3C; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: #7A8FAD; }

/* ═══ FOOTER ═══ */
.site-footer {
  padding: 56px 5% 28px;
  background: #1A1F2E;
  border-top: 1px solid rgba(74,103,65,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(74,103,65,0.15);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.footer-brand-text { font-weight: 700; font-size: 16px; color: #F5F1EB; font-family: 'Space Grotesk', sans-serif; }
.footer-brand-text span { color: #C67A3C; }
.footer-desc { font-size: 14px; line-height: 1.6; color: #7A8FAD; max-width: 250px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74,103,65,0.1);
  border: 1px solid rgba(74,103,65,0.2);
  color: #7A8FAD;
  transition: all 0.2s;
}
.footer-social a:hover { color: #C67A3C; border-color: #C67A3C; }
.footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4A6741;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: #7A8FAD; transition: color 0.2s; }
.footer-links a:hover { color: #C67A3C; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 12px;
  color: #7A8FAD;
}
.footer-bottom a { transition: color 0.2s; }
.footer-bottom .fb { color: #4A6741; }
.footer-bottom .fb:hover { color: #5C8251; }
.footer-bottom .ig { color: #C67A3C; }
.footer-bottom .ig:hover { color: #D4944F; }

/* ═══ STICKY MOBILE BAR ═══ */
.mobile-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 10px;
  gap: 10px;
  background: #1A1F2E;
  border-top: 1px solid rgba(74,103,65,0.3);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Space Grotesk', sans-serif;
}
.mobile-bar .call-btn { background: #4A6741; color: #F5F1EB; box-shadow: 0 0 18px rgba(74,103,65,0.3); }
.mobile-bar .text-btn { border: 2px solid #4A6741; color: #4A6741; }
.mobile-spacer { height: 72px; }
@media (min-width: 1024px) {
  .mobile-bar { display: none; }
  .mobile-spacer { display: none; }
}

/* ═══ SERVICE PAGE STYLES ═══ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 60px 5% 80px;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,18,25,0.95) 0%, rgba(15,18,25,0.8) 50%, rgba(74,103,65,0.15) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #F5F1EB;
}
.page-hero h1 .copper { color: #C67A3C; }
.page-hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #B8A88A;
  max-width: 600px;
  margin-bottom: 32px;
}

/* ═══ CONTENT SECTIONS ═══ */
.content-section {
  padding: 72px 5%;
  max-width: 1100px;
  margin: 0 auto;
}
.content-section-full {
  padding: 72px 5%;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }
.content-card {
  border-radius: 16px;
  padding: 32px;
  background: rgba(26,31,46,0.5);
  border: 1px solid rgba(74,103,65,0.15);
}
.content-card h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #F5F1EB;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.content-card p { font-size: 15px; line-height: 1.7; color: #7A8FAD; }

/* ═══ INCLUDED LIST ═══ */
.included-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(74,103,65,0.06);
  border: 1px solid rgba(74,103,65,0.12);
}
.included-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(74,103,65,0.2);
  border: 1px solid #4A6741;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.included-check svg { width: 10px; height: 10px; color: #5C8251; }
.included-item-text strong { display: block; font-size: 14px; font-weight: 700; color: #F5F1EB; margin-bottom: 2px; }
.included-item-text span { font-size: 13px; color: #7A8FAD; line-height: 1.5; }

/* ═══ FAQ ═══ */
.faq-section { padding: 72px 5%; background: #1A1F2E; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(74,103,65,0.15);
  padding: 20px 0;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: #F5F1EB;
  letter-spacing: 0;
  text-transform: none;
  flex: 1;
}
.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(74,103,65,0.1);
  border: 1px solid rgba(74,103,65,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: #4A6741;
}
.faq-toggle svg { width: 12px; height: 12px; transition: transform 0.3s; }
.faq-item.open .faq-toggle { background: rgba(74,103,65,0.2); }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 12px 0 4px; font-size: 14px; line-height: 1.7; color: #7A8FAD; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ═══ STATS ROW ═══ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
@media (min-width: 640px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-box {
  text-align: center;
  padding: 20px 12px;
  border-radius: 12px;
  background: rgba(26,31,46,0.5);
  border: 1px solid rgba(74,103,65,0.12);
}
.stat-box-val {
  font-size: 28px;
  font-weight: 700;
  color: #C67A3C;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #7A8FAD; }

/* ═══ RELATED SERVICES ═══ */
.related-services { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .related-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .related-services { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  padding: 20px;
  border-radius: 12px;
  background: rgba(26,31,46,0.4);
  border: 1px solid rgba(74,103,65,0.12);
  transition: all 0.3s;
  display: block;
}
.related-card:hover { transform: translateY(-3px); border-color: rgba(74,103,65,0.3); }
.related-card h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #F5F1EB;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.related-card p { font-size: 13px; line-height: 1.5; color: #7A8FAD; margin-bottom: 10px; }
.related-link { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #4A6741; }

/* ═══ SVG ICONS ═══ */
.icon { display: inline-block; vertical-align: middle; }

/* ═══ PAGE INNER HERO ═══ */
.inner-hero {
  padding: 56px 5% 72px;
  background: #1A1F2E;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663392614686/HdVcX6YQu432b6cLeVsomL/topo-pattern-Cny5RoEJjV9J8ThvvSfNjA.webp');
  background-size: cover;
  opacity: 0.03;
}
.inner-hero-content { position: relative; z-index: 10; max-width: 900px; margin: 0 auto; }

/* ═══ HIGHLIGHT BOX ═══ */
.highlight-box {
  padding: 24px 28px;
  border-radius: 12px;
  background: rgba(198,122,60,0.08);
  border: 1px solid rgba(198,122,60,0.25);
  border-left: 3px solid #C67A3C;
  margin: 24px 0;
}
.highlight-box p { font-size: 15px; line-height: 1.7; color: #B8A88A; }
.highlight-box strong { color: #C67A3C; }

/* ═══ INLINE CHECKLIST ═══ */
.check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 640px) { .check-grid { grid-template-columns: repeat(2, 1fr); } }
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #7A8FAD;
}
.check-item::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(74,103,65,0.15);
  border: 1px solid #4A6741;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #5C8251;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 20px;
  text-align: center;
}

/* ═══ SERVICE PAGE ADDITIONS (cybersecurity, lead-generation, etc.) ═══ */

/* Page Hero: overlay + title + actions (used in service sub-pages) */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,18,25,0.95) 0%, rgba(15,18,25,0.75) 60%, rgba(74,103,65,0.12) 100%);
  z-index: 1;
}
.page-hero-content { z-index: 10; }
.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #F5F1EB;
}
.page-hero-title .copper { color: #C67A3C; }
.page-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Trust bar inner wrapper */
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.trust-icon { font-size: 18px; line-height: 1; }
.trust-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7A8FAD;
}
.trust-divider {
  color: rgba(74,103,65,0.4);
  font-size: 14px;
  user-select: none;
}

/* Content col (used inside .two-col grid) */
.content-col { display: flex; flex-direction: column; }
.content-col h2 { margin-bottom: 12px; }
.content-col p { font-size: 15px; line-height: 1.7; color: #7A8FAD; margin-bottom: 14px; }

/* Process section inner + step + number (service page variant) */
.process-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process-section-inner h2 { margin-bottom: 12px; }
.process-section-inner .process-intro {
  font-size: 15px;
  line-height: 1.7;
  color: #7A8FAD;
  max-width: 700px;
  margin-bottom: 40px;
}
.process-step {
  border-radius: 16px;
  padding: 28px;
  background: rgba(15,18,25,0.6);
  border: 1px solid rgba(74,103,65,0.12);
  transition: all 0.3s;
}
.process-step:hover { transform: translateY(-4px); border-color: rgba(74,103,65,0.3); }
.process-number {
  font-size: 36px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: #4A6741;
  opacity: 0.35;
  margin-bottom: 12px;
  line-height: 1;
}
.process-step h3 { font-size: 18px; font-weight: 700; text-transform: uppercase; color: #F5F1EB; margin-bottom: 8px; }
.process-step p { font-size: 14px; line-height: 1.6; color: #7A8FAD; }
.process-grid.four-col { }
@media (min-width: 1024px) { .process-grid.four-col { grid-template-columns: repeat(4, 1fr); max-width: 1100px; } }

/* FAQ section inner (alias for faq-container) */
.faq-section-inner {
  max-width: 800px;
  margin: 0 auto;
}
/* faq-list (bare wrapper inside faq-section) */
.faq-list { display: flex; flex-direction: column; }

/* CTA Banner inner wrapper */
.cta-banner-inner {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-banner-inner h2 { margin-bottom: 12px; font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; text-transform: uppercase; letter-spacing: -0.02em; }
.cta-banner-inner p { font-size: 15px; line-height: 1.7; color: #B8A88A; max-width: 600px; margin: 0 auto 24px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.cta-sub { font-size: 13px; color: #7A8FAD; margin-top: 16px; }

/* Button variants for CTA banner (light background context) */
.btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #C67A3C;
  color: #0F1219;
  box-shadow: 0 0 28px rgba(198,122,60,0.35);
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary-light:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(198,122,60,0.5); color: #0F1219; }
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid rgba(245,241,235,0.5);
  color: #F5F1EB;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}
.btn-outline-light:hover { border-color: #F5F1EB; background: rgba(245,241,235,0.08); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #C67A3C;
  color: #C67A3C;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}
.btn-outline:hover { background: rgba(198,122,60,0.1); transform: translateY(-2px); }

/* Related services (service page variant with inner wrapper + grid + icon) */
.related-services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 0 0;
}
.related-services-inner h2 { margin-bottom: 12px; }
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 640px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #F5F1EB;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.related-icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}

/* Section label color variants */
.copper-label { color: #C67A3C; }
.copper-label.section-label { color: #C67A3C; }
.light-label { color: rgba(245,241,235,0.7); }
.light-label.section-label { color: rgba(245,241,235,0.7); }

/* Footer inner wrapper (cybersecurity/lead-gen footer layout) */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(74,103,65,0.15);
}
@media (min-width: 1024px) { .footer-inner { grid-template-columns: auto 1fr; align-items: start; gap: 60px; } }
.footer-brand-name {
  font-weight: 700;
  font-size: 18px;
  color: #F5F1EB;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.01em;
}
.footer-brand-name span { color: #C67A3C; }
.footer-brand-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7A8FAD;
  margin-top: 2px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (min-width: 640px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4A6741;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px;
  color: #7A8FAD;
  transition: color 0.2s;
}
.footer-col a:hover { color: #C67A3C; }
.footer-area {
  font-size: 13px;
  line-height: 1.6;
  color: #7A8FAD;
}

/* Mobile sticky bar (service page variant) */
.mobile-sticky-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 10px;
  gap: 8px;
  background: #1A1F2E;
  border-top: 1px solid rgba(74,103,65,0.3);
}
@media (min-width: 1024px) { .mobile-sticky-bar { display: none; } }
.sticky-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Space Grotesk', sans-serif;
  background: #4A6741;
  color: #F5F1EB;
  box-shadow: 0 0 18px rgba(74,103,65,0.3);
  transition: all 0.2s;
}
.sticky-call:hover { background: #5C8251; color: #F5F1EB; }
.sticky-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Space Grotesk', sans-serif;
  border: 2px solid #4A6741;
  color: #4A6741;
  transition: all 0.2s;
}
.sticky-text:hover { background: rgba(74,103,65,0.1); }
.sticky-consult {
  flex: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: 'Space Grotesk', sans-serif;
  background: #C67A3C;
  color: #0F1219;
  box-shadow: 0 0 18px rgba(198,122,60,0.3);
  transition: all 0.2s;
}
.sticky-consult:hover { background: #D4944F; color: #0F1219; }

/* Page body padding for mobile sticky bar on service pages */
@media (max-width: 1023px) {
  body:has(.mobile-sticky-bar) { padding-bottom: 72px; }
}

/* Included list (service page variant: li with strong + span) */
.included-list li {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(74,103,65,0.06);
  border: 1px solid rgba(74,103,65,0.12);
  margin-bottom: 8px;
}
.included-list li strong {
  font-size: 14px;
  font-weight: 700;
  color: #F5F1EB;
  margin-bottom: 3px;
}
.included-list li span {
  font-size: 13px;
  color: #7A8FAD;
  line-height: 1.5;
}

/* Highlight list */
.highlight-title { font-size: 14px; font-weight: 700; color: #C67A3C; margin-bottom: 10px; }
.highlight-list { display: flex; flex-direction: column; gap: 6px; padding-left: 0; }
.highlight-list li {
  font-size: 14px;
  color: #B8A88A;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.highlight-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #C67A3C;
  font-weight: 700;
}

/* Related services section wrapper (when wrapping .related-grid) */
.related-services:has(.related-grid) {
  display: block;
  padding: 72px 5%;
}


/* Content section inner wrapper */
.content-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
