/* =====================================================
   Design Engineering Partners (DEP) — Government Site
   Color System & Variables
   ===================================================== */
:root {
  --navy:       #1a3a5c;
  --navy-dark:  #0d2540;
  --navy-light: #234e7a;
  --gold:       #c9a227;
  --gold-light: #e8b830;
  --gold-dark:  #a07d0f;
  --blue:       #2c6fad;
  --blue-light: #3d8fd4;
  --white:      #ffffff;
  --off-white:  #f4f7fa;
  --gray-100:   #e8edf3;
  --gray-200:   #cdd5df;
  --gray-400:   #8c9cb0;
  --gray-600:   #4a5568;
  --gray-800:   #1f2d3d;
  --text:       #1f2d3d;
  --text-light: #4a5568;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg:  0 8px 30px rgba(0,0,0,0.18);
  --radius:     4px;
  --radius-lg:  8px;
  --transition: all 0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { margin-bottom: 1rem; color: var(--text-light); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-alt { background: var(--off-white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

/* ===== NAVIGATION ===== */
.topbar {
  background: var(--navy-dark);
  padding: 0.4rem 0;
  font-size: 0.78rem;
  color: var(--gray-200);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: var(--gray-200); }
.topbar a:hover { color: var(--gold); }
.topbar-links { display: flex; gap: 1.5rem; }

.navbar {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-abbr {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-logo .logo-abbr span { color: var(--gold); }
.nav-logo .logo-full {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--gray-100);
}
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 0.5rem 1.1rem !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  max-width: 220px;
}

.footer-logo-mark {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* ===== HERO ===== */
.hero {
  background: url('../assets/dep-panel-hangar.png') center center / cover no-repeat;
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,28,50,0.72) 0%, rgba(13,37,64,0.55) 55%, rgba(13,37,64,0.38) 100%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,162,39,0.2);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold-light);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2rem;
  margin-top: 0.5rem;
}
.hero-stat .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== ACCENT BAR ===== */
.accent-bar {
  background: var(--gold);
  padding: 1.25rem 0;
  color: var(--navy-dark);
}
.accent-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.accent-bar p { color: var(--navy-dark); font-weight: 600; margin: 0; }
.accent-bar strong { font-size: 1.05rem; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.card-body { padding: 1.75rem; }
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.card-icon.gold { background: var(--gold); }
.card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.card p { font-size: 0.9rem; margin: 0; }

/* ===== NAICS TABLE ===== */
.naics-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.naics-table th {
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.naics-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--text-light);
}
.naics-table tr:hover td { background: var(--off-white); }
.naics-table td:first-child {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: var(--navy);
}
.primary-badge {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.5rem;
}

/* ===== SECTOR GRID ===== */
.sector-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0.25rem;
}

/* ===== PAST PERFORMANCE ===== */
.pp-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.pp-card:hover { box-shadow: var(--shadow-md); }
.pp-card h4 { color: var(--navy); margin-bottom: 0.3rem; }
.pp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.6rem 0;
  font-size: 0.82rem;
  color: var(--gray-400);
}
.pp-meta span { display: flex; align-items: center; gap: 0.3rem; }

/* ===== CAPABILITY STATEMENT ===== */
.cap-statement-box {
  background:
    linear-gradient(135deg, rgba(13,37,64,0.88) 0%, rgba(10,28,50,0.82) 100%),
    url('../assets/dep-capstatement-bg.png') center center / cover no-repeat;
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.cap-statement-box h3 { color: var(--gold); margin-bottom: 0.75rem; }
.cap-statement-box p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }

/* ===== TEAMING ===== */
.teaming-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.teaming-feature:hover { box-shadow: var(--shadow-md); }
.teaming-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
}

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(44,111,173,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 680px; font-size: 1.05rem; }
.section-header.center p { margin: 0 auto; }
.divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 1rem 0;
  border-radius: 2px;
}
.section-header.center .divider { margin: 1rem auto; }

/* ===== REGION MAP BOX ===== */
.region-box {
  background:
    linear-gradient(135deg, rgba(13,37,64,0.90) 0%, rgba(26,58,92,0.82) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Ccircle cx='200' cy='150' r='130' fill='none' stroke='%23c9a227' stroke-width='0.8' opacity='0.6'/%3E%3Cellipse cx='200' cy='150' rx='130' ry='60' fill='none' stroke='%23c9a227' stroke-width='0.5' opacity='0.4'/%3E%3Cellipse cx='200' cy='150' rx='130' ry='100' fill='none' stroke='%23c9a227' stroke-width='0.5' opacity='0.4'/%3E%3Cline x1='70' y1='150' x2='330' y2='150' stroke='%23c9a227' stroke-width='0.5' opacity='0.4'/%3E%3Cellipse cx='200' cy='150' rx='40' ry='130' fill='none' stroke='%23c9a227' stroke-width='0.5' opacity='0.35'/%3E%3Cellipse cx='200' cy='150' rx='80' ry='130' fill='none' stroke='%23c9a227' stroke-width='0.5' opacity='0.35'/%3E%3Cellipse cx='200' cy='150' rx='120' ry='130' fill='none' stroke='%23c9a227' stroke-width='0.5' opacity='0.35'/%3E%3Cline x1='70' y1='100' x2='330' y2='100' stroke='%23c9a227' stroke-width='0.4' opacity='0.3'/%3E%3Cline x1='70' y1='200' x2='330' y2='200' stroke='%23c9a227' stroke-width='0.4' opacity='0.3'/%3E%3C/svg%3E") center center / 100% 100% no-repeat;
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.region-box h3 { color: var(--gold); margin-bottom: 1rem; }
.region-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.region-item:last-child { border-bottom: none; }
.region-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== AGENCY LOGOS ROW ===== */
.agency-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.agency-pill {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

/* ===== DIFFERENTIATOR LIST ===== */
.diff-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  color: var(--text-light);
}
.diff-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 900;
  font-size: 1rem;
  min-width: 20px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 3.5rem 0 3rem;
  color: var(--white);
  border-bottom: 4px solid var(--gold);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p  { color: rgba(255,255,255,0.75); max-width: 650px; }

/* Photo backgrounds for inner page heroes */
.capabilities-hero {
  position: relative;
  background: url('../assets/dep-hero-c17-sunset.png') center 40% / cover no-repeat;
}
.capabilities-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,28,50,0.92) 0%, rgba(13,37,64,0.87) 55%, rgba(13,37,64,0.72) 100%);
  z-index: 0;
}
.capabilities-hero .container { position: relative; z-index: 1; }

.pp-hero {
  position: relative;
  background: url('../assets/dep-hero-apache-sunset.png') center 40% / cover no-repeat;
}
.pp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,28,50,0.92) 0%, rgba(13,37,64,0.87) 55%, rgba(13,37,64,0.72) 100%);
  z-index: 0;
}
.pp-hero .container { position: relative; z-index: 1; }

.teaming-hero {
  position: relative;
  background: url('../assets/dep-hero-caracal-hangar.png') center 40% / cover no-repeat;
}
.teaming-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,28,50,0.92) 0%, rgba(13,37,64,0.87) 55%, rgba(13,37,64,0.72) 100%);
  z-index: 0;
}
.teaming-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ===== TABS ===== */
.tab-nav {
  display: flex;
  gap: 0.25rem;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.6rem 1.25rem;
  background: none;
  border: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-400);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tab-btn:hover   { color: var(--navy); }
.tab-btn.active  { color: var(--navy); border-bottom-color: var(--gold); }
.tab-panel       { display: none; }
.tab-panel.active { display: block; }

/* ===== ALERT BOX ===== */
.alert-box {
  background: rgba(201,162,39,0.1);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text);
}
.alert-icon { font-size: 1.25rem; color: var(--gold); min-width: 24px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  color: var(--text-light);
  padding: 4rem 0 0;
  border-top: 4px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-100);
}
.footer-brand .logo-abbr {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.footer-brand .logo-abbr span { color: var(--gold); }
.footer-brand .logo-full {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; color: var(--text-light); }
.footer h4 {
  color: var(--navy);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a {
  color: var(--text-light);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer ul a:hover { color: var(--gold-dark); }
.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-light);
}
.footer-contact-item span:first-child { color: var(--gold-dark); font-size: 1rem; min-width: 18px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.78rem;
  color: var(--gray-400);
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: var(--navy); }
.footer-bottom a:hover { color: var(--gold-dark); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold); color: var(--navy); }

/* ===== UTILITIES ===== */
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.fw-700 { font-weight: 700; }
.tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--navy);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0.15rem;
}
.tag-gold { background: rgba(201,162,39,0.15); color: var(--gold-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-100);
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .section { padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .accent-bar .container { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 3.5rem 0 3rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
