/* =========================================================
   Saffron Synaptiq Software Lab
   Modern AI Startup Design System
   ========================================================= */

:root {
    --color-bg: #001C3A;
    --color-surface: rgba(0, 38, 77, 0.92);
    --color-surface-alt: rgba(0, 59, 117, 0.82);
    --color-primary: #F4A100;
    --color-primary-dark: #C97F00;
    --color-primary-light: #FFD37A;
    --color-secondary: #003B75;
    --color-accent: #F5F5F5;
    --color-text: #FFFFFF;
    --color-text-muted: #D3DEE9;
    --color-text-soft: #A9C0D4;
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-strong: rgba(244, 161, 0, 0.35);

    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;

    --shadow-soft: 0 20px 60px rgba(0, 19, 42, 0.55);
    --shadow-hover: 0 30px 90px rgba(244, 161, 0, 0.35);
    --shadow-glow: 0 0 80px rgba(244, 161, 0, 0.25);
    --gradient-hero: radial-gradient(ellipse 120% 80% at 60% 20%, rgba(244, 161, 0, 0.25), transparent 55%), 
                      radial-gradient(ellipse 100% 80% at 10% 80%, rgba(0, 78, 149, 0.35), transparent 55%),
                      radial-gradient(ellipse 150% 100% at 90% 50%, rgba(255, 211, 122, 0.18), transparent 65%),
                      linear-gradient(135deg, #00162E 0%, #00294F 55%, #001C3A 100%);
    --gradient-card: linear-gradient(150deg, rgba(0, 37, 73, 0.82), rgba(0, 45, 87, 0.92));
    --gradient-cta: linear-gradient(135deg, #F4A100 0%, #FFB941 100%);
    --gradient-cta-alt: linear-gradient(135deg, #003B75 0%, #00579F 100%);

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 28px;

    --spacing-xs: 0.5rem;
    --spacing-sm: 0.875rem;
    --spacing-md: 1.25rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3.5rem;
    --spacing-xxl: 5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 18% 30%, rgba(244, 161, 0, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 82% 70%, rgba(0, 91, 170, 0.14) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 204, 102, 0.08) 0%, transparent 55%);
    animation: ambient-glow 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes ambient-glow {
    0% {
        opacity: 0.35;
        transform: scale(1);
    }
    100% {
        opacity: 0.65;
        transform: scale(1.08);
    }
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    display: block;
}

main {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow-x: hidden;
}

.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section--compact {
    padding: var(--spacing-xl) 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 161, 0, 0.08) 0%, transparent 75%);
    pointer-events: none;
    filter: blur(60px);
    z-index: 0;
}

.section__heading {
    max-width: 720px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: var(--spacing-md);
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: rgba(244, 161, 0, 0.14);
    border: 1px solid rgba(244, 161, 0, 0.35);
    color: var(--color-primary-light);
    backdrop-filter: blur(10px);
}

.section__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0 0 var(--spacing-md);
    letter-spacing: -0.03em;
    line-height: 1.15;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 211, 122, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__description {
    margin: 0 auto;
    color: var(--color-text-soft);
    font-size: 1.05rem;
    max-width: 680px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.875rem;
        min-height: 44px;
        border-radius: 12px;
    }
    
    .btn--sm {
        padding: 0.55rem 1rem;
        font-size: 0.82rem;
    }
    
    /* Enhanced mobile hero */
    .saturn-hero {
        padding: calc(var(--spacing-xl) + 1rem) 0 var(--spacing-lg);
    }
    
    .saturn-hero__intro {
        gap: 1.25rem;
        max-width: 100%;
    }
    
    .saturn-eyebrow {
        font-size: 0.6875rem;
        padding: 0.5rem 0.875rem;
        gap: 0.3rem;
        letter-spacing: 0.03em;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    .saturn-hero__title {
        font-size: 1.875rem;
        line-height: 1.25;
        letter-spacing: -0.02em;
        margin-top: 0.5rem;
    }
    
    .saturn-hero__summary {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-top: 0.5rem;
        color: rgba(255, 255, 255, 0.85);
    }
    
    .saturn-hero__highlights {
        gap: 0.875rem;
        margin-top: 0.75rem;
    }
    
    .saturn-hero__highlights li {
        font-size: 0.9375rem;
        line-height: 1.6;
        padding-left: 1.75rem;
    }
    
    .saturn-hero__highlights li::before {
        width: 8px;
        height: 8px;
        top: 0.5rem;
    }
    
    .saturn-hero__actions {
        gap: 0.875rem;
        margin-top: 1.25rem;
    }
    
    .saturn-hero__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .saturn-metric {
        min-width: auto;
        padding: 1.125rem;
    }
    
    .saturn-metric__value {
        font-size: 1.75rem;
    }
    
    .saturn-metric__label {
        font-size: 0.8125rem;
        line-height: 1.4;
    }
    
    /* Mobile product cards */
    .saturn-product {
        padding: 1.25rem;
        min-height: auto;
    }
    
    .saturn-product h3 {
        font-size: 1.25rem;
    }
    
    .saturn-product p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    /* Mobile calculator */
    .growth-calculator--manufacturing {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .growth-calculator__section-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .saturn-hero {
        padding: calc(var(--spacing-lg) + 1rem) 0 var(--spacing-md);
    }
    
    .saturn-hero__intro {
        gap: 1rem;
    }
    
    .saturn-eyebrow {
        font-size: 0.625rem;
        padding: 0.4375rem 0.75rem;
    }
    
    .saturn-hero__title {
        font-size: 1.625rem;
        line-height: 1.3;
    }
    
    .saturn-hero__summary {
        font-size: 0.875rem;
        line-height: 1.65;
    }
    
    .saturn-hero__highlights li {
        font-size: 0.875rem;
        line-height: 1.55;
        padding-left: 1.5rem;
    }
    
    .saturn-hero__highlights li::before {
        width: 7px;
        height: 7px;
    }
    
    .saturn-hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .saturn-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 375px) {
    .saturn-hero__title {
        font-size: 1.5rem;
    }
    
    .saturn-eyebrow {
        font-size: 0.5625rem;
        padding: 0.375rem 0.625rem;
    }
}

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

.grid--cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid--cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    position: relative;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                                rgba(244, 161, 0, 0.18), 
                                transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--color-border-strong);
    box-shadow: 0 30px 70px rgba(0, 28, 58, 0.4),
                0 0 60px rgba(244, 161, 0, 0.25);
}

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

.card:hover::after {
    opacity: 1;
}

.card__icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(244, 161, 0, 0.25), rgba(0, 59, 117, 0.2));
    border: 1px solid rgba(244, 161, 0, 0.35);
    display: grid;
    place-items: center;
    font-size: 1.65rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-light);
    box-shadow: 0 8px 24px rgba(0, 28, 58, 0.35);
    transition: all 0.4s ease;
}

.card:hover .card__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(244, 161, 0, 0.4);
}

.card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 var(--spacing-xs);
}

.card__description {
    color: var(--color-text-soft);
    font-size: 0.98rem;
    margin: 0 0 var(--spacing-md);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(244, 161, 0, 0.15);
    color: var(--color-primary-light);
}

.badge--accent {
    background: rgba(0, 59, 117, 0.25);
    color: var(--color-accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    min-width: fit-content;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn--primary {
    background: var(--gradient-cta);
    background-size: 180% auto;
    color: #10233E;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(244, 161, 0, 0.35),
                0 4px 16px rgba(244, 161, 0, 0.25);
    animation: pulse-shadow 3s ease-in-out infinite;
    transform: translateY(0);
    transition: all 0.25s ease;
}

@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 10px 24px rgba(244, 161, 0, 0.35), 
                    0 0 0 0 rgba(244, 161, 0, 0.2);
    }
    50% {
        box-shadow: 0 14px 32px rgba(244, 161, 0, 0.4), 
                    0 0 0 8px rgba(244, 161, 0, 0);
    }
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(244, 161, 0, 0.4);
    background-position: 100% center;
}

.btn--primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 59, 117, 0.18);
    backdrop-filter: blur(8px);
    color: var(--color-text);
}

.btn--ghost:hover {
    border-color: rgba(244, 161, 0, 0.4);
    color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(244, 161, 0, 0.2);
    background: rgba(244, 161, 0, 0.1);
}

.btn--icon svg {
    width: 16px;
    height: 16px;
}

.btn--secondary {
    border: 1px solid rgba(244, 161, 0, 0.6);
    background: transparent;
    color: var(--color-text);
    font-weight: 600;
    border-radius: 12px;
}

.btn--secondary:hover {
    background: rgba(244, 161, 0, 0.15);
    color: var(--color-primary-light);
    border-color: rgba(244, 161, 0, 0.8);
    transform: translateY(-2px);
}

.hero {
    position: relative;
    padding: calc(var(--spacing-xxl) + 5rem) 0 var(--spacing-xxl);
    overflow: hidden;
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(244, 161, 0, 0.45);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary-light);
    background: rgba(244, 161, 0, 0.12);
    backdrop-filter: blur(10px);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 0 30px rgba(244, 161, 0, 0.25);
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

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

@keyframes neural-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(244, 161, 0, 0.3),
                    0 0 40px rgba(244, 161, 0, 0.2),
                    inset 0 0 20px rgba(244, 161, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(244, 161, 0, 0.5),
                    0 0 60px rgba(244, 161, 0, 0.3),
                    inset 0 0 30px rgba(244, 161, 0, 0.2);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    margin: 0 0 var(--spacing-lg);
    letter-spacing: -0.04em;
    line-height: 1.1;
    animation: slide-up 1s ease-out;
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__title span {
    background: linear-gradient(135deg, #F4A100 0%, #FFD37A 60%, #FFF0C5 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease infinite;
    position: relative;
    display: inline-block;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero__description {
    color: var(--color-text-soft);
    font-size: 1.15rem;
    max-width: 520px;
    margin-bottom: var(--spacing-lg);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.hero__stat {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero__stat-value {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin: 0;
}

.hero__stat-label {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 0.35rem;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="rgba(255,255,255,0.03)" d="M0,288L1440,128L1440,0L0,0Z"/%3E%3C/svg%3E');
    opacity: 0.4;
    pointer-events: none;
}

.hero__bg-gradient {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 161, 0, 0.25) 0%, rgba(0, 59, 117, 0.25) 45%, transparent 75%);
    top: -200px;
    right: -200px;
    opacity: 0.6;
    filter: blur(80px);
    pointer-events: none;
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
}

.metric {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(20, 25, 45, 0.5), rgba(15, 20, 38, 0.7));
    border: 1px solid rgba(244, 161, 0, 0.18);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(244, 161, 0, 0.22), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.metric:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 161, 0, 0.35);
    box-shadow: 0 20px 60px rgba(244, 161, 0, 0.25);
}

.metric:hover::before {
    opacity: 1;
}

.metric__value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 var(--spacing-xs);
    background: linear-gradient(135deg, #F4A100 0%, #FFB941 50%, #FFE0A6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric__label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xs);
}

.metric__detail {
    font-size: 0.95rem;
    color: var(--color-text-soft);
    line-height: 1.6;
}

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

.solution {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(108, 92, 231, 0.28);
    background: linear-gradient(140deg, rgba(21, 26, 52, 0.92), rgba(11, 13, 30, 0.96));
    position: relative;
    overflow: hidden;
}

.solution__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-secondary);
}

.solution__title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    margin: var(--spacing-xs) 0;
}

.solution__description {
    font-size: 1rem;
    color: var(--color-text-soft);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: var(--spacing-md) 0;
}

.tag-pill {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    background: rgba(244, 161, 0, 0.18);
    color: var(--color-primary-light);
}

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

.case-study {
    position: relative;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(24, 27, 45, 0.92), rgba(14, 16, 33, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
}

.case-study__industry {
    font-size: 0.85rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.case-study__title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    margin: var(--spacing-xs) 0;
}

.case-study__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.case-study__metric {
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline {
    position: relative;
    padding-left: 2.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.timeline__item {
    position: relative;
    padding: var(--spacing-md) 0;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: var(--spacing-md);
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--color-primary);
    box-shadow: 0 0 0 6px rgba(108, 92, 231, 0.2);
}

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

.testimonial {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.testimonial__quote {
    font-size: 1.08rem;
    color: var(--color-text-soft);
    margin-bottom: var(--spacing-md);
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial__name {
    font-weight: 600;
}

.testimonial__role {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

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

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card__content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    flex: 1;
}

.blog-card__title {
    font-size: 1.2rem;
    font-family: var(--font-display);
}

.blog-card__meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.cta-banner {
    position: relative;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.35), rgba(0, 210, 255, 0.18));
    border: 1px solid rgba(108, 92, 231, 0.55);
    box-shadow: 0 32px 76px rgba(108, 92, 231, 0.25);
    overflow: hidden;
}

.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 210, 255, 0.45), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.cta-banner__content {
    position: relative;
    z-index: 2;
    display: grid;
    gap: var(--spacing-md);
}

.footer {
    position: relative;
    background: radial-gradient(circle at 15% 20%, rgba(244, 161, 0, 0.12), transparent 45%),
                radial-gradient(circle at 80% 0%, rgba(48, 129, 237, 0.18), transparent 55%),
                linear-gradient(180deg, #050f1d 0%, #03122a 60%, #000814 100%);
    /* Much more compact vertical padding for a professional footer */
    padding: 2.5rem 0 1.75rem;
    width: 100%;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.08), transparent 60%);
    opacity: 0.4;
    pointer-events: none;
}

.footer__top {
    display: grid;
    /* Tighter gaps for a more compact footer */
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    margin-bottom: 1.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .footer__top {
        gap: 1.5rem 1.25rem;
        grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(130px, 0.65fr)) minmax(200px, 0.9fr) minmax(240px, 1fr);
    }
}

@media (max-width: 992px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem 1.5rem;
    }

    .footer__brand {
        grid-column: 1 / -1;
        max-width: 600px;
    }
    
    .footer__nav--secondary {
        order: 3;
    }
    
    .footer__contact {
        order: 4;
    }
    
    .footer__cta {
        order: 5;
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer__brand-link {
        flex-wrap: wrap;
    }

    .footer__brand-name {
        white-space: normal;
        font-size: 0.95rem;
    }
    
    .footer__nav,
    .footer__nav--secondary,
    .footer__contact,
    .footer__cta {
        order: unset;
        grid-column: 1;
    }
}

.footer__brand {
    max-width: 360px;
}

.footer__brand-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    color: var(--color-text);
    flex-wrap: nowrap;
    font-weight: 600;
}

.footer__brand-logo {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.35));
}

.footer__brand-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
    white-space: nowrap;
}

.footer__brand-description {
    margin: 0 0 0.7rem 0;
    color: var(--color-text-soft);
    font-size: 0.875rem;
    line-height: 1.55;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer__socials a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-text);
    transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.footer__socials a:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 161, 0, 0.6);
    box-shadow: 0 12px 20px rgba(244, 161, 0, 0.25);
}

.footer__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: 0;
    margin-bottom: 0.875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.footer__list li {
    color: var(--color-text-soft);
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer__list a {
    color: var(--color-text-soft);
    font-size: 0.875rem;
    line-height: 1.5;
    transition: color 0.3s ease, transform 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.15rem 0;
    position: relative;
}

.footer__list a:hover,
.footer__list a:active {
    color: var(--color-primary-light);
    transform: translateX(3px);
}

@media (max-width: 640px) {
    .footer__list {
        gap: 0.5rem;
    }
    
    .footer__list a {
        font-size: 0.8125rem;
        padding: 0.25rem 0;
    }
    
    .footer__title {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }
}

.footer__list--contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer__list--contact a:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.footer__nav {
    min-width: 140px;
}

.footer__contact {
    min-width: 200px;
}

.footer__cta {
    display: grid;
    gap: 0.65rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(244, 161, 0, 0.25);
    background: radial-gradient(circle at 20% 20%, rgba(244, 161, 0, 0.18), rgba(0, 20, 40, 0.95));
    box-shadow: 0 20px 50px rgba(0, 19, 42, 0.45);
}

.footer__cta .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.35rem;
}

@media (max-width: 640px) {
    .footer__cta {
        padding: 0.95rem;
    }
}

.footer__cta-copy {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 0.875rem;
    line-height: 1.5;
}

.btn--sm {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    white-space: nowrap;
    border-radius: 10px;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.footer__contact-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--color-primary-light);
    background: rgba(244, 161, 0, 0.12);
    border-radius: 10px;
    border: 1px solid rgba(244, 161, 0, 0.25);
    flex-shrink: 0;
}

.footer__contact-link {
    color: var(--color-text-soft);
    transition: color 0.25s ease;
}

.footer__contact-link:hover {
    color: var(--color-primary-light);
}

.footer__legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8125rem;
}

.footer__legal-links a {
    color: var(--color-text-muted);
    position: relative;
    padding-left: 0.85rem;
}

.footer__legal-links a::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.35);
}

.footer__legal-links a:first-child {
    padding-left: 0;
}

.footer__legal-links a:first-child::before {
    display: none;
}

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

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    /* Tighter separation from main content */
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    font-size: 0.8125rem;
}

@media (max-width: 640px) {
    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer__legal-links {
        gap: 1rem;
    }

    .footer__legal-links a {
        padding-left: 0;
    }

    .footer__legal-links a::before {
        display: none;
    }
}

.saturn-hero {
    position: relative;
    padding: calc(var(--spacing-xxl) - 1rem) 0 var(--spacing-lg);
    background: var(--gradient-hero);
    overflow: hidden;
}

/* Trust Bar */
.trust-bar {
    background: rgba(0, 28, 58, 0.6);
    border-top: 1px solid rgba(244, 161, 0, 0.2);
    border-bottom: 1px solid rgba(244, 161, 0, 0.2);
    padding: 1.5rem 0;
    backdrop-filter: blur(8px);
}

.trust-bar__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-bar__label {
    font-size: 0.9rem;
    color: var(--color-text-soft);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-bar__items {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-bar__item {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
    position: relative;
    padding: 0 1rem;
}

.trust-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: rgba(244, 161, 0, 0.3);
}

.trust-bar__item:hover {
    color: var(--color-primary-light);
}

@media (max-width: 768px) {
    .trust-bar__content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .trust-bar__items {
        gap: 1rem;
        justify-content: center;
    }
    
    .trust-bar__item {
        padding: 0 0.75rem;
        font-size: 0.85rem;
    }
}

/* Live AI Activity Ticker */
.ai-activity-ticker {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(0, 28, 58, 0.8);
    border: 1px solid rgba(244, 161, 0, 0.3);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.ai-activity-ticker__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(244, 161, 0, 0.15);
}

.ai-pulse {
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: ai-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(244, 161, 0, 0.7);
}

@keyframes ai-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 161, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(244, 161, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 161, 0, 0);
    }
}

.ai-activity-ticker__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary-light);
    flex: 1;
}

.ai-activity-ticker__count {
    font-size: 0.85rem;
    color: var(--color-text-soft);
    padding: 0.25rem 0.75rem;
    background: rgba(244, 161, 0, 0.15);
    border-radius: 999px;
}

.ai-activity-ticker__stream {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 180px;
}

.ai-activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 59, 117, 0.4);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.ai-activity-item:hover {
    background: rgba(0, 59, 117, 0.6);
    transform: translateX(4px);
}

.ai-activity-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ai-activity-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.ai-activity-agent {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-display);
}

.ai-activity-action {
    font-size: 0.9rem;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ai-activity-time {
    font-size: 0.8rem;
    color: var(--color-text-soft);
    white-space: nowrap;
    flex-shrink: 0;
}

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

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

.saturn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(244, 161, 0, 0.18), transparent 55%),
                radial-gradient(circle at 85% 70%, rgba(0, 59, 117, 0.35), transparent 65%);
    opacity: 0.4;
    pointer-events: none;
}

.saturn-hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--spacing-xl);
    align-items: start;
}

.saturn-hero__intro {
    max-width: 640px;
    display: grid;
    gap: 1rem;
}

.saturn-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(244, 161, 0, 0.16);
    border: 1px solid rgba(244, 161, 0, 0.35);
    color: var(--color-primary-light);
}

.saturn-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin: 0;
}

.saturn-hero__summary {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 680px;
}

.saturn-hero__highlights {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.9rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.saturn-hero__highlights li {
    position: relative;
    padding-left: 1.6rem;
}

.saturn-hero__highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(244, 161, 0, 0.2);
}

.saturn-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.agent-console {
    margin-top: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(244, 161, 0, 0.25);
    background: rgba(0, 28, 58, 0.78);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.agent-console__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.1rem;
    background: rgba(244, 161, 0, 0.14);
    border-bottom: 1px solid rgba(244, 161, 0, 0.2);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary-light);
}

.agent-console__status {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.agent-console__status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 161, 0, 0.9) 0%, rgba(244, 161, 0, 0.4) 100%);
    box-shadow: 0 0 10px rgba(244, 161, 0, 0.6);
}

.agent-console__body {
    padding: 1.1rem;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--color-text-soft);
    display: grid;
    gap: 0.65rem;
    min-height: 180px;
}

.agent-console__line {
    display: grid;
    gap: 0.25rem;
}

.agent-console__line-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.55);
}

.agent-console__line-value {
    color: var(--color-text);
}

.saturn-hero__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.saturn-metric {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(244, 161, 0, 0.25);
    background: rgba(0, 28, 58, 0.7);
    backdrop-filter: blur(12px);
    display: grid;
    gap: 0.35rem;
    min-width: 200px;
}

.saturn-metric__value {
    font-family: var(--font-display);
    font-size: 2rem;
    margin: 0;
}

.saturn-metric__label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.saturn-section {
    padding: 3.5rem 0;
    position: relative;
}

.saturn-section--compact {
    padding: 2.5rem 0;
}

.saturn-section--inverse {
    background: linear-gradient(135deg, rgba(0, 59, 117, 0.65), rgba(0, 28, 58, 0.9));
    border-block: 1px solid rgba(244, 161, 0, 0.2);
}

.saturn-section--dark {
    background: linear-gradient(180deg, rgba(0, 28, 58, 0.95), rgba(0, 15, 30, 1));
    border-top: 1px solid rgba(244, 161, 0, 0.25);
    border-bottom: 1px solid rgba(244, 161, 0, 0.15);
}

.saturn-section--cta {
    background: linear-gradient(135deg, rgba(244, 161, 0, 0.18), rgba(0, 59, 117, 0.75));
}

.saturn-section__header {
    max-width: 820px;
    margin: 0 auto 2rem;
    text-align: center;
    display: grid;
    gap: 0.75rem;
}

.saturn-section__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.2;
}

.saturn-section__title--left {
    text-align: left;
}

.saturn-section__cta {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.saturn-grid {
    display: grid;
    gap: 1.5rem;
}

.saturn-grid--two {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.saturn-grid--three {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.saturn-grid--four {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.saturn-card,
.saturn-service,
.saturn-product,
.saturn-impact,
.saturn-testimonial,
.saturn-agentic {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(244, 161, 0, 0.18);
    background: rgba(0, 28, 58, 0.75);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 360px;
}

.saturn-card::before,
.saturn-service::before,
.saturn-product::before,
.saturn-impact::before,
.saturn-testimonial::before,
.saturn-agentic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(244, 161, 0, 0.08),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

.saturn-card::after,
.saturn-service::after,
.saturn-product::after,
.saturn-impact::after,
.saturn-agentic::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(244, 161, 0, 0.2), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.saturn-card:hover,
.saturn-service:hover,
.saturn-product:hover,
.saturn-impact:hover,
.saturn-testimonial:hover,
.saturn-agentic:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 161, 0, 0.45);
    box-shadow: 0 20px 60px rgba(244, 161, 0, 0.25),
                0 8px 24px rgba(0, 0, 0, 0.4);
}

.saturn-card:hover::after,
.saturn-service:hover::after,
.saturn-product:hover::after,
.saturn-impact:hover::after,
.saturn-agentic:hover::after {
    opacity: 1;
}

.saturn-card__title,
.saturn-service h3,
.saturn-product h3,
.saturn-impact h3,
.saturn-agentic h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
    font-weight: 700;
    color: var(--color-accent);
}

.saturn-card__body,
.saturn-service p,
.saturn-product p,
.saturn-impact p,
.saturn-agentic p {
    margin: 0 0 1rem 0;
    color: var(--color-text-soft);
    font-size: 1.05rem;
    line-height: 1.75;
}

.saturn-link {
    color: var(--color-primary-light);
    font-weight: 600;
    position: relative;
}

.saturn-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: rgba(244, 161, 0, 0.4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.saturn-link:hover::after {
    transform: scaleX(1);
}

.saturn-product__agentic {
    margin: 1rem 0 0.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid rgba(244, 161, 0, 0.6);
    background: rgba(0, 59, 117, 0.4);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.85);
    position: relative;
    z-index: 1;
}

.saturn-product__agentic strong {
    color: var(--color-primary-light);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.saturn-product__tags {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.saturn-product__tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.85rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(17, 34, 56, 0.8), rgba(14, 24, 36, 0.6));
    border: 1px dashed rgba(244, 161, 0, 0.45);
    color: var(--color-primary-light);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.2;
    min-height: 28px;
    position: relative;
    padding-left: 1.1rem;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.saturn-product__tags span:hover {
    border-color: rgba(244, 161, 0, 0.75);
    box-shadow: 0 8px 18px rgba(244, 161, 0, 0.15);
    transform: translateY(-2px);
}

.saturn-product__link {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(244, 161, 0, 0.15);
    position: relative;
    z-index: 10;
}

.saturn-product__link .saturn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

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

.saturn-founder {
    display: grid;
    gap: var(--spacing-lg);
    align-items: start;
}

.saturn-founder__quote {
    display: grid;
    gap: var(--spacing-sm);
}

.saturn-founder__text {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-accent);
}

.saturn-founder__signature {
    color: var(--color-primary-light);
    font-size: 0.95rem;
}

.saturn-founder__card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(244, 161, 0, 0.25);
    background: rgba(0, 28, 58, 0.8);
    padding: var(--spacing-lg);
    display: grid;
    gap: var(--spacing-sm);
}

.saturn-founder__card ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--color-text-soft);
    display: grid;
    gap: 0.65rem;
}

.saturn-about {
    display: grid;
    gap: var(--spacing-xl);
}

.saturn-about__story {
    display: grid;
    gap: var(--spacing-sm);
    color: var(--color-text-soft);
    font-size: 1rem;
}

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

.saturn-about__card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(244, 161, 0, 0.2);
    background: rgba(0, 28, 58, 0.8);
    padding: var(--spacing-lg);
    display: grid;
    gap: var(--spacing-sm);
    color: var(--color-text-soft);
}

.saturn-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.saturn-stat {
    border-radius: var(--radius-md);
    border: 1px solid rgba(244, 161, 0, 0.22);
    background: rgba(0, 28, 58, 0.78);
    padding: var(--spacing-md);
    display: grid;
    gap: 0.35rem;
}

.saturn-stat span {
    font-family: var(--font-display);
    font-size: 1.7rem;
}

.saturn-stat small {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.saturn-impact ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--color-text-muted);
    display: grid;
    gap: 0.5rem;
    font-size: 0.92rem;
}

.saturn-testimonial {
    gap: 1.5rem;
    color: var(--color-text-soft);
    font-size: 1rem;
}

.saturn-testimonial__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(244, 161, 0, 0.16);
    color: var(--color-primary-light);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.saturn-testimonial__quote {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--color-text);
}

.saturn-testimonial__stats {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.4rem;
    color: var(--color-text-muted);
    font-size: 0.88rem;
}

.saturn-testimonial__stats li strong {
    color: var(--color-primary-light);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
}

.saturn-agentic__features {
    margin: var(--spacing-md) 0 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.saturn-agentic__features li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.saturn-agentic__features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

.saturn-agentic__use-cases {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(244, 161, 0, 0.2);
}

.saturn-agentic__use-cases h3 {
    margin: 0 0 var(--spacing-lg) 0;
    font-size: 1.8rem;
    text-align: center;
}

.saturn-use-case {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(244, 161, 0, 0.18);
    background: rgba(0, 28, 58, 0.75);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: var(--spacing-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.saturn-use-case::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(244, 161, 0, 0.2), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.saturn-use-case:hover {
    border-color: rgba(244, 161, 0, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.saturn-use-case:hover::after {
    opacity: 1;
}

.saturn-use-case h4 {
    margin: 0;
    font-size: 1.35rem;
    color: white;
    position: relative;
    z-index: 1;
}

.saturn-use-case p {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 0.98rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.saturn-testimonial__author {
    color: var(--color-primary-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.saturn-testimonial__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.saturn-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.saturn-cta__content h2 {
    margin: 0 0 0.5rem 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.saturn-cta__content p {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 1rem;
}

.saturn-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (min-width: 992px) {
    .saturn-hero__container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
    }

    .saturn-founder {
        grid-template-columns: 2fr 1fr;
    }

    .saturn-about {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: start;
    }
}

@media (max-width: 768px) {
    .saturn-hero__highlights li {
        padding-left: 1.3rem;
    }

    .saturn-card,
    .saturn-service,
    .saturn-product,
    .saturn-impact,
    .saturn-testimonial,
    .saturn-agentic {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .saturn-product h3,
    .saturn-impact h3,
    .saturn-agentic h3 {
        font-size: 1.35rem;
    }
    
    .saturn-product p,
    .saturn-impact p,
    .saturn-agentic p {
        font-size: 1rem;
    }
    
    .saturn-product__agentic {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
    
    .saturn-grid {
        gap: 1.5rem;
    }

    .saturn-cta {
        flex-direction: column;
        text-align: center;
    }

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

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 50;
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(0, 28, 58, 0.92);
    border-bottom: 1px solid rgba(244, 161, 0, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 28, 58, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.navbar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    min-width: 0;
}

.navbar__brand-logo {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.navbar__brand-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    color: var(--color-text);
}

@media (max-width: 1400px) {
    .navbar__brand-text {
        max-width: 260px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 1280px) {
    .navbar__brand-text {
        font-size: 1rem;
        max-width: 220px;
    }
}

@media (max-width: 1200px) {
    .navbar__brand-text {
        max-width: 180px;
    }
}

@media (max-width: 1150px) {
    .navbar__brand-text {
        font-size: 0.95rem;
        max-width: 240px;
    }
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    justify-content: center;
    min-width: 0;
}

.navbar__links a {
    position: relative;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 6px;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0.75rem;
    right: 0.75rem;
    width: 0%;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar__links a:hover {
    color: var(--color-text);
}

.navbar__links a:hover::after {
    width: 100%;
    background: var(--color-text-soft);
}

.navbar__links a.is-active::after,
.navbar__links a.active::after {
    width: 100%;
    background: var(--color-primary);
    box-shadow: 0 0 8px rgba(244, 161, 0, 0.5);
}

.navbar__links a.is-active,
.navbar__links a.active {
    color: var(--color-primary);
    font-weight: 600;
    background: rgba(244, 161, 0, 0.1);
}

.navbar__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: auto;
}

.navbar__toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-text);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar__toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.navbar__toggle:active {
    transform: scale(0.95);
}

.navbar__toggle-icon {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar__toggle-icon--menu {
    opacity: 1;
    transform: rotate(0deg);
}

.navbar__toggle-icon--close {
    opacity: 0;
    transform: rotate(90deg);
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon--menu {
    opacity: 0;
    transform: rotate(-90deg);
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon--close {
    opacity: 1;
    transform: rotate(0deg);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 12, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav__content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 5rem 2rem 2rem;
    animation: slideInUp 0.5s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 576px) {
    .mobile-nav__content {
        padding: 4.5rem 1.5rem 1.5rem;
    }
}

@media (max-height: 600px) {
    .mobile-nav__content {
        padding: 4rem 1.5rem 1.5rem;
    }
}

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

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: var(--color-text-muted);
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 576px) {
    .mobile-nav__link {
        padding: 0.875rem 1rem;
        font-size: 1rem;
        gap: 0.875rem;
    }
}

@media (max-height: 600px) {
    .mobile-nav__link {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .mobile-nav__links {
        gap: 0.375rem;
        margin-bottom: 1.5rem;
    }
}

.mobile-nav__link svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.mobile-nav__link:hover,
.mobile-nav__link.is-active,
.mobile-nav__link.active {
    color: var(--color-text);
    background: rgba(244, 161, 0, 0.1);
    border-color: rgba(244, 161, 0, 0.3);
    transform: translateX(8px);
}

.mobile-nav__link:hover svg,
.mobile-nav__link.is-active svg,
.mobile-nav__link.active svg {
    opacity: 1;
    color: var(--color-primary);
}

.mobile-nav__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--block {
    width: 100%;
    justify-content: center;
}

/* Scroll progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--gradient-cta);
    z-index: 80;
}

/* Media Queries */
@media (max-width: 1200px) {
    .navbar__inner {
        padding: 1.25rem 1.5rem;
    }
    
    .navbar__links {
        gap: 1.25rem;
        font-size: 0.875rem;
    }
    
    .navbar__links a {
        padding: 0.4rem 0.5rem;
    }
    
    .navbar__actions {
        gap: 0.75rem;
    }
    
    .navbar__actions .btn {
        padding: 0.625rem 1.125rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 1100px) {
    .navbar__links {
        gap: 1rem;
        font-size: 0.8125rem;
    }
    
    .navbar__links a {
        padding: 0.375rem 0.4rem;
    }
    
    .navbar__actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 1024px) {
    .navbar__inner {
        padding: 1.25rem 1.5rem;
    }

    .navbar__links {
        display: none;
    }

    .navbar__toggle {
        display: inline-flex;
    }

    .navbar__actions .btn--ghost {
        display: none;
    }
}

@media (max-width: 992px) {
    .navbar__inner {
        padding: 1.25rem 1.5rem;
    }

    .navbar__links {
        display: none;
    }

    .navbar__toggle {
        display: inline-flex;
    }

    .navbar__actions .btn--ghost {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar__inner {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .navbar__brand {
        gap: 0.5rem;
    }

    .navbar__brand-logo {
        width: 40px;
        height: 40px;
    }

    .navbar__brand-text {
        font-size: 0.9rem;
        line-height: 1.2;
        white-space: nowrap;
        max-width: none;
    }
    
    .navbar__actions {
        gap: 0.5rem;
    }
    
    .navbar__toggle {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 576px) {
    .navbar__inner {
        padding: 0.875rem 1rem;
        gap: 0.5rem;
    }
    
    .navbar__brand {
        gap: 0.5rem;
    }
    
    .navbar__brand-logo {
        width: 36px;
        height: 36px;
    }
    
    .navbar__brand-text {
        font-size: 0.8rem;
        line-height: 1.2;
        white-space: nowrap;
        max-width: none;
    }
    
    .navbar__actions {
        gap: 0.5rem;
    }
    
    .navbar__toggle {
        width: 40px;
        height: 40px;
    }
    
    .btn--primary {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 375px) {
    .navbar__inner {
        gap: 0.5rem;
        padding: 0.75rem 0.875rem;
    }
    
    .navbar__brand {
        gap: 0.5rem;
    }
    
    .navbar__brand-logo {
        width: 34px;
        height: 34px;
    }
    
    .navbar__brand-text {
        font-size: 0.75rem;
        line-height: 1.2;
        white-space: nowrap;
        max-width: none;
    }
    
    .navbar__toggle {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 340px) {
    .navbar__inner {
        padding: 0.625rem 0.75rem;
        gap: 0.5rem;
    }
    
    .navbar__brand {
        gap: 0.375rem;
    }
    
    .navbar__brand-logo {
        width: 32px;
        height: 32px;
    }
    
    .navbar__brand-text {
        font-size: 0.7rem;
        line-height: 1.2;
        white-space: nowrap;
    }
    
    .navbar__toggle {
        width: 36px;
        height: 36px;
    }
}

/* ========================================
   AI INTERACTIVE FEATURES
   ======================================== */

/* SynapBot AI Chat Assistant */
.synapbot {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}

@media (max-width: 640px) {
    .synapbot {
        bottom: 1.25rem;
        right: 1.25rem;
    }
}

@media (max-width: 480px) {
    .synapbot {
        bottom: 1rem;
        right: 1rem;
    }
}

.synapbot__trigger {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), rgba(244, 161, 0, 0.8));
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(244, 161, 0, 0.35), 0 0 0 0 rgba(244, 161, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 640px) {
    .synapbot__trigger {
        width: 56px;
        height: 56px;
    }
    
    .synapbot__trigger-icon {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .synapbot__trigger {
        width: 52px;
        height: 52px;
    }
    
    .synapbot__trigger-icon {
        width: 24px;
        height: 24px;
    }
}

.synapbot__trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(244, 161, 0, 0.45);
}

.synapbot__trigger--active {
    background: var(--color-secondary);
}

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

.synapbot__trigger-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.synapbot__window {
    position: fixed;
    bottom: 100px;
    right: 2rem;
    width: 420px;
    max-width: calc(100vw - 4rem);
    height: 600px;
    max-height: calc(100vh - 140px);
    background: rgba(0, 28, 58, 0.98);
    border: 1px solid rgba(244, 161, 0, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 640px) {
    .synapbot__window {
        bottom: 80px;
        right: 1.25rem;
        left: 1.25rem;
        width: auto;
        max-width: none;
        height: 500px;
        max-height: calc(100vh - 120px);
    }
}

@media (max-width: 480px) {
    .synapbot__window {
        bottom: 70px;
        right: 1rem;
        left: 1rem;
        height: 450px;
        max-height: calc(100vh - 100px);
        border-radius: var(--radius-md);
    }
}

.synapbot__window--open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.synapbot__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(244, 161, 0, 0.2);
}

.synapbot__header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.synapbot__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), rgba(244, 161, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.synapbot__avatar svg {
    width: 22px;
    height: 22px;
    color: white;
}

.synapbot__name {
    font-weight: 600;
    font-size: 1rem;
    color: white;
}

.synapbot__status {
    font-size: 0.8rem;
    color: var(--color-primary-light);
}

.synapbot__close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.synapbot__close:hover {
    background: rgba(244, 161, 0, 0.15);
}

.synapbot__close svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
}

.synapbot__messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.synapbot__message {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 85%;
    animation: messageSlideIn 0.3s ease;
}

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

.synapbot__message--bot {
    align-self: flex-start;
}

.synapbot__message--user {
    align-self: flex-end;
}

.synapbot__message-content {
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    line-height: 1.6;
}

.synapbot__message--bot .synapbot__message-content {
    background: rgba(244, 161, 0, 0.12);
    border: 1px solid rgba(244, 161, 0, 0.25);
    color: var(--color-text-soft);
}

.synapbot__message--user .synapbot__message-content {
    background: var(--color-secondary);
    color: white;
}

.synapbot__message-content p {
    margin: 0 0 0.75rem 0;
}

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

.synapbot__message-content ul {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
}

.synapbot__message-content li {
    margin: 0.35rem 0;
}

.synapbot__message-content a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.synapbot__reasoning {
    padding: 0.75rem 1.25rem;
    background: rgba(0, 59, 117, 0.5);
    border-top: 1px solid rgba(244, 161, 0, 0.2);
    font-size: 0.85rem;
}

.synapbot__reasoning-label {
    color: var(--color-primary-light);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.synapbot__reasoning-content {
    color: var(--color-text-muted);
    font-family: 'Courier New', monospace;
}

.synapbot__quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 1.25rem 1rem;
}

.synapbot__quick-btn {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(244, 161, 0, 0.15);
    border: 1px solid rgba(244, 161, 0, 0.3);
    color: var(--color-primary-light);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.synapbot__quick-btn:hover {
    background: rgba(244, 161, 0, 0.25);
    border-color: var(--color-primary);
}

.synapbot__input-form {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem;
    border-top: 1px solid rgba(244, 161, 0, 0.2);
}

.synapbot__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(0, 59, 117, 0.4);
    border: 1px solid rgba(244, 161, 0, 0.25);
    color: white;
    font-size: 0.92rem;
    transition: all 0.2s ease;
}

.synapbot__input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(0, 59, 117, 0.6);
}

.synapbot__input::placeholder {
    color: var(--color-text-muted);
}

.synapbot__send {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--color-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.synapbot__send:hover {
    background: rgba(244, 161, 0, 0.85);
    transform: translateY(-1px);
}

.synapbot__send svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* Agent Visualizer */
.agent-visualizer {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(0, 28, 58, 0.6);
    border: 1px solid rgba(244, 161, 0, 0.25);
    border-radius: var(--radius-lg);
}

.agent-visualizer__header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.agent-visualizer__header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: white;
}

.agent-visualizer__header p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.agent-visualizer__controls {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    align-items: center;
}

.agent-visualizer__controls label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary-light);
    margin: 0;
}

.agent-visualizer__controls select {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(0, 59, 117, 0.5);
    border: 1px solid rgba(244, 161, 0, 0.3);
    color: white;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.agent-visualizer__controls select:hover {
    border-color: rgba(244, 161, 0, 0.5);
    background: rgba(0, 59, 117, 0.7);
}

.agent-visualizer__controls select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244, 161, 0, 0.1);
}

.agent-visualizer__controls select option {
    background: var(--color-bg);
    color: white;
    padding: 0.5rem;
}

.agent-visualizer__select {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(0, 59, 117, 0.5);
    border: 1px solid rgba(244, 161, 0, 0.3);
    color: white;
    font-size: 0.92rem;
    cursor: pointer;
}

.agent-visualizer__select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.agent-visualizer__select option {
    background: var(--color-bg);
    color: white;
}

.agent-visualizer__main {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.agent-visualizer__stage {
    position: relative;
    height: 450px;
    background: rgba(0, 19, 42, 0.7);
    border: 1px solid rgba(244, 161, 0, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.agent-visualizer__canvas {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Agent Reasoning Panel */
.agent-reasoning-panel {
    height: 450px;
    background: rgba(0, 28, 58, 0.8);
    border: 1px solid rgba(244, 161, 0, 0.25);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.agent-reasoning-panel__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(244, 161, 0, 0.2);
    background: rgba(0, 59, 117, 0.4);
}

.agent-reasoning-panel__header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary-light);
    margin: 0;
    flex: 1;
}

.agent-reasoning-panel__agent {
    font-size: 0.85rem;
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    background: rgba(244, 161, 0, 0.15);
    border-radius: 999px;
    font-family: var(--font-display);
}

.agent-reasoning-panel__content {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.agent-reasoning-panel__content::-webkit-scrollbar {
    width: 6px;
}

.agent-reasoning-panel__content::-webkit-scrollbar-track {
    background: rgba(0, 28, 58, 0.5);
}

.agent-reasoning-panel__content::-webkit-scrollbar-thumb {
    background: rgba(244, 161, 0, 0.5);
    border-radius: 3px;
}

.reasoning-step {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.4s ease-out;
}

.reasoning-step__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reasoning-step__label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: ai-pulse 2s ease-in-out infinite;
}

.reasoning-step__content {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.6;
    padding-left: 1.25rem;
}

.reasoning-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.reasoning-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 59, 117, 0.3);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.reasoning-option__label {
    color: var(--color-text-soft);
}

.reasoning-option__confidence {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reasoning-option__bar {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.reasoning-option__fill {
    height: 100%;
    background: linear-gradient(90deg, #F4A100, #FFD37A);
    transition: width 0.6s ease-out;
}

.reasoning-option__value {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    min-width: 35px;
    text-align: right;
}

.reasoning-option--selected {
    border: 1px solid var(--color-primary);
    background: rgba(244, 161, 0, 0.15);
}

.reasoning-decision {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(244, 161, 0, 0.1);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-sm);
}

.reasoning-decision__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.reasoning-decision__text {
    font-size: 0.9rem;
    color: var(--color-text);
    margin: 0;
}

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

@media (max-width: 1200px) {
    .agent-visualizer__main {
        grid-template-columns: 1fr;
    }
    
    .agent-reasoning-panel {
        height: 350px;
    }
}

.agent-visualizer__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--color-text-muted);
}

.agent-visualizer__placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.5;
}

.agent-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float-agent 3s ease-in-out infinite;
}

@keyframes float-agent {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-5px);
    }
}

.agent-node__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(244, 161, 0, 0.2);
    border: 2px solid rgba(244, 161, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0 20px rgba(244, 161, 0, 0.3),
                inset 0 0 15px rgba(244, 161, 0, 0.1);
}

.agent-node__icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 161, 0, 0.2), transparent 70%);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.agent-node__icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary-light);
}

.agent-node--orchestrator .agent-node__icon {
    background: linear-gradient(135deg, rgba(244, 161, 0, 0.3), rgba(244, 161, 0, 0.15));
    border-color: var(--color-primary);
}

.agent-node--thinking .agent-node__icon {
    animation: agentPulse 1.5s ease-in-out infinite, neural-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(244, 161, 0, 0.6),
                inset 0 0 20px rgba(244, 161, 0, 0.3);
}

.agent-node--sending .agent-node__icon,
.agent-node--receiving .agent-node__icon {
    animation: agentBlink 0.6s ease-in-out 2, data-pulse 1s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(255, 211, 122, 0.8),
                inset 0 0 25px rgba(255, 211, 122, 0.4);
}

.agent-node--complete .agent-node__icon {
    background: linear-gradient(135deg, rgba(0, 200, 100, 0.3), rgba(0, 150, 80, 0.2));
    border-color: rgba(0, 255, 127, 0.6);
    box-shadow: 0 0 35px rgba(0, 255, 127, 0.7),
                inset 0 0 20px rgba(0, 255, 127, 0.3);
    animation: success-glow 1.5s ease-in-out;
}

@keyframes data-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes success-glow {
    0% {
        box-shadow: 0 0 20px rgba(0, 255, 127, 0.5),
                    inset 0 0 15px rgba(0, 255, 127, 0.2);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 255, 127, 0.9),
                    inset 0 0 30px rgba(0, 255, 127, 0.5);
    }
    100% {
        box-shadow: 0 0 35px rgba(0, 255, 127, 0.7),
                    inset 0 0 20px rgba(0, 255, 127, 0.3);
    }
}

@keyframes agentPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes agentBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.agent-node__name {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-align: center;
}

.agent-node__state {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(244, 161, 0, 0.15);
    color: var(--color-primary-light);
    text-transform: lowercase;
}

.agent-node__state--thinking {
    background: rgba(244, 161, 0, 0.25);
    color: var(--color-primary);
}

.agent-node__state--complete {
    background: rgba(0, 200, 100, 0.25);
    color: rgba(0, 255, 127, 0.9);
}

.agent-visualizer__log {
    background: rgba(0, 19, 42, 0.7);
    border: 1px solid rgba(244, 161, 0, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: var(--spacing-md);
}

.agent-visualizer__log h4 {
    padding: 0.75rem 1rem;
    margin: 0;
    background: rgba(244, 161, 0, 0.12);
    border-bottom: 1px solid rgba(244, 161, 0, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-light);
}

.agent-log__entries {
    max-height: 250px;
    overflow-y: auto;
    padding: 0.75rem;
}

.agent-log__placeholder {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 2rem 1rem;
    margin: 0;
}

.agent-visualizer__log-header {
    padding: 0.75rem 1rem;
    background: rgba(244, 161, 0, 0.12);
    border-bottom: 1px solid rgba(244, 161, 0, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-light);
}

.agent-visualizer__log-content {
    max-height: 200px;
    overflow-y: auto;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.agent-log-entry {
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    animation: logEntrySlide 0.3s ease;
}

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

.agent-log-time {
    color: var(--color-text-muted);
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.agent-log-message {
    color: var(--color-text-soft);
    font-family: 'Courier New', monospace;
}

.agent-log-entry--info {
    background: rgba(244, 161, 0, 0.15);
    border-left: 3px solid var(--color-primary);
}

.agent-log-entry--thinking {
    background: rgba(244, 161, 0, 0.08);
}

.agent-log-entry--message {
    background: rgba(0, 59, 117, 0.3);
}

.agent-log-entry--complete {
    background: rgba(0, 200, 100, 0.12);
    border-left: 3px solid rgba(0, 255, 127, 0.6);
}

.agent-log-entry--success {
    background: rgba(0, 200, 100, 0.12);
    color: rgba(0, 255, 127, 0.9);
    border-left: 3px solid rgba(0, 255, 127, 0.6);
}

/* Smart Insights Widget */
.smart-insights {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 9998;
}

.smart-insights__toggle {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 59, 117, 0.95);
    border: 1px solid rgba(244, 161, 0, 0.3);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smart-insights__toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-color: var(--color-primary);
}

.smart-insights__toggle--pulse {
    animation: insightsPulse 2s ease-in-out;
}

@keyframes insightsPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.smart-insights__toggle svg {
    width: 26px;
    height: 26px;
    color: var(--color-primary-light);
}

.smart-insights__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(244, 161, 0, 0.5);
}

.smart-insights__panel {
    position: fixed;
    bottom: 100px;
    left: 2rem;
    width: 380px;
    max-width: calc(100vw - 4rem);
    max-height: calc(100vh - 140px);
    background: rgba(0, 28, 58, 0.98);
    border: 1px solid rgba(244, 161, 0, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.smart-insights__panel--open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.smart-insights__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(244, 161, 0, 0.2);
}

.smart-insights__header h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    color: white;
}

.smart-insights__header p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.smart-insights__close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.smart-insights__close:hover {
    background: rgba(244, 161, 0, 0.15);
}

.smart-insights__close svg {
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
}

.smart-insights__content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.smart-insights__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--color-text-muted);
    text-align: center;
}

.smart-insights__empty svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.smart-insights__item {
    position: relative;
    padding: 1rem;
    background: rgba(0, 59, 117, 0.4);
    border: 1px solid rgba(244, 161, 0, 0.25);
    border-radius: var(--radius-md);
    animation: insightSlideIn 0.4s ease;
}

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

.smart-insights__item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(244, 161, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.smart-insights__item-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary-light);
}

.smart-insights__item-content h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: white;
}

.smart-insights__item-content p {
    margin: 0 0 1rem 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--color-text-soft);
}

.smart-insights__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.smart-insights__action {
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    background: rgba(244, 161, 0, 0.15);
    border: 1px solid rgba(244, 161, 0, 0.3);
    color: var(--color-primary-light);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.smart-insights__action:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.smart-insights__item-dismiss {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.smart-insights__item-dismiss:hover {
    background: rgba(244, 161, 0, 0.2);
}

.smart-insights__item-dismiss svg {
    width: 16px;
    height: 16px;
    color: var(--color-text-muted);
}

/* Responsive adjustments for AI features */
@media (max-width: 768px) {
    .synapbot {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .synapbot__window {
        right: 1rem;
        left: 1rem;
        width: auto;
        max-width: none;
    }
    
    .smart-insights {
        bottom: 1.5rem;
        left: 1.5rem;
    }
    
    .smart-insights__panel {
        left: 1rem;
        right: 1rem;
        width: auto;
        max-width: none;
    }
    
    .agent-visualizer__controls {
        flex-direction: column;
    }
    
    .agent-visualizer__select {
        width: 100%;
    }
}

/* ========================================
   AI CONTACT FORM & CHANNELS
   ======================================== */

.ai-contact-hub {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

/* AI Contact Form */
.ai-contact-form {
    background: rgba(0, 28, 58, 0.6);
    border: 1px solid rgba(244, 161, 0, 0.25);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.ai-contact-form__header {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(244, 161, 0, 0.2);
}

.ai-contact-form__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(244, 161, 0, 0.3), rgba(244, 161, 0, 0.15));
    border: 1px solid rgba(244, 161, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-contact-form__icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary-light);
}

.ai-contact-form__header h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.25rem;
    color: white;
}

.ai-contact-form__header p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Form Styling */
.ai-contact-form__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(0, 59, 117, 0.4);
    border: 1px solid rgba(244, 161, 0, 0.25);
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(0, 59, 117, 0.6);
    box-shadow: 0 0 0 3px rgba(244, 161, 0, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--color-bg);
    color: white;
}

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

/* AI Suggestions and Insights */
.form-ai-suggestion {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    background: rgba(244, 161, 0, 0.12);
    color: var(--color-primary-light);
    animation: slideDown 0.3s ease;
}

.form-ai-insight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(244, 161, 0, 0.15);
    border: 1px solid rgba(244, 161, 0, 0.3);
    font-size: 0.88rem;
    color: var(--color-text-soft);
    animation: slideDown 0.3s ease;
}

.form-ai-insight svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary-light);
    flex-shrink: 0;
}

.form-ai-analysis {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(0, 59, 117, 0.5);
    border: 1px solid rgba(244, 161, 0, 0.2);
    animation: slideDown 0.3s ease;
}

.analysis-item {
    font-size: 0.88rem;
    color: var(--color-text-soft);
}

.analysis-item strong {
    color: var(--color-primary-light);
}

.form-ai-recommendation {
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(244, 161, 0, 0.12), rgba(0, 59, 117, 0.4));
    border: 1px solid rgba(244, 161, 0, 0.35);
    animation: slideDown 0.4s ease;
}

.recommendation-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary-light);
    font-weight: 600;
}

.recommendation-header svg {
    width: 20px;
    height: 20px;
}

.recommendation-content {
    color: var(--color-text-soft);
    font-size: 0.92rem;
    line-height: 1.6;
}

.recommendation-content p {
    margin: 0 0 0.75rem 0;
}

.recommendation-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn svg {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
}

.spinner {
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Success Message */
.ai-contact-form__success {
    text-align: center;
    padding: var(--spacing-lg);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 200, 100, 0.3), rgba(0, 150, 80, 0.2));
    border: 2px solid rgba(0, 255, 127, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: rgba(0, 255, 127, 0.9);
}

.ai-contact-form__success h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.5rem;
    color: white;
}

.ai-contact-form__success p {
    margin: 0 0 1.5rem 0;
    color: var(--color-text-soft);
}

/* Contact Channels */
.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-channels h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: white;
}

.contact-channel {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(0, 28, 58, 0.6);
    border: 1px solid rgba(244, 161, 0, 0.25);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.contact-channel:hover {
    border-color: var(--color-primary);
    background: rgba(0, 28, 58, 0.8);
    transform: translateY(-2px);
}

.contact-channel--highlight {
    background: linear-gradient(135deg, rgba(244, 161, 0, 0.12), rgba(0, 59, 117, 0.6));
    border-color: var(--color-primary);
}

.contact-channel__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(244, 161, 0, 0.2);
    border: 1px solid rgba(244, 161, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-channel__icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary-light);
}

.contact-channel__content {
    flex: 1;
}

.contact-channel__content h4 {
    margin: 0 0 0.35rem 0;
    font-size: 1rem;
    color: white;
}

.contact-channel__content p {
    margin: 0 0 0.75rem 0;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.contact-channel__link {
    color: var(--color-primary-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.contact-channel__link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Responsive Contact Hub */
@media (max-width: 992px) {
    .ai-contact-hub {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .navbar__inner {
        padding: 1rem;
    }

    .navbar__brand {
        gap: 0.75rem;
    }

    .navbar__brand-logo {
        width: 42px;
        height: 42px;
    }

    .navbar__brand-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: calc(var(--spacing-xl) + 4rem) 0 var(--spacing-xl);
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .solutions {
        gap: var(--spacing-md);
    }

    .cta-banner {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 600px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3.5rem;
        --spacing-xxl: 5rem;
    }

    .section__title {
        font-size: clamp(2.1rem, 6vw, 3rem);
    }

    .card {
        padding: var(--spacing-md);
    }

    .hero__title {
        font-size: clamp(2.7rem, 8vw, 4.2rem);
    }

    .hero__stat {
        text-align: center;
    }

    .cta-banner {
        padding: var(--spacing-lg);
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ========================================
   GROWTH BY DESIGN CALCULATOR
   ======================================== */

.saturn-section--growth {
    background: linear-gradient(180deg, 
        rgba(0, 28, 58, 0.95) 0%, 
        rgba(0, 15, 30, 1) 50%,
        rgba(0, 28, 58, 0.95) 100%
    );
    border-top: 1px solid rgba(244, 161, 0, 0.2);
    border-bottom: 1px solid rgba(244, 161, 0, 0.2);
}

/* Industry Selector */
.industry-selector-wrapper {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(0, 28, 58, 0.6);
    border: 1px solid rgba(244, 161, 0, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}

.industry-selector-label {
    display: block;
    margin-bottom: 0.75rem;
}

.industry-selector-label span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-soft);
}

.industry-selector {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    background: rgba(0, 28, 58, 0.9);
    border: 2px solid rgba(244, 161, 0, 0.3);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.industry-selector:hover {
    border-color: rgba(244, 161, 0, 0.5);
    background: rgba(0, 28, 58, 1);
}

.industry-selector:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244, 161, 0, 0.15);
}

.industry-selector option {
    background: #001C3A;
    color: var(--color-text);
    padding: 0.75rem;
}

@media (max-width: 768px) {
    .industry-selector-wrapper {
        margin: 1.5rem auto;
        padding: 1.25rem;
    }
    
    .industry-selector {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
}

.growth-calculator {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.growth-calculator--manufacturing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.growth-calculator--manufacturing .growth-calculator__inputs,
.growth-calculator--manufacturing .growth-calculator__results {
    width: 100%;
    max-width: 100%;
}

.growth-calculator__inputs,
.growth-calculator__results {
    background: rgba(0, 28, 58, 0.6);
    border: 1px solid rgba(244, 161, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.growth-calculator__section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid rgba(244, 161, 0, 0.3);
    line-height: 1.3;
}

/* Input Controls */
.growth-input-group {
    margin-bottom: 1.25rem;
}

.growth-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.growth-label__text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.growth-label__value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 60px;
    text-align: right;
}

.growth-slider {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, 
        rgba(244, 161, 0, 0.2) 0%, 
        rgba(244, 161, 0, 0.4) 100%
    );
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.growth-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), rgba(244, 161, 0, 0.8));
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(244, 161, 0, 0.4);
    transition: all 0.3s ease;
}

.growth-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(244, 161, 0, 0.6);
}

.growth-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), rgba(244, 161, 0, 0.8));
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(244, 161, 0, 0.4);
    transition: all 0.3s ease;
}

.growth-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(244, 161, 0, 0.6);
}

.growth-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-soft);
}

/* Approach Selector */
.growth-approach-selector {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 161, 0, 0.15);
}

.growth-approach-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 1rem 0;
}

.growth-approach-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.growth-approach-option {
    cursor: pointer;
}

.growth-approach-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.growth-approach-card {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    border: 2px solid rgba(244, 161, 0, 0.2);
    border-radius: var(--radius-md);
    background: rgba(0, 59, 117, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.growth-approach-card strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
}

.growth-approach-card small {
    font-size: 0.8rem;
    color: var(--color-text-soft);
}

.growth-approach-option input[type="radio"]:checked + .growth-approach-card {
    border-color: var(--color-primary);
    background: rgba(244, 161, 0, 0.15);
    box-shadow: 0 0 20px rgba(244, 161, 0, 0.3);
}

.growth-approach-card:hover {
    border-color: rgba(244, 161, 0, 0.4);
    transform: translateY(-2px);
}

/* Outcome Cards */
.growth-outcome-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.growth-outcome-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(0, 59, 117, 0.3);
    border: 1px solid rgba(244, 161, 0, 0.2);
    transition: all 0.3s ease;
}

.growth-outcome-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(244, 161, 0, 0.2);
    border-color: rgba(244, 161, 0, 0.4);
}

.growth-outcome-card--primary {
    border-left: 4px solid #3B82F6;
}

.growth-outcome-card--success {
    border-left: 4px solid #10B981;
}

.growth-outcome-card--velocity {
    border-left: 4px solid #F59E0B;
}

.growth-outcome-card--quality {
    border-left: 4px solid #8B5CF6;
}

.growth-outcome-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(244, 161, 0, 0.15);
}

.growth-outcome-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.growth-outcome-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.growth-outcome-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.growth-outcome-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.growth-outcome-change {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Methodology Breakdown */
.growth-methodology-breakdown {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(0, 59, 117, 0.25);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(244, 161, 0, 0.15);
}

.growth-breakdown-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin: 0 0 1.5rem 0;
}

.growth-phases {
    display: grid;
    gap: 1.5rem;
}

.growth-phase {
    padding: 1.5rem;
    background: rgba(0, 28, 58, 0.5);
    border-radius: var(--radius-md);
    border-left: 4px solid rgba(244, 161, 0, 0.5);
    transition: all 0.3s ease;
}

.growth-phase:hover {
    border-left-color: var(--color-primary);
    background: rgba(0, 28, 58, 0.7);
}

.growth-phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.growth-phase-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-display);
}

.growth-phase-title {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.growth-phase-duration {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-light);
    padding: 0.4rem 0.9rem;
    background: rgba(244, 161, 0, 0.15);
    border-radius: 999px;
}

.growth-phase-description {
    margin: 0 0 1rem 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--color-text-soft);
}

.growth-phase-deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.growth-phase-deliverables li {
    font-size: 0.9rem;
    color: var(--color-text-soft);
    padding-left: 1.5rem;
    position: relative;
}

.growth-phase-deliverables li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* CTA Block */
.growth-cta-block {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background: radial-gradient(circle at top left, rgba(244, 161, 0, 0.18), rgba(5, 25, 45, 0.85));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(244, 161, 0, 0.35);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.growth-cta-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 640px;
}

.growth-cta-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0 0 0.5rem 0;
}

.growth-cta-content p {
    font-size: 1rem;
    color: var(--color-text-soft);
    margin: 0;
    line-height: 1.6;
}

.growth-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    width: 100%;
}

.growth-cta-actions .btn {
    flex: 1 1 220px;
    justify-content: center;
}

/* Growth Calculator Enhancements */
.growth-intro-subtitle {
    font-size: 1.1rem !important;
    margin-bottom: 1.5rem !important;
}

.growth-calculator-context {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.growth-context-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(244, 161, 0, 0.1);
    border: 1px solid rgba(244, 161, 0, 0.3);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--color-text-soft);
}

.growth-context-badge svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.growth-selector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 0 2rem;
}

.growth-selector-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.growth-selector-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

.growth-selector-label svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.growth-selector {
    padding: 0.875rem 1rem;
    background: rgba(0, 28, 58, 0.6);
    border: 1px solid rgba(244, 161, 0, 0.3);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s ease;
}

.growth-selector:hover,
.growth-selector:focus {
    border-color: var(--color-primary);
    background: rgba(0, 28, 58, 0.8);
    outline: none;
}

.growth-input-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(244, 161, 0, 0.08);
    border-left: 2px solid rgba(244, 161, 0, 0.4);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--color-text-soft);
    line-height: 1.5;
}

.growth-input-hint svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Enhanced Slider with Health Zones */
.growth-slider-wrapper {
    position: relative;
    margin: 0.75rem 0;
}

.growth-slider-zones {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 8px;
    transform: translateY(-50%);
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    pointer-events: none;
}

.growth-zone {
    height: 100%;
    transition: opacity 0.3s ease;
}

.growth-zone--poor {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.3), rgba(239, 68, 68, 0.2));
}

.growth-zone--average {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.3), rgba(251, 191, 36, 0.2));
}

.growth-zone--good {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.2));
}

.growth-slider {
    position: relative;
    z-index: 2;
}

.growth-range-marker {
    position: absolute;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--color-text-soft);
    opacity: 0.7;
}

/* Tooltip System */
.growth-tooltip-trigger {
    background: none;
    border: none;
    padding: 0;
    margin-left: 0.375rem;
    cursor: help;
    color: var(--color-text-soft);
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.growth-tooltip-trigger:hover {
    color: var(--color-primary);
}

.growth-tooltip-trigger svg {
    width: 16px;
    height: 16px;
}

.growth-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(0, 37, 73, 0.98), rgba(0, 28, 58, 0.98));
    border: 2px solid rgba(244, 161, 0, 0.4);
    border-radius: var(--radius-md);
    z-index: 100;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    animation: tooltipSlideIn 0.3s ease;
}

@keyframes tooltipSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.growth-tooltip strong {
    display: block;
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.growth-tooltip p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-soft);
    margin: 0 0 1rem 0;
}

.growth-tooltip-zones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zone-indicator {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    gap: 0.5rem;
}

.zone-indicator::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
}

.zone-indicator--poor {
    background: rgba(239, 68, 68, 0.15);
    color: #FCA5A5;
}

.zone-indicator--poor::before {
    background: #EF4444;
}

.zone-indicator--average {
    background: rgba(251, 191, 36, 0.15);
    color: #FCD34D;
}

.zone-indicator--average::before {
    background: #FBBF24;
}

.zone-indicator--good {
    background: rgba(16, 185, 129, 0.15);
    color: #6EE7B7;
}

.zone-indicator--good::before {
    background: #10B981;
}

/* Opportunity Breakdown */
.growth-opportunity-breakdown {
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 37, 73, 0.6), rgba(0, 28, 58, 0.8));
    border: 2px solid rgba(244, 161, 0, 0.3);
    border-radius: var(--radius-lg);
}

.growth-opportunity-header {
    text-align: center;
    margin-bottom: 2rem;
}

.growth-opportunity-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0 0 0.5rem 0;
}

.growth-opportunity-subtitle {
    font-size: 1rem;
    color: var(--color-text-soft);
    margin: 0;
}

.growth-opportunity-grid {
    display: grid;
    gap: 1.5rem;
}

.growth-opportunity-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 28, 58, 0.6);
    border: 2px solid rgba(244, 161, 0, 0.25);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.growth-opportunity-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    transition: width 0.3s ease;
}

.growth-opportunity-card--high::before {
    background: linear-gradient(180deg, #10B981, #059669);
}

.growth-opportunity-card--medium::before {
    background: linear-gradient(180deg, #F59E0B, #D97706);
}

.growth-opportunity-card--moderate::before {
    background: linear-gradient(180deg, #3B82F6, #2563EB);
}

.growth-opportunity-card:hover {
    transform: translateX(4px);
    border-color: rgba(244, 161, 0, 0.5);
    background: rgba(0, 28, 58, 0.8);
}

.growth-opportunity-card:hover::before {
    width: 8px;
}

.growth-opportunity-rank {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    gap: 0.5rem;
}

.rank-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(244, 161, 0, 0.2), rgba(244, 161, 0, 0.1));
    border: 2px solid rgba(244, 161, 0, 0.4);
    color: var(--color-primary);
}

.rank-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-soft);
    text-align: center;
}

.growth-opportunity-content {
    flex: 1;
}

.growth-opportunity-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0 0 0.75rem 0;
}

.growth-opportunity-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-soft);
    margin: 0 0 1.25rem 0;
}

.growth-opportunity-metrics {
    display: flex;
    gap: 2rem;
}

.opportunity-metric {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.opportunity-metric .metric-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-soft);
}

.opportunity-metric .metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.growth-insight-narrative {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 59, 117, 0.4), rgba(0, 28, 58, 0.6));
    border: 2px solid rgba(244, 161, 0, 0.3);
    border-radius: var(--radius-lg);
}

.growth-insight-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.growth-insight-header svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.growth-insight-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0;
}

.growth-insight-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 0 1rem 0;
}

.growth-insight-content p:last-child {
    margin-bottom: 0;
}

.growth-insight-highlight {
    padding: 1rem;
    background: rgba(244, 161, 0, 0.1);
    border-left: 3px solid var(--color-primary);
    border-radius: 4px;
    font-size: 1rem !important;
    color: var(--color-text-soft) !important;
}

.growth-insight-highlight strong,
.growth-insight-highlight span {
    color: var(--color-primary);
    font-weight: 600;
}

.growth-email-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.growth-email-modal-content {
    position: relative;
    max-width: 500px;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 37, 73, 0.95), rgba(0, 28, 58, 0.98));
    border: 2px solid rgba(244, 161, 0, 0.4);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    animation: slideUp 0.3s ease;
}

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

.growth-email-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--color-text-soft);
}

.growth-email-modal-close:hover {
    background: rgba(244, 161, 0, 0.2);
    color: var(--color-primary);
}

.growth-email-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.growth-email-modal-header svg {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.growth-email-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0 0 0.5rem 0;
}

.growth-email-modal-header p {
    font-size: 1rem;
    color: var(--color-text-soft);
    margin: 0;
}

.growth-email-form .form-group {
    margin-bottom: 1.25rem;
}

.growth-email-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.growth-email-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(0, 28, 58, 0.6);
    border: 1px solid rgba(244, 161, 0, 0.3);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.2s ease;
}

.growth-email-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(0, 28, 58, 0.8);
}

.growth-email-form input::placeholder {
    color: var(--color-text-soft);
    opacity: 0.6;
}

.growth-email-success {
    text-align: center;
    padding: 2rem 0;
}

.growth-email-success svg {
    color: #10B981;
    margin-bottom: 1rem;
}

.growth-email-success h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0 0 0.75rem 0;
}

.growth-email-success p {
    font-size: 1rem;
    color: var(--color-text-soft);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .growth-calculator {
        grid-template-columns: 1fr;
    }

    .growth-calculator--manufacturing {
        grid-template-columns: 1fr;
    }

    .growth-outcome-cards {
        grid-template-columns: 1fr 1fr;
    }

    .growth-framework-overview--detailed {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .growth-calculator__inputs,
    .growth-calculator__results {
        padding: 1.5rem 1.25rem;
    }

    .growth-approach-options {
        grid-template-columns: 1fr;
    }

    .growth-outcome-cards {
        grid-template-columns: 1fr;
    }

    .growth-cta-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .growth-cta-actions {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }

    .growth-cta-actions .btn {
        width: 100%;
    }

    .growth-framework-overview--detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .growth-framework-card-detailed {
        padding: 1.5rem;
    }

    .growth-framework-card-header {
        flex-wrap: wrap;
    }

    .growth-framework-duration {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .growth-calculator-intro {
        padding: 0 1rem;
    }

    .growth-calculator-intro h3 {
        font-size: 1.3rem;
    }

    .growth-selector-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .growth-calculator-context {
        flex-direction: column;
        gap: 0.75rem;
    }

    .growth-context-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .growth-email-modal-content {
        padding: 1.5rem;
    }

    .growth-insight-narrative {
        padding: 1.5rem;
    }

    .growth-hero-metric {
        grid-template-columns: 1fr;
    }

    .growth-hero-value {
        font-size: 2.5rem;
    }

    .growth-hero-change {
        font-size: 1.2rem;
    }

    .projection-summary-cards {
        grid-template-columns: 1fr;
    }

    .projection-range-info {
        flex-direction: column;
    }

    .growth-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .growth-metric-card {
        padding: 1.25rem;
    }

    .growth-metric-value {
        font-size: 1.5rem;
    }
    
    /* Calculator section title */
    .growth-calculator__section-title {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    /* Input groups */
    .growth-input-group {
        margin-bottom: 1.75rem;
    }
    
    /* Input labels */
    .growth-input-group label {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
        display: block;
    }
    
    /* Slider wrapper */
    .growth-slider-wrapper {
        margin-top: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    /* Slider value display */
    .growth-input-value {
        font-size: 0.9375rem;
        margin-top: 0.625rem;
    }
    
    /* Tooltip trigger */
    .growth-tooltip-trigger {
        width: 20px;
        height: 20px;
        margin-left: 0.5rem;
    }
    
    /* Growth projections box */
    .growth-projection-box {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }
    
    .growth-projection-item {
        margin-bottom: 1rem;
    }
    
    .growth-projection-label {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
    }
    
    .growth-projection-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .growth-calculator__inputs,
    .growth-calculator__results {
        padding: 1.25rem 1rem;
    }
    
    /* Section title */
    .growth-calculator__section-title {
        font-size: 1.0625rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        letter-spacing: -0.01em;
    }
    
    /* Subsection titles */
    .growth-input-section-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }
    
    /* Input sections */
    .growth-input-section {
        margin-bottom: 2rem;
    }
    
    /* Input groups - more compact */
    .growth-input-group {
        margin-bottom: 1.5rem;
    }
    
    /* Labels */
    .growth-label {
        margin-bottom: 0.75rem;
    }
    
    .growth-label__text {
        font-size: 0.875rem;
        line-height: 1.5;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .growth-label__value {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .growth-input-group label {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 0.625rem;
    }
    
    /* Slider */
    .growth-slider {
        height: 6px;
        margin: 0.75rem 0;
    }
    
    .growth-slider::-webkit-slider-thumb {
        width: 22px;
        height: 22px;
    }
    
    .growth-slider::-moz-range-thumb {
        width: 22px;
        height: 22px;
    }
    
    /* Slider value */
    .growth-input-value {
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }
    
    /* Range labels */
    .growth-range-labels {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .growth-range-marker {
        font-size: 0.6875rem;
    }
    
    /* Input hints */
    .growth-input-hint {
        font-size: 0.75rem;
        margin-top: 0.625rem;
        padding: 0.5rem 0.75rem;
    }
    
    .growth-input-hint svg {
        width: 12px;
        height: 12px;
    }
    
    /* Tooltip */
    .growth-tooltip-trigger {
        width: 18px;
        height: 18px;
        margin-left: 0.375rem;
    }
    
    .growth-tooltip-trigger svg {
        width: 14px;
        height: 14px;
    }
    
    /* Target display */
    .growth-target-display {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .growth-target-item {
        padding: 0.875rem;
    }
    
    .growth-target-label {
        font-size: 0.75rem;
    }
    
    .growth-target-value {
        font-size: 1.125rem;
    }
    
    /* Growth projection box */
    .growth-projection-box {
        padding: 1rem;
        margin: 1rem 0;
        border-radius: 12px;
    }
    
    .growth-projection-item {
        margin-bottom: 0.875rem;
    }
    
    .growth-projection-item:last-child {
        margin-bottom: 0;
    }
    
    .growth-projection-label {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
        opacity: 0.8;
    }
    
    .growth-projection-value {
        font-size: 1.375rem;
        line-height: 1.3;
    }
    
    /* Hero metric */
    .growth-hero-value {
        font-size: 2rem;
    }
    
    .growth-hero-change {
        font-size: 1rem;
    }
    
    /* Metric cards */
    .growth-metric-card {
        padding: 1rem;
    }
    
    .growth-metric-value {
        font-size: 1.25rem;
    }
    
    .growth-metric-label {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .growth-calculator__inputs,
    .growth-calculator__results {
        padding: 1rem 0.875rem;
    }
    
    /* Section title */
    .growth-calculator__section-title {
        font-size: 1rem;
        line-height: 1.35;
        margin-bottom: 0.875rem;
    }
    
    /* Subsection titles */
    .growth-input-section-title {
        font-size: 0.9375rem;
        margin-bottom: 0.875rem;
        margin-top: 1.25rem;
    }
    
    /* Input sections */
    .growth-input-section {
        margin-bottom: 1.75rem;
    }
    
    /* Input groups - very compact */
    .growth-input-group {
        margin-bottom: 1.25rem;
    }
    
    /* Labels */
    .growth-label {
        margin-bottom: 0.625rem;
    }
    
    .growth-label__text {
        font-size: 0.8125rem;
        line-height: 1.45;
    }
    
    .growth-label__value {
        font-size: 0.9375rem;
    }
    
    .growth-input-group label {
        font-size: 0.8125rem;
        line-height: 1.45;
        margin-bottom: 0.5rem;
    }
    
    /* Slider */
    .growth-slider {
        height: 5px;
        margin: 0.625rem 0;
    }
    
    .growth-slider::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
    }
    
    .growth-slider::-moz-range-thumb {
        width: 20px;
        height: 20px;
    }
    
    /* Slider value */
    .growth-input-value {
        font-size: 0.8125rem;
        margin-top: 0.375rem;
    }
    
    /* Range labels */
    .growth-range-labels {
        font-size: 0.6875rem;
        margin-top: 0.375rem;
    }
    
    .growth-range-marker {
        font-size: 0.625rem;
    }
    
    /* Input hints */
    .growth-input-hint {
        font-size: 0.6875rem;
        margin-top: 0.5rem;
        padding: 0.4375rem 0.625rem;
    }
    
    .growth-input-hint svg {
        width: 11px;
        height: 11px;
    }
    
    /* Tooltip */
    .growth-tooltip-trigger {
        width: 16px;
        height: 16px;
        margin-left: 0.25rem;
    }
    
    .growth-tooltip-trigger svg {
        width: 12px;
        height: 12px;
    }
    
    /* Target display */
    .growth-target-display {
        grid-template-columns: 1fr;
        gap: 0.625rem;
        margin-top: 0.875rem;
    }
    
    .growth-target-item {
        padding: 0.75rem;
    }
    
    .growth-target-label {
        font-size: 0.6875rem;
    }
    
    .growth-target-value {
        font-size: 1rem;
    }
    
    /* Growth projection box */
    .growth-projection-box {
        padding: 0.875rem;
        margin: 0.875rem 0;
    }
    
    .growth-projection-item {
        margin-bottom: 0.75rem;
    }
    
    .growth-projection-label {
        font-size: 0.6875rem;
    }
    
    .growth-projection-value {
        font-size: 1.25rem;
    }
    
    /* Calculator intro */
    .growth-calculator-intro h3 {
        font-size: 1.125rem;
        line-height: 1.35;
    }
    
    .growth-calculator-intro p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    /* Context badges */
    .growth-context-badge {
        font-size: 0.75rem;
        padding: 0.4375rem 0.875rem;
    }
}

/* Growth Framework Overview - Detailed Cards */
.growth-framework-overview--detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.growth-framework-card-detailed {
    padding: 1.5rem;
    background: rgba(0, 28, 58, 0.6);
    border: 1px solid rgba(244, 161, 0, 0.2);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.growth-framework-card-detailed:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 161, 0, 0.4);
    box-shadow: 0 12px 32px rgba(244, 161, 0, 0.2);
}

.growth-framework-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(244, 161, 0, 0.2);
}

.growth-framework-number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), rgba(244, 161, 0, 0.8));
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    color: #10233E;
    font-family: var(--font-display);
}

.growth-framework-card-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.growth-framework-duration {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    padding: 0.4rem 0.9rem;
    background: rgba(244, 161, 0, 0.15);
    border-radius: 999px;
    white-space: nowrap;
}

.growth-framework-description {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--color-text-soft);
    margin: 0;
}

.growth-framework-deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.growth-framework-deliverables li {
    font-size: 0.9rem;
    color: var(--color-text-soft);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.growth-framework-deliverables li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.growth-calculator-intro {
    text-align: center;
    margin: 1.5rem 0 2rem;
    padding: 0 2rem;
}

.growth-calculator-intro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0 0 0.75rem 0;
}

.growth-calculator-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-soft);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .growth-framework-overview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .growth-framework-overview {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .growth-calculator-intro {
        padding: 0 1rem;
    }
}

/* Manufacturing Calculator Specific Styles */
.growth-calculator--manufacturing .growth-calculator__inputs {
    /* No scroll - full height display */
    height: auto;
    min-height: 100%;
}

.growth-input-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(244, 161, 0, 0.15);
}

.growth-input-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.growth-input-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.growth-target-display {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 59, 117, 0.3);
    border-radius: var(--radius-md);
    border: 1px solid rgba(244, 161, 0, 0.2);
}

.growth-target-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.growth-target-label {
    font-size: 0.85rem;
    color: var(--color-text-soft);
    font-weight: 600;
}

.growth-target-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Processing Indicator */
.growth-processing-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1.5rem;
    animation: fadeIn 0.3s ease;
}

.growth-processing-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(244, 161, 0, 0.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.growth-processing-indicator span {
    font-size: 1.1rem;
    color: var(--color-text-soft);
    font-weight: 500;
}

/* Results Content */
.growth-results-content {
    transition: opacity 0.3s ease;
}

/* Results Header */
.growth-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(244, 161, 0, 0.2);
}

.growth-results-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.growth-results-actions {
    display: flex;
    gap: 0.75rem;
}

.growth-print-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 161, 0, 0.5);
    background: rgba(244, 161, 0, 0.12);
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.growth-print-button svg {
    width: 18px;
    height: 18px;
}

.growth-print-button:hover {
    background: rgba(244, 161, 0, 0.2);
    border-color: rgba(244, 161, 0, 0.8);
}

.growth-results-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0 0 0.25rem 0;
}

.growth-results-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-soft);
    margin: 0;
    font-weight: 500;
}

.growth-status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #10B981;
    animation: statusPulse 2s ease-in-out infinite;
}

.growth-status-badge svg {
    flex-shrink: 0;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.growth-status-badge--analyzing {
    background: rgba(244, 161, 0, 0.15);
    border-color: rgba(244, 161, 0, 0.4);
    color: var(--color-primary);
}

/* Hero Metric Card */
.growth-hero-metric {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.growth-hero-metric-main {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(244, 161, 0, 0.2), rgba(0, 59, 117, 0.4));
    border: 2px solid rgba(244, 161, 0, 0.4);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.growth-hero-metric-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 161, 0, 0.1) 0%, transparent 70%);
    animation: heroGlow 4s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(-10%, -10%); opacity: 0.8; }
}

.growth-hero-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.growth-hero-label svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.growth-hero-label span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.growth-hero-value-container {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.growth-hero-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    text-shadow: 0 2px 12px rgba(244, 161, 0, 0.3);
}

.growth-hero-change {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    background: rgba(244, 161, 0, 0.2);
    border-radius: var(--radius-sm);
}

.growth-hero-timeline {
    position: relative;
    z-index: 1;
}

.growth-timeline-bar {
    height: 8px;
    background: rgba(0, 59, 117, 0.6);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.growth-timeline-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), #FFD37A);
    border-radius: 4px;
    width: 100%;
    animation: timelineGrow 1.5s ease-out;
}

@keyframes timelineGrow {
    from { width: 0%; }
    to { width: 100%; }
}

.growth-timeline-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-text-soft);
    font-weight: 500;
}

.growth-hero-metric-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.growth-projection-summary {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(0, 28, 58, 0.6);
    border: 1px solid rgba(244, 161, 0, 0.25);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.projection-summary-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.projection-summary-card {
    padding: 1.5rem;
    background: rgba(0, 37, 73, 0.6);
    border: 1px solid rgba(244, 161, 0, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.summary-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-soft);
    font-weight: 600;
}

.summary-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
}

.summary-helper {
    font-size: 0.85rem;
    color: var(--color-text-soft);
}

.projection-range-visual {
    padding: 1.5rem;
    background: rgba(0, 37, 73, 0.5);
    border: 1px dashed rgba(244, 161, 0, 0.4);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.projection-range-info {
    display: flex;
    gap: 1rem;
}

.range-info-item {
    flex: 1;
    padding: 1rem;
    background: rgba(0, 28, 58, 0.6);
    border-radius: var(--radius-md);
    border: 1px solid rgba(244, 161, 0, 0.2);
}

.range-info-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-soft);
    margin-bottom: 0.25rem;
}

.range-info-item strong {
    font-size: 1.2rem;
    color: var(--color-accent);
}

.projection-range-track {
    position: relative;
    height: 10px;
    background: rgba(0, 59, 117, 0.6);
    border-radius: 999px;
    overflow: hidden;
}

.projection-range-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(90deg, rgba(244, 161, 0, 0.2), rgba(244, 161, 0, 0.8));
    border-radius: 999px;
    transition: width 0.6s ease;
}

.projection-track-label {
    position: absolute;
    top: -1.75rem;
    left: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-soft);
}

.projection-track-label--end {
    right: 0;
    left: auto;
    text-align: right;
}

.projection-range-values {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.growth-metric-card {
    padding: 1.75rem;
    background: rgba(0, 28, 58, 0.6);
    border: 1px solid rgba(244, 161, 0, 0.25);
    border-radius: var(--radius-lg);
    display: flex;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.growth-metric-card:hover {
    transform: translateX(4px);
    border-color: rgba(244, 161, 0, 0.5);
    background: rgba(0, 28, 58, 0.8);
}

.growth-metric-card--highlight {
    background: linear-gradient(135deg, rgba(244, 161, 0, 0.15), rgba(0, 59, 117, 0.3));
    border: 2px solid rgba(244, 161, 0, 0.4);
}

.growth-metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(244, 161, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.growth-metric-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.growth-metric-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.growth-metric-label {
    font-size: 0.85rem;
    color: var(--color-text-soft);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.growth-metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.2;
}

.growth-metric-sublabel {
    font-size: 0.8rem;
    color: var(--color-text-soft);
    font-weight: 500;
}

/* Intelligence Scores */
.growth-intelligence-scores {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(0, 28, 58, 0.5);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(244, 161, 0, 0.15);
}

.growth-scores-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin: 0 0 1.5rem 0;
}

.growth-score-grid {
    display: grid;
    gap: 1.25rem;
}

.growth-score-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.growth-score-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

.growth-score-bar {
    position: relative;
    height: 32px;
    background: rgba(0, 59, 117, 0.4);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(244, 161, 0, 0.2);
}

.growth-score-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), rgba(244, 161, 0, 0.7));
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-sm);
}

.growth-score-value {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-accent);
    z-index: 1;
}

/* 6-Pillar Analysis */
.growth-pillar-analysis {
    margin-bottom: 2.5rem;
}

.growth-analysis-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin: 0 0 1.5rem 0;
}

.growth-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.growth-pillar-card {
    padding: 1.5rem;
    background: rgba(0, 28, 58, 0.6);
    border: 1px solid rgba(244, 161, 0, 0.2);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.growth-pillar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 161, 0, 0.4);
    box-shadow: 0 8px 24px rgba(244, 161, 0, 0.2);
}

.growth-pillar-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(244, 161, 0, 0.15);
}

.growth-pillar-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.growth-pillar-header h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    flex: 1;
}

.growth-pillar-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.growth-pillar-metric span {
    font-size: 0.9rem;
    color: var(--color-text-soft);
}

.growth-pillar-metric strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Responsive Adjustments for Manufacturing Calculator */
@media (max-width: 1200px) {
    .growth-pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .growth-calculator--manufacturing .growth-calculator__inputs {
        max-height: none;
        overflow-y: visible;
    }

    .growth-projection-primary {
        grid-template-columns: 1fr;
    }

    .growth-target-display {
        grid-template-columns: 1fr;
    }

    .growth-pillar-grid {
        grid-template-columns: 1fr;
    }

    .growth-projection-value {
        font-size: 2rem;
    }
    
    /* AI Activity Ticker Responsive */
    .ai-activity-ticker {
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .ai-activity-ticker__stream {
        min-height: 150px;
    }
    
    .ai-activity-item {
        padding: 0.6rem 0.8rem;
        gap: 0.75rem;
    }
    
    .ai-activity-action {
        font-size: 0.85rem;
    }
    
    .ai-activity-icon {
        font-size: 1.25rem;
    }
}

/* Growth Framework Explanation Section */
.growth-framework-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.growth-framework-card {
    padding: 2rem;
    background: rgba(0, 28, 58, 0.6);
    border: 1px solid rgba(244, 161, 0, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
}

.growth-framework-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 161, 0, 0.4);
    box-shadow: 0 12px 32px rgba(244, 161, 0, 0.2);
}

.growth-framework-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(244, 161, 0, 0.2), rgba(244, 161, 0, 0.1));
    border-radius: var(--radius-md);
    border: 1px solid rgba(244, 161, 0, 0.3);
}

.growth-framework-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-primary);
}

.growth-framework-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin: 0;
}

.growth-framework-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-soft);
    margin: 0;
}

.growth-outcome-statement {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(244, 161, 0, 0.15), rgba(0, 59, 117, 0.3));
    border-radius: var(--radius-lg);
    border: 2px solid rgba(244, 161, 0, 0.3);
    text-align: center;
}

.growth-outcome-statement h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 1rem 0;
}

.growth-outcome-statement p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.growth-outcome-statement strong {
    color: var(--color-accent);
    font-weight: 700;
}

.growth-outcome-statement em {
    color: var(--color-primary-light);
    font-style: italic;
}

@media (max-width: 992px) {
    .growth-framework-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .growth-outcome-statement {
        padding: 2rem;
    }
    
    .growth-outcome-statement p {
        font-size: 1.05rem;
    }
}
