/* ===================================
   NUVANCE DIGITAL - CONSOLIDATED STYLES
   =================================== */

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

/* ===================================
   CSS VARIABLES
   =================================== */

: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;
}

/* ===================================
   GLOBAL RESET & BASE STYLES
   =================================== */

* {
  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;
  flex-shrink: 0;
  z-index: 101;
}

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

/* Mobile Menu Toggle */
.menu-toggle,
.mobile-menu-toggle,
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy-primary);
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

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

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

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

.mobile-menu-toggle.active span:nth-child(3),
.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;
}

.dropbtn {
  cursor: pointer;
}

.dropdown {
  position: relative;
}

/* Remove the old hover rule and replace with this */
.dropdown:hover > .dropdown-content,
.dropdown-content:hover {
  display: block !important;
}

.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-content a {
  display: block;
  padding: 12px 16px;
  margin: 0;
  border-radius: 8px;
  font-size: 14px;
  white-space: normal;
  position: relative;
}

/* Prevent hover conflicts */
.dropdown-content a:hover {
  background: rgba(29, 61, 88, 0.05) !important;
  color: var(--navy-primary) !important;
}

.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);
}

/* ===================================
   BUTTONS
   =================================== */

.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: 140px;
}

.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);
}

.btn-submit {
  background: var(--navy-primary);
  color: var(--white);
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  width: 100%;
}

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

.btn-submit:active {
  transform: translateY(0);
}

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

.hero {
  background: linear-gradient(135deg, rgba(29, 61, 88, 0.95) 0%, rgba(42, 81, 112, 0.95) 100%);
  color: var(--white);
  padding: clamp(2rem, 8vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.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, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 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;
}

/* ===================================
   PAGE HEADER
   =================================== */

.page-header {
  background: linear-gradient(135deg, rgba(29, 61, 88, 0.95) 0%, rgba(42, 81, 112, 0.95) 100%);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
  padding: 0 var(--spacing-sm);
}

.page-header p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  opacity: 0.9;
  padding: 0 var(--spacing-sm);
}

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

main {
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.section {
  margin-bottom: clamp(2rem, 6vw, 4rem);
}

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

.section-intro {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.last-updated {
  background: rgba(29, 61, 88, 0.05);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 8px;
  margin-bottom: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h2 {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: var(--spacing-md);
  margin-top: var(--spacing-lg);
  letter-spacing: -0.01em;
  word-wrap: break-word;
}

h3 {
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 600;
  color: var(--navy-primary);
  margin-bottom: var(--spacing-sm);
  margin-top: var(--spacing-md);
  word-wrap: break-word;
}

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

p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
  font-size: clamp(0.9375rem, 2vw, 1rem);
  word-wrap: break-word;
}

ul, ol {
  margin-left: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  padding-right: var(--spacing-sm);
}

li {
  margin-bottom: var(--spacing-xs);
  word-wrap: break-word;
}

strong {
  color: var(--navy-primary);
  font-weight: 600;
}

a {
  color: var(--navy-primary);
  text-decoration: none;
  transition: color 0.2s ease;
  word-wrap: break-word;
}

a:hover {
  color: var(--navy-secondary);
  text-decoration: underline;
}

/* ===================================
   CONTENT PAGE ELEMENTS
   =================================== */

.highlight-box {
  background: rgba(29, 61, 88, 0.05);
  border: 1px solid rgba(29, 61, 88, 0.15);
  border-radius: 12px;
  padding: var(--spacing-md);
  margin: var(--spacing-md) 0;
}

.caps-section {
  background: rgba(220, 38, 38, 0.05);
  border-left: 4px solid #dc2626;
  padding: var(--spacing-md);
  border-radius: 8px;
  margin: var(--spacing-md) 0;
}

.caps-section p {
  font-size: clamp(0.875rem, 2vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.caps-section ul {
  margin-top: var(--spacing-sm);
}

.contact-box {
  background: var(--white);
  border: 1px solid rgba(29, 61, 88, 0.1);
  border-radius: 16px;
  padding: var(--spacing-md);
  margin: var(--spacing-lg) 0;
  box-shadow: 0 4px 16px rgba(29, 61, 88, 0.08);
}

.contact-box h3 {
  margin-top: 0;
}

.contact-info {
  line-height: 2;
}

.contact-info p,
.contact-info a {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ===================================
   HOME PAGE - WHY CHOOSE US
   =================================== */

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

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

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

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

.checks li {
  position: relative;
  padding-left: 32px;
  margin: 16px 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;
}

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

/* ===================================
   HOME PAGE - VALUE PILLARS
   =================================== */

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

.pillar-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;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--navy-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

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

.pillar-card:hover::before {
  transform: scaleY(1);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  background: rgba(29, 61, 88, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: var(--spacing-md);
}

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

.pillar-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  font-size: clamp(0.95rem, 2vw, 1rem);
}

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

.pillar-benefits li {
  position: relative;
  padding-left: 24px;
  margin: 8px 0;
  font-size: clamp(0.9rem, 1.8vw, 0.95rem);
  color: var(--text-muted);
}

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

/* ===================================
   HOME PAGE - DIFFERENTIATORS
   =================================== */

.differentiators-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: var(--spacing-xl) 0;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.differentiator-item {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: var(--white);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.differentiator-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(29, 61, 88, 0.1);
}

.differentiator-number {
  width: 40px;
  height: 40px;
  background: var(--navy-primary);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

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

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

/* ===================================
   HOME PAGE - PROOF POINTS
   =================================== */

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

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

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

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

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.expertise-tag {
  background: rgba(29, 61, 88, 0.1);
  color: var(--navy-primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: clamp(0.85rem, 1.8vw, 0.9rem);
  font-weight: 600;
}

/* ===================================
   HOME PAGE - IMPACT METRICS
   =================================== */

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

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

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

.metric-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--navy-primary);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.metric-label {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: var(--text-muted);
  font-weight: 500;
}

/* ===================================
   ENGAGEMENT PAGE - PHILOSOPHY
   =================================== */

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

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

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

.philosophy-highlights {
  display: grid;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.highlight-item {
  display: flex;
  align-items: start;
  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-text {
  flex: 1;
}

.highlight-text strong {
  color: var(--navy-primary);
  display: block;
  margin-bottom: 4px;
  font-size: clamp(0.95rem, 2vw, 1rem);
}

.highlight-text span {
  font-size: clamp(0.875rem, 2vw, 0.95rem);
  color: var(--text-muted);
}

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

/* ===================================
   ENGAGEMENT PAGE - CARDS
   =================================== */

.engagement-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

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

.engagement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-primary), var(--navy-secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.engagement-card:hover::before {
  transform: scaleX(1);
}

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

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

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

.engagement-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  background: rgba(29, 61, 88, 0.05);
  border-radius: 8px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  color: var(--text-muted);
}

.engagement-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  font-size: clamp(0.95rem, 2vw, 1rem);
}

.engagement-includes {
  margin-top: var(--spacing-md);
}

.engagement-includes h4 {
  font-size: clamp(0.95rem, 2vw, 1rem);
  color: var(--navy-primary);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.engagement-includes ul {
  list-style: none;
  padding: 0;
}

.engagement-includes li {
  position: relative;
  padding-left: 24px;
  margin: 8px 0;
  font-size: clamp(0.875rem, 2vw, 0.95rem);
  color: var(--text-muted);
}

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

.pricing-tag {
  display: inline-block;
  background: var(--navy-primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  font-weight: 600;
  margin-top: var(--spacing-md);
}

/* ===================================
   ENGAGEMENT PAGE - COMPARISON TABLE
   =================================== */

.comparison-section {
  background: #f8fafc;
  padding: var(--spacing-lg) var(--spacing-md);
  border-radius: 20px;
  margin: var(--spacing-xl) 0;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(29, 61, 88, 0.08);
}

.comparison-table thead {
  background: var(--navy-primary);
  color: var(--white);
}

.comparison-table th {
  padding: var(--spacing-sm);
  text-align: left;
  font-weight: 600;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
}

.comparison-table td {
  padding: var(--spacing-sm);
  border-bottom: 1px solid rgba(29, 61, 88, 0.1);
  font-size: clamp(0.8rem, 2vw, 0.95rem);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(29, 61, 88, 0.02);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--navy-primary);
}

/* ===================================
   ENGAGEMENT PAGE - VALUE PROPOSITION
   =================================== */

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin: var(--spacing-xl) 0;
}

.value-card {
  text-align: center;
  padding: var(--spacing-md);
  background: var(--white);
  border: 1px solid rgba(29, 61, 88, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.value-icon {
  font-size: 48px;
  margin-bottom: var(--spacing-sm);
  width: 48px;
  height: 48px;
  background: rgba(29, 61, 88, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
}

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

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

/* ===================================
   INSIGHTS PAGE - FEATURED INSIGHT
   =================================== */

.featured-insight {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(29, 61, 88, 0.03) 0%, rgba(77, 116, 153, 0.05) 100%);
  padding: clamp(1.5rem, 5vw, 4rem);
  border-radius: 20px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

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

.featured-tag {
  display: inline-block;
  background: var(--navy-primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: clamp(0.8rem, 2vw, 0.85rem);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

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

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  transition: all 0.3s ease;
}

.read-more:hover {
  gap: 12px;
  color: var(--navy-secondary);
}

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

/* ===================================
   INSIGHTS PAGE - GRID
   =================================== */

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.insight-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);
  display: flex;
  flex-direction: column;
}

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

.insight-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.insight-content {
  padding: clamp(1rem, 4vw, 1.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-category {
  display: inline-block;
  background: rgba(29, 61, 88, 0.1);
  color: var(--navy-primary);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: clamp(0.75rem, 2vw, 0.8rem);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

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

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

.insight-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--text-muted);
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(29, 61, 88, 0.1);
  flex-wrap: wrap;
}

.insight-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===================================
   INSIGHTS PAGE - CATEGORIES FILTER
   =================================== */

.categories-filter {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  justify-content: center;
}

.category-btn {
  padding: 10px 20px;
  border: 2px solid rgba(29, 61, 88, 0.2);
  border-radius: 24px;
  background: var(--white);
  color: var(--navy-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 0.95rem);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.category-btn:hover,
.category-btn.active {
  background: var(--navy-primary);
  color: var(--white);
  border-color: var(--navy-primary);
}

/* ===================================
   INSIGHTS PAGE - COMING SOON
   =================================== */

.coming-soon {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
  color: var(--white);
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: 20px;
  text-align: center;
  margin: clamp(2rem, 5vw, 4rem) 0;
}

.coming-soon h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.coming-soon p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  opacity: 0.95;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-top: clamp(1.5rem, 4vw, 3rem);
}

.coming-soon-item {
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.coming-soon-item h4 {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  margin-bottom: 8px;
}

.coming-soon-item p {
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  opacity: 0.9;
  margin-bottom: 0;
}

/* ===================================
   INSIGHTS PAGE - NEWSLETTER
   =================================== */

.newsletter-section {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: 20px;
  text-align: center;
  margin: clamp(2rem, 5vw, 4rem) 0;
}

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

.newsletter-section p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--text-muted);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-sm);
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border: 1px solid rgba(29, 61, 88, 0.2);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

.newsletter-form button {
  padding: 14px 32px;
  background: var(--navy-primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
}

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

/* ===================================
   SERVICES PAGE - GRIDS & CARDS
   =================================== */

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

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

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

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

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: var(--spacing-sm);
}

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

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

.service-list li {
  margin: 12px 0;
}

.service-list a {
  color: var(--navy-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
  transition: all 0.2s ease;
  display: inline-block;
}

.service-list a:hover {
  color: var(--navy-secondary);
  transform: translateX(4px);
}

.service-list a::after {
  content: ' →';
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-list a:hover::after {
  opacity: 1;
}

/* ===================================
   SERVICES PAGE - PROCESS STEPS
   =================================== */

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

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

.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);
}

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

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

/* ===================================
   SERVICES PAGE - CTA BAND
   =================================== */

.cta-band {
  background: linear-gradient(135deg, rgba(29, 61, 88, 0.95) 0%, rgba(77, 116, 153, 0.95) 100%);
  color: var(--white);
  padding: var(--spacing-lg);
  border-radius: 20px;
  text-align: center;
  margin: var(--spacing-xl) 0;
  overflow: hidden;
}

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

/* ===================================
   SERVICES PAGE - FEATURE GRID
   =================================== */

.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;
  font-size: clamp(14px, 2vw, 16px);
}

/* ===================================
   CONTACT PAGE - GRID
   =================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  margin-top: var(--spacing-sm);
}

/* ===================================
   CONTACT PAGE - FORM
   =================================== */

.form-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.01em;
}

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

.contact-form {
  display: grid;
  gap: var(--spacing-md);
}

.message {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
  font-weight: 500;
}

.message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message.show {
  display: block;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--navy-primary);
  margin-bottom: 8px;
  font-size: clamp(0.875rem, 2vw, 0.95rem);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(29, 61, 88, 0.2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--white);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy-primary);
  box-shadow: 0 0 0 3px rgba(29, 61, 88, 0.1);
}

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

/* ===================================
   CONTACT PAGE - INFO SECTION
   =================================== */

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

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

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

.contact-method {
  display: flex;
  align-items: start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  padding: var(--spacing-sm);
  border-radius: 8px;
  transition: background 0.2s ease;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-method:hover {
  background: rgba(29, 61, 88, 0.03);
}

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

.contact-details {
  flex: 1;
}

.contact-details h4 {
  font-size: clamp(0.95rem, 2vw, 1rem);
  color: var(--navy-primary);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-details p,
.contact-details a {
  color: var(--text-muted);
  font-size: clamp(0.875rem, 2vw, 0.95rem);
  text-decoration: none;
  word-break: break-word;
}

.contact-details a:hover {
  color: var(--navy-primary);
}

.email-with-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.copy-email-btn {
  background: transparent;
  border: 1px solid rgba(29, 61, 88, 0.2);
  border-radius: 4px;
  padding: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.copy-email-btn:hover {
  background: rgba(29, 61, 88, 0.05);
  border-color: var(--navy-primary);
  color: var(--navy-primary);
  transform: translateY(-1px);
}

.copy-email-btn:active {
  transform: translateY(0);
}

.copy-feedback {
  position: absolute;
  left: 0;
  top: -30px;
  background: var(--navy-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.copy-feedback.show {
  opacity: 1;
}

.copy-feedback::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 12px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--navy-primary);
}

/* ===================================
   CONTACT PAGE - IMAGE SECTION
   =================================== */

.contact-image-section {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 250px;
  margin-bottom: var(--spacing-md);
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================================
   CONTACT PAGE - WHY CONTACT
   =================================== */

.why-contact-section {
  background: linear-gradient(135deg, rgba(29, 61, 88, 0.03) 0%, rgba(77, 116, 153, 0.05) 100%);
  padding: var(--spacing-lg) var(--spacing-md);
  border-radius: 20px;
  margin: var(--spacing-xl) 0;
}

.why-contact-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.benefit-item {
  display: flex;
  align-items: start;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: var(--white);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(29, 61, 88, 0.1);
}

.benefit-icon {
  font-size: 28px;
  flex-shrink: 0;
}

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

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

/* ===================================
   CONTACT PAGE - VISUAL CTA
   =================================== */

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

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

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

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

.cta-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

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

.stat-number {
  font-size: clamp(2rem, 5vw, 2.5rem);
  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);
}

/* ===================================
   METHODOLOGY PAGE - TIMELINE
   =================================== */

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  margin: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
}

.methodology-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy-primary), var(--navy-secondary));
  z-index: 0;
}

.methodology-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.methodology-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(29, 61, 88, 0.4);
}

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

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

/* ===================================
   METHODOLOGY PAGE - PROCESS CARDS
   =================================== */

.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: clamp(2rem, 5vw, 4rem) 0;
}

.process-card {
  background: var(--white);
  border: 1px solid rgba(29, 61, 88, 0.1);
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 4px 16px rgba(29, 61, 88, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--navy-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

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

.process-card:hover::before {
  transform: scaleY(1);
}

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

.process-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;
}

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

.process-card h4 {
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  color: var(--navy-primary);
  margin: var(--spacing-sm) 0 8px;
  font-weight: 600;
}

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

.process-card li {
  position: relative;
  padding-left: 24px;
  margin: 8px 0;
  color: var(--text-muted);
  font-size: clamp(0.875rem, 2vw, 0.95rem);
}

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

/* ===================================
   METHODOLOGY PAGE - VISUAL SECTION
   =================================== */

.visual-section {
  background: linear-gradient(135deg, rgba(29, 61, 88, 0.03) 0%, rgba(77, 116, 153, 0.05) 100%);
  padding: clamp(1.5rem, 5vw, 4rem);
  border-radius: 20px;
  margin: clamp(2rem, 5vw, 4rem) 0;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.visual-image {
  width: 100%;
  height: 300px;
  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, 2.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--spacing-sm);
}

/* ===================================
   METHODOLOGY PAGE - BENEFITS
   =================================== */

.benefits-section {
  margin: clamp(2rem, 6vw, 4rem) 0;
}

.benefit-card {
  background: var(--white);
  border: 1px solid rgba(29, 61, 88, 0.1);
  border-radius: 12px;
  padding: clamp(1rem, 3vw, 1.5rem);
  text-align: center;
  transition: all 0.3s ease;
}

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

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

.benefit-card p {
  color: var(--text-muted);
  font-size: clamp(0.875rem, 2vw, 0.95rem);
}

/* ===================================
   ABOUT PAGE - VISION MISSION
   =================================== */

.vision-mission-section {
  background: #f8fafc;
  padding: var(--spacing-lg) var(--spacing-md);
  border-radius: 20px;
  margin-bottom: var(--spacing-xl);
  margin-top: var(--spacing-md);
}

.vision-mission-section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--navy-primary);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

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

/* ===================================
   ABOUT PAGE - STORY SECTION
   =================================== */

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

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

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

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

/* ===================================
   ABOUT PAGE - VALUES GRID
   =================================== */

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

/* ===================================
   ABOUT PAGE - TEAM SECTION
   =================================== */

.team-section {
  background: linear-gradient(135deg, rgba(29, 61, 88, 0.03) 0%, rgba(77, 116, 153, 0.05) 100%);
  padding: var(--spacing-lg) var(--spacing-md);
  border-radius: 20px;
  margin: var(--spacing-xl) 0;
  text-align: center;
}

.team-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy-primary);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.team-section p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.7;
}

.team-image {
  width: 100%;
  max-width: 900px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 12px 32px rgba(29, 61, 88, 0.15);
}

/* ===================================
   CTA SECTION (UNIVERSAL)
   =================================== */

.cta-section {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
  color: var(--white);
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: 20px;
  text-align: center;
  margin: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::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 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  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: clamp(1.5rem, 4vw, 3rem) 0;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  font-size: clamp(0.875rem, 2vw, 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 - DESKTOP LARGE (1025px+)
   =================================== */

@media (min-width: 1025px) {
  .why-choose-grid,
  .proof-points-section {
    grid-template-columns: 1fr 1fr;
  }
  
  .philosophy-section {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
  }
  
  .engagement-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .engagement-card {
    padding: var(--spacing-lg);
  }
  
  .philosophy-image {
    height: 400px;
  }
  
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
  }
  
  .info-card {
    padding: var(--spacing-lg);
  }
}

/* ===================================
   RESPONSIVE - TABLET/DESKTOP (769px+)
   =================================== */

@media (min-width: 769px) {
  .grid-two {
    grid-template-columns: 1.3fr 1fr;
  }
  
  .card {
    padding: var(--spacing-lg);
  }
  
  .featured-insight {
    grid-template-columns: 1.2fr 1fr;
  }
  
  .featured-image {
    min-height: 300px;
  }
  
  .insights-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  
  .visual-cta-section {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
  }
  
  .visual-cta-image {
    height: 400px;
  }
  
  .contact-image-section {
    height: 300px;
  }
  
  .why-contact-section {
    padding: var(--spacing-xl);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .visual-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .visual-image {
    height: 400px;
  }
  
  .methodology-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .story-section {
    grid-template-columns: 1fr 1fr;
  }
  
  .story-image,
  .team-image {
    height: 400px;
  }
  
  .vision-mission-section {
    padding: var(--spacing-xl) var(--spacing-lg);
  }
  
  .team-section {
    padding: var(--spacing-xl) var(--spacing-lg);
  }
  
  .engagement-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .comparison-section {
    padding: var(--spacing-xl);
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: var(--spacing-md);
  }
  
  .cta-section {
    padding: var(--spacing-xl);
  }
  
  .value-card {
    padding: var(--spacing-lg);
  }
}

/* ===================================
   RESPONSIVE - TABLET (1024px max)
   =================================== */

@media (max-width: 1024px) {
  .why-choose-grid,
  .proof-points-section {
    grid-template-columns: 1fr;
  }
  
  .proof-points-section .proof-image {
    order: -1;
  }
  
  .differentiators-grid {
    grid-template-columns: 1fr;
  }
  
  .impact-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .value-pillars {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .steps {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  
  .nav-links {
    gap: var(--spacing-xs);
  }
  
  .nav-links a {
    padding: 8px 12px;
    font-size: 14px;
  }
  
  .logo-image {
    max-width: 180px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .philosophy-section {
    grid-template-columns: 1fr;
  }
  
  .engagement-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================
   RESPONSIVE - MOBILE (768px max)
   =================================== */

@media (max-width: 768px) {
  :root {
    --spacing-lg: 32px;
    --spacing-xl: 48px;
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .menu-toggle,
  .mobile-menu-toggle,
  .nav-toggle {
    display: flex;
  }
  
  .nav {
    flex-wrap: wrap;
    min-height: 70px;
    padding: var(--spacing-xs) 0;
  }
  
  .logo-image {
    height: 35px;
    max-width: 150px;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    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);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    display: none;
  }
  
  .nav-links.active {
    transform: translateX(0);
    display: flex;
  }
  
  .nav-links a {
    padding: 14px 16px;
    font-size: 16px;
    width: 100%;
    text-align: left;
  }
  
  .dropdown {
    width: 100%;
  }
  
  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    border-radius: 8px;
    background: rgba(29, 61, 88, 0.05);
    margin-top: 8px;
    min-width: 100%;
    /* border-left: 3px solid var(--navy-primary); */
    margin: 0;
    padding: 0;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .dropdown:hover .dropdown-content {
    display: none;
  } 
  
  .dropbtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .cta-btn {
    margin-top: 8px;
    text-align: center;
    width: 100%;
  }
  
  .hero {
    padding: clamp(2rem, 8vw, 3rem) 0;
  }
  
  .hero::before {
    width: 100%;
    opacity: 0.5;
    clip-path: none;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .page-header {
    padding: var(--spacing-lg) 0 var(--spacing-md);
  }
  
  main {
    padding: var(--spacing-md) 0;
  }
  
  ul, ol {
    margin-left: var(--spacing-sm);
    padding-right: 0;
  }
  
  .highlight-box,
  .caps-section,
  .contact-box {
    padding: var(--spacing-sm);
  }
  
  .caps-section p {
    font-size: 0.8125rem;
    letter-spacing: 0.01em;
  }
  
  .why-choose-image,
  .proof-image {
    height: 250px;
  }
  
  .impact-metrics {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .metric-card {
    padding: var(--spacing-md);
  }
  
  .value-pillars {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .pillar-card {
    padding: var(--spacing-md);
  }
  
  .differentiators-section {
    padding: var(--spacing-md);
    border-radius: 12px;
  }
  
  .differentiator-item {
    padding: var(--spacing-sm);
  }
  
  .cta-section {
    padding: var(--spacing-lg);
    border-radius: 12px;
  }
  
  .categories-filter {
    justify-content: flex-start;
    gap: 8px;
  }
  
  .category-btn {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .featured-insight {
    grid-template-columns: 1fr;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    min-width: auto;
  }
  
  .grid-two {
    gap: var(--spacing-md);
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .cta-band {
    padding: var(--spacing-md);
    border-radius: 12px;
  }
  
  .why-contact-section {
    border-radius: 12px;
  }
  
  .cta-stats {
    gap: var(--spacing-sm);
  }
  
  .methodology-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
  }
  
  .methodology-grid::before {
    display: none;
  }
  
  .step-number {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
  
  .visual-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .vision-mission-section {
    border-radius: 12px;
  }
  
  .team-section {
    border-radius: 12px;
  }
  
  .story-section {
    gap: var(--spacing-md);
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
    font-size: 0.9rem;
  }
  
  .expertise-tags {
    justify-content: center;
  }
}

/* ===================================
   RESPONSIVE - SMALL MOBILE (480px max)
   =================================== */

@media (max-width: 480px) {
  .logo-image {
    height: 32px;
    max-width: 140px;
  }
  
  .nav {
    min-height: 64px;
  }
  
  .nav-links {
    top: 64px;
  }
  
  .last-updated {
    font-size: 0.875rem;
    padding: var(--spacing-xs) var(--spacing-sm);
  }
  
  .contact-info {
    line-height: 1.8;
    font-size: 0.9rem;
  }
  
  .highlight-box {
    font-size: 0.9rem;
  }
  
  .differentiator-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .pillar-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
  
  .insight-image {
    height: 180px;
  }
  
  .coming-soon-grid {
    grid-template-columns: 1fr;
  }
  
  .card-image,
  .feature-image {
    height: 180px;
  }
  
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .contact-image-section {
    height: 200px;
  }
  
  .visual-cta-image {
    height: 240px;
  }
  
  .benefit-icon {
    font-size: 24px;
  }
  
  .contact-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .stat-item {
    padding: var(--spacing-sm);
  }
  
  .process-cards {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .philosophy-image {
    height: 240px;
  }
  
  .engagement-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  
  .value-icon {
    font-size: 40px;
    width: 40px;
    height: 40px;
  }
  
  .highlight-icon {
    font-size: 20px;
  }
  
  .story-image,
  .team-image {
    height: 240px;
  }
  
  .vision-mission-section p:last-child {
    margin-bottom: 0;
  }
}

/* ===================================
   TOUCH DEVICE IMPROVEMENTS
   =================================== */

@media (hover: none) {
  .nav-links a:active,
  .btn:active,
  .category-btn:active,
  .insight-card:active,
  .newsletter-form button:active,
  .benefit-card:active,
  .process-card:active {
    transform: scale(0.98);
  }
}
 .form-note {
            font-size: 12px;
            color: #7f8c8d;
            margin-top: 5px;
        }