/* Reset and Base Styles */

/* 
   ASPINA BRAND SETUP
   
   FONTS:
   Add this to your HTML <head> to load Inter from Google Fonts:
   
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
   
   For Spectral (logo font), add:
   <link href="https://fonts.googleapis.com/css2?family=Spectral:wght@700;800&display=swap" rel="stylesheet">
   
   COLORS:
   Logo Icon: #0891b2 (Teal) - use class .logo-icon or apply to SVG
   Logo Wordmark: #1e293b (Navy) - automatically applied to .site-name
   Primary/Buttons: #0891b2 (Teal) - automatically applied via --primary-color
*/

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

:root {
    /* Brand Colors - Aspina */
    --brand-teal: #0891b2;        /* Logo icon / Primary brand color */
    --brand-navy: #1e293b;        /* Logo wordmark / Secondary brand color */
    
    /* Primary Colors (Teal theme) */
    --primary-color: #0891b2;     /* Teal - buttons, links, CTAs */
    --primary-dark: #0e7490;      /* Darker teal for hovers */
    --primary-light: #22d3ee;     /* Lighter teal for accents */
    
    /* Text Colors */
    --text-color: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    
    /* Background Colors */
    --bg-color: #ffffff;
    --bg-gray: #f9fafb;
    --bg-gray-light: #fafafa;
    
    /* Border Colors */
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    
    /* Layout */
    --max-width: 1200px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-top: var(--spacing-2xl); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

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

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

/* Header and Navigation */
.site-header {
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.nav-left {
    display: flex;
    align-items: center;
}

/* Logo (light + dark SVG swap) */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;          /* spacing between icon/text if needed */
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
}

.logo {
  height: 56px;          /* recommended header size */
  width: auto;
  display: block;
}

/* By default show the light logo */
.logo-dark {
  display: none;
}

/* If user's OS/browser is in dark mode, swap */
@media (prefers-color-scheme: dark) {
  .logo-light {
    display: none;
  }
  .logo-dark {
    display: block;
  }
}

/* Optional: slightly smaller logo on mobile */
@media (max-width: 768px) {
  .logo {
    height: 44px;
  }
}

.site-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-navy);      /* Navy for logo wordmark */
    font-family: 'Spectral', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-sm);
    align-items: center;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 0.375rem;
    transition: all 0.2s;
    font-weight: 500;
}

.nav-link:hover {
    background-color: var(--bg-gray);
    color: var(--primary-color);
}

.nav-item.active .nav-link {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-button {
    background-color: var(--primary-color);
    color: white !important;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Main Content */
#main-content {
    min-height: calc(100vh - 200px);
}

/* Home Page */
.home-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.home-page > h2 {
    text-align: center;
    font-size: 2rem;
    margin: var(--spacing-2xl) 0 var(--spacing-lg);
}

.home-page > hr {
    display: none;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: var(--spacing-2xl) 0;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--bg-gray);
    border: 1px solid var(--border-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin: var(--spacing-md) 0;
    line-height: 1.2;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin: var(--spacing-lg) 0;
    line-height: 1.6;
}

.hero-cta {
    margin: var(--spacing-xl) 0 var(--spacing-md);
}

.hero-hint {
    font-size: 0.9rem;
    color: var(--text-lighter);
    margin-top: var(--spacing-sm);
}

/* Buttons */
.button-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.button-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.button {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
}

.button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.button-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
}

.button-outline:hover {
    background-color: var(--primary-color);
    color: white !important;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.why-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.why-card:hover {
    box-shadow: 0 12px 24px rgba(8, 145, 178, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

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

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
    flex-shrink: 0;
}

.why-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    margin: 0;
}

/* CTA Center */
.cta-center {
    text-align: center;
    margin: var(--spacing-xl) 0;
}

/* Feature Section */
.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl) 0;
}

.feature-image {
    width: 100%;
}

.placeholder-image {
    background: var(--bg-gray);
    border: 2px dashed var(--border-color);
    border-radius: 0.75rem;
    padding: var(--spacing-2xl);
    text-align: center;
    color: var(--text-lighter);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h2 {
    margin-top: 0;
    font-size: 2rem;
}

.feature-list {
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.feature-icon {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Explore Grid */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.explore-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    display: block;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.explore-card:hover {
    box-shadow: 0 12px 24px rgba(8, 145, 178, 0.15);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

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

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

.explore-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
    flex-shrink: 0;
}

.explore-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
}

.explore-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.explore-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
}

.explore-card:hover .explore-arrow {
    gap: 0.75rem;
}

/* Pricing Hero */
.pricing-hero {
    text-align: center;
    padding: var(--spacing-xl) 0;
    margin: var(--spacing-lg) 0;
}

.price-large {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.price-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.price-description {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Modules Section with Central Circular Image */
.modules-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
    position: relative;
    margin: 4rem 0;
    min-height: 700px;
}

.modules-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    margin-right: -30px;
    z-index: 10;
}

.modules-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    margin-left: -30px;
    z-index: 10;
}

.modules-center {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 5;
    position: relative;
}

.modules-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-box {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 15;
    opacity: 0;
    text-align: center;
}

.module-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.15);
    transform: translateY(-2px);
    z-index: 20;
}

.module-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.module-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 8px;
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.25);
}

.module-number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 800;
    color: var(--primary-color);
}

.module-box strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.3;
}

.module-box p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Sequential Animations for 8 Modules - 16 second cycle */
/* Each module takes 1s to fade in, all visible for 6s, all fade out together in 1s, then restart */

.module-1 { animation: module1Loop 16s ease-in-out infinite; }
.module-2 { animation: module2Loop 16s ease-in-out infinite; }
.module-3 { animation: module3Loop 16s ease-in-out infinite; }
.module-4 { animation: module4Loop 16s ease-in-out infinite; }
.module-5 { animation: module5Loop 16s ease-in-out infinite; }
.module-6 { animation: module6Loop 16s ease-in-out infinite; }
.module-7 { animation: module7Loop 16s ease-in-out infinite; }
.module-8 { animation: module8Loop 16s ease-in-out infinite; }

/* Module 1: 0-1s fade in */
@keyframes module1Loop {
    0% { opacity: 0; transform: translateX(20px); }
    6.25% { opacity: 1; transform: translateX(0); }
    87.5% { opacity: 1; transform: translateX(0); }
    93.75%, 100% { opacity: 0; transform: translateX(20px); }
}

/* Module 2: 1-2s fade in */
@keyframes module2Loop {
    0%, 6.25% { opacity: 0; transform: translateX(20px); }
    12.5% { opacity: 1; transform: translateX(0); }
    87.5% { opacity: 1; transform: translateX(0); }
    93.75%, 100% { opacity: 0; transform: translateX(20px); }
}

/* Module 3: 2-3s fade in */
@keyframes module3Loop {
    0%, 12.5% { opacity: 0; transform: translateX(20px); }
    18.75% { opacity: 1; transform: translateX(0); }
    87.5% { opacity: 1; transform: translateX(0); }
    93.75%, 100% { opacity: 0; transform: translateX(20px); }
}

/* Module 4: 3-4s fade in */
@keyframes module4Loop {
    0%, 18.75% { opacity: 0; transform: translateX(20px); }
    25% { opacity: 1; transform: translateX(0); }
    87.5% { opacity: 1; transform: translateX(0); }
    93.75%, 100% { opacity: 0; transform: translateX(20px); }
}

/* Module 5: 4-5s fade in */
@keyframes module5Loop {
    0%, 25% { opacity: 0; transform: translateX(-20px); }
    31.25% { opacity: 1; transform: translateX(0); }
    87.5% { opacity: 1; transform: translateX(0); }
    93.75%, 100% { opacity: 0; transform: translateX(-20px); }
}

/* Module 6: 5-6s fade in */
@keyframes module6Loop {
    0%, 31.25% { opacity: 0; transform: translateX(-20px); }
    37.5% { opacity: 1; transform: translateX(0); }
    87.5% { opacity: 1; transform: translateX(0); }
    93.75%, 100% { opacity: 0; transform: translateX(-20px); }
}

/* Module 7: 6-7s fade in */
@keyframes module7Loop {
    0%, 37.5% { opacity: 0; transform: translateX(-20px); }
    43.75% { opacity: 1; transform: translateX(0); }
    87.5% { opacity: 1; transform: translateX(0); }
    93.75%, 100% { opacity: 0; transform: translateX(-20px); }
}

/* Module 8: 7-8s fade in */
@keyframes module8Loop {
    0%, 43.75% { opacity: 0; transform: translateX(-20px); }
    50% { opacity: 1; transform: translateX(0); }
    87.5% { opacity: 1; transform: translateX(0); }
    93.75%, 100% { opacity: 0; transform: translateX(-20px); }
}

/* Responsive Design for Modules Section */
@media (max-width: 1200px) {
    .modules-center {
        width: 350px;
        height: 350px;
    }
    
    .modules-left {
        margin-right: -25px;
    }
    
    .modules-right {
        margin-left: -25px;
    }
}

@media (max-width: 968px) {
    .modules-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 2rem;
        min-height: auto;
    }
    
    .modules-left {
        order: 1;
        margin-right: 0;
    }
    
    .modules-center {
        order: 2;
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .modules-right {
        order: 3;
        margin-left: 0;
    }
    
    .module-box {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .modules-center {
        width: 250px;
        height: 250px;
    }
    
    .module-box {
        padding: 1.25rem;
    }
    
    .module-box strong {
        font-size: 1rem;
    }
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.step-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: var(--spacing-lg);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: var(--spacing-lg);
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-card h3 {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.step-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Pricing: What's Included section uses the same styling as Steps */
.included-grid {
  margin-top: var(--spacing-xl);
}

.included-card h3 {
  margin-top: var(--spacing-md);
}

/* Optional: slightly softer card feel (matches the homepage vibe) */
.included-card {
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.included-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--primary-color);
}


/* Action Grid */
.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.action-button {
    display: block;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--bg-gray);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-color) !important;
    font-weight: 600;
    transition: all 0.2s;
}

.action-button:hover {
    background: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Testimonials */
.testimonials-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.testimonial-card {
    background: var(--bg-gray-light);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    padding: var(--spacing-lg);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.testimonial-author {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-lg) 0;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
}

th, td {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background: var(--bg-gray);
    font-weight: 600;
    color: var(--text-color);
}

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

tbody tr:hover {
    background: var(--bg-gray-light);
}

/* Page Header */
.page-header {
    text-align: center;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--spacing-xl);
}

.page-header h1 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    font-size: 2.5rem;
}

.page-description {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto var(--spacing-sm);
}

.page-meta {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

/* Page Content */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

.page-intro {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

/* Content Grid (for list pages) */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.content-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: var(--spacing-lg);
    transition: all 0.2s;
}

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

.content-card h2, .content-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.content-card h2 a, .content-card h3 a {
    color: var(--text-color);
}

.content-card h2 a:hover, .content-card h3 a:hover {
    color: var(--primary-color);
}

.card-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.card-meta {
    color: var(--text-lighter);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.read-more {
    display: inline-block;
    margin-top: var(--spacing-sm);
    font-weight: 600;
    color: var(--primary-color);
}

/* Lists */
ul, ol {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

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

/* Blockquotes */
blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    color: var(--text-light);
    font-style: italic;
}

/* Code */
code {
    background: var(--bg-gray);
    padding: 0.2em 0.4em;
    border-radius: 0.25rem;
    font-size: 0.9em;
    font-family: 'Courier New', monospace;
    border: 1px solid var(--border-light);
}

pre {
    background: var(--bg-gray);
    padding: var(--spacing-md);
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: var(--spacing-md) 0;
    border: 1px solid var(--border-color);
}

pre code {
    background: none;
    padding: 0;
    border: none;
}

/* Footer */
.site-footer {
    background: var(--bg-gray);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

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

.footer-section h3 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}

.footer-section h4 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    color: var(--text-light);
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    color: var(--text-lighter);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-right {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-color);
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
    }
    
    .nav-right.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: var(--spacing-md) 0;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .price-large {
        font-size: 3rem;
    }
    
    .feature-section {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .content-grid,
    .why-grid,
    .explore-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }
.mt-6 { margin-top: var(--spacing-2xl); }
.mt-8 { margin-top: var(--spacing-2xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }
.mb-8 { margin-bottom: var(--spacing-2xl); }

/* News Grid - 3 Columns Equal Height Cards with Images */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.news-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.news-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-gray);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-content h2 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.news-card-content h2 a {
    color: var(--text-color);
}

.news-card-content h2 a:hover {
    color: var(--primary-color);
}

.news-card-content .card-description {
    color: var(--text-light);
    margin-bottom: auto;
    line-height: 1.6;
}

.news-card-footer {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-card-footer .card-meta {
    margin: 0;
    font-size: 0.875rem;
}

.news-card-footer .read-more {
    margin: 0;
}

/* Responsive adjustments for news cards */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card-image {
        height: 180px;
    }
}
/* Article Featured Image */
.article-featured-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    border-radius: 0.75rem;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}
/* ========================================
   Hero Section - Two Column Layout
   ======================================== */

.hero-section {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  min-height: 500px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h2 {
  margin-top: 0;
}

.hero-image {
  flex: 0 0 auto;
  width: 45%;
  max-width: 600px;
  min-width: 400px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* Hero Content Elements */
.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #e8f4f8;
  color: #0b7a9c;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 2rem;
}

.hero-cta {
  margin-bottom: 1rem;
}

.hero-hint {
  font-size: 0.875rem;
  color: #718096;
  font-style: italic;
}

/* Button Styles */
.button-primary {
  display: inline-block;
  background-color: #1e293b; /* dark navy */
  color: #ffffff;
  padding: 0.9rem 1.6rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.button-primary:hover {
  background-color: #0f172a;
  transform: translateY(-1px);
}


/* ========================================
   Responsive Design - Tablet
   ======================================== */

@media (max-width: 1024px) {
  .hero-section {
    gap: 3rem;
    padding: 3rem 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-image {
    min-width: 350px;
  }
}

/* ========================================
   Responsive Design - Mobile
   ======================================== */

@media (max-width: 968px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem 1rem;
    min-height: auto;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-image {
    width: 100%;
    max-width: 500px;
    min-width: auto;
    order: 2; /* Keep image below text on mobile */
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .button-primary {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-section {
    padding: 1.5rem 1rem;
  }
}

/* ========================================
   Optional: Image Loading State
   ======================================== */

.hero-image img {
  background: #f7fafc;
  /* Add skeleton loader if desired */
}

.hero-image img[loading="lazy"] {
  min-height: 400px;
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
  .hero-section {
    page-break-inside: avoid;
  }
  
  .hero-image img {
    box-shadow: none;
    border: 1px solid #e2e8f0;
  }
}

/* ========================================
   Page Load Animations
   ======================================== */

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations to sections */
.why-grid .why-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.why-grid .why-card:nth-child(1) { animation-delay: 0.1s; }
.why-grid .why-card:nth-child(2) { animation-delay: 0.2s; }
.why-grid .why-card:nth-child(3) { animation-delay: 0.3s; }
.why-grid .why-card:nth-child(4) { animation-delay: 0.4s; }

.explore-grid .explore-card {
    animation: fadeInScale 0.5s ease forwards;
    opacity: 0;
}

.explore-grid .explore-card:nth-child(1) { animation-delay: 0.1s; }
.explore-grid .explore-card:nth-child(2) { animation-delay: 0.2s; }
.explore-grid .explore-card:nth-child(3) { animation-delay: 0.3s; }
.explore-grid .explore-card:nth-child(4) { animation-delay: 0.4s; }

.steps-grid .step-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.steps-grid .step-card:nth-child(1) { animation-delay: 0.1s; }
.steps-grid .step-card:nth-child(2) { animation-delay: 0.2s; }
.steps-grid .step-card:nth-child(3) { animation-delay: 0.3s; }
.steps-grid .step-card:nth-child(4) { animation-delay: 0.4s; }

/* ========================================
   CTA Section with Colored Background
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

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

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-section .button-primary {
    background: white;
    color: var(--primary-color);
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

.cta-section .button-primary:hover {
    background: #f0f9ff;
    color: var(--primary-dark);
}

/* ========================================
   Visual Section Separators
   ======================================== */

/* Add spacing and visual break between What's Covered and Get Started */
.modules-section {
    margin-bottom: 6rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid #e5e7eb;
}

/* Add clear visual separation before Get Started section */
.steps-grid {
    margin-top: 3rem;
}

/* ========================================
   Action Section Styling
   ======================================== */

.action-section {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-gray);
    border-radius: 1rem;
    margin: 3rem 0;
}

.action-section h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.action-section > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ========================================
   Responsive Adjustments for New Sections
   ======================================== */

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .topics-grid {
        margin-bottom: 4rem;
        padding-bottom: 3rem;
    }
}

/* ========================================
   Reduced Motion Support
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ========================================
   Animated Feature Section
   ======================================== */

.animated-feature-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
    position: relative;
    min-height: 600px;
    margin: 4rem 0;
}

/* Left Column - 2 boxes stacked */
.left-boxes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    padding-right: 0;
    margin-right: -40px;
    z-index: 10;
}

/* Right Column - 2 boxes stacked */
.right-boxes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    padding-left: 0;
    margin-left: -40px;
    z-index: 10;
}

/* Central Image */
.central-image {
    width: 600px;
    height: 500px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 5;
    position: relative;
}

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

/* Feature Box Styling */
.feature-box {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    position: relative;
    z-index: 15;
}

.feature-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.15);
    transform: scale(1.02) !important;
    z-index: 20;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Looping Animations - Sequential In, Simultaneous Out
   ======================================== */

/* Total cycle: 10 seconds
   0-1s: Box 1 fades in
   1-2s: Box 2 fades in (after Box 1 complete)
   2-3s: Box 3 fades in (after Box 2 complete)
   3-4s: Box 4 fades in (after Box 3 complete)
   4-9s: All visible (5 seconds)
   9-10s: All fade out TOGETHER
   10s: Immediate restart
*/

/* Box 1 - Appears first (0-1s) */
.box-1 {
    animation: box1Loop 10s ease-in-out infinite;
}

@keyframes box1Loop {
    0% {
        opacity: 0;
        transform: scale(0.9) translateX(20px);
    }
    10% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    90% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.9) translateX(20px);
    }
}

/* Box 2 - Appears second (1-2s) */
.box-2 {
    animation: box2Loop 10s ease-in-out infinite;
}

@keyframes box2Loop {
    0%, 10% {
        opacity: 0;
        transform: scale(0.9) translateX(20px);
    }
    20% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    90% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.9) translateX(20px);
    }
}

/* Box 3 - Appears third (2-3s) */
.box-3 {
    animation: box3Loop 10s ease-in-out infinite;
}

@keyframes box3Loop {
    0%, 20% {
        opacity: 0;
        transform: scale(0.9) translateX(-20px);
    }
    30% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    90% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.9) translateX(-20px);
    }
}

/* Box 4 - Appears fourth (3-4s) */
.box-4 {
    animation: box4Loop 10s ease-in-out infinite;
}

@keyframes box4Loop {
    0%, 30% {
        opacity: 0;
        transform: scale(0.9) translateX(-20px);
    }
    40% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    90% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.9) translateX(-20px);
    }
}

/* ========================================
   Accessibility
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .feature-box {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1200px) {
    .central-image {
        width: 500px;
        height: 420px;
    }
    
    .left-boxes {
        margin-right: -30px;
    }
    
    .right-boxes {
        margin-left: -30px;
    }
}

@media (max-width: 968px) {
    .animated-feature-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 2rem;
    }
    
    .left-boxes {
        order: 1;
        margin-right: 0;
        padding-right: 0;
    }
    
    .central-image {
        order: 2;
        width: 100%;
        max-width: 600px;
        height: 400px;
        margin: 0 auto;
    }
    
    .right-boxes {
        order: 3;
        margin-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 640px) {
    .central-image {
        height: 320px;
    }
    
    .feature-box {
        padding: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.125rem;
    }
}

/* ========================================
   Pricing Page Styles
   ======================================== */
.investment-case-split {
  max-width: 900px;   /* adjust to taste: 850–1000px works well */
  margin: 0 auto var(--spacing-xl) auto;
}

.pricing-page-breakout {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 var(--spacing-md);
}

.pricing-page-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* Center the intro section */
.pricing-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-intro h1 {
    margin-bottom: 1rem;
}

/* Center the pricing tiers section */
.pricing-tiers-section {
    margin: 3rem auto;
    width: 100%;
    text-align: center;
}

.pricing-tiers-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Investment Case - Bold Split Design */
.investment-case-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    margin: 3rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
}

.investment-left {
    background: var(--brand-teal);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.investment-right {
    background: var(--primary-dark);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.investment-case-split h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.investment-stat {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.investment-desc {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.investment-source {
    font-size: 0.875rem;
    margin-top: 1rem;
    opacity: 0.85;
}

.investment-source a {
    color: white;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

.investment-source a:hover {
    text-decoration-color: white;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    align-items: stretch;
}

.pricing-tier {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.pricing-tier:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.tier-header {
    padding: 1.5rem;
    color: white;
    text-align: center;
    flex-shrink: 0;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tier-starter .tier-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--brand-teal) 100%);
}

.tier-growth .tier-header {
    background: linear-gradient(135deg, var(--brand-teal) 0%, var(--primary-dark) 100%);
}

.tier-business .tier-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #155e75 100%);
}

.tier-enterprise .tier-header {
    background: linear-gradient(135deg, var(--brand-navy) 0%, #0f172a 100%);
}

.tier-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.tier-range {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
}

.tier-body {
    padding: 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #111827;
    line-height: 1;
}

.price-label {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.minimum-order-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin: 2rem auto;
    max-width: 1400px;
}

.minimum-order-box strong {
    color: var(--brand-teal);
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .investment-case-split {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}