/*
Theme Name: STEERLife
Theme URI: https://steerlife.com
Author: STEERLife
Author URI: https://steerlife.com
Description: Custom WordPress theme for STEERLife - Pharma CRO Services & Dossier Licensing. Built for use with Elementor page builder.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
License URI: #
Text Domain: steerlife
Tags: pharma, cro, elementor, custom, mobile-friendly
*/

/* =============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================= */
:root {
  --navy:       #1b3270;
  --teal:       #1a9999;
  --gold:       #f5c342;
  --white:      #ffffff;
  --off-white:  #f7f6f4;
  --text-dark:  #1a1a2e;
  --text-mid:   #4a5568;
  --text-light: #8a9ab0;
  --border:     rgba(27,50,112,0.12);

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Noto Sans', system-ui, sans-serif;

  --transition: 0.3s ease;
  --shadow-sm: 0 2px 16px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
}

/* =============================================
   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);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
}

em, i { font-style: italic; }

/* =============================================
   TYPOGRAPHY HELPERS
   ============================================= */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

/* =============================================
   WORDPRESS CORE CLASSES
   ============================================= */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.wp-block-image { margin-bottom: 1.5rem; }

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(27,50,112,0.1);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.nav-dark {
  background: rgba(27,50,112,0.96);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
  max-width: 100%;
}

/* Logo */
.site-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 38px;
}

.site-logo img {
  height: 38px;
  width: auto;
  max-width: 145px;
  object-fit: contain;
}

.site-logo .logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.site-logo .logo-text em {
  color: var(--teal);
  font-style: italic;
}

.nav-dark .site-logo .logo-text { color: var(--white); }

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin-left: auto;
  border-left: 1px solid rgba(27,50,112,0.12);
}

.nav-dark .primary-nav { border-left-color: rgba(255,255,255,0.1); }

.primary-nav > li {
  border-right: 1px solid rgba(27,50,112,0.12);
  position: relative;
}

.nav-dark .primary-nav > li { border-right-color: rgba(255,255,255,0.1); }

.primary-nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 1rem;
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  white-space: nowrap;
  height: 72px;
}

.primary-nav > li > a:hover { color: var(--gold); }
.nav-dark .primary-nav > li > a { color: rgba(255,255,255,0.8); }
.nav-dark .primary-nav > li > a:hover { color: var(--gold); }

/* Dropdown chevron */
.primary-nav > li > a svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.25s ease;
}

/* Mega Menu */
.mega-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255,255,255,0.98);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(27,50,112,0.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 999;
}

.mega-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dark .mega-menu {
  background: rgba(20,40,95,0.98);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
}

.mega-card {
  display: block;
  padding: 2.5rem 2.75rem;
  border-right: 1px solid rgba(27,50,112,0.08);
  transition: background var(--transition);
  position: relative;
  text-decoration: none;
}

.mega-card:last-child { border-right: none; }
.mega-card:hover { background: rgba(27,50,112,0.03); }
.nav-dark .mega-card { border-right-color: rgba(255,255,255,0.07); }
.nav-dark .mega-card:hover { background: rgba(255,255,255,0.04); }

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

.mega-card:hover::before { width: 100%; }

.mega-card__title {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.mega-card:hover .mega-card__title { color: var(--teal); }
.nav-dark .mega-card__title { color: rgba(255,255,255,0.9); }
.nav-dark .mega-card:hover .mega-card__title { color: var(--gold); }

.mega-card__desc {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
}

.nav-dark .mega-card__desc { color: rgba(255,255,255,0.45); }

/* Nav Right Utilities */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  padding: 0 1rem;
  height: 72px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
  border-right: 1px solid rgba(27,50,112,0.12);
  text-decoration: none;
}

.nav-icon-btn:hover { color: var(--gold); }
.nav-icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.nav-dark .nav-icon-btn { color: rgba(255,255,255,0.75); border-right-color: rgba(255,255,255,0.1); }
.nav-dark .nav-icon-btn:hover { color: var(--gold); }

/* Nav Search */
.nav-search { position: relative; display: flex; align-items: center; }
.nav-search-input {
  width: 0; opacity: 0; padding: 0;
  background: transparent; border: none; outline: none;
  color: var(--text-dark); font-family: var(--font-body); font-size: 0.82rem;
  transition: width 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.nav-search.open .nav-search-input { width: 180px; opacity: 1; padding: 0.25rem 0.5rem; }

/* Nav CTA */
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.4rem 1rem;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  transition: background var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--white); }

/* Hamburger Menu */
.nav-hamburger { position: relative; }
.hamburger-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text-mid); padding: 0 1rem; height: 72px;
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 500; font-family: var(--font-body);
  transition: color var(--transition);
  border-right: 1px solid rgba(27,50,112,0.12);
}
.hamburger-btn:hover { color: var(--gold); }
.hamburger-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.nav-dark .hamburger-btn { color: rgba(255,255,255,0.75); border-right-color: rgba(255,255,255,0.1); }
.nav-dark .hamburger-btn:hover { color: var(--gold); }

.hamburger-dropdown {
  display: none;
  position: absolute;
  top: 72px; right: 0;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(27,50,112,0.12);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.nav-hamburger.open .hamburger-dropdown { display: block; }

.hamburger-dropdown a {
  display: block;
  padding: 0.875rem 1.5rem;
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(27,50,112,0.08);
  transition: color var(--transition), background var(--transition);
}

.hamburger-dropdown a:hover {
  color: var(--navy);
  background: rgba(27,50,112,0.04);
}

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--navy);
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
  z-index: 998;
  overflow-y: auto;
  max-height: calc(100vh - 72px);
}

.mobile-nav.is-open { display: block; }

.mobile-nav a {
  display: block;
  padding: 0.875rem 0;
  color: var(--text-mid);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover { color: var(--navy); }

.mobile-nav .mobile-nav-cta {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.75rem 2rem;
  border-radius: 3px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-outline-dark,
.btn-outline-teal,
.btn-filled-gold,
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn-outline-dark {
  color: var(--navy);
  border-color: var(--navy);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-teal {
  color: var(--teal);
  border-color: var(--teal);
  background: transparent;
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-filled-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-filled-gold:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-ghost-dark {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
  background: transparent;
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77,0,0.175,1);
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 6vw;
  position: relative;
}

/* Slide 1 - Light background */
.hero-slide.slide-1 {
  background: linear-gradient(135deg, var(--off-white) 60%, rgba(26,153,153,0.08) 100%);
}

.hero-blob-1 {
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(245,195,66,0.18), rgba(26,153,153,0.08) 60%, transparent 80%);
  pointer-events: none;
}

.hero-blob-2 {
  position: absolute;
  bottom: -120px; left: 30%;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,50,112,0.06), transparent 70%);
  pointer-events: none;
}

/* Slide 2 - Dark navy */
.hero-slide.slide-2 {
  background: linear-gradient(135deg, var(--navy) 55%, #0f2460 100%);
}

/* Slide 3 - Dark teal */
.hero-slide.slide-3 {
  background: linear-gradient(135deg, #0e2a2a 55%, var(--navy) 100%);
}

.hero-text {
  max-width: 600px;
  z-index: 2;
  position: relative;
  padding-right: 2rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  display: block;
}

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.slide-2 .hero-text h1,
.slide-3 .hero-text h1 {
  color: var(--white);
}

.hero-subhead {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.slide-2 .hero-sub,
.slide-3 .hero-sub {
  color: rgba(255,255,255,0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero Visual Side */
.hero-visual {
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(45vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-visual canvas {
  width: 100% !important;
  height: auto !important;
  max-width: 480px;
}

.morph-label {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  white-space: nowrap;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--transition);
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.6);
}

.slider-arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

.slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(27,50,112,0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--teal);
  border-color: var(--teal);
  transform: scale(1.3);
}

/* Transfer Visual (Slide 2) */
.slide-visual-box {
  padding: 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  width: 100%;
}

.transfer-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.transfer-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.transfer-node svg { width: 40px; height: 40px; }

.transfer-arrow {
  font-size: 1.4rem;
  color: var(--teal);
  opacity: 0.6;
}

/* =============================================
   MISSION SECTION
   ============================================= */
.mission {
  background: linear-gradient(135deg, var(--navy) 60%, #0f2460 100%);
  color: var(--white);
  padding: 6rem 6vw;
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,195,66,0.08), transparent 65%);
  pointer-events: none;
}

.mission-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mission h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 1.75rem;
}

.mission h2 span { color: var(--gold); }
.mission h2 em { color: var(--teal); font-style: italic; }

.mission-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.mission-stat {
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.mission-stat:last-child { border-right: none; }

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* =============================================
   DOSSIER / FEATURES SECTION
   ============================================= */
.dossier-section {
  background: linear-gradient(160deg, #0a1a3a 60%, var(--navy) 100%);
  color: var(--white);
  padding: 6rem 6vw;
  overflow: hidden;
  position: relative;
}

.dossier-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.dossier-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.dossier-content h2 em { color: var(--gold); font-style: italic; }

.dossier-content p {
  color: rgba(255,255,255,0.68);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.dossier-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dossier-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  transition: background var(--transition);
  cursor: default;
}

.dossier-feat:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(245,195,66,0.25);
}

.feat-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 6px;
  background: rgba(26,153,153,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.feat-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.feat-info h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.feat-info p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.55;
}

/* =============================================
   ENGAGEMENT / SERVICES SECTION
   ============================================= */
.engagement {
  background: var(--off-white);
  padding: 6rem 6vw;
}

.engagement-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.engagement-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.engagement-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
}

.engagement-header h2 em { color: var(--teal); font-style: italic; }

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

.eng-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.eng-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--teal);
  transition: width 0.4s ease;
}

.eng-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,153,153,0.2);
}

.eng-card:hover::before { width: 100%; }

.eng-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eng-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.eng-arrow-icon {
  width: 16px; height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.eng-card:hover .eng-arrow-icon { transform: translate(3px,-3px); }

.eng-abbr {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(27,50,112,0.08);
  line-height: 1;
  letter-spacing: -0.02em;
}

.eng-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

/* =============================================
   WHY STEERLIFE SECTION
   ============================================= */
.why {
  background: var(--white);
  padding: 6rem 6vw;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0;
}

.why-inner h2 span { color: var(--teal); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2.5rem;
}

.why-item {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  cursor: default;
  transition: background var(--transition);
}

.why-item:nth-child(3n) { border-right: none; }
.why-item:nth-child(4),
.why-item:nth-child(5),
.why-item:nth-child(6) { border-bottom: none; }

.why-item:hover { background: rgba(27,50,112,0.02); }

.why-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width 0.4s ease;
}

.why-item:hover::before { width: 100%; }

.why-item-num {
  display: block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.why-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* =============================================
   NEWSLETTER SECTION
   ============================================= */
.newsletter {
  background: linear-gradient(135deg, var(--navy) 60%, #0f2460 100%);
  padding: 5rem 6vw;
}

.newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.newsletter-text { flex: 1; min-width: 260px; }

.newsletter-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.nl-name {
  color: var(--gold);
  font-style: italic;
}

.newsletter-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.newsletter-text .section-label { color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }

.newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 420px;
  min-width: 260px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-radius: 4px 0 0 4px;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form input:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,0.08);
}

.newsletter-form button {
  padding: 0.85rem 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: transparent;
  color: var(--gold);
}

/* =============================================
   INSIGHTS / NEWS SECTION
   ============================================= */
.insights { 
  background: var(--off-white); 
  padding: 6rem 0 0;
}

.insights-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6vw;
  margin-bottom: 3rem;
}

.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.insights-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
}

.insights-header h2 em { color: var(--teal); font-style: italic; }

/* Ticker / horizontal scroll */
.insights-ticker {
  overflow: hidden;
  padding-bottom: 4rem;
}

.insights-track {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 6vw;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}

.insights-ticker:hover .insights-track {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.insight-card {
  flex: 0 0 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  cursor: default;
  transition: box-shadow var(--transition), transform var(--transition);
}

.insight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.placeholder-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(245,195,66,0.15);
  color: #8a6a00;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.insight-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26,153,153,0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  display: inline-block;
  width: fit-content;
}

.insight-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  padding-right: 4rem;
}

.insight-card p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}

.insight-date {
  font-size: 0.72rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: auto;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--white);
  padding: 7rem 6vw;
  text-align: center;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.cta-inner h2 em { color: var(--teal); font-style: italic; }

.cta-inner p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 5rem 6vw 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
}

.footer-about {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin: 1.25rem 0 0.75rem;
  max-width: 300px;
}

.footer-tagline-brand {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-tagline-brand em { font-style: italic; }

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

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

.footer-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity var(--transition);
}

.footer-logo:hover img { opacity: 1; }

.footer-logo .logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo .logo-text em { color: var(--gold); font-style: italic; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-tagline {
  font-style: italic;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   ELEMENTOR OVERRIDES
   ============================================= */
.elementor-section {
  padding: 0 !important;
}

.elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-column-wrap {
  padding: 0;
}

/* =============================================
   PAGE TEMPLATE UTILITIES
   ============================================= */
.page-template-full-width .site-content {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

#page { display: flex; flex-direction: column; min-height: 100vh; }
#content { flex: 1; }

/* =============================================
   RESPONSIVE - TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-text { max-width: 100%; padding-right: 0; }

  .dossier-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .engagement-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .why-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .why-item:nth-child(2n) { border-right: none; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .mission-stats { grid-template-columns: 1fr; }
  .mission-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .mission-stat:last-child { border-bottom: none; }
}

/* =============================================
   RESPONSIVE - MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
  .nav-container { padding: 0 1.25rem; }

  /* Hide desktop nav elements */
  .primary-nav,
  .hamburger-btn,
  .nav-search,
  .nav-cta { display: none !important; }

  /* Show mobile toggle */
  .mobile-menu-toggle { display: flex; }

  .hero-slider { height: auto; min-height: auto; max-height: none; }
  .hero-slide { padding: 5rem 1.25rem 4rem; min-height: 80vh; }
  .hero-text h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }

  .slider-arrow { display: none; }

  .mission { padding: 4rem 1.25rem; }
  .mission-stats { grid-template-columns: 1fr; }

  .engagement { padding: 4rem 1.25rem; }
  .engagement-grid { grid-template-columns: 1fr; }

  .why { padding: 4rem 1.25rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none; }

  .newsletter { padding: 3rem 1.25rem; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { max-width: 100%; width: 100%; }

  .insights { padding: 4rem 0 0; }
  .insights-inner { padding: 0 1.25rem; }
  .insight-card { flex: 0 0 260px; }

  .cta-section { padding: 4rem 1.25rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .site-header,
  .slider-arrow,
  .slider-nav,
  .newsletter { display: none; }
}
