/*
Theme Name: Sentinel Meridian v2
Theme URI: https://www.sentinel-meridian.com
Author: Sentinel Meridian LLC
Author URI: https://www.sentinel-meridian.com
Description: Official corporate theme for Sentinel Meridian LLC — Private Security & Risk Management Contracting.
Version: 2.0.0
License: Proprietary
Text Domain: sentinel-meridian
Tags: business, corporate, security, government
*/

/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1B2F4E;
  --navy-dark: #111E30;
  --gold:      #F0A500;
  --gold-dark: #C88800;
  --white:     #FFFFFF;
  --off-white: #F5F6F8;
  --gray:      #D6D9DE;
  --text:      #2D2D2D;
  --text-light:#666666;
  --font:      'Inter', 'Arial', sans-serif;
  --font-head: 'Inter', 'Arial', sans-serif;
  --radius:    4px;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
  --transition:0.25s ease;
  --max-width: 1200px;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ───────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }

.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.75rem;
}

.section-title {
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-title.white { color: var(--white); }

.section-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 3rem;
}

.section-intro.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,165,0,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Gold divider ─────────────────────────────────────────────────── */
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.gold-line.centered { margin-left: auto; margin-right: auto; }

/* ── Sections ─────────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section.navy  { background: var(--navy); }
.section.navy-dark { background: var(--navy-dark); }
.section.off-white { background: var(--off-white); }
.section.white { background: var(--white); }

/* ── NAVIGATION ───────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 20px 0;
}

#site-header.scrolled {
  background: var(--navy-dark);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

#site-header.transparent { background: transparent; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.site-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-text .tagline {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

#primary-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

#primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

#primary-nav a:hover,
#primary-nav a.active {
  color: var(--gold);
}

#primary-nav a:hover::after,
#primary-nav a.active::after { width: 100%; }

.nav-cta { margin-left: 8px; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ── HERO ─────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17,30,48,0.97) 0%, rgba(27,47,78,0.85) 60%, rgba(17,30,48,0.95) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
}

/* Geometric accent lines */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(240,165,0,0.04) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 100px;
  max-width: 820px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.hero-eyebrow span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
}

.hero-content h1 span { color: var(--gold); }

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badges {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(240,165,0,0.15);
  border: 1px solid rgba(240,165,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.hero-badge-text span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(240,165,0,0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── CAPABILITIES ─────────────────────────────────────────────────── */
#capabilities { background: var(--off-white); }

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-top: 3rem;
  background: var(--gray);
  border: 2px solid var(--gray);
}

.capability-card {
  background: var(--white);
  padding: 40px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height 0.35s ease;
}

.capability-card:hover { background: var(--navy); }
.capability-card:hover::before { height: 100%; }
.capability-card:hover .cap-icon { background: rgba(240,165,0,0.15); color: var(--gold); }
.capability-card:hover h3 { color: var(--white); }
.capability-card:hover p { color: rgba(255,255,255,0.7); }

.cap-icon {
  width: 56px;
  height: 56px;
  background: rgba(27,47,78,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.capability-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.capability-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  transition: color var(--transition);
}

/* ── WHY SENTINEL ─────────────────────────────────────────────────── */
#why-sentinel { background: var(--navy); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content .section-label { color: var(--gold); }
.why-content .section-title { color: var(--white); }
.why-content p { color: rgba(255,255,255,0.72); }

.why-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-item-icon {
  width: 36px;
  height: 36px;
  background: rgba(240,165,0,0.15);
  border: 1px solid rgba(240,165,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.why-item-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.why-item-text span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.08);
}

.stat-box {
  background: rgba(27,47,78,0.6);
  border: 1px solid rgba(240,165,0,0.12);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}

.stat-box:hover {
  background: rgba(240,165,0,0.08);
  border-color: rgba(240,165,0,0.3);
}

.stat-box .number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box .label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

/* ── SERVICES (deep dive) ─────────────────────────────────────────── */
#services { background: var(--white); }

.services-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 3rem;
  background: var(--off-white);
  padding: 4px;
  border-radius: var(--radius);
  flex-wrap: wrap;
}

.tab-btn {
  flex: 1;
  min-width: 140px;
  padding: 12px 20px;
  background: none;
  border: none;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--navy);
  color: var(--gold);
}

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.service-detail h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.service-detail p { color: var(--text-light); margin-bottom: 1.5rem; }

.service-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-light);
}

.service-features li::before {
  content: '▸';
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

.service-visual {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 48px 40px;
  color: rgba(255,255,255,0.85);
}

.service-visual h4 {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.service-visual ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.service-visual ul li {
  font-size: 0.9rem;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--gold);
  color: rgba(255,255,255,0.8);
}

/* ── GEOPOLITICAL / LATAM ─────────────────────────────────────────── */
#latam { background: var(--off-white); }

.latam-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.latam-map {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.latam-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(240,165,0,0.03) 20px,
    rgba(240,165,0,0.03) 21px
  );
}

.latam-map-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  position: relative;
}

.region-list { list-style: none; display: flex; flex-direction: column; gap: 12px; position: relative; }
.region-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(240,165,0,0.15);
  padding: 14px 20px;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

.region-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(240,165,0,0.5);
}

.threat-categories { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

.threat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray);
}

.threat-item:last-child { border-bottom: none; }

.threat-label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }

.threat-bar-wrap { flex: 1; margin: 0 16px; height: 4px; background: var(--gray); border-radius: 2px; }
.threat-bar { height: 100%; background: var(--gold); border-radius: 2px; }
.threat-level { font-size: 0.75rem; font-weight: 700; color: var(--gold); white-space: nowrap; }

/* ── TEAM ─────────────────────────────────────────────────────────── */
#team { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 3rem;
}

.team-card {
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.team-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team-card-top {
  background: var(--navy);
  padding: 36px 28px 28px;
  position: relative;
}

.team-initials {
  width: 72px;
  height: 72px;
  background: rgba(240,165,0,0.15);
  border: 2px solid rgba(240,165,0,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1rem;
}

.team-card-top h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }

.team-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.team-card-body { padding: 24px 28px; }
.team-card-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 0; }

.team-card-footer {
  padding: 16px 28px;
  background: var(--off-white);
  border-top: 1px solid var(--gray);
}

.team-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.team-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(27,47,78,0.08);
  color: var(--navy);
  border-radius: 20px;
}

/* ── INTELLIGENCE / APPROACH ──────────────────────────────────────── */
#approach { background: var(--navy); }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 3rem;
}

.approach-step {
  position: relative;
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.approach-step:hover {
  background: rgba(240,165,0,0.06);
  border-color: rgba(240,165,0,0.25);
  transform: translateY(-4px);
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(240,165,0,0.12);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--font-head);
}

.approach-step h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.approach-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  margin: 0;
}

/* ── COMPLIANCE / VALUES ──────────────────────────────────────────── */
#compliance { background: var(--off-white); }

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 3rem;
}

.values-list { display: flex; flex-direction: column; gap: 1.5rem; }

.value-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.value-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.value-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }

.value-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.value-text span { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

.compliance-badges { display: flex; flex-direction: column; gap: 1rem; }

.compliance-badge {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray);
  transition: all var(--transition);
}

.compliance-badge:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.badge-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.badge-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.badge-text span { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* ── CONTACT ──────────────────────────────────────────────────────── */
#contact { background: var(--navy-dark); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-label { color: var(--gold); }
.contact-info .section-title { color: var(--white); }
.contact-info p { color: rgba(255,255,255,0.68); }

.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-detail a { color: rgba(255,255,255,0.75); }
.contact-detail a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-form > p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* ── FOOTER ───────────────────────────────────────────────────────── */
#site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin: 1.25rem 0;
  max-width: 320px;
}

.footer-brand .site-logo { margin-bottom: 1rem; display: inline-flex; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links a:hover { color: var(--gold); }

.footer-doc-id {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  text-align: center;
  padding: 12px 0;
}

/* ── NOTICES / ALERT BAR ──────────────────────────────────────────── */
.alert-bar {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
}

/* ── PAGE BANNER ──────────────────────────────────────────────────── */
.page-banner {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gold);
}

.page-banner .section-label { color: var(--gold); }
.page-banner h1 { color: var(--white); }
.page-banner p { color: rgba(255,255,255,0.7); max-width: 600px; margin-top: 1rem; }

/* ── WP Standard Classes ──────────────────────────────────────────── */
.wp-block-image { margin: 2rem 0; }
.aligncenter { margin-left: auto; margin-right: auto; text-align: center; }
.alignleft { float: left; margin-right: 2rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 2rem; margin-bottom: 1rem; }

/* ── ANIMATIONS ───────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid, .latam-inner, .contact-inner, .compliance-grid { grid-template-columns: 1fr; gap: 48px; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .menu-toggle { display: flex; }
  #primary-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  #primary-nav.open { display: flex; }
  #primary-nav ul { flex-direction: column; gap: 24px; text-align: center; }
  #primary-nav a { font-size: 1.2rem; }
  .hero-badges { flex-direction: column; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .why-stats { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero.navy {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e3a5f 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.25rem; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.1rem; line-height: 1.75; max-width: 600px; margin-bottom: 2rem; }

/* ══════════════════════════════════════════════════════════════════
   REPORTS PAGE
══════════════════════════════════════════════════════════════════ */
.reports-filter-bar { padding: 1.25rem 0; border-bottom: 1px solid var(--gray); }
.filter-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.filter-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); white-space: nowrap; }
.filter-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--gray);
  border-radius: 2rem;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.report-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.report-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.report-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: var(--navy-dark);
  gap: 0.75rem;
}
.report-classification {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.report-category-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.report-card-body { padding: 1.5rem; flex: 1; }
.report-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.report-meta { display: flex; gap: 1rem; margin-bottom: 0.75rem; }
.report-id, .report-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.report-id { color: var(--gold); }
.report-card-body h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.35; }
.report-excerpt { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.report-topics { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.report-topics span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 3px;
  color: var(--text-light);
}
.report-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.report-file-info {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-light);
}
.file-icon { width: 16px; height: 16px; }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.82rem; gap: 0.35rem; }
.btn-sm svg { width: 14px; height: 14px; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.reports-cta { padding: 80px 0; }
.cta-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-action { display: flex; flex-direction: column; gap: 1rem; }

/* ══════════════════════════════════════════════════════════════════
   SOCIAL CONNECT PAGE
══════════════════════════════════════════════════════════════════ */
.social-platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.social-platform-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all var(--transition);
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.social-platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  transition: width var(--transition);
}
.social-platform-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.social-platform-card:hover::before { width: 6px; }

.social-card-linkedin::before  { background: #0A66C2; }
.social-card-twitter::before   { background: #000000; }
.social-card-facebook::before  { background: #1877F2; }
.social-card-youtube::before   { background: #FF0000; }
.social-card-instagram::before { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card-telegram::before  { background: #26A5E4; }
.social-card-rumble::before    { background: #85C742; }
.social-card-truth::before     { background: #5448EE; }

.sp-icon { width: 44px; height: 44px; margin-bottom: 1rem; }
.social-card-linkedin  .sp-icon { color: #0A66C2; }
.social-card-twitter   .sp-icon { color: #000000; }
.social-card-facebook  .sp-icon { color: #1877F2; }
.social-card-youtube   .sp-icon { color: #FF0000; }
.social-card-instagram .sp-icon { color: #E1306C; }
.social-card-telegram  .sp-icon { color: #26A5E4; }
.social-card-rumble    .sp-icon { color: #85C742; }
.social-card-truth     .sp-icon { color: #5448EE; }

.sp-content { flex: 1; }
.sp-content h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.sp-content p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; margin-bottom: 0.75rem; }
.sp-handle     { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; color: var(--text-light); }
.sp-action     { font-size: 0.82rem; font-weight: 700; color: var(--gold); margin-top: 1.25rem; }

/* Newsletter */
.newsletter-section { }
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.newsletter-features { list-style: none; margin: 1.25rem 0; }
.newsletter-features li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--text); }
.newsletter-form { background: var(--white); padding: 2rem; border-radius: 8px; box-shadow: var(--shadow); }
.form-disclaimer { font-size: 0.75rem; color: var(--text-light); margin-top: 0.75rem; text-align: center; }

/* ══════════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════════ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.contact-form { margin-top: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox label { font-size: 0.82rem; font-weight: 400; color: var(--text-light); text-transform: none; letter-spacing: 0; display: flex; align-items: flex-start; gap: 0.5rem; cursor: pointer; }
.form-checkbox input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }
.form-status { margin-top: 1rem; }
.form-success { padding: 1rem; background: #d4edda; border: 1px solid #c3e6cb; border-radius: var(--radius); color: #155724; font-size: 0.9rem; }
.form-error   { padding: 1rem; background: #f8d7da; border: 1px solid #f5c6cb; border-radius: var(--radius); color: #721c24; font-size: 0.9rem; }

.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 1.5rem;
}
.contact-info-card h3 { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gold); }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-item-icon { font-size: 1.25rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 0.2rem; }
.contact-item a { color: var(--navy); font-weight: 600; font-size: 0.92rem; }
.contact-item a:hover { color: var(--gold); }
.cert-badges { display: flex; flex-direction: column; gap: 0.5rem; }
.cert-badge { font-size: 0.82rem; color: var(--text); padding: 0.35rem 0; }
.contact-social-links { display: flex; flex-direction: column; gap: 0.4rem; }
.csocial-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0.75rem; border-radius: 4px; color: var(--navy); font-size: 0.88rem; font-weight: 600; transition: all var(--transition); }
.csocial-link:hover { background: var(--white); color: var(--gold); }
.csocial-icon { width: 28px; height: 28px; background: var(--navy); color: var(--white); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 900; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════
   FOOTER SOCIAL ICONS
══════════════════════════════════════════════════════════════════ */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin: 1.25rem 0;
  flex-wrap: wrap;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  text-decoration: none;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .social-platforms-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .page-hero { padding: 120px 0 60px; }
  .reports-grid { grid-template-columns: 1fr; }
  .filter-row { flex-direction: column; align-items: flex-start; }
}

/* ── Capabilities Page ───────────────────────────────────────────── */
.cap-list { list-style: none; margin-top: 1rem; padding: 0; }
.cap-list li { font-size: 0.82rem; color: var(--text-light); padding: 0.3rem 0 0.3rem 1.1rem; position: relative; }
.cap-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ── Leadership Page ─────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.team-card { background: var(--off-white); border: 1px solid var(--gray); border-radius: 8px; padding: 2rem; text-align: center; transition: all var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto 1rem; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-initials { width: 80px; height: 80px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin: 0 auto 1rem; }
.team-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.team-role { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 0.75rem; }
.team-bio { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.team-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
.team-tags span { font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.6rem; background: var(--navy); color: rgba(255,255,255,0.7); border-radius: 2px; }
