:root {
    --bg-deep: #020617;
    --bg-surface: #0f172a;
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.5);
    --secondary: #22d3ee;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent: #10b981;
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(15, 23, 42, 0.7);
    --gradient-hero: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, #6366f1 0%, transparent 70%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-deep);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-deep);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Layout Sections --- */
section {
    padding: 4rem 0;
    position: relative;
    scroll-margin-top: 80px;
}

/* --- Navigation --- */
.header {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo .ai-spark {
    filter: drop-shadow(0 0 10px var(--primary));
}

.logo span {
    color: var(--primary);
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Header fix for mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-deep);
        padding: 6rem 2rem;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        gap: 2rem;
        text-align: center;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .nav-cta {
        display: none;
        /* Hide button on very small screens if needed, or keep it in nav-actions */
    }

    .nav-actions .nav-cta {
        display: block;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--gradient-glow);
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- Features Grid --- */
.features {
    background: #020617;
}

.section-title {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.15rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    background: rgba(15, 23, 42, 0.8);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Flex Factor Sections --- */
.live-flex {
    background: radial-gradient(circle at bottom left, #0f172a 0%, #020617 100%);
}

.flex-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.terminal-window {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    margin-top: 3rem;
}

.terminal-header {
    background: #1e293b;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 2rem;
    height: 250px;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: #10b981;
}

.log-line {
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.log-line.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Calculator */
.calculator-card {
    padding: 3rem;
    background: var(--glass);
    border-color: var(--primary-glow);
}

.calc-input {
    margin-bottom: 1.5rem;
}

.calc-input label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.calc-input input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
}

.calc-result {
    margin: 2.5rem 0;
    text-align: center;
}

.result-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.result-number span:last-child {
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

.calc-note {
    font-size: 0.85rem;
    color: var(--accent);
    text-align: center;
}

/* Comparison */
.comparison {
    padding: 8rem 0;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.comp-col {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border);
}

.comp-col.highlight {
    background: rgba(99, 102, 241, 0.05);
    border-color: var(--primary);
}

.comp-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.comp-item {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    font-size: 1.1rem;
}

/* Secret Sauce */
.secret-sauce {
    background: #000;
}

.sauce-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.sauce-card {
    text-align: center;
    padding: 3rem 2rem;
}

.sauce-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.sauce-card h4 {
    margin-bottom: 1rem;
}

.sauce-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Technical Specifications --- */
.tech-specs {
    background: #000;
    position: relative;
    overflow: hidden;
}

.tech-specs::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(80px);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.spec-card h4 {
    font-size: 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spec-card h4::before {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.spec-card ul {
    list-style: none;
}

.spec-card li {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-card li:last-child {
    border-bottom: none;
}

.spec-card li strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.spec-card li p {
    color: var(--text-secondary);
}

/* --- Pricing Section --- */
.pricing {
    padding: 12rem 0;
}

.pricing-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 5rem 4rem;
    border-radius: 40px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
}

.pricing-card::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.plan-name {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 2rem 0;
}

.currency {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.amount {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.pricing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    list-style: none;
    text-align: left;
    margin: 4rem 0;
}

.pricing-features li {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check {
    color: var(--accent);
}

/* --- Discover Dominance --- */
.discover-dominance {
    background: radial-gradient(circle at top right, #0f172a 0%, #020617 100%);
}

.discover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.discover-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.discover-header {
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
}

.discover-header i {
    color: #4285f4;
}

.discover-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.discover-item:last-child {
    border-bottom: none;
}

.discover-img {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.discover-text span {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
}

.discover-text h4 {
    margin: 0.5rem 0;
    font-size: 1.15rem;
}

.discover-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.discover-features {
    list-style: none;
    margin-top: 3rem;
}

.discover-features li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.discover-features li i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.discover-features li strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.discover-features li p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Responsive Discover */
@media (max-width: 992px) {
    .discover-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .discover-visual {
        order: 2;
    }

    .discover-content {
        order: 1;
    }
}

/* --- Footer --- */
.footer {
    padding: 6rem 0;
    background: #000;
    border-top: 1px solid var(--border);
}

/* --- Neural Flow --- */
.neural-flow {
    background: #000;
}

.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.flow-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 2rem;
    background: var(--bg-surface);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.flow-step:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.flow-step span {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.flow-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.flow-arrow {
    font-size: 2rem;
    color: var(--primary);
    padding: 0 1rem;
}

/* --- Content Slider --- */
.before-after-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.ba-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ba-before {
    background: #1e293b;
    z-index: 1;
}

.ba-after {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    z-index: 2;
    clip-path: inset(0 0 0 50%);
    /* Start at 50% */
}

.ba-label {
    position: absolute;
    top: 2rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
}

.ba-before .ba-label {
    left: 2rem;
}

.ba-after .ba-label {
    right: 2rem;
    background: var(--primary);
}

.ba-content h4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.ba-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #fff;
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.ba-handle::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* --- Trusted Stack --- */
.logo-cloud {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.logo-item {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.05em;
    color: var(--text-muted);
}

/* --- Mobile CTA Bar --- */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 1rem 2rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-cta-price {
    font-weight: 800;
    font-size: 1.25rem;
}

.mobile-cta-price span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.compact-cta {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem !important;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
    }

    .flow-container {
        flex-direction: column;
        gap: 2rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
        padding: 0;
    }

    .ba-content h4 {
        font-size: 1.25rem;
    }

    .ba-content p {
        font-size: 0.9rem;
    }

    .logo-cloud {
        justify-content: center;
        gap: 2rem;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 6rem 0;
    }

    .hero {
        padding-top: 6rem;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .hero-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .glass-card {
        transform: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-card {
        padding: 3rem 1.5rem;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    .amount {
        font-size: 4rem;
    }


    .nav-cta {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 2.25rem;
    }

    /* Flex Factor Responsive */
    .flex-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .sauce-grid {
        grid-template-columns: 1fr;
    }

    .terminal-body {
        height: 200px;
        padding: 1.5rem;
    }

    .calculator-card {
        padding: 2.5rem 1.5rem;
    }

    .result-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }

    .btn {
        width: 100%;
    }

    .logo {
        font-size: 1.4rem;
    }
}

/* --- Progress Card (Dashboard Preview) --- */
.glass-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
}

.scraping-animation {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mock-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
}

.mock-stat span:last-child {
    color: var(--primary);
    font-weight: 700;
}

/* --- Entrance Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-item.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}