/* ============================================================
   Reformed Marketing, Inc. — Main Stylesheet
   Virginia Beach | Coastal · Bright · Professional
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Open+Sans:wght@300;400;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --navy:       #1B3A5C;
  --ocean:      #2A6FAC;
  --sky:        #5BAFE8;
  --seafoam:    #3EC9A7;
  --sand:       #F5F0E8;
  --white:      #FFFFFF;
  --dark:       #1A1A2E;
  --gray:       #6B7280;
  --light-gray: #F9FAFB;
  --border:     #E5E7EB;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
  --shadow-sm:  0 2px 8px rgba(27,58,92,0.10);
  --shadow-md:  0 8px 32px rgba(27,58,92,0.15);
  --shadow-lg:  0 16px 48px rgba(27,58,92,0.20);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ocean); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--seafoam); }

ul { list-style: none; }

/* ---------- Utility ---------- */
.container { width: 90%; max-width: 1160px; margin: 0 auto; }
.section-padding { padding: 96px 0; }
.section-padding-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--ocean), var(--seafoam));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(42,111,172,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42,111,172,0.45);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--ocean);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-navy:hover {
  background: var(--ocean);
  transform: translateY(-2px);
  color: var(--white);
}

/* ---------- Section Labels ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-subtitle.light { color: rgba(255,255,255,0.82); }

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  padding: 20px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(27,58,92,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.nav-logo span { color: var(--seafoam); }
.nav-logo small {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--seafoam); }
.nav-links .btn { padding: 10px 24px; font-size: 0.78rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, #0F2944 40%, #1a4a6e 100%);
  padding-bottom: 80px; /* room for wave */
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(91,175,232,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(62,201,167,0.12) 0%, transparent 50%);
}
.hero-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  overflow: hidden;
}
.hero-waves svg { display: block; width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--seafoam);
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--seafoam); }
.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  font-style: italic;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Photo: sits in the top-right, above the stats bar */
.hero-photo-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 200px; /* leaves room for the stats bar below */
  width: 44%;
  z-index: 1;
  overflow: hidden;
}
.hero-team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% top;
  display: block;
}
/* Blend left + bottom edges into the dark background */
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(15,41,68,1) 0%, transparent 28%),
    linear-gradient(to bottom, transparent 55%, rgba(15,41,68,0.9) 100%);
  pointer-events: none;
}

/* Stats bar: bottom-right, exactly as the original screenshot */
.hero-stats {
  position: absolute;
  bottom: 140px;
  right: 0;
  display: flex;
  gap: 2px;
  z-index: 3;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 20px 32px;
  text-align: center;
}
.hero-stat:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.hero-stat:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--seafoam);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- ABOUT ---------- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.about-badge {
  position: absolute;
  top: 50%;
  left: 68%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--ocean), var(--seafoam));
  color: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.65rem;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px rgba(42,111,172,0.4);
  z-index: 3;
}
.about-badge strong { font-size: 1.6rem; display: block; }
.about-text .section-title { margin-bottom: 20px; }
.about-text p { color: var(--gray); margin-bottom: 18px; font-size: 0.98rem; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--light-gray);
  border-radius: var(--radius);
  border-left: 3px solid var(--seafoam);
}
.about-value-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--ocean), var(--seafoam));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.about-value h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-value p { font-size: 0.78rem; color: var(--gray); margin: 0; }

/* ---------- MISSION ---------- */
.mission {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a6e 100%);
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(91,175,232,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.mission-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.mission-quote {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-style: italic;
  padding: 0 20px;
  border-left: 4px solid var(--seafoam);
  text-align: left;
  margin: 32px 0;
}

/* ---------- WHAT WE DO ---------- */
.services { background: var(--sand); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ocean), var(--seafoam));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(42,111,172,0.12), rgba(62,201,167,0.12));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.service-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; }

/* ---------- WHY US ---------- */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-image-stack {
  position: relative;
  height: 480px;
}
.why-img-1 {
  position: absolute;
  top: 0; right: 0;
  width: 72%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.why-img-2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 60%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-feature-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--ocean), var(--seafoam));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}
.why-feature-text h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.why-feature-text p { font-size: 0.9rem; color: var(--gray); }

/* ---------- CULTURE ---------- */
.culture { background: var(--sand); }
.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.culture-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}
.culture-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.culture-photo:hover img { transform: scale(1.05); }
.culture-photo.tall { aspect-ratio: 3/4; }

/* ---------- CAREERS ---------- */
.careers { background: var(--white); }
.careers-intro { max-width: 760px; margin: 0 auto 56px; text-align: center; color: var(--gray); }
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.role-card {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.role-card:hover {
  border-color: var(--ocean);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.role-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--ocean), var(--seafoam));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.role-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.role-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }
.role-card .btn { margin-top: 24px; font-size: 0.78rem; padding: 10px 24px; }

.training-block {
  background: linear-gradient(135deg, var(--navy), #1a4a6e);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.training-block h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.training-block p { color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 24px; }
.training-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.training-pillar {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.training-pillar .icon { font-size: 1.6rem; margin-bottom: 8px; }
.training-pillar span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--seafoam) 0%, var(--ocean) 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band p { color: rgba(255,255,255,0.88); margin-bottom: 36px; font-size: 1.05rem; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand h3 span { color: var(--seafoam); }
.footer-brand small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--seafoam); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--seafoam); }

/* ---------- APPLY PAGE ---------- */
.apply-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #1a4a6e 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apply-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.apply-section { padding: 80px 0 100px; background: var(--white); }
.apply-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.apply-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 56px 64px;
  border: 1px solid var(--border);
}
.apply-card h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.apply-card .sub { color: var(--gray); font-size: 0.92rem; margin-bottom: 36px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group label span { color: #e53e3e; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(42,111,172,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: var(--gray);
}
.form-consent input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--ocean); }
.form-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}
.form-section-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--seafoam);
  display: inline-block;
}
.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  border-radius: var(--radius);
}

/* Success / Error alerts */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.alert-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}
.alert-error {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}
.alert-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ---------- LEGAL PAGES ---------- */
.legal-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #1a4a6e 100%);
  padding: 160px 0 80px;
  text-align: center;
}
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 0 100px;
}
.legal-content h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 14px;
}
.legal-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul li { margin-bottom: 8px; }
.legal-last-updated {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 40px;
  font-style: italic;
}
.legal-back { margin-bottom: 32px; display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .hero-photo-wrap { display: none; }
  .hero-stats { display: none; }
  .about-badge { display: none; }
  .about-grid,
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images,
  .why-image-stack { height: 360px; }
  .services-grid,
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .training-block { grid-template-columns: 1fr; padding: 40px; }
  .hero-stats { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .culture-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; justify-content: center; align-items: center; gap: 32px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 1001; }
  .services-grid,
  .roles-grid,
  .culture-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .apply-card { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .training-pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .section-padding { padding: 64px 0; }
  .hero { padding: 0 0 60px; }
  .training-block { padding: 32px 20px; }
}
