:root {
    /* --- THEME: Obsidian & Candy --- */
    --bg-void: #020204;
    --bg-glass: rgba(20, 20, 23, 0.6);
    --bg-glass-hover: rgba(30, 30, 35, 0.8);

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-shine: rgba(255, 255, 255, 0.15);

    /* Brand Colors */
    --hippo-gradient: linear-gradient(135deg, #6366F1 0%, #A855F7 40%, #EC4899 100%);
    --primary: #8B5CF6;
    --primary-glow: rgba(139, 92, 246, 0.4);
    --linkedin-blue-gradient: linear-gradient(135deg, #0A66C2 0%, #0077b5 100%);

    --accent-success: #10B981;
    --accent-hot: #F43F5E;

    /* Typography - Improved contrast for accessibility */
    --text-main: #F1F5F9;
    --text-muted: #B0BEC5;
    /* Improved from #94A3B8 for better contrast */
    --text-dim: #71717A;
    /* Improved from #52525B for better contrast */

    --radius-lg: 20px;
    --radius-md: 12px;

    --ease-elastic: cubic-bezier(0.25, 0.8, 0.25, 1);

    /* --- STRICT SPACING SYSTEM --- */
    --section-gap: 100px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-void);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Premium Texture */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}

/* Glow Background */
.glow-fx {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

h1,
h2,
h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: white;
    letter-spacing: -0.02em;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- GLOBAL SECTION STYLING --- */
section {
    padding: var(--section-gap) 0;
    position: relative;
}

.border-top {
    border-top: 1px solid var(--border-subtle);
}

/* --- NAV --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(2, 2, 4, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1100px;
}

.logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.logo img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease-elastic);
    font-size: 0.9rem;
}

.btn-primary {
    background: white;
    color: black;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

/* --- HERO --- */
.hero {
    padding-top: 140px;
    /* Compensate for Nav */
    padding-bottom: 40px;
    text-align: center;
    position: relative;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
}

/* Inline Form Styles */
.hero-form-container {
    display: none;
    max-width: 400px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease-out;
}

.hero-form-container.active {
    display: block;
}

.hero-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.hero-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.hero-submit-btn {
    width: 100%;
    background: white;
    color: black;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-hot);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.7);
    animation: pulse 2s infinite;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 32px;
}

.text-gradient {
    background: var(--hippo-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* --- VIDEO WRAPPER --- */
.video-wrapper {
    margin: 0 auto 80px;
    perspective: 1200px;
    max-width: 900px;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #0C0C0E;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateX(2deg);
    transition: transform 0.5s ease;
}

.video-container:hover {
    transform: rotateX(0deg) scale(1.01);
    border-color: var(--border-shine);
}

.play-btn-fake {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    backdrop-filter: blur(5px);
    transition: 0.3s;
    cursor: pointer;
}

.play-btn-fake::after {
    content: '';
    width: 0;
    height: 0;
    margin-left: 5px;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent white;
}

.video-container:hover .play-btn-fake {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--primary-glow);
}

/* --- STACK SECTION (The Visual) --- */
.stack-section {
    padding: 40px 0 60px;
    /* Reduced bottom padding to pull content closer */
    text-align: center;
    perspective: 1200px;
}

.stack-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 380px;
    margin: 50px auto 0;
    transform-style: preserve-3d;
}

.stack-card {
    position: absolute;
    inset: 0;
    height: 300px;
    background: #0A0A0C;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.9);
    transform-origin: center 200%;
    animation: stackCycle 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    will-change: transform, opacity;
}

.stack-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.card-1 {
    animation-delay: 0s;
    z-index: 3;
}

.card-2 {
    animation-delay: 3s;
    z-index: 2;
}

.card-3 {
    animation-delay: 6s;
    z-index: 1;
}

@keyframes stackCycle {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
        z-index: 3;
        border-color: var(--border-subtle);
    }

    20% {
        border-color: var(--primary);
    }

    25% {
        transform: translateX(120%) rotate(10deg) scale(0.9);
        opacity: 1;
        z-index: 3;
    }

    30% {
        transform: translateX(0) translateY(40px) scale(0.85);
        opacity: 0;
        z-index: 0;
    }

    35% {
        transform: translateY(40px) scale(0.9);
        opacity: 1;
        z-index: 1;
    }

    66% {
        transform: translateY(20px) scale(0.95);
        opacity: 1;
        z-index: 2;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
        z-index: 3;
    }
}

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

.ui-pfp {
    width: 36px;
    height: 36px;
    background: #333;
    border-radius: 50%;
}

.ui-check {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--accent-success);
    opacity: 0;
    transform: scale(0.5);
    animation: checkFlash 9s infinite;
    will-change: transform, opacity;
}

.card-1 .ui-check {
    animation-delay: 0s;
}

.card-2 .ui-check {
    animation-delay: 3s;
}

.card-3 .ui-check {
    animation-delay: 6s;
}

@keyframes checkFlash {
    20% {
        opacity: 1;
        transform: scale(1.2);
    }

    25% {
        opacity: 1;
        transform: scale(1);
    }

    35% {
        opacity: 0;
    }
}

/* --- FEATURES SECTIONS --- */
/* FIX: Symmetrical padding around the border top */
.features-section {
    padding-top: 80px;
    padding-bottom: 100px;
    border-top: 1px solid var(--border-subtle);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    /* Reduced from 120px to tighten flow */
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse .feature-text {
    direction: ltr;
}

.feature-visual {
    background: linear-gradient(145deg, #0E0E11 0%, #050506 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Viz: Snippets */
.viz-chat {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.viz-bubble {
    max-width: 80%;
    padding: 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #A1A1AA;
    background: #18181B;
}

.snippet-input-fake {
    align-self: flex-end;
    background: #000;
    border: 1px solid var(--border-shine);
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    color: white;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 2px;
}

.typewriter span {
    opacity: 0;
    animation: typeOn 4s infinite;
    will-change: opacity;
}

.typewriter span:nth-child(1) {
    animation-delay: 0.1s;
}

.typewriter span:nth-child(2) {
    animation-delay: 0.3s;
}

.typewriter span:nth-child(3) {
    animation-delay: 0.5s;
}

.typewriter span:nth-child(4) {
    animation-delay: 0.8s;
}

.typewriter span:nth-child(5) {
    animation-delay: 0.9s;
}

.snippet-menu {
    position: absolute;
    bottom: 60px;
    right: 40px;
    width: 200px;
    background: #18181B;
    border: 1px solid var(--border-shine);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    animation: showMenu 4s infinite;
    will-change: transform, opacity;
}

.snippet-option {
    padding: 8px 12px;
    font-size: 0.8rem;
    color: #888;
    border-bottom: 1px solid #222;
}

.snippet-option.selected {
    background: var(--primary);
    color: white;
}

@keyframes typeOn {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes showMenu {

    0%,
    10% {
        opacity: 0;
        transform: translateY(10px);
    }

    15%,
    80% {
        opacity: 1;
        transform: translateY(0);
    }

    90%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* --- BENTO GRID --- */
.grid-bento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.bento-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.bento-card:hover {
    border-color: var(--border-shine);
    background: var(--bg-glass-hover);
}

.bento-icon {
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: inline-block;
}

.bento-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- NEW HOW IT WORKS (Balanced Grid) --- */
.process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-indicator {
    width: 48px;
    height: 48px;
    background: var(--bg-void);
    border: 1px solid var(--border-shine);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    box-shadow: 0 0 0 8px var(--bg-void);
    transition: 0.3s;
}

.process-step:hover .step-indicator {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}

.step-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 8px;
}

.step-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.process-line {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-shine) 20%, var(--border-shine) 80%, transparent 100%);
    z-index: 1;
    display: block;
}

/* --- PRICING --- */
.pricing-box {
    background: #08080A;
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    max-width: 480px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.progress-bg {
    width: 100%;
    height: 6px;
    background: #222;
    border-radius: 10px;
    margin: 20px 0 10px;
    overflow: hidden;
}

.progress-fill {
    width: 80%;
    height: 100%;
    background: var(--accent-hot);
    position: relative;
    border-radius: 10px;
}

.progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
    animation: shimmer 2.5s infinite;
    will-change: transform;
}

/* --- TRUST & STORY & FAQ --- */
.trust-block,
.story-content,
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.trust-block,
.story-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.story-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-shine);
    background: var(--bg-glass-hover);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- FOOTER --- */
footer {
    border-top: 1px solid var(--border-subtle);
    padding: 40px 0;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(244, 63, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 63, 94, 0);
    }
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Tag Item Styles */
.tag-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
    color: white;
}

.tag-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.tag-item-selected {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.tag-item-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #666;
    width: 1rem;
    text-align: center;
    opacity: 0.5;
}

.tag-color-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.tag-check {
    color: var(--primary);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .stack-wrapper {
        height: 340px;
    }

    /* Process Flow Mobile */
    .process-flow {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 300px;
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .process-line {
        width: 1px;
        height: 100%;
        left: 24px;
        top: 0;
        background: linear-gradient(180deg, transparent 0%, var(--border-shine) 10%, var(--border-shine) 90%, transparent 100%);
    }

    .step-indicator {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

/* --- PRICING GRID --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #08080A;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--border-shine);
    transform: translateY(-4px);
}

.pricing-card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.pricing-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.pricing-card-price {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
}

.price-savings {
    color: var(--accent-success);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: -12px;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 220px;
}

.pricing-features li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pricing-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--border-shine);
    padding: 14px;
    text-align: center;
    margin-top: auto;
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Popular card highlight */
.pricing-card-popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, #08080A 100%);
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
}

.pricing-card-popular:hover {
    transform: scale(1.02) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
}

/* Lifetime card special styling */
.pricing-card-lifetime {
    border-color: var(--accent-hot);
    background: linear-gradient(180deg, rgba(244, 63, 94, 0.08) 0%, #08080A 100%);
}

.lifetime-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-hot);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
}

.pricing-btn-lifetime {
    background: rgba(244, 63, 94, 0.15);
    border-color: rgba(244, 63, 94, 0.5);
    color: var(--accent-hot);
}

.pricing-btn-lifetime:hover {
    background: rgba(244, 63, 94, 0.25);
}

/* --- HOW IT WORKS SCROLL ANIMATION --- */
.process-step.active .step-indicator {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}

.process-line-fill {
    position: absolute;
    top: 24px;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-glow) 100%);
    z-index: 1;
    width: 0%;
    transition: width 0.5s ease-out;
}

/* Responsive: Pricing Grid */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card-popular {
        transform: none;
        order: -1;
    }

    .pricing-card-popular:hover {
        transform: translateY(-4px);
    }
}

/* Responsive: Process Flow Mobile with Scroll Animation */
@media (max-width: 768px) {
    .process-line-fill {
        width: 1px;
        height: 0%;
        left: 24px;
        top: 0;
        transition: height 0.5s ease-out;
    }
}