/* Canna Data Science - Promotional Landing Page Styles */
/* Financial Dark Mode - High Contrast Design */

:root {
    /* Dark Mode Backgrounds */
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --bg-card: #1E293B;
    --bg-card-hover: #334155;
    
    /* Accent Colors - Emerald/Money Green Theme */
    --neon-green: #34D399;          /* emerald-400: accent text on dark bg */
    --profit-green: #34D399;        /* emerald-400: profit numbers */
    --emerald-button: #059669;      /* emerald-600: button backgrounds */
    --emerald-hover: #047857;       /* emerald-700: button hover */
    --warning-amber: #FFB800;
    --primary-green: #059669;       /* emerald-600: primary actions */
    --primary-light: #34D399;       /* emerald-400: lighter accent */
    --dark-green: #064E3B;          /* emerald-900: deep green */
    --light-green: #6EE7B7;         /* emerald-300: subtle highlights */
    --accent-gold: #FFB800;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    --text-dark: #FFFFFF;
    --text-medium: #CBD5E1;
    --text-light: #94A3B8;
    
    /* UI Elements */
    --border-color: #334155;
    --border-light: #475569;
    
    /* Legacy support */
    --bg-light: #1E293B;
    --bg-gradient: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.3);
    --shadow-hover: 0 20px 60px rgba(5, 150, 105, 0.25);
    --transition: all 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--emerald-button);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Enhanced Focus States for Keyboard Navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--neon-green);
    outline-offset: 3px;
}

.desktop-menu a:focus-visible,
.mobile-menu a:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
    border-radius: 4px;
}

.nav-cta:focus-visible,
.btn:focus-visible,
.cta-button:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    font-size: clamp(16px, 1.25vw, 22px);
    line-height: 1.75;
    overflow-x: hidden;
}

/* Cannabis Data Leaf Image Styles */
.logo-leaf {
    height: 42px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.hero-leaf {
    height: 180px;
    width: auto;
    animation: floatIcon 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(76, 175, 80, 0.5));
}

.inline-leaf {
    height: 32px;
    width: auto;
    vertical-align: middle;
    margin-right: 6px;
}

.feature-leaf {
    height: 72px;
    width: auto;
}

.footer-leaf {
    height: 38px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(76, 175, 80, 0.3); }
    50% { box-shadow: 0 0 40px rgba(76, 175, 80, 0.6); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes barGrow {
    from { height: 0; }
    to { height: var(--bar-height); }
}

@keyframes pieRotate {
    from { stroke-dashoffset: 502; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.top-nav.scrolled {
    padding: 10px 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    background: rgba(15, 23, 42, 0.98);
}

.nav-logo {
    font-size: 1.5em;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-green), #4AFF25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--neon-green), #4AFF25);
    transition: width 0.3s ease;
}

.desktop-menu a:hover {
    color: var(--neon-green);
}

.desktop-menu a:hover::after {
    width: 100%;
}

.desktop-menu .nav-login {
    background: transparent;
    color: var(--text-secondary) !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.desktop-menu .nav-login::after {
    display: none;
}

.desktop-menu .nav-login:hover {
    border-color: var(--neon-green);
    color: var(--neon-green) !important;
    background: rgba(52, 211, 153, 0.1);
}

.desktop-menu .nav-cta {
    background: var(--emerald-button);
    color: #FFFFFF !important;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
}

.desktop-menu .nav-cta::after {
    display: none;
}

.desktop-menu .nav-cta:hover {
    background: var(--emerald-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(5, 150, 105, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    animation: fadeInUp 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu a {
    display: block;
    padding: 16px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    text-align: center;
    font-weight: 600;
}

.mobile-login-btn {
    background: var(--bg-secondary);
    color: var(--text-primary) !important;
    border: 2px solid var(--border-color);
}

.mobile-login-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--neon-green);
    color: var(--neon-green) !important;
}

.mobile-cta-btn {
    background: var(--emerald-button);
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.mobile-cta-btn:hover {
    background: var(--emerald-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.mobile-nav-link {
    background: transparent;
    color: var(--text-secondary) !important;
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    padding: 14px 20px !important;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(46, 125, 50, 0.1);
    color: var(--neon-green) !important;
    border-left-color: var(--neon-green);
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
    border: none;
}

/* Login Redirect Button */
.login-redirect-btn {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    padding: 20px 50px;
    margin-bottom: 30px;
}

/* Sticky Feature Navigation */
.sticky-feature-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
}

.feature-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.feature-nav-container::-webkit-scrollbar {
    display: none;
}

.feature-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.feature-nav-link:hover,
.feature-nav-link.active {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.05));
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.feature-nav-link .nav-icon {
    font-size: clamp(1rem, 1.3vw, 1.3rem);
}

.feature-nav-link .nav-text {
    font-weight: 600;
}

@media (max-width: 768px) {
    .feature-nav-container {
        justify-content: flex-start;
        gap: 8px;
        padding: 10px 15px;
    }
    
    .feature-nav-link {
        padding: 8px 14px;
        font-size: 0.95em;
    }
}

/* CPR Golden Batch Section */
.cpd-section {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px);
    background: var(--bg-secondary);
}

.cpd-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cpd-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.cpd-section .section-header p {
    color: var(--text-secondary);
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

.cpd-tagline {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    color: var(--gold);
    margin: 0 auto 20px auto;
    letter-spacing: 0.02em;
}

.cpd-intro {
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 1100px;
    margin: 0 auto;
}

.cpd-intro strong {
    color: var(--neon-green);
}

.case-study-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(52, 211, 153, 0.1));
    color: var(--neon-green);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.95em;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.case-study-intro {
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 1100px;
    margin: 0 auto 15px auto;
}

.case-study-intro strong {
    color: var(--text-primary);
}

.case-study-insight {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 1100px;
    margin: 0 auto;
    font-style: italic;
}

.case-study-insight strong {
    color: var(--neon-green);
    font-style: normal;
}

.golden-batch-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 50px);
    align-items: stretch;
}

/* Strain Details Card */
.golden-batch-details {
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.batch-header {
    margin-bottom: 30px;
    text-align: center;
}

.batch-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
    font-size: clamp(0.8rem, 1vw, 1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.batch-strain {
    color: var(--text-primary);
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 700;
    margin: 0 0 8px 0;
}

.batch-profile {
    color: var(--text-muted);
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
}

.batch-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.batch-metrics.four-col {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.batch-metric {
    text-align: center;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 20px 10px;
    border: 1px solid var(--border-color);
}

.batch-metric .metric-value {
    display: block;
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.batch-metric .metric-label {
    display: block;
    font-size: clamp(0.75rem, 0.95vw, 0.95rem);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.batch-metric .metric-note {
    display: block;
    font-size: clamp(0.75rem, 0.95vw, 0.95rem);
    color: var(--text-muted);
    font-style: italic;
    margin-top: 5px;
    opacity: 0.8;
}

.batch-metric.highlight {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.05));
    border-color: var(--neon-green);
}

.batch-metric.highlight .metric-value {
    color: var(--neon-green);
}

.batch-config {
    margin-bottom: 20px;
}

.config-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
    border-radius: 10px;
    padding: 12px 20px;
}

.config-value {
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    font-weight: 700;
    color: var(--neon-green);
}

.config-label {
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.opex-benchmark {
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

.opex-header {
    margin-bottom: 8px;
}

.opex-label {
    color: var(--warning-amber);
    font-size: clamp(0.85rem, 1.1vw, 1.1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opex-value {
    font-size: clamp(1.6rem, 2.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.opex-unit {
    font-size: clamp(0.8rem, 1vw, 1rem);
    font-weight: 500;
    color: var(--text-muted);
}

.opex-includes {
    color: var(--text-muted);
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
}

/* CPR Hero Result Card */
.cpd-hero-result {
    padding: 40px 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.05), rgba(52, 211, 153, 0.02));
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.cpd-result-label {
    color: var(--text-muted);
    font-size: clamp(0.85rem, 1.1vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.cpd-hero-value {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    color: var(--neon-green);
    text-shadow: 0 0 60px rgba(52, 211, 153, 0.6);
    line-height: 1;
    margin-bottom: 5px;
}

.cpd-hero-unit {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    margin-bottom: 30px;
}

.cpd-math-breakdown {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.math-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.math-row:last-child {
    border-bottom: none;
}

.math-row.result {
    border-top: 2px solid var(--neon-green);
    margin-top: 8px;
    padding-top: 12px;
}

.math-label {
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
}

.math-value {
    font-weight: 600;
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
}

.math-value.positive {
    color: var(--neon-green);
}

.math-value.negative {
    color: var(--warning-amber);
}

.math-value.profit {
    color: var(--neon-green);
    font-size: clamp(1rem, 1.4vw, 1.4rem);
}

.rhythm-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
    border-radius: 10px;
    padding: 14px 20px;
    color: var(--neon-green);
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
}

.rhythm-icon {
    font-size: clamp(1rem, 1.4vw, 1.4rem);
}

.rhythm-text strong {
    color: var(--text-primary);
}

.rhythm-context {
    margin-top: 12px;
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    color: var(--text-muted);
    line-height: 1.5;
    font-style: italic;
    padding: 0 10px;
}

/* Partner Examples Title */
.partner-examples-title {
    text-align: center;
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.partner-examples-title.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Revolution Snapshots Section */
.revolution-snapshots {
    max-width: 1400px;
    margin: 0 auto 40px;
    text-align: center;
}

.revolution-headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.revolution-hook {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.revolution-description {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 15px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.revolution-description strong {
    color: var(--neon-green);
}

/* Mock Control Bar */
.mock-control-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.control-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(50, 50, 55, 0.9);
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: default;
    transition: var(--transition);
}

.control-pill:hover {
    border-color: rgba(76, 175, 80, 0.4);
    background: rgba(60, 60, 65, 0.9);
}

.pill-icon {
    font-size: 0.95em;
}

.pill-text {
    font-size: 0.9em;
    font-weight: 500;
    color: var(--text-secondary);
}

.pill-arrow {
    font-size: 0.7em;
    color: var(--text-muted);
    margin-left: 4px;
}

/* Revolution Badge Tag on Cards */
.revolution-badge-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(46, 125, 50, 0.2);
    color: var(--neon-green);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75em;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    cursor: help;
}

/* CPR Comparison Grid - Side-by-Side Cards */
.cpd-comparison-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 40px);
}

.profit-unit {
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: var(--text-muted);
    font-weight: 400;
}

.cpd-comparison-card {
    position: relative;
    padding: 35px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cpd-comparison-card:hover {
    transform: translateY(-5px);
}

.cpd-comparison-card.featured {
    border-color: var(--neon-green);
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.08), rgba(52, 211, 153, 0.02));
}

.comparison-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.header-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.header-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85em;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-pill.featured {
    background: rgba(76, 175, 80, 0.15);
    color: var(--neon-green);
    border-color: rgba(76, 175, 80, 0.3);
}

.header-pill.muted {
    color: var(--text-muted);
    font-style: italic;
}

.comparison-title {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.comparison-subtext {
    color: var(--text-muted);
    font-size: 0.95em;
}

.comparison-subtext.muted {
    font-size: 0.95em;
    opacity: 0.7;
    font-style: italic;
}

.cpd-comparison-card.featured .comparison-subtext {
    color: var(--neon-green);
}

.cpd-comparison-card.featured .comparison-subtext.muted {
    color: var(--text-muted);
}

.comparison-metrics {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.highlight {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), rgba(52, 211, 153, 0.03));
    margin: 0 -20px;
    padding: 16px 20px;
    border-radius: 10px;
    border-bottom: none;
    margin-top: 10px;
}

.comparison-label {
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
}

.comparison-value {
    font-weight: 600;
    font-size: clamp(0.95rem, 1.2vw, 1.2rem);
    color: var(--text-primary);
}

.comparison-value.negative {
    color: var(--warning-amber);
}

.comparison-formula {
    display: block;
    font-size: clamp(0.8rem, 1vw, 1rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 2px;
}

.comparison-value.profit {
    color: var(--neon-green);
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    font-weight: 700;
}

.comparison-value.profit-hero {
    color: var(--neon-green);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 800;
    display: block;
    margin-top: 8px;
}

.comparison-value.efficiency-highlight {
    color: var(--neon-green);
    font-weight: 700;
}

.comparison-value.consistency-high {
    color: var(--neon-green);
    font-weight: 600;
}

.comparison-value.consistency-low {
    color: var(--warning-amber);
    font-weight: 600;
}

.variance-text {
    font-size: 0.8em;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 4px;
}

.profit-context {
    display: block;
    font-size: 0.9em;
    color: var(--text-medium);
    margin-top: 4px;
    font-style: italic;
}

.comparison-row.daily-profit {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
}

.comparison-row.bottom-line {
    margin-top: 12px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.muted-parens {
    opacity: 0.7;
    font-size: 0.9em;
}

.profit-interval {
    display: block;
    font-size: 0.875em;
    font-weight: 600;
    color: var(--accent-emerald);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.comparison-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 16px 20px;
    background: rgba(100, 100, 100, 0.1);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.95em;
}

.comparison-footer.featured {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
    color: var(--neon-green);
}

.velocity-icon {
    font-size: 1.2em;
}

.velocity-text strong {
    color: var(--text-primary);
}

.comparison-footer.featured .velocity-text strong {
    color: var(--neon-green);
}

/* CPR Disclaimer */
.cpd-disclaimer {
    max-width: 1100px;
    margin: 40px auto 0 auto;
    text-align: center;
}

.cpd-disclaimer p {
    font-size: 0.95em;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 768px) {
    .cpd-comparison-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cpd-comparison-card {
        padding: 25px;
        padding-top: 20px;
    }
    
    .revolution-badge-tag {
        position: static;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        font-size: 0.75em;
    }
    
    .comparison-header {
        margin-top: 0;
    }
    
    .comparison-title {
        font-size: 1.4em;
    }
    
    .comparison-value.profit {
        font-size: 1.25em;
    }
}

/* Universal Fit Call-Out */
.universal-fit {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    text-align: center;
    padding: clamp(30px, 4vw, 50px);
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.08), rgba(52, 211, 153, 0.03));
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 20px;
}

.universal-headline {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 20px;
}

.universal-text {
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    line-height: 1.8;
    color: var(--text-secondary);
}

.universal-text strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .universal-fit {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .universal-headline {
        font-size: 1.4em;
    }
    
    .universal-text {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .golden-batch-container {
        grid-template-columns: 1fr;
    }
    
    .batch-metrics {
        grid-template-columns: 1fr;
    }
    
    .batch-metrics.four-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cpd-hero-value {
        font-size: 3.5em;
    }
    
    .batch-strain {
        font-size: 1.4em;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(rgba(26, 71, 42, 0.75), rgba(13, 40, 24, 0.85)),
        url('/static/images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: clamp(70px, 10vw, 120px) clamp(30px, 5vw, 80px) clamp(40px, 5vw, 60px);
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(144, 238, 144, 0.4);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    z-index: 2;
}

/* Stacked hero layout */
.hero-stacked .hero-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1400px;
}

.hero-stacked .hero-content {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-stacked .hero-cta {
    justify-content: center;
}

.hero-stacked .hero-subtitle {
    margin: 0 auto 30px;
    text-align: center;
}

.hero-visual-wide {
    width: 100%;
}

.hero-cpr-card-wide {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(35px, 4vw, 55px) clamp(40px, 5vw, 60px);
}

.hero-cpr-card-compact {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(30px, 4vw, 50px) clamp(25px, 4vw, 50px);
    text-align: center;
}

.hero-cpr-card-compact .cpr-title {
    margin-bottom: 16px;
}

.hero-cpr-card-compact .cpr-quote {
    margin-bottom: 0;
}

.cpr-explanation-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 60px) clamp(30px, 5vw, 80px);
}

.cpr-explanation-content {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
}

.cpr-explanation-content p {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cpr-explanation-content strong {
    color: #4ade80;
}

.hero-cpr-card-wide .cpr-body-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.hero-cpr-card-wide .cpr-body-grid .cpr-body {
    margin-bottom: 0;
}

.hero-content {
    text-align: left;
    max-width: 1000px;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-icon {
    font-size: 5em;
    margin-bottom: 20px;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: clamp(1.25rem, 2vw, 2rem);
    font-weight: 600;
    color: var(--light-green);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    opacity: 0.9;
    max-width: 1100px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: clamp(12px, 1.5vw, 18px) clamp(24px, 3vw, 40px);
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary.hero-btn {
    background: var(--emerald-button);
    color: white;
}

.btn-primary.hero-btn:hover {
    background: var(--emerald-hover);
    transform: translateY(-2px);
}

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

.btn-secondary.hero-btn:hover {
    background: rgba(52, 211, 153, 0.15);
    transform: translateY(-2px);
}

.trial-badge {
    display: inline-block;
    background: transparent;
    color: var(--text-muted);
    padding: 8px 0;
    font-weight: 500;
    font-size: 0.95em;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Hero Dashboard Preview */
.hero-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-dashboard-img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(76, 175, 80, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-dashboard-img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 80px rgba(76, 175, 80, 0.4);
}

/* Hero Visual - CPR Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-cpr-card {
    padding: 35px;
    max-width: 420px;
    text-align: center;
}

.hero-cpr-card .cpr-badge {
    display: inline-block;
    background: rgba(76, 175, 80, 0.15);
    color: var(--neon-green);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.95em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.hero-cpr-card .cpr-title {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.hero-cpr-card .cpr-quote {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-style: italic;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-cpr-card .cpr-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin-bottom: 20px;
}

.hero-cpr-card .cpr-body {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 14px;
    text-align: left;
}

.hero-cpr-card .cpr-body strong {
    color: var(--neon-green);
}

.hero-cpr-card .cpr-question {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    font-weight: 600;
    font-style: italic;
    color: var(--gold);
    margin-top: 15px;
    text-align: center;
}

/* Plain-English Section */
.plain-english-section {
    padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 80px);
    background: var(--bg-primary);
    text-align: center;
}

.plain-english-container {
    max-width: 1400px;
    margin: 0 auto;
}

.plain-english-headline {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    margin-bottom: clamp(24px, 3vw, 40px);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.plain-english-content {
    padding: clamp(30px, 4vw, 60px);
    text-align: left;
}

.plain-english-intro {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: clamp(24px, 3vw, 40px);
    text-align: center;
}

.plain-english-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
    margin-bottom: clamp(24px, 3vw, 40px);
}

.plain-english-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.pe-icon {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    flex-shrink: 0;
}

.pe-content strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: clamp(1rem, 1.3vw, 1.35rem);
}

.pe-content p {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.2vw, 1.2rem);
    line-height: 1.6;
}

.plain-english-clarification {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 12px;
}

.clarification-icon {
    font-size: 1.3em;
    flex-shrink: 0;
}

.plain-english-clarification p {
    color: var(--text-secondary);
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

.plain-english-clarification strong {
    color: var(--neon-green);
}

@media (max-width: 768px) {
    .plain-english-section {
        padding: 60px 20px;
    }
    
    .plain-english-headline {
        font-size: 1.8em;
    }
    
    .plain-english-content {
        padding: 25px;
    }
    
    .plain-english-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Stack Diagram Section */
.stack-diagram-section {
    padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 80px);
    background: var(--bg-secondary);
    text-align: center;
}

.stack-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stack-headline {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.stack-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

.stack-column {
    text-align: left;
}

.stack-column-title {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stack-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stack-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
}

.stack-item:hover {
    border-color: var(--neon-green);
    background: rgba(52, 211, 153, 0.05);
}

.stack-item.highlight {
    border-color: var(--neon-green);
    background: rgba(52, 211, 153, 0.1);
}

.stack-icon {
    font-size: 1.3em;
    flex-shrink: 0;
}

.stack-label {
    font-weight: 500;
    color: var(--text-primary);
}

.stack-subtext {
    display: block;
    font-size: 0.8em;
    color: var(--text-muted);
    margin-left: auto;
}

.stack-column.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stack-center-box {
    padding: 30px;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.05));
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    text-align: center;
}

.stack-logo {
    height: 50px;
    margin-bottom: 15px;
}

.stack-center-box h3 {
    font-size: 1.2em;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.stack-capabilities {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stack-capabilities span {
    font-size: 0.85em;
    color: var(--neon-green);
    padding: 5px 12px;
    background: rgba(52, 211, 153, 0.1);
    border-radius: 15px;
}

.stack-arrows {
    display: none;
}

.stack-differentiators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 40px);
    max-width: 1200px;
    margin: 0 auto;
}

.differentiator-item {
    display: flex;
    gap: 15px;
    text-align: left;
    padding: 25px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.diff-icon {
    font-size: 1.5em;
    flex-shrink: 0;
}

.diff-content strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.diff-content p {
    color: var(--text-secondary);
    font-size: 0.95em;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .stack-diagram {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stack-column.center {
        order: -1;
    }
    
    .stack-differentiators {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stack-diagram-section {
        padding: 60px 20px;
    }
    
    .stack-headline {
        font-size: 1.5em;
    }
}

/* Platform Overview Section - Digital Twin */
.platform-overview-section {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.overview-container {
    max-width: 1400px;
    margin: 0 auto;
}

.overview-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.overview-subhead {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    color: var(--gold);
    font-style: italic;
    margin-bottom: 40px;
}

.overview-content {
    padding: clamp(30px, 4vw, 50px);
    margin-bottom: 50px;
    text-align: left;
}

.overview-body {
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.overview-body:last-child {
    margin-bottom: 0;
}

.overview-body strong {
    color: var(--neon-green);
}

/* Revolution Block */
.revolution-block {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15), rgba(46, 125, 50, 0.05));
    border: 2px solid rgba(46, 125, 50, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
}

.revolution-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.revolution-icon {
    font-size: 2.5em;
}

.revolution-title {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.revolution-intro {
    font-size: 1.15em;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.revolution-intro strong {
    color: var(--neon-green);
}

.revolution-definitions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.revolution-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

.rev-term {
    font-weight: 700;
    color: var(--neon-green);
    min-width: 130px;
    font-size: 1.05em;
}

.rev-def {
    color: var(--text-secondary);
    font-size: 1.05em;
}

.revolution-body {
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--text-secondary);
}

.revolution-body strong {
    color: var(--text-primary);
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

.cta-button.primary {
    background: var(--emerald-button);
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4);
}

.cta-button.primary:hover {
    background: var(--emerald-hover);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: center;
    gap: clamp(40px, 6vw, 100px);
    padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 80px);
    background: var(--bg-gradient);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
    animation: countUp 0.8s ease;
}

.stat-number {
    font-size: 4em;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.2em;
    color: var(--text-medium);
    font-weight: 500;
    margin-top: 5px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.section-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    color: var(--text-light);
    max-width: 1200px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px);
    background: var(--bg-secondary);
}

/* Features Tabs */
.features-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.features-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid rgba(46, 125, 50, 0.3);
    background: rgba(46, 125, 50, 0.05);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1em;
    color: var(--text-secondary);
}

.features-tab:hover {
    background: rgba(46, 125, 50, 0.15);
    border-color: var(--primary-green);
}

.features-tab.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.features-tab .tab-icon {
    font-size: 1.2em;
}

.tab-leaf-icon {
    height: 20px;
    width: auto;
}

.features-tab.active .tab-leaf-icon {
    filter: brightness(0) invert(1);
}

.features-tab-content {
    display: none;
}

.features-tab-content.active {
    display: block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--neon-green);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

.feature-cannabis-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.rd-cannabis-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 4px;
}

.benefit-cannabis-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1.05em;
}

/* Analytics Section */
.analytics-section {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px);
    background: var(--bg-gradient);
}

.charts-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.chart-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.chart-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.chart-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 25px;
    text-align: center;
}

/* Pie Chart */
.pie-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pie-chart {
    width: 180px;
    height: 180px;
    transform: rotate(-90deg);
}

.pie-slice {
    fill: none;
    stroke-width: 80;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.slice-1 { stroke: #4CAF50; }
.slice-2 { stroke: #81C784; }
.slice-3 { stroke: #A5D6A7; }
.slice-4 { stroke: #C8E6C9; }

.pie-legend, .donut-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    color: #4b5563;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
}

.color-1 { background: #4CAF50; }
.color-2 { background: #81C784; }
.color-3 { background: #A5D6A7; }
.color-4 { background: #C8E6C9; }

/* Bar Chart */
.bar-chart-container {
    padding: 20px 0;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    gap: 10px;
}

.bar {
    flex: 1;
    max-width: 50px;
    background: linear-gradient(to top, var(--primary-green), var(--primary-light));
    border-radius: 8px 8px 0 0;
    height: var(--bar-height);
    position: relative;
    transition: height 1s ease;
    animation: barGrow 1s ease forwards;
}

.bar.highlight {
    background: linear-gradient(to top, #FFB300, #FFC107);
}

.bar::before {
    content: attr(data-value);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.95em;
    font-weight: 600;
    color: #1f2937;
}

.bar-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.95em;
    color: #6b7280;
}

/* Donut Chart */
.donut-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.donut-chart {
    width: 180px;
    height: 180px;
    transform: rotate(-90deg);
}

.donut-ring {
    fill: none;
    stroke: #eee;
    stroke-width: 30;
}

.donut-segment {
    fill: none;
    stroke-width: 30;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.segment-a { stroke: #2e7d32; }
.segment-b { stroke: #4CAF50; }
.segment-c { stroke: #81C784; }
.segment-smalls { stroke: #C8E6C9; }

.donut-center-text {
    fill: var(--text-light);
    font-size: 14px;
    text-anchor: middle;
    transform: rotate(90deg);
    transform-origin: center;
}

.donut-center-number {
    fill: var(--primary-green);
    font-size: 16px;
    font-weight: 700;
    text-anchor: middle;
    transform: rotate(90deg);
    transform-origin: center;
}

.grade-a { background: #2e7d32; }
.grade-b { background: #4CAF50; }
.grade-c { background: #81C784; }
.grade-smalls { background: #C8E6C9; }

/* Data Table */
.table-showcase {
    max-width: 1100px;
    margin: 0 auto 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.table-showcase.animate {
    opacity: 1;
    transform: translateY(0);
}

.table-title, .metrics-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 25px;
    text-align: center;
}

.table-container {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.data-table th {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
    color: white;
    font-weight: 600;
    font-size: 0.95em;
}

.data-table tr:hover {
    background: rgba(76, 175, 80, 0.05);
}

.batch-id {
    font-family: 'Monaco', monospace;
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

.stage-badge, .status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.95em;
    font-weight: 500;
}

.stage-veg { background: #E8F5E9; color: #2e7d32; }
.stage-flower { background: #FCE4EC; color: #C2185B; }
.stage-cure { background: #FFF3E0; color: #E65100; }
.stage-package { background: #E3F2FD; color: #1565C0; }

.status-active { background: #E8F5E9; color: #2e7d32; }
.status-complete { background: #E3F2FD; color: #1565C0; }

/* Metrics Grid */
.metrics-showcase {
    max-width: 1100px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.metrics-showcase.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.metric-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.metric-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.metric-value {
    font-size: 2em;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.metric-label {
    color: #6b7280;
    font-size: 0.95em;
    margin-bottom: 10px;
}

.metric-trend {
    font-size: 0.9em;
    font-weight: 500;
}

.metric-trend.positive {
    color: var(--primary-green);
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-proof-section {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px);
    background: linear-gradient(180deg, #f8fdf8 0%, white 50%, #f8fdf8 100%);
}

.social-proof-section .section-header h2 {
    color: #111827;
}

.social-proof-section .section-header p {
    color: #4b5563;
}

/* Cultivator Counter */
.cultivator-counter {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition);
}

.cultivator-counter.animate {
    opacity: 1;
    transform: scale(1);
}

.counter-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    box-shadow: 0 20px 60px rgba(46, 125, 50, 0.3);
    margin-bottom: 20px;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 20px 60px rgba(46, 125, 50, 0.3); }
    50% { box-shadow: 0 25px 70px rgba(46, 125, 50, 0.5); }
}

.counter-number {
    font-size: 3.5em;
    font-weight: 800;
    color: white;
}

.counter-plus {
    font-size: 2em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 2px;
}

.counter-label {
    font-size: 1.3em;
    color: #1f2937;
    font-weight: 500;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 4em;
    color: #34d399;
    opacity: 0.4;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-quote {
    font-size: 1.05em;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2em;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: #111827;
    font-size: 1.2em;
    margin-bottom: 3px;
}

.author-title {
    color: #6b7280;
    font-size: 0.9em;
    margin-bottom: 3px;
}

.author-location {
    color: #059669;
    font-size: 0.95em;
    font-weight: 500;
}

.testimonial-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.testimonial-stats .stat {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #1f2937;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95em;
    font-weight: 600;
}

/* Case Studies Section */
.case-studies-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.case-studies-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.subsection-title {
    font-size: 1.6em;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 40px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.case-study-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 2px solid transparent;
}

.case-study-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-hover);
}

.case-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.case-metric {
    font-size: 2.8em;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.case-label {
    font-size: 1.2em;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.case-description {
    font-size: 0.95em;
    color: #4b5563;
    line-height: 1.6;
}

/* Partners Section */
.partners-section {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.partners-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.partners-section .subsection-title {
    color: #111827;
}

.partners-subtitle {
    color: #4b5563;
    margin-bottom: 35px;
    font-size: 1.2em;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 24px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.partner-logo-img {
    height: 48px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.partner-name {
    font-size: 0.95em;
    font-weight: 700;
    color: #1f2937;
}

.partner-desc {
    font-size: 0.9em;
    color: #6b7280;
    line-height: 1.4;
}

.partners-note {
    color: #6b7280;
    font-size: 0.95em;
    font-style: italic;
}

/* Legacy support */
.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    min-width: 120px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.partner-icon {
    font-size: 2em;
}

/* ============================================
   END SOCIAL PROOF SECTION
   ============================================ */

/* Social Proof Section */
.social-proof-section {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px);
    background: var(--bg-primary);
}

.social-proof-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Trust Numbers */
.trust-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.trust-numbers.animate {
    opacity: 1;
    transform: translateY(0);
}

.trust-stat {
    padding: 30px 20px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.trust-number {
    display: block;
    font-size: 2.5em;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 8px;
}

.trust-label {
    display: block;
    font-size: 0.95em;
    color: var(--text-muted);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.testimonials-grid.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3em;
    color: var(--neon-green);
    opacity: 0.3;
    display: block;
    line-height: 0.5;
    margin-bottom: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-green), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1em;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-company {
    font-size: 0.85em;
    color: var(--text-muted);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.trust-badges.animate {
    opacity: 1;
    transform: translateY(0);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 30px;
}

.badge-icon {
    font-size: 1.2em;
}

.badge-text {
    font-size: 0.9em;
    font-weight: 500;
    color: var(--text-secondary);
}

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

@media (max-width: 768px) {
    .social-proof-section {
        padding: 60px 20px;
    }
    
    .trust-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .trust-number {
        font-size: 2em;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        padding: 10px 15px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.billing-toggle.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.toggle-label {
    font-weight: 500;
    color: var(--text-medium);
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--primary-green);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ddd;
    transition: 0.4s;
    border-radius: 32px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-green));
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

.save-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.95em;
    font-weight: 600;
    animation: pulseGlow 2s infinite;
    white-space: nowrap;
    display: inline-block;
}

@media (max-width: 480px) {
    .pricing-toggle {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .toggle-label {
        font-size: 0.9em;
    }
    
    .save-badge {
        padding: 4px 10px;
        font-size: 0.8em;
    }
}

.pricing-cards,
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    padding: 40px 35px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.pricing-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Featured Card (Professional) */
.pricing-card.featured {
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.2);
}

.pricing-card.featured.animate {
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-green));
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.95em;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 1.6em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.pricing-description {
    color: #94a3b8;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.pricing-amount {
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5em;
    vertical-align: top;
    color: #94a3b8;
}

.price {
    font-size: 3.5em;
    font-weight: 800;
    color: #ffffff;
    transition: var(--transition);
}

.period {
    color: #94a3b8;
    font-size: 1.2em;
}

.price-note {
    color: #94a3b8;
    font-size: 0.9em;
    margin-bottom: 25px;
}

.price-text {
    font-size: 2.5em;
    font-weight: 700;
    color: #ffffff;
}

.includes-text {
    color: var(--primary-green);
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
    padding-left: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #e2e8f0;
    font-size: 0.95em;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--primary-green);
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-features .x {
    color: #64748b;
    flex-shrink: 0;
}

.pricing-features li.not-included {
    color: #64748b;
}

.pricing-features li strong {
    color: #ffffff;
}

.pricing-cta {
    display: block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-green));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
}

.pricing-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

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

.pricing-cta.secondary:hover {
    background: var(--primary-green);
    color: white;
}

.pricing-cta.tertiary {
    background: transparent;
    border: 2px solid #ddd;
    color: #374151;
}

.pricing-cta.tertiary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.plan-guarantee {
    margin-top: 15px;
    font-size: 0.95em;
    color: #94a3b8;
}

/* Trust Indicators */
.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.pricing-trust.animate {
    opacity: 1;
    transform: translateY(0);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5563;
    font-size: 0.95em;
}

.trust-icon {
    font-size: 1.3em;
}

/* Security Badges Section */
.security-section {
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 50px;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
    border-radius: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.security-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.security-title {
    text-align: center;
    font-size: 1.6em;
    font-weight: 700;
    color: #374151;
    margin-bottom: 10px;
}

.security-subtitle {
    text-align: center;
    color: #4b5563;
    font-size: 1.05em;
    margin-bottom: 40px;
}

.security-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 2px solid transparent;
}

.security-badge:hover {
    transform: translateY(-3px);
    border-color: var(--primary-light);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
}

.badge-icon {
    font-size: 2.2em;
    flex-shrink: 0;
}

.badge-content {
    flex: 1;
}

.badge-title {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.05em;
    margin-bottom: 4px;
}

.badge-desc {
    color: #4b5563;
    font-size: 0.9em;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #d1fae5;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 0.95em;
    color: #374151;
    border: 1px solid #a7f3d0;
}

.note-icon {
    font-size: 1.3em;
}

@media (max-width: 768px) {
    .security-section {
        padding: 30px 20px;
    }
    
    .security-badges-grid {
        grid-template-columns: 1fr;
    }
    
    .security-note {
        flex-direction: column;
        text-align: center;
    }
}

/* FAQ Section */
.pricing-faq {
    max-width: 1400px;
    margin: 80px auto 0;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.pricing-faq.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-faq h3 {
    text-align: center;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: #1f2937;
    margin-bottom: clamp(30px, 4vw, 50px);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 40px);
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.faq-item h4 {
    color: #0f172a;
    margin-bottom: 10px;
    font-size: 1.05em;
    font-weight: 700;
}

.faq-item p {
    color: #374151;
    font-size: 0.95em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pricing-cards,
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        max-width: 100%;
        width: 100%;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-trust {
        gap: 20px;
    }
    
    .trust-item {
        flex-basis: 45%;
        justify-content: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .billing-toggle {
        flex-wrap: wrap;
    }
    
    .pricing-section {
        padding: 60px 20px;
    }
    
    .security-badges-grid {
        grid-template-columns: 1fr;
    }
}

/* Access Section */
.access-section {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px);
    background: var(--bg-secondary);
}

.access-container {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
    text-align: center;
}

.access-container.animate {
    opacity: 1;
    transform: translateY(0);
}

.search-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-box input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    font-size: 1.2em;
    border: 2px solid #ddd;
    border-radius: 30px;
    outline: none;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.2);
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-green));
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.search-results {
    margin-top: 20px;
}

.search-result-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-result-item a {
    background: var(--primary-green);
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.search-result-item a:hover {
    background: var(--primary-light);
}

.signup-prompt {
    text-align: center;
    margin-top: 30px;
    color: var(--text-medium);
}

.signup-link {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.signup-link:hover {
    text-decoration: underline;
}

/* Guarantee Banner */
.guarantee-banner {
    background: linear-gradient(90deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.05));
    border-top: 1px solid rgba(52, 211, 153, 0.3);
    border-bottom: 1px solid rgba(52, 211, 153, 0.3);
    padding: 20px 40px;
}

.guarantee-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.guarantee-icon {
    width: 40px;
    height: 40px;
    background: var(--neon-green);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    flex-shrink: 0;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guarantee-text strong {
    color: var(--neon-green);
    font-size: 1.1em;
}

.guarantee-text span {
    color: var(--text-secondary);
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .guarantee-banner {
        padding: 15px 20px;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-text {
        align-items: center;
    }
}

/* Signup Section */
.signup-section {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px);
    background: linear-gradient(135deg, #0A0F1A, var(--bg-primary));
}

.signup-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: clamp(35px, 5vw, 60px);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.signup-container.animate {
    opacity: 1;
    transform: translateY(0);
}

.signup-container h2 {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 10px;
}

.signup-container > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    font-size: 1em;
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.15);
}

.subdomain-input {
    display: flex;
    align-items: center;
}

.subdomain-input input {
    border-radius: 12px 0 0 12px;
    border-right: none;
}

.subdomain-suffix {
    background: #f5f5f5;
    padding: 14px 15px;
    border: 2px solid #ddd;
    border-left: none;
    border-radius: 0 12px 12px 0;
    color: var(--text-light);
    font-size: 0.9em;
    white-space: nowrap;
}

.submit-btn {
    background: var(--emerald-button);
    color: #FFFFFF;
    padding: 18px 40px;
    font-size: 1.2em;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--emerald-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.4);
}

.terms-text {
    text-align: center;
    font-size: 0.95em;
    color: var(--text-muted);
    margin-top: 15px;
}

.signup-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.signup-message.success {
    background: #E8F5E9;
    color: #2e7d32;
}

.signup-message.error {
    background: #FFEBEE;
    color: #C62828;
}

/* Demo Section for Enterprise */
.demo-section {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px);
    background: var(--bg-secondary);
}

.demo-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.demo-container.animate {
    opacity: 1;
    transform: translateY(0);
}

.demo-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(52, 211, 153, 0.15);
    color: var(--neon-green);
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.demo-content h2 {
    font-size: 2.2em;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.demo-content p {
    color: var(--text-secondary);
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.demo-benefits li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.demo-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

.demo-form-card {
    padding: 40px;
}

.demo-form .form-group {
    margin-bottom: 20px;
}

.demo-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

.demo-form input,
.demo-form select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1em;
    transition: var(--transition);
}

.demo-form input:focus,
.demo-form select:focus {
    outline: none;
    border-color: var(--neon-green);
}

.demo-form select {
    cursor: pointer;
}

.demo-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.demo-message.success {
    background: rgba(52, 211, 153, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.demo-message.error {
    background: #FFEBEE;
    color: #C62828;
}

@media (max-width: 900px) {
    .demo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .demo-content {
        text-align: center;
    }
    
    .demo-benefits {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .demo-section {
        padding: 60px 20px;
    }
    
    .demo-content h2 {
        font-size: 1.8em;
    }
    
    .demo-form-card {
        padding: 25px;
    }
}

/* Footer */
.footer {
    background: #0A0F1A;
    color: white;
    padding: 60px 40px 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--neon-green);
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--neon-green);
}

.footer-tagline {
    font-size: 0.9em;
    color: var(--text-muted);
    margin-top: 10px;
    max-width: 300px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9em;
}

.footer-legal {
    font-size: 0.85em;
    margin-top: 8px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-logo {
        font-size: 1.2em;
    }
    
    .logo-leaf {
        height: 32px;
        margin-right: 6px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-preview {
        order: -1;
    }
    
    .hero-dashboard-img {
        max-height: 320px;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-tagline {
        font-size: 1.2em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .stats-section {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 3em;
    }
    
    .section-header h2 {
        font-size: 2em;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .signup-container {
        padding: 30px 20px;
    }
    
    .data-table {
        font-size: 0.95em;
    }
    
    .data-table th,
    .data-table td {
        padding: 10px;
    }
    
    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1em;
    }
    
    .logo-leaf {
        height: 28px;
        margin-right: 5px;
    }
    
    .top-nav {
        padding: 12px 15px;
    }
    
    .hero-section {
        padding: 80px 20px 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-preview {
        order: -1;
    }
    
    .hero-dashboard-img {
        max-height: 280px;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1em;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-box input,
    .search-btn {
        width: 100%;
    }
}

/* ============================================
   NEW SECTIONS - AI, Moisture, Financial, Enterprise
   ============================================ */

/* Featured Feature Cards */
.feature-card.featured {
    position: relative;
    border: 2px solid var(--primary-green);
    background: linear-gradient(135deg, #f0fff0 0%, #e8f5e9 100%);
}

.feature-card.featured .feature-title {
    color: #064e3b;
}

.feature-card.featured .feature-description {
    color: #1e293b;
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875em;
    font-weight: 600;
}

/* AI Analytics Visualization Section */
.ai-visualization-section {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px);
    background: linear-gradient(135deg, #0d1a0f 0%, #1a2e1c 50%, #0d1a0f 100%);
    position: relative;
    overflow: hidden;
}

.ai-visualization-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(46, 125, 50, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 200, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ai-viz-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ai-viz-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.ai-viz-text {
    color: white;
}

.ai-viz-text h2 {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #90EE90, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-viz-subtitle {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.ai-metrics-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.ai-metric-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.ai-metric-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
    border-color: rgba(144, 238, 144, 0.3);
}

.ai-metric-item .metric-icon {
    font-size: 1.4em;
    margin-bottom: 0;
}

.ai-metric-item .metric-label {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0;
}

.ai-viz-image {
    position: relative;
}

.ai-viz-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-viz-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.3), rgba(0, 200, 255, 0.2));
    border-radius: 30px;
    z-index: -1;
    filter: blur(30px);
    animation: glow-pulse 4s ease-in-out infinite;
}

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

@media (max-width: 1024px) {
    .ai-viz-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ai-viz-text h2 {
        font-size: 2.2em;
    }
    
    .ai-metrics-list {
        grid-template-columns: 1fr;
    }
    
    .ai-viz-image {
        order: -1;
    }
}

@media (max-width: 600px) {
    .ai-visualization-section {
        padding: 60px 20px;
    }
    
    .ai-viz-text h2 {
        font-size: 1.8em;
    }
    
    .ai-viz-subtitle {
        font-size: 1.2em;
    }
}

/* AI Data Scientist Section */
.ai-section {
    padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 80px);
    background: 
        linear-gradient(rgba(248, 253, 248, 0.92), rgba(255, 255, 255, 0.95)),
        url('/static/images/ai-brain-analytics.png');
    background-size: cover;
    background-position: center;
}

.ai-section .section-header h2 {
    color: #0f172a;
}

.ai-section .section-header p {
    color: #334155;
}

.ai-hero-image {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.ai-dashboard-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), 0 0 40px rgba(46, 125, 50, 0.2);
    border: 3px solid rgba(46, 125, 50, 0.3);
}

.ai-showcase {
    max-width: 1400px;
    margin: 40px auto;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ai-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.ai-feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.ai-feature-icon {
    font-size: 2em;
    flex-shrink: 0;
}

.ai-feature-content h4 {
    color: var(--primary-green);
    margin-bottom: 4px;
    font-size: 1.2em;
}

.ai-feature-content p {
    color: var(--text-light);
    font-size: 0.95em;
}

.ai-feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-green));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* AI Chat Mockup */
.ai-chat-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    font-weight: 700;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

.chat-provider {
    font-size: 0.95em;
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 12px;
}

.chat-messages {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 300px;
}

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.95em;
    line-height: 1.5;
    color: #1e293b;
}

.chat-message.user {
    background: #e3f2fd;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    color: #1e3a5f;
}

.chat-message.assistant {
    background: #f5f5f5;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    color: #1e293b;
}

.chat-message.assistant.typing {
    background: #f5f5f5;
    padding: 16px 20px;
}

.typing-indicator {
    display: flex;
    gap: 6px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-8px); opacity: 1; }
}

/* AI Tools Grid */
.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.ai-tool-card {
    text-align: center;
    padding: 24px 16px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.ai-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* AI Examples Section */
.ai-examples-section {
    max-width: 1400px;
    margin: 60px auto 0;
    text-align: center;
}

.ai-examples-title {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.ai-prompts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.ai-prompt-item {
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95em;
    color: var(--text-secondary);
    text-align: left;
    transition: var(--transition);
}

.ai-prompt-item:hover {
    border-color: var(--neon-green);
    color: var(--text-primary);
}

/* AI Output Example */
.ai-output-example {
    max-width: 1200px;
    margin: 60px auto 0;
}

.ai-output-title {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.ai-output-card {
    padding: 30px;
    text-align: left;
}

.ai-output-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.output-icon {
    font-size: 1.5em;
}

.output-label {
    font-weight: 600;
    color: var(--neon-green);
}

.ai-narrative {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ai-narrative strong {
    color: var(--text-primary);
}

.ai-output-table {
    margin: 25px 0;
    overflow-x: auto;
}

.ai-output-table table {
    width: 100%;
    border-collapse: collapse;
}

.ai-output-table th,
.ai-output-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.ai-output-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9em;
}

.ai-output-table td {
    color: var(--text-secondary);
}

.ai-output-table td.negative {
    color: #ef5350;
    font-weight: 600;
}

.ai-output-table td.positive {
    color: var(--neon-green);
    font-weight: 600;
}

.ai-recommendation {
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 15px;
    background: rgba(52, 211, 153, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--neon-green);
}

.ai-recommendation strong {
    color: var(--neon-green);
}

@media (max-width: 768px) {
    .ai-prompts-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-output-card {
        padding: 20px;
    }
    
    .ai-output-table th,
    .ai-output-table td {
        padding: 10px 8px;
        font-size: 0.9em;
    }
}

.ai-tool-card .tool-icon {
    font-size: 2.5em;
    margin-bottom: 12px;
}

.tool-cannabis-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.ai-tool-card h4 {
    color: var(--primary-green);
    font-size: 0.95em;
    margin-bottom: 6px;
}

.ai-tool-card p {
    color: var(--text-light);
    font-size: 0.95em;
}

.ai-tool-card .tool-subtext {
    font-size: 0.875em;
    color: var(--primary-green);
    font-style: italic;
    margin-top: 8px;
    line-height: 1.4;
}

/* Moisture Analytics Section */
.moisture-section {
    padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 80px);
    background: linear-gradient(180deg, #e3f2fd 0%, #f8fdf8 100%);
}

.moisture-showcase {
    max-width: 1200px;
    margin: 40px auto;
}

.moisture-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.moisture-metric-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.moisture-metric-card .metric-value {
    font-size: 3em;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.moisture-metric-card .metric-label {
    color: var(--text-medium);
    font-size: 1.2em;
    margin-bottom: 12px;
}

.moisture-metric-card .metric-indicator {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.95em;
    font-weight: 600;
    background: #f0f0f0;
    color: var(--text-medium);
}

.moisture-metric-card .metric-indicator.optimal {
    background: #c8e6c9;
    color: var(--primary-green);
}

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

.moisture-feature {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.moisture-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.moisture-feature .mf-icon {
    font-size: 2.5em;
    margin-bottom: 16px;
}

.moisture-feature h4 {
    color: var(--primary-green);
    margin-bottom: 8px;
}

.moisture-feature p {
    color: var(--text-light);
    font-size: 0.95em;
}

/* Financial Suite Section */
.financial-suite-section {
    padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 80px);
    background: linear-gradient(180deg, #ffffff 0%, #f0f7f0 100%);
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto;
}

.financial-card {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.financial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.financial-card.featured {
    border: 2px solid var(--primary-green);
    background: linear-gradient(135deg, #f0fff0 0%, #ffffff 100%);
}

.fc-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875em;
    font-weight: 600;
}

.fc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.fc-icon {
    font-size: 2em;
}

.fc-header h4 {
    color: var(--primary-green);
    font-size: 1.2em;
}

.fc-features {
    list-style: none;
}

.fc-features li {
    padding: 8px 0;
    color: var(--text-medium);
    font-size: 0.95em;
    border-bottom: 1px solid #f0f0f0;
}

.fc-features li:last-child {
    border-bottom: none;
}

.fc-features li::before {
    content: "✓ ";
    color: var(--primary-green);
    font-weight: 600;
}

/* Financial Visualization Showcase */
.financial-viz-showcase {
    margin-top: 60px;
    padding: 60px;
    background: linear-gradient(135deg, #0a1f0d 0%, #1a3a20 50%, #0a1f0d 100%);
    border-radius: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.financial-viz-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(46, 125, 50, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 200, 100, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.fv-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.fv-image {
    position: relative;
}

.fv-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.fv-image::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.4), rgba(0, 180, 100, 0.2));
    border-radius: 25px;
    z-index: -1;
    filter: blur(25px);
}

.fv-text {
    color: white;
}

.fv-text h3 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #90EE90, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fv-subtitle {
    font-size: 1.25em;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
}

.fv-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.fv-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.fv-highlight:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.fv-icon {
    font-size: 1.6em;
    flex-shrink: 0;
}

.fv-highlight strong {
    display: block;
    color: #90EE90;
    font-size: 1em;
    margin-bottom: 4px;
}

.fv-highlight p {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .fv-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .financial-viz-showcase {
        padding: 40px 30px;
    }
    
    .fv-image {
        order: -1;
    }
}

@media (max-width: 600px) {
    .financial-viz-showcase {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .fv-text h3 {
        font-size: 1.7em;
    }
}

/* Enterprise Section */
.enterprise-section {
    padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 80px);
    background: 
        linear-gradient(rgba(26, 71, 42, 0.92), rgba(46, 125, 50, 0.95)),
        url('/static/images/financial-metrics.png');
    background-size: cover;
    background-position: center bottom;
    color: white;
}

.enterprise-section .section-header h2,
.enterprise-section .section-header p {
    color: white;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto;
}

.enterprise-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.enterprise-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.enterprise-card.featured {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(46, 125, 50, 0.3);
}

.ec-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700, #f59e0b);
    color: #1a472a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875em;
    font-weight: 700;
}

.ec-icon {
    font-size: 2.5em;
    margin-bottom: 16px;
}

.enterprise-card h4 {
    color: #1a472a;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.enterprise-card > p {
    color: #374151;
    font-size: 0.95em;
    margin-bottom: 16px;
}

.ec-list {
    list-style: none;
}

.ec-list li {
    padding: 6px 0;
    color: #374151;
    font-size: 0.9em;
}

.ec-list li::before {
    content: "✓ ";
    color: #2E7D32;
    font-weight: 600;
}

/* Roles Grid */
.roles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.role-tag {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.875em;
    font-weight: 600;
}

.role-tag.admin {
    background: rgba(239, 68, 68, 0.25);
    color: #991b1b;
}

.role-tag.cultivation {
    background: rgba(76, 175, 80, 0.3);
    color: #166534;
}

.role-tag.finance {
    background: rgba(59, 130, 246, 0.25);
    color: #1e40af;
}

.role-tag.compliance {
    background: rgba(245, 158, 11, 0.25);
    color: #92400e;
}

/* Dashboard Roles Preview */
.dashboard-roles-preview {
    max-width: 1400px;
    margin: 60px auto 0;
    text-align: center;
}

.dashboard-roles-preview h3 {
    color: white;
    font-size: 1.5em;
    margin-bottom: 8px;
}

.dashboard-roles-preview > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.role-dashboards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.role-dashboard {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
}

.rd-header {
    padding: 14px 20px;
    font-weight: 600;
    color: white;
}

.rd-header.cultivation {
    background: linear-gradient(135deg, #2e7d32, #4CAF50);
}

.rd-header.finance {
    background: linear-gradient(135deg, #1565c0, #42a5f5);
}

.rd-header.compliance {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1a1a1a;
}

.rd-content {
    padding: 16px 20px;
}

.rd-content ul {
    list-style: none;
}

.rd-content li {
    padding: 6px 0;
    color: #2e7d32;
    font-size: 0.9em;
}

.rd-content li::before {
    content: "• ";
    color: var(--primary-green);
}

/* Responsive Updates for New Sections */
@media (max-width: 1024px) {
    .ai-features {
        grid-template-columns: 1fr;
    }
    
    .ai-tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .moisture-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .financial-grid,
    .enterprise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .role-dashboards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ai-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .moisture-metrics {
        grid-template-columns: 1fr;
    }
    
    .moisture-features,
    .financial-grid,
    .enterprise-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-section,
    .moisture-section,
    .financial-suite-section,
    .enterprise-section {
        padding: 60px 20px;
    }
}

/* ========================================
   ZIG-ZAG ALTERNATING SECTIONS (NEW)
   ======================================== */

.zigzag-section {
    padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 80px);
    background: var(--bg-primary);
}

.zigzag-section.zigzag-alt {
    background: var(--bg-secondary);
}

.zigzag-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zigzag-container.text-left {
    grid-template-areas: "text image";
}

.zigzag-container.image-left {
    grid-template-areas: "image text";
}

.zigzag-container.text-left .zigzag-text {
    grid-area: text;
}

.zigzag-container.text-left .zigzag-image {
    grid-area: image;
}

.zigzag-container.image-left .zigzag-text {
    grid-area: text;
}

.zigzag-container.image-left .zigzag-image {
    grid-area: image;
}

.section-badge {
    display: inline-block;
    background: rgba(52, 211, 153, 0.15);
    color: var(--neon-green);
    border: 1px solid rgba(52, 211, 153, 0.3);
    padding: clamp(8px, 1vw, 12px) clamp(16px, 2vw, 24px);
    border-radius: 20px;
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    font-weight: 600;
    margin-bottom: clamp(16px, 2vw, 24px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zigzag-text h2 {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.zigzag-lead {
    font-size: 1.25em;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.zigzag-body {
    font-size: 1.2em;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.zigzag-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.zigzag-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05em;
    color: var(--text-dark);
}

.bullet-icon {
    font-size: 1.3em;
}

/* Glass Card Styling */
.glass-card {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 25px rgba(52, 211, 153, 0.1);
    border: 1px solid var(--border-color);
}

/* Profit Visual Card */
.profit-visual .profit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.profit-title {
    font-weight: 700;
    font-size: 1.2em;
    color: var(--text-dark);
}

.profit-badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.95em;
    font-weight: 600;
}

.profit-badge.positive {
    background: rgba(52, 211, 153, 0.15);
    color: var(--neon-green);
}

.profit-metric {
    text-align: center;
    margin-bottom: 24px;
}

.profit-value {
    font-size: 3.5em;
    font-weight: 800;
    color: var(--neon-green);
    text-shadow: 0 0 30px rgba(52, 211, 153, 0.5);
    display: block;
}

.profit-unit {
    font-size: 1em;
    color: var(--text-medium);
    display: block;
    margin-top: 4px;
}

.profit-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(248, 253, 248, 0.8);
    border-radius: 12px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95em;
}

.breakdown-label {
    color: var(--text-medium);
}

.breakdown-value {
    font-weight: 600;
}

.breakdown-value.positive {
    color: var(--primary-green);
}

.breakdown-value.negative {
    color: #e53935;
}

.profit-insight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    font-size: 0.9em;
    color: var(--text-dark);
}

.insight-icon {
    font-size: 1.2em;
}

/* Yield Visual Card */
.yield-visual .yield-header {
    margin-bottom: 20px;
}

.yield-title {
    font-weight: 700;
    font-size: 1.2em;
    color: var(--text-dark);
}

.yield-chart {
    margin-bottom: 20px;
}

.yield-bar-group {
    margin-bottom: 16px;
}

.yield-bar-label {
    font-size: 0.9em;
    color: var(--text-medium);
    margin-bottom: 6px;
}

.yield-bar-container {
    height: 28px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.yield-bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    font-size: 0.95em;
    font-weight: 600;
    color: white;
    border-radius: 8px;
    transition: width 1s ease;
}

.yield-bar.sellable {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
}

.yield-bar.b-grade {
    background: linear-gradient(135deg, #42a5f5, #64b5f6);
}

.yield-bar.waste {
    background: linear-gradient(135deg, #ef5350, #e57373);
}

.yield-metric {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 16px;
    background: rgba(248, 253, 248, 0.8);
    border-radius: 12px;
}

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

.yield-stat .stat-value {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
}

.yield-stat .stat-value.negative {
    color: #e53935;
}

.yield-stat .stat-label {
    font-size: 0.95em;
    color: #1f2937;
}

/* Efficiency Audit Hero Section */
.efficiency-audit-section {
    padding: 80px 5%;
    background: var(--bg-dark);
}

.efficiency-header {
    max-width: 1400px;
    margin: 0 auto 50px;
    text-align: center;
}

.efficiency-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: white;
    margin: 16px 0 24px;
}

.efficiency-lead {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    color: var(--text-light);
    margin-bottom: 16px;
}

.efficiency-body {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
}

.efficiency-bullets {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.efficiency-bullet {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 1em;
}

.efficiency-bullet .bullet-icon {
    font-size: 1.2em;
}

/* Partner Facility Badge */
.strain-cards-title {
    text-align: center;
    margin-bottom: 24px;
}

.partner-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 1em;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

/* Strain Hero Grid - Large Side-by-Side Cards */
.strain-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 32px;
}

.strain-hero-card {
    padding: 32px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strain-hero-card:hover {
    transform: translateY(-4px);
}

.strain-hero-card.profit-maker {
    border: 3px solid var(--primary-green);
    box-shadow: 0 0 30px rgba(46, 125, 50, 0.25);
}

.strain-hero-card.labor-sink {
    border: 3px solid #ff9800;
    box-shadow: 0 0 30px rgba(255, 152, 0, 0.2);
}

/* Strain Comparison Cards - Legacy Support */
.strain-comparison-container {
    width: 100%;
}

.strain-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.strain-card {
    padding: 20px;
    border-radius: 16px;
}

.strain-card.profit-maker {
    border: 2px solid var(--primary-green);
}

.strain-card.labor-sink {
    border: 2px solid #ff9800;
}

/* Hero Card Metric Bars */
.metric-bar-container.hero {
    height: 32px;
}

/* Strain Profit Display */
.strain-profit-display {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    margin-top: 8px;
}

.strain-profit-display.winner {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15), rgba(76, 175, 80, 0.1));
    border: 1px solid rgba(46, 125, 50, 0.3);
}

.strain-profit-display.loser {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15), rgba(255, 193, 7, 0.1));
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.strain-profit-display .profit-value {
    display: block;
    font-size: 3em;
    font-weight: 800;
}

.strain-profit-display.winner .profit-value {
    color: var(--primary-green);
}

.strain-profit-display.loser .profit-value {
    color: #e65100;
}

.strain-profit-display .profit-label {
    font-size: 0.95em;
    color: var(--text-medium);
    font-weight: 500;
}

.strain-profit-display .profit-subtext {
    display: block;
    font-size: 0.95em;
    color: var(--text-medium);
    margin-top: 8px;
    font-style: italic;
    opacity: 0.9;
}

/* Strain Insight Note */
.strain-insight-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: clamp(14px, 2vw, 20px) clamp(20px, 3vw, 30px);
    margin: 24px auto;
    max-width: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.strain-insight-note .insight-icon {
    font-size: 1.3em;
}

.strain-insight-note .insight-text {
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Gap Hero Metric */
.strain-gap-hero {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: clamp(20px, 3vw, 30px) clamp(25px, 3vw, 40px);
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.15), rgba(255, 152, 0, 0.1));
    border: 2px solid rgba(229, 57, 53, 0.4);
    border-radius: 16px;
    max-width: 1100px;
    margin: 0 auto 32px;
}

.strain-gap-hero .gap-icon {
    font-size: 2em;
}

.strain-gap-hero .gap-value {
    font-size: 1.4em;
    font-weight: 700;
    color: #ef5350;
    margin-bottom: 6px;
    display: block;
}

.strain-gap-hero .gap-batch-total {
    display: block;
    font-size: 0.95em;
    color: var(--text-secondary);
    margin-top: 4px;
}

.strain-gap-hero .gap-batch-total strong {
    color: #ef5350;
}

.strain-gap-hero .gap-impact {
    font-size: 1em;
    color: var(--text-light);
    line-height: 1.5;
}

.strain-gap-hero .gap-impact strong {
    color: #ef5350;
}

/* Efficiency CTA */
.efficiency-cta {
    text-align: center;
}

/* Hero Strain Responsive */
@media (max-width: 900px) {
    .strain-hero-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .efficiency-header h2 {
        font-size: 2em;
    }
    
    .efficiency-bullets {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

.strain-header {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.strain-badge {
    display: block;
    font-size: 0.95em;
    font-weight: 600;
    margin-bottom: 4px;
}

.strain-header.profit .strain-badge {
    color: var(--primary-green);
}

.strain-header.warning .strain-badge {
    color: #ff9800;
}

.strain-name {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--text-dark);
    margin: 4px 0 8px 0;
}

.strain-verdict {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875em;
    font-weight: 700;
    text-transform: uppercase;
}

.strain-verdict.keep {
    background: rgba(46, 125, 50, 0.15);
    color: var(--primary-green);
}

.strain-verdict.cull {
    background: rgba(255, 152, 0, 0.15);
    color: #e65100;
}

.strain-metrics {
    margin-bottom: 16px;
}

.strain-metric-row {
    margin-bottom: 12px;
}

.strain-metric-row .metric-label {
    display: block;
    font-size: 0.9em;
    color: var(--text-medium);
    margin-bottom: 4px;
}

.metric-bar-container {
    height: 24px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 2px;
}

.metric-bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    font-size: 0.9em;
    font-weight: 600;
    color: white;
    border-radius: 6px;
    transition: width 1s ease;
}

.metric-bar.sellable {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
}

.metric-bar.sellable-weak {
    background: linear-gradient(135deg, #8bc34a, #aed581);
}

.metric-bar.waste {
    background: linear-gradient(135deg, #ef5350, #e57373);
}

.metric-bar.waste-heavy {
    background: linear-gradient(135deg, #d32f2f, #e53935);
}

.strain-metric-row .metric-price {
    display: block;
    font-size: 0.875em;
    color: var(--text-medium);
    text-align: right;
}

.strain-revenue {
    text-align: center;
    padding: 12px;
    background: rgba(248, 253, 248, 0.8);
    border-radius: 10px;
}

.revenue-value {
    display: block;
    font-size: 1.8em;
    font-weight: 800;
}

.revenue-value.profit {
    color: var(--primary-green);
}

.revenue-value.loss {
    color: #e65100;
}

.revenue-label {
    font-size: 0.9em;
    color: var(--text-medium);
}

/* Gap Metric */
.strain-gap-metric {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1), rgba(255, 152, 0, 0.1));
    border: 1px solid rgba(229, 57, 53, 0.3);
    border-radius: 12px;
}

.gap-icon {
    font-size: 1.5em;
}

.gap-content {
    flex: 1;
}

.gap-value {
    display: block;
    font-size: 1.2em;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 4px;
}

.gap-impact {
    font-size: 0.95em;
    color: var(--text-dark);
    line-height: 1.4;
}

.gap-impact strong {
    color: #d32f2f;
}

/* Strain Comparison Responsive */
@media (max-width: 600px) {
    .strain-comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .strain-card {
        padding: 16px;
    }
    
    .revenue-value {
        font-size: 1.5em;
    }
}

/* Financial Visual Card */
.financial-visual .fin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.fin-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.fin-filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.95em;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.fin-filter-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--neon-green);
}

.filter-icon {
    font-size: 1em;
}

.filter-text {
    font-weight: 500;
}

.filter-arrow {
    font-size: 0.7em;
    opacity: 0.6;
    margin-left: 2px;
}

.fin-title {
    font-weight: 700;
    font-size: 1.2em;
    color: var(--text-dark);
}

.fin-live {
    background: #e53935;
    color: white;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.875em;
    font-weight: 700;
    animation: pulseGlow 2s infinite;
}

.fin-ticker {
    text-align: center;
    margin-bottom: 24px;
}

.ticker-value {
    font-size: 3.5em;
    font-weight: 800;
    color: white;
    display: block;
}

.ticker-unit {
    font-size: 0.875em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    vertical-align: middle;
}

.ticker-trend {
    font-size: 1em;
    display: block;
    margin-top: 4px;
}

.ticker-trend.positive {
    color: var(--primary-green);
}

.fin-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.fin-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: #f1f5f9;
    border-radius: 8px;
    font-size: 0.95em;
}

.fin-item.credit {
    background: #e8f5e9;
    border: 1px solid #4caf50;
}

.fin-item.credit .fin-label {
    color: #1b5e20;
    font-weight: 600;
}

.fin-amount.credit {
    color: #1b5e20;
    font-weight: 700;
}

.fin-label {
    color: #0f172a;
    font-weight: 600;
}

.fin-amount {
    font-weight: 700;
    color: #1e293b;
}

.fin-breakeven {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.25), rgba(76, 175, 80, 0.15));
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.be-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.be-value {
    font-weight: 700;
    color: #4ade80;
    font-size: 1.2em;
}

.be-progress {
    margin-left: auto;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.7);
}

/* QC Visual Card */
.qc-visual .qc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.qc-title {
    font-weight: 700;
    font-size: 1.2em;
    color: var(--text-dark);
}

.qc-status {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.95em;
    font-weight: 600;
}

.qc-status.good {
    background: rgba(76, 175, 80, 0.15);
    color: var(--primary-green);
}

.qc-gauge {
    margin-bottom: 20px;
}

.gauge-track {
    height: 24px;
    background: linear-gradient(90deg, #e57373 0%, #81c784 40%, #81c784 60%, #ffb74d 100%);
    border-radius: 12px;
    position: relative;
    margin-bottom: 8px;
}

.gauge-fill {
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.gauge-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 4px;
    height: 32px;
    background: var(--primary-green);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gauge-marker {
    position: absolute;
    top: -6px;
    width: 2px;
    height: 36px;
    background: rgba(255, 255, 255, 0.8);
}

.gauge-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875em;
    color: var(--text-medium);
}

.optimal-label {
    color: var(--primary-green);
    font-weight: 600;
}

.qc-metric {
    text-align: center;
    margin-bottom: 20px;
}

.qc-value {
    font-size: 3em;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
}

.qc-label {
    font-size: 0.95em;
    color: var(--text-medium);
}

.qc-alerts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qc-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.9em;
}

.qc-alert.success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-green);
}

.qc-alert.warning {
    background: rgba(255, 193, 7, 0.15);
    color: #f57c00;
}

.alert-icon {
    font-size: 1.2em;
}

/* Responsive Zig-Zag */
@media (max-width: 1024px) {
    .zigzag-container {
        gap: 40px;
    }
    
    .zigzag-text h2 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .zigzag-section {
        padding: 60px 20px;
    }
    
    .zigzag-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .zigzag-container.text-left,
    .zigzag-container.image-left {
        grid-template-areas: 
            "image"
            "text";
    }
    
    .zigzag-text h2 {
        font-size: 1.8em;
    }
    
    .zigzag-lead {
        font-size: 1.2em;
    }
    
    .zigzag-body {
        font-size: 1em;
    }
    
    .glass-card {
        padding: 20px;
    }
    
    .profit-value,
    .ticker-value,
    .qc-value {
        font-size: 2.5em;
    }
    
    .yield-stat .stat-value {
        font-size: 1.5em;
    }
    
    /* Responsive Data Tables - Stacked Cards on Mobile */
    .fin-breakeven {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .be-progress {
        margin-left: 0;
    }
    
    .fin-item {
        padding: 12px 16px;
        border-left: 3px solid var(--primary-green);
    }
    
    .fin-breakdown {
        gap: 12px;
    }
    
    .yield-metric {
        flex-direction: column;
        gap: 12px;
    }
    
    .yield-stat {
        padding: 16px;
        background: rgba(248, 253, 248, 0.9);
        border-radius: 12px;
        border-left: 3px solid var(--primary-green);
    }
    
    .yield-bar-group {
        margin-bottom: 12px;
    }
    
    .yield-bar-label {
        font-size: 0.95em;
        margin-bottom: 6px;
    }
    
    /* CPR Math Breakdown - Stacked Cards */
    .cpd-math-breakdown {
        padding: 15px;
    }
    
    .math-row {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    
    .math-row:last-child {
        border-bottom: none;
    }
}

/* Origin / Dual DNA Section */
.origin-section {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.origin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(52, 211, 153, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.origin-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.origin-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(52, 211, 153, 0.1));
    color: var(--neon-green);
    padding: clamp(8px, 1vw, 12px) clamp(16px, 2vw, 24px);
    border-radius: 20px;
    font-size: clamp(0.85rem, 1vw, 1rem);
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.origin-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 40px;
    line-height: 1.2;
}

.origin-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.origin-text {
    max-width: 1300px;
    margin: 0 auto;
}

.origin-lead {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 20px;
    font-style: italic;
}

.origin-body {
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.origin-conclusion {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
    padding: 25px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.credential-icon {
    font-size: 2em;
    flex-shrink: 0;
    line-height: 1;
}

.credential-icon-img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.credential-content {
    color: var(--text-secondary);
    font-size: 1.05em;
    line-height: 1.6;
}

.credential-content strong {
    color: var(--neon-green);
    display: block;
    margin-bottom: 4px;
    font-size: 1.2em;
}

.origin-why {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.why-headline {
    color: var(--neon-green);
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 15px;
}

.origin-mic-drop {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--neon-green);
    text-align: center;
    margin-top: 35px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.05));
    border-radius: 16px;
    border: 1px solid var(--neon-green);
}

.origin-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.origin-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.origin-stat:hover {
    border-color: var(--neon-green);
    transform: translateY(-3px);
}

.origin-stat.highlight {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.05));
    border-color: var(--neon-green);
}

.origin-stat-icon {
    font-size: 2em;
}

.origin-stat-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.origin-stat-label {
    font-size: 0.95em;
    font-weight: 600;
    color: var(--text-secondary);
}

.origin-stat.highlight .origin-stat-label {
    color: var(--neon-green);
}

.origin-stat-divider {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-muted);
}

/* Sister Facility Case Study */
.sister-facility-case {
    margin-top: 50px;
    padding: clamp(25px, 4vw, 45px);
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.08), rgba(52, 211, 153, 0.03));
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 20px;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.case-header {
    text-align: center;
    margin-bottom: 24px;
}

.case-title {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 8px;
    text-align: center;
}

.case-subtitle {
    display: block;
    font-size: 1em;
    color: var(--text-medium);
    font-style: italic;
    text-align: center;
}

.case-body {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.case-body:last-child {
    margin-bottom: 0;
}

.case-body strong {
    color: var(--text-primary);
}

/* Case Benefits Layout */
.case-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.case-benefit {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--neon-green);
}

.benefit-icon {
    font-size: 1.4em;
    flex-shrink: 0;
    line-height: 1;
}

.benefit-content {
    font-size: 0.95em;
    line-height: 1.6;
    color: var(--text-secondary);
}

.benefit-content strong {
    color: var(--neon-green);
    display: block;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .sister-facility-case {
        padding: 25px 20px;
        margin-top: 35px;
    }
    
    .case-title {
        font-size: 1.2em;
    }
    
    .case-body {
        font-size: 0.95em;
    }
    
    .case-benefit {
        padding: 14px;
    }
    
    .benefit-content {
        font-size: 0.9em;
    }
}

@media (max-width: 768px) {
    .origin-section {
        padding: 60px 20px;
    }
    
    .origin-headline {
        font-size: 2em;
    }
    
    .origin-lead {
        font-size: 1.2em;
    }
    
    .origin-body {
        font-size: 1em;
    }
    
    .origin-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .origin-stat {
        width: 100%;
        max-width: 250px;
    }
    
    .origin-stat-divider {
        font-size: 1.4em;
    }
}

/* Contact Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.8em;
}

.modal-content > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-green));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.contact-form .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
}

.contact-message.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.contact-message.error {
    display: block;
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, var(--bg-primary) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-top: 1px solid var(--border-color);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: var(--emerald-button);
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
}

.sticky-cta-btn:hover {
    background: var(--emerald-hover);
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: block;
    }
}

/* Tooltips for Industry Terms */
.tooltip-term {
    position: relative;
    border-bottom: 1px dotted var(--neon-green);
    cursor: help;
    display: inline;
}

.tooltip-term::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 400;
    line-height: 1.5;
    width: max-content;
    max-width: 280px;
    white-space: normal;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 1000;
    pointer-events: none;
}

.tooltip-term::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--bg-card);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 1001;
}

.tooltip-term:hover::after,
.tooltip-term:hover::before,
.tooltip-term.tooltip-active::after,
.tooltip-term.tooltip-active::before {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .tooltip-term::after {
        left: 0;
        transform: translateX(0);
        max-width: 220px;
    }
    
    .tooltip-term::before {
        left: 20px;
        transform: translateX(0);
    }
}

/* Tooltip Icons (?) for Educational Content */
.tooltip-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-left: 4px;
    background: rgba(52, 211, 153, 0.2);
    border: 1px solid var(--neon-green);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    color: var(--neon-green);
    cursor: help;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.tooltip-icon:hover {
    background: var(--neon-green);
    color: #1A1A2E;
}

.tooltip-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #333333;
    color: #FFFFFF;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    width: max-content;
    max-width: 250px;
    white-space: normal;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 1000;
    pointer-events: none;
}

.tooltip-icon::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #333333;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 1001;
}

.tooltip-icon:hover::after,
.tooltip-icon:hover::before,
.tooltip-icon.tooltip-active::after,
.tooltip-icon.tooltip-active::before {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .tooltip-icon::after {
        left: auto;
        right: -10px;
        transform: translateX(0);
        max-width: 200px;
    }
    
    .tooltip-icon::before {
        left: auto;
        right: 10px;
        transform: translateX(0);
    }
}

/* Getting Started / Onboarding Timeline Section */
.getting-started-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.timeline-container {
    max-width: 1200px;
    margin: 60px auto 0;
}

.timeline {
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--neon-green) 0%, var(--emerald-button) 100%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -60px;
    top: 20px;
    width: 44px;
    height: 44px;
    background: var(--bg-primary);
    border: 3px solid var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-day {
    font-size: 10px;
    font-weight: 700;
    color: var(--neon-green);
    text-align: center;
    line-height: 1.1;
}

.timeline-highlight .timeline-marker {
    background: var(--neon-green);
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.5);
}

.timeline-highlight .timeline-day {
    color: var(--bg-primary);
}

.timeline-content {
    padding: 24px 30px;
    margin-left: 20px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1rem;
}

.timeline-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.timeline-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: 700;
}

.timeline-checklist li:last-child {
    margin-bottom: 0;
}

/* Onboarding Support Cards */
.onboarding-support {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 40px);
    max-width: 1200px;
    margin: 60px auto 0;
}

.support-card {
    padding: 30px;
    text-align: center;
}

.support-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.support-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.support-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Timeline Responsive */
@media (max-width: 768px) {
    .getting-started-section {
        padding: 60px 5%;
    }
    
    .timeline {
        padding-left: 50px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-marker {
        left: -50px;
        width: 36px;
        height: 36px;
    }
    
    .timeline-day {
        font-size: 9px;
    }
    
    .timeline-content {
        padding: 20px;
        margin-left: 10px;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .onboarding-support {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* AI Data Governance Section */
.ai-governance-section {
    margin-top: 50px;
    padding: 40px;
    background: rgba(52, 211, 153, 0.05);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 16px;
}

.governance-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.governance-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1rem;
}

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

.governance-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.governance-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.governance-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--neon-green);
}

.governance-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.governance-card strong {
    color: var(--text-primary);
}

.governance-footer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.governance-footer a {
    color: var(--neon-green);
}

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

@media (max-width: 576px) {
    .governance-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-governance-section {
        padding: 24px;
    }
}

/* SEO Landing Pages */
.seo-page { padding: 120px 5% 80px; max-width: 1400px; margin: 0 auto; }
.seo-page h1 { font-size: 2.5rem; margin-bottom: 20px; color: var(--text-primary); }
.seo-page .subtitle { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 40px; line-height: 1.6; }
.seo-page h2 { font-size: 1.75rem; margin-top: 50px; margin-bottom: 20px; color: var(--neon-green); }
.seo-page h3 { font-size: 1.3rem; margin-top: 30px; margin-bottom: 15px; color: var(--text-primary); }
.seo-page p, .seo-page li { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; font-size: 1.1rem; }
.seo-page ul, .seo-page ol { padding-left: 24px; margin-bottom: 24px; }
.seo-page li { margin-bottom: 10px; }
.seo-page a { color: var(--neon-green); }
.seo-page .back-link { display: inline-block; margin-bottom: 30px; color: var(--neon-green); text-decoration: none; }
.seo-page .back-link:hover { text-decoration: underline; }
.seo-page .cta-section { background: var(--bg-card); border-radius: 16px; padding: 40px; text-align: center; margin-top: 50px; }
.seo-page .cta-section h3 { color: var(--text-primary); margin-bottom: 15px; }
.seo-page .cta-section p { margin-bottom: 25px; }
.seo-page .highlight-box { background: rgba(52, 211, 153, 0.1); border-left: 4px solid var(--neon-green); padding: 20px; margin: 30px 0; border-radius: 0 8px 8px 0; }
.seo-page .formula-box { background: var(--bg-card); border: 1px solid var(--neon-green); border-radius: 12px; padding: 30px; margin: 30px 0; text-align: center; }
.seo-page .formula { font-size: 1.5rem; font-weight: 600; color: var(--neon-green); font-family: monospace; }
.seo-page .formula-note { font-size: 0.95rem; color: var(--text-muted); margin-top: 15px; }
.seo-page .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.seo-page .feature-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; }
.seo-page .feature-card h4 { color: var(--neon-green); margin-bottom: 12px; font-size: 1.1rem; }
.seo-page .feature-card p { font-size: 0.95rem; margin-bottom: 0; }
.seo-page .security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 40px 0; }
.seo-page .security-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; }
.seo-page .security-card h4 { color: var(--neon-green); margin-bottom: 12px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.seo-page .security-card p { font-size: 0.95rem; margin-bottom: 0; }
.seo-page .comparison-table, .seo-page .compliance-table { width: 100%; border-collapse: collapse; margin: 30px 0; }
.seo-page .comparison-table th, .seo-page .comparison-table td,
.seo-page .compliance-table th, .seo-page .compliance-table td { padding: 15px; text-align: left; border-bottom: 1px solid var(--border-color); }
.seo-page .comparison-table th, .seo-page .compliance-table th { background: var(--bg-card); color: var(--neon-green); }
.seo-page .comparison-table td, .seo-page .compliance-table td { color: var(--text-secondary); }
.seo-page .status-yes { color: var(--neon-green); font-weight: 600; }
.seo-page .status-enterprise { color: #F9A825; }
.seo-page .integration-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 30px; margin: 30px 0; }
.seo-page .integration-card h3 { color: var(--neon-green); margin-top: 0; margin-bottom: 15px; font-size: 1.4rem; }
.seo-page .integration-card .tag { display: inline-block; background: rgba(52, 211, 153, 0.2); color: var(--neon-green); padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; margin-right: 8px; margin-bottom: 15px; }
.seo-page .integration-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 20px; }
.seo-page .integration-features li { background: rgba(255,255,255,0.03); padding: 10px 15px; border-radius: 8px; margin-bottom: 0; }
.seo-page .provider-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; }
.seo-page .provider-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 20px; text-align: center; }
.seo-page .provider-card h4 { margin-bottom: 8px; color: var(--text-primary); }
.seo-page .provider-card p { font-size: 0.9rem; margin-bottom: 0; }
.seo-page .example-box { background: var(--bg-card); border-radius: 12px; padding: 24px; margin: 20px 0; }
.seo-page .example-query { background: rgba(52, 211, 153, 0.1); padding: 15px; border-radius: 8px; margin-bottom: 15px; font-style: italic; }
.seo-page .example-response { color: var(--text-secondary); font-size: 0.95rem; }
.seo-page .category-section { margin-top: 60px; }
.seo-page .category-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.seo-page .category-icon { font-size: 2rem; }

@media (max-width: 768px) {
    .seo-page .feature-grid, .seo-page .provider-grid { grid-template-columns: 1fr; }
    .seo-page .security-grid { grid-template-columns: 1fr; }
    .seo-page .integration-features { grid-template-columns: 1fr; }
}

/* Multi-Page Site Styles */

/* Page Hero */
.page-hero {
    padding: 140px 5% 60px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    text-align: center;
}

.page-hero.compact {
    padding: 120px 5% 40px;
}

.page-hero-content {
    max-width: 1100px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--text-primary);
}

.page-hero-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Preview Grid (Homepage) */
.features-preview-section {
    padding: clamp(60px, 8vw, 100px) 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.features-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 40px);
    margin: clamp(30px, 4vw, 60px) 0;
}

.feature-preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: clamp(24px, 3vw, 40px);
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-preview-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-4px);
}

.feature-preview-card .fp-icon {
    font-size: clamp(2rem, 3vw, 3.5rem);
    margin-bottom: clamp(12px, 2vw, 20px);
}

.feature-preview-card h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-preview-card p {
    font-size: clamp(0.95rem, 1.2vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-cta {
    text-align: center;
    margin-top: 30px;
}

/* Proof Preview */
.proof-preview-section {
    padding: clamp(50px, 6vw, 80px) 5%;
    background: var(--bg-darker);
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: clamp(40px, 6vw, 80px);
    max-width: 1600px;
    margin: 0 auto;
}

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

.proof-stat .stat-number {
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 700;
    color: var(--neon-green);
    display: block;
}

.proof-stat .stat-label {
    font-size: clamp(0.85rem, 1.1vw, 1.1rem);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Home CTA Section */
.home-cta-section {
    padding: 80px 5%;
    text-align: center;
}

.home-cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.home-cta-container h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.home-cta-container p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.home-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Feature Highlight Sections */
.feature-highlight-section {
    padding: 100px 5%;
}

.feature-highlight-section.alt {
    background: var(--bg-darker);
}

.feature-highlight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-highlight-container.reverse {
    direction: rtl;
}

.feature-highlight-container.reverse > * {
    direction: ltr;
}

.feature-highlight-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.feature-highlight-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.cpr-formula-box {
    background: var(--bg-card);
    border: 1px solid var(--neon-green);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    text-align: center;
}

.cpr-formula {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neon-green);
    font-family: monospace;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.feature-benefits li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-secondary);
}

.feature-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: 600;
}

/* AI Examples */
.ai-examples {
    margin: 20px 0;
}

.ai-example {
    background: rgba(52, 211, 153, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-style: italic;
    color: var(--text-secondary);
}

.ai-example .ai-q {
    color: var(--neon-green);
    font-weight: 600;
    font-style: normal;
    margin-right: 8px;
}

/* Visual Cards */
.metric-preview {
    padding: 40px;
    text-align: center;
}

.metric-header {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--neon-green);
}

.metric-unit {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.metric-trend {
    font-size: 0.9rem;
}

.metric-trend.positive {
    color: var(--neon-green);
}

.ai-preview {
    padding: 24px;
}

.ai-chat-bubble {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.ai-chat-bubble.user {
    background: rgba(52, 211, 153, 0.15);
    color: var(--text-primary);
    margin-left: 20px;
}

.ai-chat-bubble.assistant {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    margin-right: 20px;
}

/* Facility Types Grid */
.facility-types-section {
    padding: 80px 5%;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.facility-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.facility-card.featured {
    border-color: var(--neon-green);
}

.facility-card .facility-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.facility-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.facility-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

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

.facility-card li {
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.facility-card li::before {
    content: "→ ";
    color: var(--neon-green);
}

/* Page CTA */
.page-cta-section {
    padding: 80px 5%;
    background: var(--bg-darker);
    text-align: center;
}

.page-cta-container {
    max-width: 1300px;
    margin: 0 auto;
}

.page-cta-container h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.page-cta-container p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Security Trust Section */
.security-trust-section {
    max-width: 1400px;
    margin: 50px auto 0;
    text-align: center;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badge-item .badge-icon {
    font-size: 1.2rem;
}

.trust-badge-item .badge-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-note {
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto;
}

/* Timeline */
.timeline {
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    padding-left: 100px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -100px;
    width: 80px;
    text-align: right;
    font-weight: 600;
    color: var(--neon-green);
    font-size: 0.9rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -48px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon-green);
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Contact Info */
.contact-info-section {
    padding: 60px 5%;
    background: var(--bg-darker);
}

.contact-info-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
    max-width: 1400px;
    margin: 0 auto;
}

.contact-card {
    text-align: center;
    padding: 24px;
}

.contact-card .contact-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-card h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-card p, .contact-card a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-card a {
    color: var(--neon-green);
}

/* Demo Section */
.demo-section {
    padding: 80px 5%;
    background: var(--bg-darker);
}

.demo-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

.demo-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.demo-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.demo-agenda {
    list-style: none;
    padding: 0;
}

.demo-agenda li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-secondary);
}

.demo-agenda li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-green);
}

.demo-form {
    padding: 30px;
}

.demo-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
}

.demo-message.success {
    background: rgba(52, 211, 153, 0.2);
    color: var(--neon-green);
}

.demo-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Trial Benefits */
.trial-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item .benefit-icon {
    color: var(--neon-green);
    font-weight: 600;
}

.benefit-item span:last-child {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 12px;
}

.footer-links h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 6px 0;
    text-decoration: none;
}

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

/* Trust Section (Homepage) */
.trust-section {
    padding: 40px 5%;
    background: var(--bg-darker);
}

.trust-section .trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(30px, 4vw, 50px);
    max-width: 1400px;
    margin: 0 auto;
}

.trust-section .trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.trust-section .trust-badge .badge-icon {
    font-size: 1.3rem;
}

.trust-section .trust-badge .badge-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), transparent);
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-section .section-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.testimonials-section .section-header p {
    color: var(--text-secondary);
}

.testimonials-section .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-section .testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    position: relative;
}

.testimonials-section .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 4rem;
    color: var(--neon-green);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials-section .testimonial-quote {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonials-section .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonials-section .author-info {
    display: flex;
    flex-direction: column;
}

.testimonials-section .author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.testimonials-section .author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Company Search Section */
.company-search-section {
    padding: 60px 5%;
    background: var(--bg-primary);
    text-align: center;
}

.company-search-container {
    max-width: 900px;
    margin: 0 auto;
}

.company-search-container h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.company-search-container p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.search-box {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.search-input {
    flex: 1;
    max-width: 350px;
    padding: 14px 18px;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.search-input:focus {
    outline: none;
    border-color: var(--neon-green);
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--neon-green);
    color: var(--bg-primary);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3);
}

.search-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.search-results {
    margin-top: 20px;
    text-align: left;
}

.search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 10px;
}

.search-result-item a {
    color: var(--neon-green);
    font-weight: 500;
    text-decoration: none;
}

.search-result-item a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .features-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .facility-grid { grid-template-columns: 1fr; }
    .feature-highlight-container { grid-template-columns: 1fr; }
    .feature-highlight-container.reverse { direction: ltr; }
    .demo-container { grid-template-columns: 1fr; }
    .contact-info-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-section .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .features-preview-grid { grid-template-columns: 1fr; }
    .proof-stats { flex-direction: column; gap: 30px; }
    .home-cta-buttons, .page-cta-buttons { flex-direction: column; }
    .trial-benefits { grid-template-columns: 1fr; }
    .trust-badges-row { flex-direction: column; align-items: center; }
    .timeline { padding-left: 60px; }
    .timeline::before { left: 20px; }
    .timeline-marker { left: -60px; width: 50px; font-size: 0.8rem; }
    .timeline-item::before { left: -48px; }
    .footer-grid { grid-template-columns: 1fr; }
    .search-box { flex-direction: column; }
    .search-input { max-width: 100%; }
    .trust-section .trust-badges { flex-direction: column; align-items: center; gap: 16px; }
}

/* ========================================
   Enterprise Integrations Section (Homepage)
======================================== */
.integrations-section {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.integrations-container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.integrations-headline {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.integrations-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: clamp(40px, 5vw, 70px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
    margin-bottom: clamp(40px, 5vw, 70px);
}

.integration-partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: clamp(25px, 3vw, 45px) clamp(20px, 2.5vw, 40px);
    text-align: left;
    transition: all 0.3s ease;
}

.integration-partner-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.integration-partner-card.coming-soon {
    opacity: 0.7;
}

.partner-icon-wrap {
    width: clamp(80px, 8vw, 120px);
    height: clamp(80px, 8vw, 120px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-icon-wrap.compliance {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-icon-wrap.financial {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-icon-wrap.environmental {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-icon-wrap.custom {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-icon-text {
    font-size: 1.8rem;
}

.partner-icon-wrap .partner-logo-img {
    height: clamp(55px, 6vw, 85px);
    width: auto;
    max-width: clamp(70px, 7vw, 100px);
    object-fit: contain;
}

.integration-partner-card h4 {
    font-size: clamp(1.3rem, 1.8vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.partner-type {
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    color: var(--neon-green);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-features li {
    font-size: clamp(0.95rem, 1.1vw, 1.2rem);
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 24px;
}

.partner-features li:last-child {
    border-bottom: none;
}

.partner-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 0.85em;
}

.integrations-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.flow-arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.flow-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--neon-green));
}

.flow-arrow-down {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid var(--neon-green);
    animation: pulse-arrow 2s infinite;
}

@keyframes pulse-arrow {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.7; transform: translateY(3px); }
}

.flow-destination {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.25), rgba(46, 125, 50, 0.1));
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    padding: clamp(25px, 3vw, 40px) clamp(30px, 4vw, 50px);
    max-width: 900px;
}

.flow-leaf-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.flow-text {
    text-align: left;
}

.flow-text h3 {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 8px;
}

.flow-text p {
    font-size: 1.05em;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.integrations-note {
    color: var(--text-muted);
    font-size: 1em;
    font-style: italic;
}

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

@media (max-width: 768px) {
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .integrations-headline {
        font-size: 2.2em;
    }
    
    .flow-destination {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .flow-text {
        text-align: center;
    }
}

/* Legacy Tech Stack (keep for backward compatibility) */
.tech-stack-section {
    padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 80px);
    background: rgba(0, 0, 0, 0.3);
}

.tech-stack-container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.tech-stack-headline {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin-bottom: 50px;
    color: var(--text-primary);
}

.tech-stack-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.tech-stack-tier {
    padding: clamp(25px, 3vw, 40px);
    border-radius: 16px;
    width: 100%;
    max-width: 1200px;
}

.tier-sources {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
}

.tier-sources h4 {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.source-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.source-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.source-icon {
    font-size: 2rem;
}

.source-item span:last-child {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tech-stack-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.arrow-up {
    font-size: 2rem;
    color: var(--neon-green);
    animation: pulse-arrow 2s infinite;
}

.arrow-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tier-platform {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.2), rgba(46, 125, 50, 0.1));
    border: 2px solid var(--neon-green);
    position: relative;
}

.stack-leaf-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.tier-platform h3 {
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 8px;
}

.tier-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.tech-stack-note {
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* ========================================
   Case Study Section (Homepage)
======================================== */
.case-study-section {
    padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 80px);
}

.case-study-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.case-study-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(30px, 4vw, 50px);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.case-study-company h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.case-study-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.case-study-metric {
    text-align: center;
    padding: 15px 25px;
    background: rgba(46, 125, 50, 0.15);
    border-radius: 12px;
    border: 1px solid var(--neon-green);
}

.case-study-metric .metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-green);
}

.case-study-metric .metric-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.case-study-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    border-left: 4px solid var(--neon-green);
    padding-left: 20px;
    margin: 30px 0;
}

.case-study-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-green), var(--deep-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.case-study-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.result-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-icon {
    font-size: 1.5rem;
}

.result-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========================================
   Spreadsheets vs Connected Organism (Solutions)
======================================== */
.spreadsheet-comparison-section {
    padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 80px);
    background: rgba(0, 0, 0, 0.2);
}

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.comparison-headline {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin-bottom: clamp(40px, 5vw, 60px);
    color: var(--text-primary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 40px);
}

.comparison-column {
    padding: 30px;
    border-radius: 16px;
    text-align: left;
}

.comparison-column.problem {
    background: rgba(255, 87, 87, 0.1);
    border: 1px solid rgba(255, 87, 87, 0.3);
}

.comparison-column.solution {
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.3);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.column-icon {
    font-size: 1.8rem;
}

.column-header h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.icon-x {
    color: #ff5757;
    font-weight: bold;
    font-size: 1.1rem;
}

.icon-check {
    color: var(--neon-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ========================================
   Revolution Snapshots (Solutions)
======================================== */
.revolution-snapshots-section {
    padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 80px);
}

.snapshots-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.snapshots-headline {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin-bottom: 15px;
    color: var(--text-primary);
}

.snapshots-subhead {
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.snapshots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.snapshot-card {
    padding: 35px;
    border-radius: 16px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.snapshot-card.craft {
    background: linear-gradient(135deg, rgba(249, 168, 37, 0.1), rgba(249, 168, 37, 0.05));
    border: 1px solid rgba(249, 168, 37, 0.3);
}

.snapshot-card.enterprise {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15), rgba(46, 125, 50, 0.05));
    border: 2px solid var(--neon-green);
}

.snapshot-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.snapshot-title {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.snapshot-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.snapshot-metric {
    flex: 1;
    min-width: 80px;
}

.snapshot-metric.primary .metric-value {
    font-size: 2rem;
    color: var(--neon-green);
}

.snapshot-metric .metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.snapshot-metric .metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.snapshot-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.snapshots-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .tech-stack-section,
    .case-study-section,
    .spreadsheet-comparison-section,
    .revolution-snapshots-section {
        padding: 60px 20px;
    }
    
    .tech-stack-headline,
    .comparison-headline,
    .snapshots-headline {
        font-size: 1.6rem;
    }
    
    .source-icons {
        gap: 25px;
    }
    
    .case-study-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .case-study-quote {
        font-size: 1.1rem;
    }
    
    .case-study-results {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid,
    .snapshots-grid {
        grid-template-columns: 1fr;
    }
    
    .snapshot-metrics {
        justify-content: space-between;
    }
}

/* Homepage Snapshots CTA */
.home-snapshots .snapshots-cta {
    margin-top: 40px;
}

.home-snapshots {
    background: rgba(0, 0, 0, 0.2);
}
