:root {
    /* Colors */
    --clr-bg: #000000; /* Pure black background like Spotify */
    --clr-bg-surface: #121212; /* Spotify secondary dark */
    --clr-bg-panel: #181818; /* Spotify tertiary dark */
    
    --clr-text: #ffffff;
    --clr-text-muted: #b3b3b3; /* Spotify muted grey */
    
    --clr-primary: #1db954; /* Spotify Green */
    --clr-primary-glow: rgba(29, 185, 84, 0.4);
    --clr-primary-dark: #1ed760; /* Spotify Green Hover */

    --clr-red: #ef4444;
    --clr-red-dark: rgba(239, 68, 68, 0.1);
    
    --clr-gold: #f59e0b;
    --clr-gold-glow: rgba(245, 158, 11, 0.2);
    
    --clr-border: #282828; /* Spotify border grey */
    --clr-border-hover: #3e3e3e;
    
    /* Typography */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Variables */
    --transition: all 0.2s ease-in-out;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Helpers */
.fw-bold { font-weight: 700; }
.text-accent { color: var(--clr-primary); }
.text-red { color: var(--clr-red); }
.text-gold { color: var(--clr-gold); }
.text-muted { color: var(--clr-text-muted); }
.text-white { color: #fff; }

h1, h2, h3, h4, .logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
}

.heading-xl {
    font-size: clamp(3rem, 6vw + 1rem, 6.5rem);
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.heading-lg {
    font-size: clamp(2rem, 3.5vw + 1rem, 4.5rem);
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.heading-md {
    font-size: 2rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--clr-primary), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-matrix {
    background-image: 
        linear-gradient(rgba(9, 9, 11, 0.9), rgba(9, 9, 11, 0.95)),
        url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h40v40H0z" fill="none"/><path d="M0 0h1v40H0zm39 0h1v40h-1zM0 0h40v1H0zm0 39h40v1H0z" fill="rgba(255,255,255,0.03)"/></svg>');
}

/* Base Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 8rem 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.bg-darker { background-color: #050508; }

/* Margin Utilities */
.m-0 { margin: 0 !important; }
.mb-xs { margin-bottom: 0.5rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }
.mb-xl { margin-bottom: 5rem; }

.mt-xs { margin-top: 0.5rem; }
.mt-sm { margin-top: 1.5rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mt-xl { margin-top: 5rem; }

/* Padding Utilities */
.p-sm { padding: 1rem; }
.p-md { padding: 1.5rem; }
.p-lg { padding: 2.5rem; }
.p-xl { padding: 4rem; }

.pt-md { padding-top: 3rem; }
.pt-xl { padding-top: 8rem; }
.pb-md { padding-bottom: 3rem; }
.pb-lg { padding-bottom: 5rem; }
.pb-xl { padding-bottom: 8rem; }
.py-md { padding-top: 3rem; padding-bottom: 3rem; }

/* Typography Utilities */
.heading-sm { font-size: 1.25rem; margin-bottom: 0.75rem; letter-spacing: -0.01em; font-weight:700; font-family: var(--font-heading); line-height: 1.3; margin-top: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.7; color: var(--clr-text-muted); }
.text-xs { font-size: 0.75rem; color: var(--clr-text-muted); line-height: 1.5; }
.italic { font-style: italic; }
.text-light { font-weight: 300; }
.text-uppercase { text-transform: uppercase; letter-spacing: 1px; }

/* Layout & Alignment Utilities */
.block-center { margin-left: auto; margin-right: auto; display: block; }
.position-relative { position: relative; }
.section-header { max-width: 800px; margin: 0 auto; text-align: center; }

/* Lists & Comparisons - GLOBAL FIX */
.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.compare-list li {
    margin-bottom: 1rem;
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.compare-list strong {
    color: var(--clr-text);
    font-weight: 600;
}

.check-icon {
    color: var(--clr-primary);
    margin-right: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Borders & Backgrounds */
.border-top { border-top: 1px solid var(--clr-border); }
.border-bottom { border-bottom: 1px solid var(--clr-border); }
.bg-dark { background-color: rgba(10, 10, 12, 0.8); }

/* Component Utilities */
.btn-group { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.btn-group > * { margin: 0.5rem; } /* Flex gap fallback for older Safari */
.footer-legal-links { display: flex; gap: 1.5rem; justify-content: center; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; font-size: 0.8rem; color: var(--clr-text-muted); }
.trust-metrics { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; align-items: center; max-width: 1000px; margin: 0 auto; filter: grayscale(100%); opacity: 0.6; transition: var(--transition); }
.trust-metrics:hover { filter: grayscale(0%); opacity: 1; }
.trust-icons img { max-height: 40px; object-fit: contain; }
.secure-icon { margin-right: 0.5rem; color: var(--clr-primary); }

/* Premium Layout Utilities */
.service-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
}

.glass-panel {
    background: var(--clr-bg-panel);
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Allow badges to overflow top of featured pricing cards */
.pricing-card-featured.glass-panel {
    overflow: visible;
}

.glass-panel:hover {
    background: var(--clr-border-hover);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.badge-outline {
    border: 1px solid var(--clr-text-muted);
    color: var(--clr-text-muted);
}

.badge-accent {
    background: var(--clr-red-dark);
    color: var(--clr-red);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.phase-tag {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.animate-pulse {
    animation: rapidPulse 2s infinite;
}

@keyframes rapidPulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px; /* Pill shape */
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 33ms cubic-bezier(.3,0,0,1), background-color 33ms cubic-bezier(.3,0,0,1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1.2rem 2.5rem; font-size: 1.1rem; }
.btn-block { width: 100%; padding: 1rem; }

.btn-primary {
    background-color: var(--clr-primary);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    transform: scale(1.04);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #727272;
}

.btn-outline:hover {
    border-color: #ffffff;
    transform: scale(1.04);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--clr-gold);
    border: 2px solid var(--clr-gold);
}

.btn-outline-gold:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--clr-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.pulse-btn {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 var(--clr-primary-glow); }
    70% { box-shadow: 0 0 0 15px rgba(29, 185, 84, 0); }
    100% { box-shadow: 0 0 0 0 rgba(29, 185, 84, 0); }
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Live Purchase Toast */
.live-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(15, 15, 18, 0.95);
    border: 1px solid var(--clr-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 15px var(--clr-primary-glow);
    border-radius: var(--radius-sm);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
    max-width: 350px;
}

.live-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-img-wrapper {
    position: relative;
}

.toast-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--clr-border);
}

.toast-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: var(--clr-primary);
    border-radius: 50%;
    border: 2px solid #000;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.toast-package {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toast-time {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    margin-top: 0.2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: background-color 0.3s ease-in-out;
}

.header.scrolled {
    background: #000000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 1.4rem;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--clr-primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--clr-primary);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 100px;
    border: 1px solid var(--clr-border);
}

.progress-container {
    width: 100%;
    height: 2px;
    background: transparent;
}

.progress-bar {
    height: 100%;
    background: var(--clr-primary);
    width: 0%;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
    animation: pulse 8s infinite alternate;
}

.glow-1 {
    top: -10%;
    left: 10%;
    width: 50vw;
    height: 50vw;
    background: var(--clr-primary);
}

.glow-2 {
    bottom: -10%;
    right: 10%;
    width: 60vw;
    height: 60vw;
    background: rgba(239, 68, 68, 0.4);
    animation-delay: 2s;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(1.1); opacity: 0.4; }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--clr-text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
}

/* VSL Placeholder */
.vsl-wrapper {
    width: 100%;
    max-width: 750px;
    aspect-ratio: 16 / 9;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(29, 185, 84, 0.05), rgba(0,0,0,0.8));
    border: 1px solid rgba(29, 185, 84, 0.3);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.vsl-wrapper:hover .play-btn-outer {
    transform: scale(1.1);
}

.play-btn-outer {
    width: 80px;
    height: 80px;
    background: var(--clr-primary-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin: 0 auto 1.5rem;
}

.play-btn-inner {
    width: 60px;
    height: 60px;
    background: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    padding-left: 5px; /* Visual center adjustment */
}

.vsl-text {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Countdown */
.countdown-wrapper {
    margin-bottom: 3rem;
    padding: 1.5rem 3rem;
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--clr-red-dark);
    border-radius: var(--radius-md);
    display: inline-block;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 800;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 75px;
}

.time-block span:first-child {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--clr-text);
}

.time-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    font-weight: 700;
    margin-top: 0.4rem;
}

.time-divider {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.2);
    margin-top: -20px;
}

.hero-ctas { margin-bottom: 1.5rem; }

.hero-trust {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* The Ugly Truth Section */
.section-subtitle {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    max-width: 650px;
    margin: 0 auto 4rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.compare-card {
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.bad-card {
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(to bottom, rgba(39, 39, 42, 0.4), rgba(239, 68, 68, 0.05));
}

.good-card {
    border-color: var(--clr-primary);
    box-shadow: 0 0 30px var(--clr-primary-glow);
    background: linear-gradient(to bottom, rgba(39, 39, 42, 0.4), rgba(29, 185, 84, 0.05));
    transform: scale(1.02);
}

.expert-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--clr-primary);
    color: #000;
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: var(--radius-md);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.compare-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.compare-desc {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

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

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    font-weight: 500;
}
/* VSL Update */
.vsl-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
    transition: var(--transition);
}

.vsl-wrapper:hover .vsl-overlay {
    background: rgba(0,0,0,0.4);
}

.vsl-placeholder .play-btn-outer {
    position: relative;
    z-index: 2;
}

/* UGC Videos Grid */
.ugc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ugc-card {
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.ugc-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-primary);
}

.ugc-card:hover .play-btn-circle {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--clr-primary);
    color: #000;
}

.ugc-video-placeholder {
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.ugc-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition);
}

.ugc-card:hover .ugc-thumb {
    opacity: 1;
}

.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    z-index: 10;
    transition: var(--transition);
    padding-left: 5px; /* Center triangle visually */
}

.ugc-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--clr-text);
    text-align: center;
    font-weight: 600;
}

/* Behind The Scenes Masonry Gallery */
.masonry-grid {
    column-count: 2;
    column-gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.masonry-item {
    width: 100%;
    display: block;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    transition: var(--transition);
    break-inside: avoid;
    opacity: 0.8;
}

.masonry-item:hover {
    opacity: 1;
    transform: scale(1.02);
    border-color: var(--clr-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 1;
    }
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.form-control {
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--clr-border);
    padding: 1rem;
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 10px rgba(29, 185, 84, 0.2);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.3);
}

@media (max-width: 480px) {
    .contact-form-wrapper { padding: 1.5rem; }
}
.x-icon {
    color: var(--clr-red);
    font-size: 1.2rem;
    font-weight: 900;
}

.check-icon {
    color: var(--clr-primary);
    font-size: 1.2rem;
    font-weight: 900;
}

/* 4-Stage Engine Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--clr-primary);
    border-radius: 50%;
    border-color: rgba(29, 185, 84, 0.3);
}

.step-content {
    background: var(--clr-bg-panel);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    flex-grow: 1;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.step-desc {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Marquee */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #050505 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #050505 0%, transparent 100%);
}

.marquee {
    display: flex;
    width: fit-content;
    animation: scroll 40s linear infinite;
}

.marquee:hover { animation-play-state: paused; }

.marquee-content {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
}

.result-img {
    height: 300px;
    width: auto;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    transition: var(--transition);
}

.result-img:hover {
    transform: scale(1.03);
    border-color: var(--clr-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    position: relative;
    z-index: 10;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pricing Overhaul */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-featured {
    border-color: var(--clr-primary);
    box-shadow: 0 0 40px rgba(29, 185, 84, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.border-gold { border-color: rgba(245, 158, 11, 0.3); }

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-primary);
    color: #000;
    padding: 0.4rem 1.5rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

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

.pricing-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.amount {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
}

.original-price {
    font-size: 1.5rem;
    color: var(--clr-text-muted);
    text-decoration: line-through;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--clr-text-muted);
    font-size: 1rem;
}

.check {
    font-weight: 900;
}

/* Guarantee Box */
.guarantee-box {
    max-width: 700px;
    margin-inline: auto;
    padding: 2.5rem;
    border-color: rgba(255,255,255,0.2);
    background: linear-gradient(180deg, rgba(39, 39, 42, 0.4) 0%, rgba(0,0,0,0.8) 100%);
}

.secure-icon-lg {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.guarantee-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.guarantee-box p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
}

/* FAQ */
.faq-container { max-width: 800px; }

.faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--clr-bg-panel);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active { border-color: var(--clr-primary); }

.faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--clr-primary);
    transition: transform 0.3s ease;
    font-weight: 900;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--clr-text-muted);
    font-size: 1.05rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--clr-border);
    padding: 4rem 0 2rem;
    background: #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-col a {
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links-col a:hover {
    color: var(--clr-primary);
    transform: translateX(3px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-desc {
    color: var(--clr-text-muted);
    margin-top: 1rem;
    max-width: 350px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

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

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

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .pricing-card-featured {
        transform: scale(1);
    }
    .pricing-card-featured:hover {
        transform: translateY(-3px);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-brand-col {
        grid-column: span 2;
    }
    .service-grid-layout {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section { padding: 5rem 0; }
    
    .service-grid-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .service-grid-layout > div {
        text-align: center !important;
    }

    .service-grid-layout .compare-list {
        text-align: left;
        display: inline-block;
    }

    .header-container {
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        height: auto;
        padding: 1rem;
    }
    
    .compare-card {
        padding: 2rem 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand-col {
        grid-column: span 1;
    }

    .trust-badge, .header .btn { display: none; }

    .hero { padding-top: 130px; }

    .countdown { gap: 0.8rem; }
    .time-block span:first-child { font-size: 2.5rem; }
    .time-divider { font-size: 2rem; margin-top: -15px; }

    .timeline-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-step .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content { padding: 1.5rem; }
    
    .live-toast {
        bottom: 80px; /* Adjusted to sit above sticky CTA */
        left: 15px;
        right: 15px;
        max-width: none;
    }

    /* Show sticky CTA on mobile */
    .mobile-sticky-cta {
        display: block;
    }
}

/* Exit Intent Popup */
.exit-popup-overlay {
    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;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.exit-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    position: relative;
    width: 90%;
    max-width: 500px;
    padding: 3rem 2.5rem;
    text-align: center;
    border-color: var(--clr-primary);
    box-shadow: 0 0 50px rgba(29, 185, 84, 0.2);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.exit-popup-overlay.show .exit-popup {
    transform: scale(1);
}

.exit-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--clr-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.exit-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.exit-desc {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.exit-code-box {
    background: rgba(29, 185, 84, 0.1);
    border: 2px dashed var(--clr-primary);
    color: var(--clr-primary);
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 900;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.exit-guarantee {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--clr-primary);
    padding: 1rem 1.5rem;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    display: none; /* Hidden on desktop */
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-sticky-cta.show {
    transform: translateY(0);
}

.mobile-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-cta-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: block;
}

.mobile-cta-sub {
    font-size: 0.8rem;
    color: var(--clr-primary);
    font-weight: 700;
    text-transform: uppercase;
}

/* GLOBAL LINK OVERRIDES TO PREVENT BLUE DEFAULT TEXT */
a {
    color: inherit;
    text-decoration: none;
}

/* Navigation Structure */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Dropdown Menu */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--clr-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.2s;
}

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

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--clr-bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-width: 250px;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.8);
    z-index: 1000;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    top: 100%;
    left: 0;
    margin-top: 1rem;
}

.dropdown-content a {
    color: var(--clr-text) !important;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid var(--clr-border);
    transition: var(--transition);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: rgba(29, 185, 84, 0.1);
    color: var(--clr-primary) !important;
    padding-left: 25px; /* Slight indent on hover */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease;
}

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

/* Service Grid Corporate */
.corp-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.corp-service-card {
    padding: 2.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid var(--clr-border);
    position: relative;
    overflow: hidden;
    text-align: left;
    text-decoration: none;
    color: inherit;
    display: block;
}

.corp-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-primary);
    box-shadow: 0 10px 30px rgba(29, 185, 84, 0.1);
}

.corp-service-icon {
    font-size: 2.5rem;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
}

.corp-service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.corp-service-desc {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Corporate Hero */
.corp-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--clr-text);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #050505;
        border-left: 1px solid var(--clr-border);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    }

    .nav-links.active {
        right: 0;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--clr-primary);
        background: transparent;
        margin-left: 1rem;
        width: 100%;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }
}


/* ═══════════════════════════════════════════════════════════════
   CREATIVE DESIGN SYSTEM — Spotify-Inspired Bubbles, Curves, Animations
   ═══════════════════════════════════════════════════════════════ */

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays for grid children */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Floating Bubble Backgrounds */
.bg-bubbles {
    position: relative;
    overflow: hidden;
}
.bg-bubbles::before,
.bg-bubbles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}
.bg-bubbles::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--clr-primary) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: floatBubble 20s ease-in-out infinite;
}
.bg-bubbles::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #1ed760 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: floatBubble 15s ease-in-out infinite reverse;
}

.bg-bubbles-alt::before {
    left: -150px;
    right: auto;
    top: -100px;
    width: 500px;
    height: 500px;
}
.bg-bubbles-alt::after {
    right: -100px;
    left: auto;
    bottom: -150px;
    width: 700px;
    height: 700px;
}

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.02); }
}

/* Curved Section Dividers */
.curve-top {
    position: relative;
}
.curve-top::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: inherit;
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

.curve-bottom {
    position: relative;
}
.curve-bottom::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: inherit;
    clip-path: ellipse(55% 100% at 50% 0%);
    z-index: 1;
}

/* Wave Divider SVG */
.wave-divider {
    position: relative;
    overflow: visible;
}
.wave-divider::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23121212' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    z-index: 2;
}
.wave-divider-dark::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23000000' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
}

/* Transparent Image Blending */
.img-blend {
    position: relative;
}
.img-blend img {
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}
.img-blend-sides img {
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}
.img-blend-left img {
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}
.img-blend-right img {
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

/* Organic blob shapes behind images */
.blob-glow {
    position: relative;
}
.blob-glow::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: radial-gradient(ellipse at center, rgba(29, 185, 84, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    animation: blobPulse 6s ease-in-out infinite;
}

@keyframes blobPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* Gradient Mesh Background */
.bg-gradient-mesh {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(29,185,84,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(30,215,96,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(29,185,84,0.04) 0%, transparent 50%);
}

/* Animated Counter */
.counter-number {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(90deg, rgba(29,185,84,0.15) 0%, rgba(239,68,68,0.15) 100%);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    animation: urgencyPulse 3s ease-in-out infinite;
}
@keyframes urgencyPulse {
    0%, 100% { border-color: rgba(239,68,68,0.3); }
    50% { border-color: rgba(239,68,68,0.6); }
}

/* Trust Badge Row */
.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}
.trust-badge span:first-child {
    font-size: 1.1rem;
}

/* Floating particles */
.particles-bg {
    position: relative;
    overflow: hidden;
}
.particles-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(29,185,84,0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(29,185,84,0.2) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.3;
    animation: particleDrift 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes particleDrift {
    0% { transform: translateY(0); }
    100% { transform: translateY(-60px); }
}

/* Glowing border cards */
.glow-card {
    position: relative;
    overflow: hidden;
}
.glow-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--clr-primary), transparent, var(--clr-primary), transparent);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}
.glow-card:hover::before {
    opacity: 1;
}

/* Spotify-style doodle decorations */
.doodle-line {
    position: absolute;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
}
.doodle-circle {
    border: 3px solid var(--clr-primary);
    border-radius: 50%;
    animation: doodleSpin 20s linear infinite;
}
.doodle-squiggle {
    border: 3px solid var(--clr-primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: doodleMorph 8s ease-in-out infinite;
}
@keyframes doodleSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes doodleMorph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    75% { border-radius: 40% 60% 40% 60% / 50% 50% 50% 50%; }
}

/* Price highlight flash on scroll */
.price-highlight {
    position: relative;
}
.price-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29,185,84,0.1), transparent);
    transition: left 0.6s;
}
.price-highlight.visible::after {
    left: 100%;
}

/* Image parallax hover */
.img-parallax {
    overflow: hidden;
    border-radius: 16px;
}
.img-parallax img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-parallax:hover img {
    transform: scale(1.05);
}


/* ═══════════════════════════════════════════════════════════════
   PREMIUM ANIMATION SYSTEM V2 — Maximum High-End Effects
   ═══════════════════════════════════════════════════════════════ */

/* Smooth Section Clip-Path Transitions */
.clip-wave-top {
    clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
}
.clip-wave-bottom {
    clip-path: polygon(0 0%, 100% 0%, 100% 92%, 0% 100%);
}
.clip-diagonal {
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
}

/* Glowing text animation */
.glow-text {
    text-shadow: 0 0 40px rgba(29,185,84,0.3), 0 0 80px rgba(29,185,84,0.1);
}

/* Animated gradient border */
.gradient-border {
    position: relative;
    border: none !important;
    background-clip: padding-box;
}
.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(60deg, var(--clr-primary), transparent, var(--clr-primary), transparent, var(--clr-primary));
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    animation: gradientBorder 6s ease infinite;
    opacity: 0.5;
}
@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Smooth parallax scroll effect */
.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Text reveal animation - words slide up */
.text-reveal {
    overflow: hidden;
}
.text-reveal > * {
    animation: textSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(100%);
}
@keyframes textSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Floating animation for elements */
.float-animation {
    animation: floatElement 6s ease-in-out infinite;
}
@keyframes floatElement {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Card lift effect */
.card-lift {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-lift:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 60px rgba(29,185,84,0.15), 0 8px 20px rgba(0,0,0,0.4);
}

/* Magnetic button hover */
.btn-magnetic {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s;
}
.btn-magnetic:hover {
    box-shadow: 0 8px 30px rgba(29,185,84,0.4);
}

/* Shimmer effect on cards */
.shimmer {
    position: relative;
    overflow: hidden;
}
.shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(29,185,84,0.06) 50%,
        transparent 60%
    );
    animation: shimmerEffect 4s ease-in-out infinite;
}
@keyframes shimmerEffect {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Neon glow pulse for important elements */
.neon-pulse {
    animation: neonGlow 3s ease-in-out infinite;
}
@keyframes neonGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(29,185,84,0.3), 0 0 20px rgba(29,185,84,0.1); }
    50% { box-shadow: 0 0 15px rgba(29,185,84,0.5), 0 0 40px rgba(29,185,84,0.2); }
}

/* Smooth section background gradient animation */
.bg-animated-gradient {
    background: linear-gradient(-45deg, #000000, #0a0a0a, #050810, #060d08);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Staggered card reveal */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: none; }

/* Typewriter cursor effect */
.cursor-blink::after {
    content: '|';
    animation: cursorBlink 1s step-end infinite;
    color: var(--clr-primary);
    font-weight: 300;
}
@keyframes cursorBlink {
    50% { opacity: 0; }
}

/* Glassmorphism card upgrade */
.glass-premium {
    background: rgba(18, 18, 18, 0.6) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05) !important;
}

/* Premium hover glow under images */
.img-glow-hover {
    position: relative;
}
.img-glow-hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(29,185,84,0.2) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}
.img-glow-hover:hover::after {
    opacity: 1;
}

/* Marquee-style scrolling text */
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

/* Scale up on scroll */
.scale-on-scroll {
    transform: scale(0.95);
    opacity: 0.6;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s;
}
.scale-on-scroll.visible {
    transform: scale(1);
    opacity: 1;
}


/* ═══════════════════════════════════════════════════════════════
   V3 CREATIVE SYSTEM — Living Backgrounds, Organic Shapes, Depth
   ═══════════════════════════════════════════════════════════════ */

/* Aurora — Animated color blobs that move across the background */
.aurora-bg {
    position: relative;
    overflow: hidden;
}
.aurora-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse 600px 400px at 20% 50%, rgba(29,185,84,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 500px 500px at 80% 20%, rgba(29,185,84,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 400px 600px at 60% 80%, rgba(16,163,127,0.05) 0%, transparent 50%);
    animation: auroraMove 25s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}
@keyframes auroraMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(5%, -3%) rotate(2deg); }
    66% { transform: translate(-3%, 5%) rotate(-1deg); }
    100% { transform: translate(2%, -2%) rotate(1deg); }
}

/* Noise texture overlay for depth */
.noise-overlay {
    position: relative;
}
.noise-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* Organic rounded sections — no more boxy edges */
.organic-section {
    border-radius: 40px;
    margin: 0 1.5rem;
    position: relative;
    overflow: hidden;
}
@media (max-width: 768px) {
    .organic-section {
        border-radius: 24px;
        margin: 0 0.75rem;
    }
}

/* Organic rounded inner container for sections */
.organic-inner {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(18,18,18,0.4);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 4rem 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

/* Image organic mask — rounded + fade edges instead of rectangle */
.img-organic {
    position: relative;
    overflow: hidden;
}
.img-organic img {
    border-radius: 24px;
    mask-image: radial-gradient(ellipse 90% 90% at center, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 90% at center, black 60%, transparent 100%);
}

/* Image blob shape — organic blob instead of rectangle */
.img-blob-shape {
    position: relative;
}
.img-blob-shape img {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    mask-image: none;
    -webkit-mask-image: none;
    transition: border-radius 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-blob-shape:hover img {
    border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
}

/* Rounded bottom edge for sections */
.section-rounded-bottom {
    border-radius: 0 0 60px 60px;
    overflow: hidden;
}
.section-rounded-top {
    border-radius: 60px 60px 0 0;
    overflow: hidden;
}

/* Glowing orb behind content */
.glow-orb {
    position: relative;
    overflow: hidden;
}
.glow-orb::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29,185,84,0.12) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(60px);
    animation: orbPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

/* Mesh grid background */
.mesh-grid-bg {
    position: relative;
}
.mesh-grid-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(29,185,84,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29,185,84,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Radial spotlight behind hero */
.spotlight-bg {
    position: relative;
}
.spotlight-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(29,185,84,0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Gradient border bottom for sections */
.gradient-line-bottom {
    position: relative;
}
.gradient-line-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(29,185,84,0.3), transparent);
}

/* Ensure content stays above pseudo-elements */
.aurora-bg > *,
.noise-overlay > *,
.spotlight-bg > *,
.mesh-grid-bg > *,
.glow-orb > * {
    position: relative;
    z-index: 1;
}

/* Floating dots background */
.dots-float {
    position: relative;
    overflow: hidden;
}
.dots-float::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(29,185,84,0.2);
    border-radius: 50%;
    top: 20%;
    left: 15%;
    box-shadow:
        120px 40px 0 rgba(29,185,84,0.15),
        250px 100px 0 rgba(29,185,84,0.1),
        400px 30px 0 rgba(29,185,84,0.12),
        550px 120px 0 rgba(29,185,84,0.08),
        700px 50px 0 rgba(29,185,84,0.15),
        850px 90px 0 rgba(29,185,84,0.1),
        100px 200px 0 rgba(29,185,84,0.08),
        300px 250px 0 rgba(29,185,84,0.12),
        500px 220px 0 rgba(29,185,84,0.1),
        650px 280px 0 rgba(29,185,84,0.15),
        800px 240px 0 rgba(29,185,84,0.08),
        200px 350px 0 rgba(29,185,84,0.1);
    animation: dotsFloat 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes dotsFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

/* Section with inner spacing and visual depth */
.depth-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.depth-section > .container {
    background: rgba(18,18,18,0.3);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 32px;
    padding: 4rem 3rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
@media (max-width: 768px) {
    .depth-section > .container {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
}

/* Glowing green line separator */
.green-glow-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--clr-primary), transparent);
    margin: 0 auto 2rem;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(29,185,84,0.3);
}
