@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy-primary: #1D3D58;
  --navy-secondary: #4D7499;
  --cream: #F0EEDE;
  --white: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 64px;
  --iridescent-red: #ff4040;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(29, 61, 88, 0.1);
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: var(--spacing-md);
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 101;
  flex-shrink: 0;
}

.logo-image {
  height: 40px;
  width: auto;
  max-width: 200px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--navy-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--navy-primary);
  background: rgba(29, 61, 88, 0.05);
}

/* .dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 320px;
  box-shadow: 0 10px 40px rgba(29, 61, 88, 0.15);
  border-radius: 12px;
  padding: var(--spacing-sm);
  margin-top: 8px;
  z-index: 1000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  margin: 4px 0;
  border-radius: 8px;
  font-size: 14px;
} */

.cta-btn {
  background: var(--iridescent-red);
  color: var(--white) !important;
  padding: 12px 24px !important;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--navy-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(29, 61, 88, 0.2);
}

/* ============================================
   HERO SECTION
   ============================================ */

/* Hero with background image */
.hero {
  background: linear-gradient(135deg, rgba(29, 61, 88, 0.92) 0%, rgba(42, 81, 112, 0.92) 100%), 
              url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

/* Hero without background image (use class .hero-solid) */
.hero-solid {
  background: linear-gradient(135deg, rgba(29, 61, 88, 0.95) 0%, rgba(42, 81, 112, 0.95) 100%);
  min-height: auto;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(77, 116, 153, 0.3) 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  min-width: 160px;
}

.btn-primary {
  background: var(--white);
  color: var(--navy-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: #ff4040;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
  padding: var(--spacing-xl) 0;
}

.section {
  margin-bottom: var(--spacing-xl);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.01em;
  text-align: center;
  margin-top: var(--spacing-md);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  margin-bottom: var(--spacing-xl);
  margin-top: var(--spacing-md);
}

.intro-content h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.intro-content p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
}

.intro-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(29, 61, 88, 0.12);
}

/* ============================================
   PAIN POINTS SECTION
   ============================================ */

/* Pain points with background section */
.pain-points-section {
  background: linear-gradient(135deg, rgba(29, 61, 88, 0.03) 0%, rgba(77, 116, 153, 0.05) 100%);
  padding: var(--spacing-xl);
  border-radius: 20px;
  margin-bottom: var(--spacing-xl);
}

/* Pain points as 2-column layout with content and image */
.pain-points-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.pain-points-content p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
}

.pain-points-list {
  list-style: none;
  padding: 0;
}

.pain-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(29, 61, 88, 0.12);
}

/* Pain points grid */
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.pain-point-card {
  background: var(--white);
  padding: var(--spacing-md);
  border-left: 3px solid #ef4444;
  border-radius: 8px;
  display: flex;
  align-items: start;
  gap: var(--spacing-sm);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
}

.pain-point-item {
  display: flex;
  align-items: start;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: rgba(239, 68, 68, 0.05);
  border-left: 3px solid #ef4444;
  border-radius: 8px;
  margin-bottom: var(--spacing-sm);
}

.pain-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.pain-point-card p,
.pain-point-item p {
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Legacy pain points list style */
.pain-points {
  list-style: none;
  padding: 0;
}

.pain-points li {
  position: relative;
  padding-left: 32px;
  margin: 16px 0;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: var(--text-muted);
}

.pain-points li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-size: 18px;
}

/* ============================================
   APPROACH SECTION
   ============================================ */

.approach-section {
  margin: var(--spacing-xl) 0;
}

/* Approach with background */
.approach-section.with-bg {
  background: linear-gradient(135deg, rgba(29, 61, 88, 0.03) 0%, rgba(77, 116, 153, 0.05) 100%);
  padding: var(--spacing-xl);
  border-radius: 20px;
}

/* Approach steps - 4 column grid with numbered steps */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.approach-step {
  background: var(--white);
  border: 1px solid rgba(29, 61, 88, 0.1);
  border-radius: 12px;
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(29, 61, 88, 0.06);
  position: relative;
}

.approach-step::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy-secondary);
  font-size: 24px;
  opacity: 0.3;
}

.approach-step:last-child::after {
  display: none;
}

.approach-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(29, 61, 88, 0.1);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--navy-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto var(--spacing-sm);
}

.approach-step h3 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--navy-primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.approach-step p {
  font-size: clamp(0.875rem, 2vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.5;
}

/* Alternative: Approach step with header (2-column grid) */
.approach-step-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.approach-step-header .step-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 20px;
  margin: 0;
}

/* Approach cards grid - 2 column */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.approach-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(29, 61, 88, 0.08);
  transition: all 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(29, 61, 88, 0.12);
}

.approach-card-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.approach-icon {
  width: 48px;
  height: 48px;
  background: rgba(29, 61, 88, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.approach-card h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--navy-primary);
  font-weight: 700;
}

.approach-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* ============================================
   VISUAL SECTION
   ============================================ */

.visual-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  margin: var(--spacing-xl) 0;
}

.visual-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(29, 61, 88, 0.12);
}

.visual-content h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.visual-content p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
}

/* Visual stats */
.visual-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.stat-box {
  padding: var(--spacing-md);
  background: rgba(29, 61, 88, 0.05);
  border-radius: 8px;
  text-align: center;
}

.stat-number {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--navy-primary);
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: var(--text-muted);
}

/* Visual highlights */
.visual-highlights {
  display: grid;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: rgba(29, 61, 88, 0.03);
  border-radius: 8px;
}

.highlight-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.highlight-item span {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
}

/* ============================================
   FEATURES & BENEFITS
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.features-content h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.checks {
  list-style: none;
  padding: 0;
}

.checks li {
  position: relative;
  padding-left: 32px;
  margin: 14px 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
}

.checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--navy-primary);
  font-weight: 700;
  font-size: 24px;
}

.benefits-card {
  background: var(--white);
  border: 1px solid rgba(29, 61, 88, 0.1);
  border-radius: 16px;
  padding: var(--spacing-lg);
  box-shadow: 0 4px 16px rgba(29, 61, 88, 0.08);
  transition: all 0.3s ease;
}

.benefits-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(29, 61, 88, 0.15);
}

.benefits-card h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--navy-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.benefits-card ul {
  list-style: none;
  padding: 0;
}

.benefits-card li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.benefits-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--navy-secondary);
  font-weight: 700;
}

/* Generic grid and cards */
.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-two {
  grid-template-columns: 1.3fr 1fr;
}

.card {
  background: var(--white);
  border: 1px solid rgba(29, 61, 88, 0.1);
  border-radius: 16px;
  padding: var(--spacing-lg);
  box-shadow: 0 4px 16px rgba(29, 61, 88, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(29, 61, 88, 0.15);
}

.card h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--navy-primary);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

/* ============================================
   FEATURE GRID WITH IMAGES
   ============================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(29, 61, 88, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(29, 61, 88, 0.08);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(29, 61, 88, 0.15);
}

.feature-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.feature-content {
  padding: var(--spacing-md);
}

.feature-title {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 12px;
}

.feature-text {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: clamp(14px, 2vw, 16px);
}

/* ============================================
   LEARNING PATHWAYS
   ============================================ */

.pathways-section {
  margin: var(--spacing-xl) 0;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.pathway-card {
  background: var(--white);
  border: 1px solid rgba(29, 61, 88, 0.1);
  border-radius: 12px;
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(29, 61, 88, 0.06);
}

.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(29, 61, 88, 0.1);
}

.pathway-icon {
  font-size: 48px;
  margin-bottom: var(--spacing-sm);
}

.pathway-card h4 {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--navy-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.pathway-card p {
  color: var(--text-muted);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  line-height: 1.5;
}

/* ============================================
   TECHNOLOGIES SECTION
   ============================================ */

.technologies-section {
  background: #f8fafc;
  padding: var(--spacing-xl);
  border-radius: 20px;
  margin: var(--spacing-xl) 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.tech-card {
  background: var(--white);
  padding: var(--spacing-md);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(29, 61, 88, 0.06);
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(29, 61, 88, 0.1);
}

.tech-icon {
  font-size: 36px;
  margin-bottom: var(--spacing-sm);
}

.tech-card h4 {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--navy-primary);
  font-weight: 600;
}

/* ============================================
   PARTNER LOGOS
   ============================================ */

.partners-section {
  margin: var(--spacing-xl) 0;
  text-align: center;
}

.partners-section h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--navy-primary);
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.partner-logo {
  padding: var(--spacing-sm);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(29, 61, 88, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(29, 61, 88, 0.12);
}

.partner-logo svg,
.partner-logo img {
  height: 100%;
  width: auto;
  max-width: 180px;
}

/* ============================================
   DATA SOURCES SECTION
   ============================================ */

.data-sources-section {
  background: #f8fafc;
  padding: var(--spacing-xl);
  border-radius: 20px;
  margin: var(--spacing-xl) 0;
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.source-card {
  background: var(--white);
  padding: var(--spacing-md);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(29, 61, 88, 0.06);
}

.source-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(29, 61, 88, 0.1);
}

.source-icon {
  font-size: 36px;
  margin-bottom: var(--spacing-sm);
}

.source-card h4 {
  font-size: 1rem;
  color: var(--navy-primary);
  font-weight: 600;
}

/* ============================================
   DELIVERABLES GRID
   ============================================ */

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-xl) 0;
}

.deliverable-card {
  background: var(--white);
  border: 1px solid rgba(29, 61, 88, 0.1);
  border-radius: 12px;
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(29, 61, 88, 0.06);
}

.deliverable-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(29, 61, 88, 0.1);
}

.deliverable-icon {
  font-size: 48px;
  margin-bottom: var(--spacing-sm);
}

.deliverable-card h4 {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--navy-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.deliverable-card p {
  color: var(--text-muted);
  font-size: clamp(0.875rem, 1.8vw, 0.95rem);
  line-height: 1.5;
}

/* ============================================
   PROCESS STEPS (Legacy)
   ============================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.step {
  text-align: center;
  position: relative;
}

.step::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 20px;
  color: var(--navy-secondary);
  font-size: 24px;
  opacity: 0.3;
}

.step:last-child::after {
  display: none;
}

.step h3 {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--navy-primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.step p {
  font-size: clamp(13px, 1.8vw, 14px);
  color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section,
.cta-band {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
  color: var(--white);
  padding: var(--spacing-xl);
  border-radius: 20px;
  text-align: center;
  margin: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

/* CTA with background image */
.cta-band.with-bg {
  background: linear-gradient(135deg, rgba(29, 61, 88, 0.95) 0%, rgba(77, 116, 153, 0.95) 100%),
              url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.cta-section::before,
.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cta-section h2,
.cta-band h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cta-section p,
.cta-band p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--navy-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-lg) 0;
  margin-top: var(--spacing-xl);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--white);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
  :root {
    --spacing-xl: 48px;
    --spacing-lg: 36px;
  }

  .intro-section,
  .visual-section,
  .features-grid,
  .pain-points-section {
    grid-template-columns: 1fr;
  }

  .grid-two {
    grid-template-columns: 1fr;
  }

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

  .approach-step::after,
  .step::after {
    display: none;
  }

  .approach-grid,
  .pain-points-grid {
    grid-template-columns: 1fr;
  }

  .visual-section .visual-image {
    order: -1;
  }

  .feature-grid,
  .pathways-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .approach-section,
  .cta-section {
    padding: var(--spacing-lg);
  }

  .deliverables-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
  :root {
    --spacing-xl: 32px;
    --spacing-lg: 24px;
    --spacing-md: 16px;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

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

  .nav {
    min-height: 60px;
    padding: var(--spacing-sm) 0;
  }

  .logo-image {
    height: 32px;
    max-width: 150px;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: var(--spacing-md);
    box-shadow: 0 10px 40px rgba(29, 61, 88, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .nav-links.active {
    max-height: 600px;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(29, 61, 88, 0.1);
  }

  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    margin-top: 8px;
    padding: 0;
    min-width: 100%;
    background: rgba(29, 61, 88, 0.03);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
    max-height: 500px;
  }

  .dropdown > a::after {
    content: ' ▾';
  }

  .dropdown-content a {
    pointer-events: auto;
  }

  .cta-btn {
    width: 100%;
    margin-top: 8px;
    text-align: center;
  }

  /* Hero adjustments */
  .hero {
    min-height: 400px;
    padding: var(--spacing-lg) 0;
  }

  .hero::before {
    width: 100%;
    clip-path: none;
    opacity: 0.3;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    padding: 12px 24px;
    min-width: auto;
  }

  /* Content adjustments */
  main {
    padding: var(--spacing-lg) 0;
  }

  .intro-section,
  .visual-section {
    gap: var(--spacing-md);
  }

  .intro-image,
  .visual-image,
  .pain-image {
    height: 250px;
  }

  .feature-image {
    height: 200px;
  }

  .pain-points-section,
  .approach-section,
  .data-sources-section,
  .technologies-section,
  .cta-section,
  .cta-band {
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: 12px;
  }

  .approach-section.with-bg {
    padding: var(--spacing-md);
  }

  .pain-points-grid,
  .approach-steps,
  .steps,
  .approach-grid,
  .pathways-grid,
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .approach-card,
  .approach-step,
  .pathway-card,
  .benefits-card,
  .card {
    padding: var(--spacing-md);
  }

  .approach-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .approach-step-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .approach-step-header .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .step {
    padding: var(--spacing-md);
    background: rgba(29, 61, 88, 0.03);
    border-radius: 12px;
  }

  .visual-stats {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: var(--spacing-sm);
  }

  .sources-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-sm);
  }

  .source-card {
    padding: var(--spacing-sm);
  }

  .source-icon {
    font-size: 28px;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .partner-logos {
    flex-direction: column;
  }

  .partner-logo svg,
  .partner-logo img {
    max-width: 140px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
  }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */

@media (max-width: 480px) {
  .logo-image {
    height: 32px;
    max-width: 150px;
  }

  .nav {
    min-height: 64px;
  }

  .nav-links {
    top: 64px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .checks li,
  .pain-points li,
  .benefits-card li {
    padding-left: 28px;
    font-size: 14px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .pain-points-grid,
  .approach-grid {
    gap: var(--spacing-sm);
  }

  .pain-point-card,
  .pain-point-item,
  .highlight-item {
    padding: var(--spacing-sm);
    font-size: 0.9rem;
  }

  .pain-points-section,
  .technologies-section {
    padding: var(--spacing-sm);
    border-radius: 12px;
  }

  .approach-step {
    padding: var(--spacing-md);
  }

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