/* 
 * Supab Digital - Logo-Matched Premium Design System Stylesheet
 * Brand Identity: Vibrant Logo Spectrum (Teal, Indigo, Purple, Magenta, Emerald, Amber) 
 * on Clean White Backgrounds. Text in Charcoal (#24252A).
 * Typography: Croogla (Brand Logo), DM Serif Display (Large Headlines), Plus Jakarta Sans (Sub-Headings/Nav), Manrope (Body), Space Grotesk (Data/Numbers)
 */

/* Custom Imported Croogla 4F Font Family */
@font-face {
  font-family: 'Croogla';
  src: url('../fonts/croogla-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Croogla';
  src: url('../fonts/croogla-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Croogla';
  src: url('../fonts/croogla-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Croogla';
  src: url('../fonts/croogla-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Croogla';
  src: url('../fonts/croogla-extralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Lora:ital,wght@0,400..700;1,400..700&family=Manrope:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* Strategic Font System Variables */
  --font-heading-display: 'DM Serif Display', serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-data: 'Space Grotesk', sans-serif;

  /* Logo Spectrum Colors */
  --logo-green: #05A85C;        /* Vibrant Emerald from Logo Top */
  --logo-yellow: #FBC02D;       /* Amber from Logo Accent */
  --logo-teal: #0097A7;         /* Turquoise/Teal from Logo Left */
  --logo-blue: #1976D2;         /* Royal Blue from Logo Left */
  --logo-purple: #7B1FA2;       /* Purple from Logo Center */
  --logo-magenta: #E91E63;      /* Magenta/Red from Logo Bottom */
  
  /* Primary Theme Brand Variables */
  --primary-navy: #192760;      
  --primary-navy-dark: #0A1336;
  --text-charcoal: #24252A;     
  --text-muted: #56627C;
  --border-color: #EBF0F8;
  
  /* Neutral Palette */
  --bg-pure-white: #FFFFFF;
  --bg-light-neutral: #F7F9FC;
  --bg-card: #FFFFFF;
  
  /* Shadows & Effects */
  --shadow-sm: 0 2px 8px rgba(25, 39, 96, 0.04);
  --shadow-md: 0 8px 24px rgba(25, 39, 96, 0.06);
  --shadow-lg: 0 16px 40px rgba(25, 39, 96, 0.09);
  --shadow-icon: 0 6px 16px rgba(0, 151, 167, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: #FAFAF8;
  color: var(--text-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-smooth: always;
  
  /* 
   * PREMIUM ENRICHED BACKGROUND:
   * Smooth radial aurora glow backdrops to make the background look incredibly rich and premium.
   */
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(25, 118, 210, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 90% 85%, rgba(233, 30, 99, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #FAFAF8 0%, #FAF6EE 100%);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-navy-dark);
  line-height: 1.25;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, .display-headline {
  font-family: var(--font-heading-display);
  font-weight: 400; /* Serif Display looks best in regular/italic */
  letter-spacing: -0.5px;
}

h2 {
  font-family: var(--font-heading-display);
  font-weight: 400;
  letter-spacing: -0.5px;
}

h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Utilities */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--logo-blue) 0%, var(--logo-purple) 50%, var(--logo-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px; /* Reduced vertical footprint! */
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4.5px;
  background: linear-gradient(90deg, var(--logo-green), var(--logo-teal), var(--logo-blue), var(--logo-purple), var(--logo-magenta));
  z-index: 1002;
}

.navbar.scrolled {
  height: 64px; /* Reduced vertical footprint scrolled! */
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img-icon {
  height: 52px; /* Zoomed-in header icon sizing! */
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo-brand-text {
  font-family: 'Croogla', 'Croogla 4F', 'Outfit', sans-serif;
  font-size: 34px; /* Larger font size */
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--logo-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: var(--transition-smooth);
  display: inline-block;
  vertical-align: middle;
}

.navbar.scrolled .logo-img-icon {
  height: 42px; /* elegant scrolled state icon */
}

.navbar.scrolled .logo-brand-text {
  font-size: 26px; /* Larger elegant scrolled state text size */
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--logo-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--logo-teal), var(--logo-blue), var(--logo-purple));
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Logo-Matched Gradient Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--logo-blue) 0%, var(--logo-purple) 100%);
  color: var(--bg-pure-white);
  box-shadow: 0 4px 14px rgba(25, 118, 210, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--logo-purple) 0%, var(--logo-magenta) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 31, 162, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--logo-green) 0%, var(--logo-teal) 100%);
  color: var(--bg-pure-white);
  box-shadow: 0 4px 14px rgba(5, 168, 92, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 151, 167, 0.3);
  filter: brightness(1.05);
}

.btn-accent {
  background: linear-gradient(135deg, var(--logo-magenta) 0%, var(--logo-purple) 100%);
  color: var(--bg-pure-white);
  box-shadow: 0 4px 14px rgba(233, 30, 99, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--logo-purple) 0%, var(--logo-blue) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.35);
}

.btn-accent:hover::before {
  opacity: 1;
}

.btn-outline {
  background-color: transparent;
  color: var(--logo-blue);
  border: 2px solid var(--logo-blue);
}

.btn-outline:hover {
  background-color: var(--logo-blue);
  color: var(--bg-pure-white);
  transform: translateY(-2px);
}

/* Mobile Burger Menu Button */
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.burger-line {
  width: 25px;
  height: 2.5px;
  background-color: var(--text-charcoal);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hero Section (Enriched with beautiful brand-matching gradient backdrop!) */
.hero-section {
  padding: 140px 0 80px 0; /* Optimized vertical alignment! */
  position: relative;
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.07) 0%, rgba(123, 31, 162, 0.05) 50%, rgba(5, 168, 92, 0.03) 100%);
  border-bottom: 1.5px solid var(--border-color);
}

.premium-subpage-section {
  position: relative;
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.07) 0%, rgba(123, 31, 162, 0.05) 50%, rgba(5, 168, 92, 0.03) 100%);
  border-bottom: 1.5px solid var(--border-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: #E0F2F1;  
  color: var(--logo-teal);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 151, 167, 0.15);
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  color: var(--primary-navy-dark);
  letter-spacing: -1px;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-title span {
  background: linear-gradient(135deg, var(--logo-blue) 30%, var(--logo-purple) 70%, var(--logo-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
/* SVG World Map styling */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-container {
  width: 100%;
  max-width: 680px;
  background-color: var(--bg-pure-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(25, 118, 210, 0.2);
}

.india-map-svg {
  width: 100%;
  height: auto;
}

/* Static, extremely rich world map styling */
.india-map-highlight {
  fill: url(#logoGradient); 
  stroke: var(--logo-magenta);
  stroke-width: 2.2;
  filter: drop-shadow(0 0 10px rgba(233, 30, 99, 0.35));
  transition: var(--transition-smooth);
}

.map-container:hover .india-map-highlight {
  filter: drop-shadow(0 0 16px rgba(233, 30, 99, 0.6));
  stroke-width: 2.8;
}

/* Static Glowing Map Nodes (No active animations to keep the map static as requested) */
.india-glow-node {
  fill: var(--logo-magenta);
  opacity: 0.35;
}

.india-core-node {
  fill: var(--logo-magenta);
}

.dest-node-circle {
  fill: var(--primary-navy-dark);
}

.dest-node-glow {
  fill: var(--logo-blue);
  opacity: 0.3;
}

.trade-link-line {
  stroke: var(--logo-blue);
  stroke-width: 2;
  stroke-dasharray: 6, 4;
  opacity: 0.55;
  transition: var(--transition-smooth);
}

.map-container:hover .trade-link-line {
  stroke: var(--logo-magenta);
  opacity: 0.85;
}

/* Pain Point Strip */
.pain-strip {
  padding: 60px 0;
  background-color: rgba(247, 249, 252, 0.9);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pain-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

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

.pain-card.pain-1::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background-color: var(--logo-green); transition: var(--transition-smooth);
}
.pain-card.pain-2::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background-color: var(--logo-teal); transition: var(--transition-smooth);
}
.pain-card.pain-3::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background-color: var(--logo-purple); transition: var(--transition-smooth);
}
.pain-card.pain-4::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background-color: var(--logo-magenta); transition: var(--transition-smooth);
}

.pain-card:hover::before {
  width: 6px;
}

.pain-number {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.pain-1 .pain-number { color: var(--logo-green); }
.pain-2 .pain-number { color: var(--logo-teal); }
.pain-3 .pain-number { color: var(--logo-purple); }
.pain-4 .pain-number { color: var(--logo-magenta); }

.pain-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-navy-dark);
  line-height: 1.45;
}

.pain-icon-wrapper {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.pain-1 .pain-icon-wrapper { color: var(--logo-green); }
.pain-2 .pain-icon-wrapper { color: var(--logo-teal); }
.pain-3 .pain-icon-wrapper { color: var(--logo-purple); }
.pain-4 .pain-icon-wrapper { color: var(--logo-magenta); }

.pain-card:hover .pain-icon-wrapper {
  transform: scale(1.12);
  transition: var(--transition-smooth);
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  pointer-events: auto;
}

.whatsapp-label {
  background-color: var(--bg-pure-white);
  color: var(--text-charcoal);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.whatsapp-widget:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
  position: relative;
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

@keyframes pulseNotification {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  animation: pulseNotification 2s infinite;
  z-index: -1;
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
}

/* 
 * FIX FOR OPERATIONAL PRINCIPLES:
 * Absolute flex alignment and centering to stop clipping and add glowing shadows!
 */
.principle-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bg-pure-white) 30%, var(--bg-light-neutral) 100%);
  color: var(--logo-teal);
  margin-bottom: 20px;
  box-shadow: var(--shadow-icon);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.pain-card:hover .principle-icon-wrapper {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 8px 24px rgba(0, 151, 167, 0.22);
  color: var(--logo-magenta);
  border-color: rgba(233, 30, 99, 0.2);
}

/* Styled Founder Placeholder Cards */
.founder-photo-placeholder {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--bg-light-neutral) 0%, #EBF0F8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: 32px;
  font-weight: 800;
  color: var(--logo-blue);
  border: 2px dashed rgba(25, 118, 210, 0.25);
  margin-bottom: 24px;
  box-shadow: inset 0 4px 10px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.founder-photo-placeholder::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(45deg, transparent 48%, rgba(25, 118, 210, 0.05) 50%, transparent 52%);
  background-size: 10px 10px;
}

/* Swatches details panel */
.mockup-controls {
  background-color: rgba(247, 249, 252, 0.95);
  backdrop-filter: blur(8px);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-top: 48px;
  border: 1px solid var(--border-color);
}

.mockup-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.mockup-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.color-swatches {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.swatch-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: var(--shadow-sm);
}

.swatch-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-charcoal);
}

.swatch-hex {
  font-family: monospace;
  font-size: 12px;
  color: var(--text-muted);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 68px; /* elegant mobile header! */
  }
  .logo-img-icon {
    height: 44px; /* Crisp mobile icon height */
  }
  .logo-brand-text {
    font-size: 28px; /* Larger mobile brand font size */
  }
  .navbar.scrolled .logo-img-icon {
    height: 38px;
  }
  .navbar.scrolled .logo-brand-text {
    font-size: 22px; /* Proportional scrolled mobile text size */
  }
  .hero-section {
    padding: 110px 0 50px 0; /* Proportional mobile spacing! */
  }
  .burger-btn {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 68px; /* Perfectly aligned to mobile header! */
    left: 100%;
    width: 100%;
    height: calc(100vh - 68px);
    background-color: var(--bg-pure-white);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-color);
  }
  .nav-menu.active {
    left: 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-subtitle {
    margin: 0 auto 32px auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .map-container {
    max-width: 100%;
  }
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-label {
    display: none;
  }
}

/* 
 * STRATEGIC FONT SYSTEM - DIRECT INLINE OVERRIDES
 * Force-remaps all older Outfit and Inter inline styles in dynamic templates 
 * to align with our brand-smart typography layers.
 */
[style*="font-family:'Outfit'"], 
[style*="font-family: 'Outfit'"], 
[style*="font-family:Outfit"], 
[style*="font-family: Outfit"] {
  font-family: var(--font-heading) !important;
}

[style*="font-family:'Inter'"], 
[style*="font-family: 'Inter'"], 
[style*="font-family:Inter"], 
[style*="font-family: Inter"] {
  font-family: var(--font-body) !important;
}

/* Force Space Grotesk on numerical, timeline indices, pricing, and tag data details */
/* Force Space Grotesk on numerical, timeline indices, pricing, and tag data details */
.pain-number, 
.hero-badge, 
.founder-photo-placeholder,
.timeline-container div[style*="font-size: 32px"],
[style*="Standalone:"], 
[style*="Price:"], 
[style*="Starter Pack"], 
[style*="Growth Pack"], 
[style*="Premium Pack"] {
  font-family: var(--font-data) !important;
  font-weight: 700 !important;
}

/* Editorial serif Lora font for long-form blog reading */
.blog-post-content {
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-charcoal);
}

.blog-post-content p {
  margin-bottom: 24px;
}

.blog-post-content strong {
  color: var(--primary-navy-dark);
  font-weight: 700;
}

/* --- PREMIUM B2B UI POLISH ADDITIONS --- */

/* 1. Section Eyebrow Labels */
.section-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--logo-magenta);
  margin-bottom: 12px;
}

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

/* 2. Card Anatomy Overrides - Border-First, Shadow-on-Hover */
.pain-card, 
.service-snapshot-card, 
.timeline-card, 
.blog-card, 
.testimonial-card, 
.founder-card, 
.principle-card, 
.service-detail-card, 
.package-card, 
.comparison-matrix-card, 
.persona-card, 
.contact-form-card, 
.contact-info-card {
  border: 1px solid #E2DDD6;
  box-shadow: none;
  background-color: var(--bg-card);
  transition: var(--transition-smooth);
}

.pain-card:hover, 
.service-snapshot-card:hover, 
.timeline-card:hover, 
.blog-card:hover, 
.testimonial-card:hover, 
.founder-card:hover, 
.principle-card:hover, 
.service-detail-card:hover, 
.package-card:hover, 
.comparison-matrix-card:hover, 
.persona-card:hover {
  border-color: var(--logo-blue);
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.10);
  transform: translateY(-3px);
}

/* Card Structural Styling Classes */
.service-snapshot-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.testimonial-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
}

.founder-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: var(--radius-md);
}

.principle-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: var(--radius-md);
}

.service-detail-card {
  padding: 40px;
  margin-bottom: 32px;
  position: relative;
  border-radius: var(--radius-lg);
}

.package-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible !important;
  z-index: 2;
  border-radius: var(--radius-lg);
}

.comparison-matrix-card {
  margin-top: 80px;
  margin-bottom: 60px;
  padding: 40px;
  overflow-x: auto;
  border-radius: var(--radius-lg);
}

.persona-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
}

.contact-form-card {
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-info-card {
  padding: 32px;
  border-radius: var(--radius-lg);
}

/* Custom border and shadow exception for popular packages to preserve premium purple styling */
.package-card.popular {
  border: 2px solid var(--logo-purple);
}
.package-card.popular:hover {
  border-color: var(--logo-purple);
  box-shadow: 0 8px 32px rgba(123, 31, 162, 0.15);
}

/* 3. Checklist Deliverables Style */
.deliverables-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-charcoal);
  line-height: 1.4;
}

.deliverables-list li::before {
  content: '✓';
  color: var(--logo-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* 4. Italic Accent in Hero Heading */
.hero-title em {
  font-style: italic;
  font-family: var(--font-heading-display);
  color: var(--logo-magenta);
  font-weight: 400;
}

/* 5. Hero Decorative Depth Shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 118, 210, 0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* 6. Featured/Popular badge - Pill shape */
.card-badge-popular {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--logo-purple), var(--logo-magenta));
  color: #fff;
  padding: 5px 16px;
  border-radius: 100px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  display: inline-block;
  z-index: 10;
  text-align: center;
}

/* 7. Footer Column Headers - Tracking + Weight */
footer h4 {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-transform: uppercase;
}

/* 8. CTA Button Hierarchy - Modern Light Fill Tint */
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--logo-blue);
  color: var(--logo-blue);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(25, 118, 210, 0.08);
  color: var(--logo-blue);
  transform: translateY(-2px);
}

