/* ============================================================
   Hello Logistics Solutions — Main Stylesheet
   Brand Colors: Navy #1B2F4E | Red #C0392B | White #FFFFFF
   Three Pillars: Retention | Recruiting | Insurance
============================================================ */

:root {
  --navy: #1B2F4E;
  --navy-dark: #122038;
  --red: #C0392B;
  --red-dark: #a93226;
  --white: #FFFFFF;
  --light-gray: #F4F6F9;
  --mid-gray: #E0E4EA;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --green: #27ae60;
  --shadow: 0 4px 24px rgba(27,47,78,0.12);
  --shadow-lg: 0 8px 40px rgba(27,47,78,0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: all 0.3s ease;
  /* Pillar accent colors */
  --retention-color: #C0392B;
  --recruiting-color: #2980b9;
  --insurance-color: #27ae60;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: 0.5px;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ---- Sections ---- */
.section { padding: 90px 0; }
.section-alt { background: var(--light-gray); }
.section-navy { background: var(--navy); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }
.section-navy .section-label { color: var(--red); }
.section-navy .section-subtitle { color: rgba(255,255,255,0.75); }
.section-navy p { color: rgba(255,255,255,0.75); }

/* ============================================================
   NAVIGATION
============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(18, 32, 56, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 46px;
  width: auto;
}
.nav-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.8);
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link.active { color: var(--red) !important; }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 6px;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 2px solid var(--red);
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; padding: 12px 16px; }
  .nav-cta { margin-left: 0; text-align: center; }
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d1b2e 0%, #1a2f4e 50%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.png') center/cover no-repeat;
  opacity: 0.06;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.3);
  color: #ff8a7a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.hero-trust-item svg { color: var(--green); flex-shrink: 0; }

/* ============================================================
   THREE PILLARS SECTION
============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}
.pillar-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.2rem;
  border: 1px solid var(--mid-gray);
  box-shadow: 0 2px 16px rgba(27,47,78,0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}
.pillar-retention::before { background: var(--retention-color); }
.pillar-recruiting::before { background: var(--recruiting-color); }
.pillar-insurance::before { background: var(--insurance-color); }
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.pillar-retention .pillar-icon { background: rgba(192,57,43,0.1); color: var(--retention-color); }
.pillar-recruiting .pillar-icon { background: rgba(41,128,185,0.1); color: var(--recruiting-color); }
.pillar-insurance .pillar-icon { background: rgba(39,174,96,0.1); color: var(--insurance-color); }
.pillar-logo {
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
}
.pillar-logo img {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(27,47,78,0.12));
}
.pillar-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.pillar-retention .pillar-tag { color: var(--retention-color); }
.pillar-recruiting .pillar-tag { color: var(--recruiting-color); }
.pillar-insurance .pillar-tag { color: var(--insurance-color); }
.pillar-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.pillar-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
}
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.pillar-retention .pillar-link { color: var(--retention-color); }
.pillar-recruiting .pillar-link { color: var(--recruiting-color); }
.pillar-insurance .pillar-link { color: var(--insurance-color); }
.pillar-link:hover { gap: 10px; }

/* ============================================================
   WHY BUNDLE SECTION
============================================================ */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  .bundle-grid { grid-template-columns: 1fr; }
}
.bundle-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.bundle-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.bundle-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.bundle-card p { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.7; }

/* ============================================================
   STATS STRIP
============================================================ */
.stats-strip {
  background: var(--red);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-quote {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--red);
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.testimonial-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1rem; }
.testimonial-name { font-weight: 700; color: #fff; font-size: 0.9rem; }
.testimonial-company { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.png') center/cover no-repeat;
  opacity: 0.04;
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0d1b2e 0%, #1a2f4e 60%, #1a1a2e 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.png') center/cover no-repeat;
  opacity: 0.07;
}
.page-hero-content {
  position: relative;
  max-width: 760px;
}
.page-hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0.5rem 0 1rem;
}
.page-hero-content > p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 1.5rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* Page Hero Split Layout */
.page-hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.page-hero-split .page-hero-content {
  flex: 1;
  max-width: 620px;
}
.page-hero-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-logo img {
  width: 240px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.45));
  animation: floatLogo 4s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 768px) {
  .page-hero-split { flex-direction: column; }
  .page-hero-logo img { width: 160px; }
}

/* ============================================================
   SERVICE DETAIL CARDS
============================================================ */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), #1a2f4e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.service-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }

/* ============================================================
   COVERAGE TABLE
============================================================ */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.coverage-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow);
}
.coverage-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.coverage-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), #1a2f4e);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.coverage-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
}
.coverage-list { display: flex; flex-direction: column; gap: 0.5rem; }
.coverage-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.coverage-check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   HOW IT WORKS STEPS
============================================================ */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.step-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 0 1rem;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.step-item p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.6; }
.step-connector {
  flex: 0 0 40px;
  height: 2px;
  background: var(--red);
  margin-top: 28px;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .steps-row { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 30px; flex: 0 0 30px; margin: 0; }
}

/* ============================================================
   CARRIER LOGOS STRIP
============================================================ */
.carriers-strip {
  background: var(--light-gray);
  padding: 40px 0;
  text-align: center;
}
.carriers-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.carriers-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.carrier-badge {
  background: #fff;
  border: 1px solid var(--mid-gray);
  border-radius: 8px;
  padding: 8px 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.carrier-badge-count {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ============================================================
   CONTACT / FORM
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.contact-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.contact-info p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.contact-detail svg { color: var(--red); flex-shrink: 0; }
.contact-detail a { color: rgba(255,255,255,0.8); }
.contact-detail a:hover { color: #fff; }
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--navy); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-service-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 480px) {
  .form-service-select { grid-template-columns: 1fr; }
}
.service-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 14px;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
}
.service-checkbox-label:hover { border-color: var(--navy); color: var(--navy); }
.service-checkbox-label input { width: auto; margin: 0; }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--navy-dark);
  padding: 60px 0 30px;
  border-top: 3px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   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: 768px) {
  .section { padding: 60px 0; }
  .hero { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .page-hero { padding: 110px 0 60px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Positioning Block ---- */
.positioning-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.positioning-text {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin-bottom: 0;
}
.positioning-text strong {
  color: #fff;
  font-weight: 700;
}

/* ---- Flow / How It Works ---- */
.flow-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.flow-step {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  padding: 1.5rem 1rem;
}
.flow-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.flow-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.flow-step p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0;
}
.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  padding-top: 2.5rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .flow-connector { display: none; }
  .flow-grid { flex-direction: column; align-items: center; }
  .flow-step { max-width: 100%; }
}

/* ---- Hero 3-button layout ---- */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ---- Proof / Results Section ---- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.proof-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--mid-gray);
  transition: var(--transition);
}
.proof-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.proof-icon {
  color: var(--red);
  margin-bottom: 1rem;
}
.proof-stat {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.proof-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.proof-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ---- Who We Help ---- */
.who-we-help-block {
  max-width: 780px;
  margin: 2rem auto 0;
  text-align: center;
}
.who-we-help-text {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.service-area {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}
