/*
 * MutualCore Solutions Ltd - Site Styles
 * https://mutualcore.ca
 * Version: 2.0.0 - Static Build
 * Based on mutualcore-modern theme by HexPi
 */

/* ============================================
   CSS VARIABLES & THEME SYSTEM
   ============================================ */

:root {
  /* Primary Colors - Based on Logo Blue */
  --color-primary: #0d5cb8;
  --color-primary-light: #1a7ae0;
  --color-primary-dark: #094a94;
  --color-accent: #00d4ff;
  --color-accent-secondary: #7c3aed;
  
  /* Light Mode (Default) */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-glass: rgba(255, 255, 255, 0.7);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-inverse: #ffffff;
  
  --border-color: rgba(148, 163, 184, 0.2);
  --border-glass: rgba(255, 255, 255, 0.3);
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 40px rgba(13, 92, 184, 0.15);
  
  /* Gradient Definitions */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-light) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(13, 92, 184, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
  --gradient-dark: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.8) 100%);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dark mode removed - light mode only */

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

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color var(--transition-base), color var(--transition-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Selection */
::selection {
  background: var(--color-primary);
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-light);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

@media (max-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
}

p {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
}

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

a:hover {
  color: var(--color-primary-light);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: 960px;
}

.section {
  padding: var(--space-24) 0;
}

.section-sm {
  padding: var(--space-16) 0;
}

.grid {
  display: grid;
  gap: var(--space-8);
}

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

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

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

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: var(--space-16) 0;
  }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 100px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.site-logo {
  height: 48px;
  width: auto;
  transition: transform var(--transition-base);
}

.site-logo:hover {
  transform: scale(1.05);
}

.site-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.025em;
}

/* Navigation */
.main-navigation {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-8);
}

.nav-menu a {
  position: relative;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--color-primary);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
  width: 100%;
}

/* Theme Toggle */
.theme-toggle {
  width: 48px;
  height: 26px;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
  overflow: hidden;
}

.theme-toggle:hover {
  border-color: var(--color-primary);
}

.theme-toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: transform var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle-slider svg {
  width: 10px;
  height: 10px;
  color: white;
}

/* Theme toggle removed */

/* Header Buttons */
.header-buttons {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-decoration: none;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-header:hover {
  background: var(--bg-tertiary);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-header:active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: scale(0.98);
}

.btn-header.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

.btn-header.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 2px 8px rgba(13, 92, 184, 0.3);
}

.btn-header.btn-primary:active {
  background: var(--color-primary-dark);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: scale(0.98);
}

@media (max-width: 1024px) {
  .header-buttons {
    display: none;
  }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
}

/* Hide mobile buttons on desktop */
.mobile-header-buttons {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .main-navigation {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-6);
    flex-direction: column;
    gap: var(--space-6);
    transform: translateY(-200%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-glass);
    z-index: 999;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  
  .main-navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    background: white;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: var(--space-4);
    width: 100%;
    text-align: center;
  }
  
  .nav-menu a {
    font-size: var(--text-lg);
    padding: var(--space-3) 0;
  }
  
  /* Mobile Menu Buttons - Show on mobile */
  .mobile-header-buttons {
    display: flex !important;
    flex-direction: column;
    gap: var(--space-3);
    width: 100%;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-color);
    align-items: center;
  }
  
  .mobile-header-buttons .btn-header {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    text-align: center;
    justify-content: center;
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(13, 92, 184, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 92, 184, 0.5);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-base);
}

.btn:hover svg {
  transform: translateX(4px);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 92, 184, 0.15) 0%, transparent 70%);
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  z-index: 1;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.5; }
  50% { transform: translateY(-50%) scale(1.1); opacity: 0.8; }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.6s ease;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 600px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  animation: fadeInUp 0.6s ease 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: var(--text-4xl);
  }
  
  .hero-description {
    font-size: var(--text-lg);
  }
  
  .hero-actions {
    flex-direction: column;
  }
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: var(--color-primary);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.card-text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-16);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gradient-primary);
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.section-description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
}

/* ============================================
   DELIVERABLES / CHECKLIST
   ============================================ */

.deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.deliverable-item:hover {
  border-color: var(--color-primary);
  transform: translateX(8px);
}

.deliverable-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.deliverable-check svg {
  width: 22px;
  height: 22px;
  color: white;
}

.deliverable-content h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.deliverable-content p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}

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

.cta-section {
  position: relative;
  padding: var(--space-24) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  z-index: 0;
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-4);
}

.cta-description {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
}

.cta-btn {
  background: white;
  color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background: var(--bg-secondary);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer-description {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.footer-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: var(--space-3);
}

.footer-menu a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-menu a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-color);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer-social a:hover svg {
  color: white;
}

.footer-social svg {
  width: 24px;
  height: 24px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass Effect */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--color-primary); }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* WordPress Alignment */
.alignleft {
  float: left;
  margin-right: var(--space-6);
  margin-bottom: var(--space-4);
}

.alignright {
  float: right;
  margin-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* WordPress Required Styles */
.wp-caption {
  max-width: 100%;
  margin-bottom: var(--space-4);
}

.wp-caption-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-align: center;
  padding: var(--space-2);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.gallery-item {
  margin: 0;
}

.gallery-caption {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-align: center;
  padding: var(--space-2);
}

/* Bypostauthor */
.bypostauthor {
  display: block;
}

/* ============================================
   PARTNERSHIPS CAROUSEL
   ============================================ */

.partners-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.partners-track {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: var(--space-4) 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.partners-track::-webkit-scrollbar {
    display: none;
}

.partner-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
}

.partner-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.partner-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-6);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: var(--shadow-sm);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--space-4);
}

.partner-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.partner-name {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.partner-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.partner-link:hover {
    color: var(--color-primary-light);
    transform: translateX(4px);
}

.partners-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.partner-prev,
.partner-next {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: var(--text-xl);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.partner-prev:hover,
.partner-next:hover,
.partner-prev:focus-visible,
.partner-next:focus-visible {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
}

.partner-prev:focus-visible,
.partner-next:focus-visible {
    box-shadow: 0 0 0 3px rgba(13, 92, 184, 0.35);
}

.partner-prev:active,
.partner-next:active {
    transform: scale(0.95);
}

.partners-dots {
    display: flex;
    gap: var(--space-3);
}

.partners-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.partners-dots .dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* Show 1 card at a time for carousel navigation to work properly */
.partner-card {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .partner-card {
        flex: 0 0 100%;
    }
}

@media (min-width: 1024px) {
    .partner-card {
        flex: 0 0 100%;
    }
}

/* ============================================
   PAGE TEMPLATE STYLES
   ============================================ */

/* Page Header / Hero Section */
.page-header {
    position: relative;
    padding: calc(var(--space-24) + 50px) 0 var(--space-20);
    margin-top: 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding-bottom: 6px;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(13, 92, 184, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.page-header-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-header-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-5);
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.page-header-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.page-header-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: var(--space-6) auto 0;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-top: var(--space-6);
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs-list li {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.breadcrumbs-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumbs-list a:hover {
    color: var(--color-primary);
}

.breadcrumbs-list .separator {
    color: var(--border-color);
    font-weight: 300;
}

.breadcrumbs-list .current {
    color: var(--color-primary);
    font-weight: 600;
}

/* Page Content Wrapper */
.page-content-wrapper {
    padding: var(--space-8) 0 var(--space-24);
}

/* Featured Image */
.page-featured-image {
    margin-bottom: var(--space-12);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.page-featured-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.page-featured-image .featured-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.page-featured-image:hover .featured-img {
    transform: scale(1.02);
}

/* Entry Content - Enhanced Typography */
.entry-content {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-secondary);
}

.entry-content > * {
    margin-bottom: var(--space-6);
}

.entry-content > *:last-child {
    margin-bottom: 0;
}

/* Headings in content */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: var(--text-primary);
    margin-top: var(--space-12);
    margin-bottom: var(--space-5);
    line-height: 1.3;
}

.entry-content h2 {
    font-size: var(--text-3xl);
    position: relative;
    padding-bottom: var(--space-4);
}

.entry-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.entry-content h3 {
    font-size: var(--text-2xl);
    color: var(--color-primary-dark);
}

.entry-content h4 {
    font-size: var(--text-xl);
}

/* Paragraphs */
.entry-content p {
    margin-bottom: var(--space-6);
}

/* Links */
.entry-content a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
}

.entry-content a:hover {
    border-bottom-color: var(--color-primary);
}

/* Lists */
.entry-content ul,
.entry-content ol {
    margin-bottom: var(--space-6);
    padding-left: var(--space-6);
}

.entry-content li {
    margin-bottom: var(--space-3);
    position: relative;
}

.entry-content ul li::marker {
    color: var(--color-primary);
}

.entry-content ol li::marker {
    color: var(--color-primary);
    font-weight: 600;
}

/* Blockquotes */
.entry-content blockquote {
    background: var(--bg-secondary);
    border-left: 4px solid var(--color-primary);
    padding: var(--space-6) var(--space-8);
    margin: var(--space-8) 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-style: italic;
    position: relative;
}

.entry-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: var(--space-4);
    font-family: Georgia, serif;
    line-height: 1;
}

.entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.entry-content cite {
    display: block;
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    font-style: normal;
    color: var(--text-muted);
}

/* Images and Figures */
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.entry-content figure {
    margin: var(--space-8) 0;
}

.entry-content figcaption {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-3);
}

/* Tables */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-8) 0;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.entry-content th,
.entry-content td {
    padding: var(--space-4) var(--space-5);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.entry-content th {
    background: var(--bg-tertiary);
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: var(--text-xs);
    letter-spacing: 0.05em;
}

.entry-content tr:last-child td {
    border-bottom: none;
}

.entry-content tr:hover td {
    background: var(--bg-secondary);
}

/* Code and Preformatted */
.entry-content code {
    background: var(--bg-tertiary);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9em;
    color: var(--color-accent-secondary);
}

.entry-content pre {
    background: var(--bg-tertiary);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    margin: var(--space-6) 0;
}

.entry-content pre code {
    background: none;
    padding: 0;
}

/* Page Links (Pagination) */
.page-links {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-color);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-muted);
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-4);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.page-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Entry Footer */
.entry-footer {
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.edit-link {
    display: inline-flex;
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

/* Responsive Page Styles */
@media (max-width: 768px) {
  /* Ensure consistent font across all mobile pages */
  body,
  .entry-content,
  .page-content-wrapper,
  .entry-content p,
  .entry-content li,
  .btn-header {
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .page-header {
    padding: calc(var(--space-16) + 80px) 0 var(--space-12);
  }
  
  .page-header-title {
    font-size: var(--text-3xl);
  }
  
  .page-header-title::after {
    width: 60px;
    margin-top: var(--space-4);
  }
  
  .label-line {
    width: 24px;
  }
  
  .page-content-wrapper {
    padding: var(--space-10) 0 var(--space-16);
  }
  
  .page-featured-image {
    margin-bottom: var(--space-8);
    border-radius: var(--radius-xl);
  }
  
  .entry-content {
    font-size: var(--text-base);
  }
  
  .entry-content h2 {
    font-size: var(--text-2xl);
  }
  
  .entry-content h3 {
    font-size: var(--text-xl);
  }
  
  .entry-content blockquote {
    padding: var(--space-5) var(--space-6);
  }
  
  .breadcrumbs-list {
    flex-wrap: wrap;
  }
}

/* ============================================
   ABOUT PAGE - RESPONSIVE IMAGE+TEXT ROWS
   ============================================ */

.about-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 20px;
}

.about-row img {
    flex-shrink: 0;
}

.about-row p {
    margin: 0;
}

@media (max-width: 640px) {
    .about-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ============================================
   LOGO FIX
   ============================================ */

.custom-logo-link {
    display: block;
}

.custom-logo-link img {
    max-height: 48px;
    width: auto;
    display: block;
}

/* Screen Reader Text */
.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;
}

.screen-reader-text:focus {
  background-color: var(--bg-secondary);
  clip: auto !important;
  clip-path: none;
  color: var(--text-primary);
  display: block;
  font-size: var(--text-base);
  height: auto;
  left: 5px;
  padding: var(--space-4);
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ============================================
   CONTACT FORM (Formspree)
   ============================================ */

.contact-form {
    max-width: 680px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.form-group label .required {
    color: #dc2626;
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 14px rgba(13, 92, 184, 0.4);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 92, 184, 0.5);
}

.contact-alt {
    text-align: center;
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-color);
}

.contact-alt h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
}

.contact-alt-links {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.contact-alt-links a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-alt-links a:hover {
    color: var(--color-primary);
}

.contact-alt-links svg {
    width: 20px;
    height: 20px;
}

/* Footer legal links spacing */
.footer-legal {
    display: flex;
    gap: var(--space-3);
    align-items: center;
}

.footer-legal a {
    font-size: var(--text-sm);
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

.footer-legal .separator {
    color: var(--border-color);
}

/* Form success message */
.form-success {
    text-align: center;
    padding: var(--space-12) var(--space-6);
}

.form-success svg {
    width: 64px;
    height: 64px;
    color: #22c55e;
    margin-bottom: var(--space-4);
}

.form-success h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.form-success p {
    color: var(--text-secondary);
}

/* Founder Stat Block — partnership-signal credibility stats */
.founder-stats {
    list-style: none;
    padding: 0;
    margin: var(--space-8) 0 var(--space-10);
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: var(--space-8);
    row-gap: var(--space-5);
    align-items: baseline;
}
.founder-stats .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
    white-space: nowrap;
}
.founder-stats .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.4;
}
@media (max-width: 640px) {
    .founder-stats {
        grid-template-columns: 1fr;
        row-gap: var(--space-4);
    }
    .founder-stats .stat-value {
        font-size: 1.5rem;
    }
    .founder-stats .stat-label {
        margin-top: calc(-1 * var(--space-3));
    }
}

/* Service Deliverables — what-the-carrier-gets short lists, Scott pattern */
.service-deliverables {
    list-style: none;
    padding: 0;
    margin: var(--space-6) 0 var(--space-8);
    border-left: 3px solid var(--color-primary);
}
.service-deliverables li {
    padding: var(--space-2) 0 var(--space-2) var(--space-5);
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.5;
}
.service-deliverables li + li {
    border-top: 1px solid rgba(13, 92, 184, 0.08);
}
.service-deliverables li strong {
    color: var(--color-primary);
}

/* Regulatory anchor callout - light, restrained, used on AI track */
.reg-anchor {
    margin: var(--space-5) 0 var(--space-6);
    padding: var(--space-4) var(--space-5);
    background: rgba(13, 92, 184, 0.04);
    border-left: 3px solid var(--color-primary-light);
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.reg-anchor strong {
    color: var(--text-primary);
}

/* Anchor-link offset so jump-to targets aren't hidden under fixed header */
.entry-content h2[id] {
    scroll-margin-top: 120px;
}
