:root {
    --bg-primary: #050508;
    --bg-secondary: #0c0c12;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent: #8b5cf6;
    --accent-hover: #7c3aed;
    --accent-glow: rgba(139, 92, 246, 0.25);
    --success: #10b981;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: transparent;
    /* Removed to show ambient background */
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== MESH GRADIENT BACKGROUND ===== */
.soft-glow-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #030014;
    /* Deep, almost black purple base */
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Base Ambient Glow (From Backup 1/landing.css - ENLARGED) */
.soft-glow-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Faded top-down light (shines from top) - INTENSIFIED */
        linear-gradient(180deg, rgba(139, 92, 246, 0.28) 0%, transparent 55%),
        /* Main purple glow at top center */
        radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.35) 0%, transparent 70%),
        /* Secondary glow at bottom right */
        radial-gradient(ellipse at 80% 80%, rgba(99, 102, 241, 0.25) 0%, transparent 60%);
    z-index: 1;
    animation: gentlePulse 8s ease-in-out infinite alternate, colorShift 15s ease-in-out infinite;
    opacity: 1;
}

/* Color-shifting animation */
@keyframes colorShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    33% {
        filter: hue-rotate(-20deg);
    }

    /* More blue */
    66% {
        filter: hue-rotate(20deg);
    }

    /* More pink */
}

/* Clear other refined layers */
.soft-glow-background::after,
.wave-1,
.wave-2,
.wave-3 {
    display: none;
}

/* ===== TOP GLOW ANIMATIONS ===== */
@keyframes pulseTop {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes bloomTop {

    0%,
    100% {
        opacity: 0.4;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1.1);
    }
}

@keyframes floatMesh1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-40px, 30px) rotate(2deg);
    }
}

@keyframes floatMesh2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(40px, 40px) rotate(-2deg);
    }
}

@keyframes gentlePulse {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

/* Mobile Optimization: Simplify for performance */
@media (max-width: 768px) {

    .soft-glow-background::before,
    .soft-glow-background::after,
    .wave-layer {
        /* Allow animations on mobile for better visual */
        /* animation: none !important; REMOVED */
        filter: blur(100px);
        /* Increase blur for smoother look */
        opacity: 1;
        /* Restore full intensity */
    }

    /* Ensure static positions cover screen well */
    .wave-1 {
        opacity: 0.4;
    }

    .wave-2 {
        opacity: 0.3;
    }

    .wave-3 {
        display: none;
    }

    /* Reduce layers */
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .soft-glow-background::before,
    .soft-glow-background::after,
    .wave-layer {
        animation: none !important;
        transition: none !important;
    }
}

/* ===== AURORA BACKGROUND ANIMATION ===== */
.aurora-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Aurora Blobs - Floating colored gradients */
.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    mix-blend-mode: screen;
    will-change: transform, opacity;
}

/* Blob 1 - Main purple glow (top-center) */
.aurora-blob-1 {
    width: 60vw;
    height: 60vw;
    top: -20%;
    left: 20%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0) 70%);
    animation: auroraFloat1 8s ease-in-out infinite;
}

/* Blob 2 - Pink accent (top-right) */
.aurora-blob-2 {
    width: 50vw;
    height: 50vw;
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.7) 0%, rgba(236, 72, 153, 0) 70%);
    animation: auroraFloat2 10s ease-in-out infinite;
    animation-delay: -2s;
}

/* Blob 3 - Deep violet (bottom-left) */
.aurora-blob-3 {
    width: 55vw;
    height: 55vw;
    bottom: -25%;
    left: -15%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.75) 0%, rgba(124, 58, 237, 0) 70%);
    animation: auroraFloat3 12s ease-in-out infinite;
    animation-delay: -4s;
}

/* Blob 4 - Cyan accent (center-right) */
.aurora-blob-4 {
    width: 45vw;
    height: 45vw;
    top: 40%;
    right: -5%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.5) 0%, rgba(6, 182, 212, 0) 70%);
    animation: auroraFloat4 9s ease-in-out infinite;
    animation-delay: -3s;
}

/* Aurora Float Animations - Organic movement */
@keyframes auroraFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
        filter: blur(80px) hue-rotate(0deg);
    }

    25% {
        transform: translate(5%, 5%) scale(1.1);
        opacity: 0.7;
    }

    50% {
        transform: translate(-3%, 8%) scale(1.05);
        opacity: 0.6;
        filter: blur(70px) hue-rotate(10deg);
    }

    75% {
        transform: translate(-8%, 2%) scale(1.15);
        opacity: 0.7;
    }
}

@keyframes auroraFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.4;
    }

    33% {
        transform: translate(-10%, 8%) scale(1.1) rotate(5deg);
        opacity: 0.65;
        filter: blur(90px) hue-rotate(-15deg);
    }

    66% {
        transform: translate(5%, -5%) scale(0.95) rotate(-5deg);
        opacity: 0.5;
        filter: blur(75px) hue-rotate(10deg);
    }
}

@keyframes auroraFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    30% {
        transform: translate(10%, -5%) scale(1.15);
        opacity: 0.7;
        filter: blur(70px) hue-rotate(20deg);
    }

    60% {
        transform: translate(15%, 5%) scale(1.05);
        opacity: 0.55;
        filter: blur(85px) hue-rotate(-10deg);
    }
}

@keyframes auroraFloat4 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.35;
        filter: blur(80px);
    }

    40% {
        transform: translate(-15%, -10%) scale(1.2);
        opacity: 0.55;
        filter: blur(65px) hue-rotate(30deg);
    }

    70% {
        transform: translate(-8%, 8%) scale(1.1);
        opacity: 0.45;
        filter: blur(75px) hue-rotate(15deg);
    }
}

/* Keep old class for backwards compatibility */
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(5, 5, 8, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
}

.nav-logo span {
    /* Vibrant Purple to Pink Gradient matching the bird in logo */
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.4));
    margin-left: -4px;
}

.beta-badge {
    font-size: 0.65rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), #ec4899);
    color: white;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transform: translate(2px, -8px);
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-ghost {
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost i {
    display: none;
}

.btn-ghost:hover {
    color: var(--text-primary);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--accent);
}

/* ===== HERO ===== */
.hero {
    padding: 160px 0 80px;
    text-align: center;
    /* Removed static background to show animated body glow */
    background: transparent;
}

/* ... existing styles ... */

/* Footer modernization */
.footer {
    /* Make footer transparent to show bottom ambient glow */
    background: rgba(10, 5, 20, 0.4);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(138, 43, 226, 0.1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-badge i {
    color: var(--accent);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), #ec4899, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-subtitle strong {
    color: var(--success);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
}

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

/* App Preview */
/* Desktop Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.desktop-mockup {
    width: 100%;
    max-width: 900px;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(139, 92, 246, 0.1);
}

.mockup-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27ca40;
}

.mockup-title {
    font-size: 0.75rem;
    color: #444;
    font-weight: 500;
}

.mockup-body {
    display: flex;
    height: 500px;
}

.mockup-sidebar {
    width: 80px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.01);
}

.sidebar-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.sidebar-logo span {
    font-size: 0.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #444;
    font-size: 1.2rem;
}

.side-link.active {
    color: #8b5cf6;
}

.mockup-main {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
}

.stat-box.primary {
    grid-column: span 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.stat-value.small {
    font-size: 1.4rem;
}

.stat-sub {
    font-size: 0.7rem;
    color: #8b5cf6;
    font-weight: 600;
}

.stat-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 12px;
}

.progress-bar {
    height: 100%;
    background: #10b981;
    border-radius: 10px;
}

.mockup-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-item {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    position: relative;
    border-bottom: 2px solid transparent;
}

.mockup-item.disney {
    border-bottom-color: #113CCF;
}

.mockup-item.spotify {
    border-bottom-color: #1DB954;
}

.mockup-item.amazon {
    border-bottom-color: #FF9900;
}

.mockup-item.netflix {
    border-bottom-color: #E50914;
}

.item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-right: 16px;
}

.item-name {
    flex: 1;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.item-name span {
    font-size: 0.75rem;
    color: #444;
    font-weight: 400;
}

.item-price {
    font-weight: 600;
    color: white;
    margin-right: 32px;
    text-align: right;
    display: flex;
    flex-direction: column;
}

.item-price span {
    font-size: 0.7rem;
    color: #444;
}

.item-date {
    font-size: 0.8rem;
    color: #444;
    font-weight: 500;
}

@media (max-width: 900px) {
    .mockup-sidebar {
        display: none;
    }

    .mockup-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-value {
        font-size: 1.4rem;
    }
}

/* ===== LOGOS ===== */
.logos-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.logos-section p {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 2rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ===== SECTIONS COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
}

.section-desc {
    color: var(--text-secondary);
    margin-top: 12px;
}

/* ===== FEATURES ===== */
/* ===== FEATURES REDESIGN ===== */
.features {
    padding: 100px 0;
    min-height: 800px;
    /* Prevent layout shift */
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.feature-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.feature-tab:hover {
    border-color: var(--accent);
    color: white;
}

.feature-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.feature-display {
    position: relative;
}

.feature-pane {
    display: none;
    align-items: center;
    gap: 48px;
    animation: fadeIn 0.5s ease forwards;
}

.feature-pane,
.feature-display,
.feature-animation-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.feature-pane.active {
    display: flex;
}

.feature-animation-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    background: transparent !important;
}

.tracking-video-wrapper,
.analytics-video-wrapper,
.organize-video-wrapper,
.notify-video-wrapper {
    width: 100%;
    max-width: 420px;
    /* Reduced to match tracking wrapper */
    border: none;
    overflow: hidden;
    position: relative;
    background: transparent;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
    mask-image: radial-gradient(circle, black 30%, transparent 70%);
}

.analytics-video-wrapper,
.organize-video-wrapper,
.notify-video-wrapper {
    max-width: 480px;
}

.tracking-video-wrapper video,
.analytics-video-wrapper video,
.organize-video-wrapper video,
.notify-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    mix-blend-mode: screen;
    /* Subtle brightness adjust only */
    filter: brightness(0.98);
    opacity: 0.85;
}

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

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

.feat-image {
    flex: 1;
    position: relative;
}

.feat-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 80px -20px rgba(139, 92, 246, 0.3);
    /* Purple ambient glow */
    transition: transform 0.3s;
}

.feature-pane:hover .feat-image img {
    transform: scale(1.02);
}

.feat-content {
    flex: 0.8;
}

.feat-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.feat-content p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feat-list {
    list-style: none;
    margin-bottom: 40px;
}

.feat-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.feat-list li i {
    color: var(--success);
    font-size: 1.2rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px;
    border-radius: 50%;
}

@media (max-width: 960px) {
    .feature-pane.active {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .feat-list {
        display: inline-block;
        /* Keep bullets aligned properly within list even if centered */
        text-align: left;
    }

    /* Center the CTA button on mobile */
    .feat-content .btn-primary {
        display: block;
        width: fit-content;
        margin: 24px auto 0 auto;
    }

    .feat-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }


}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 280px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

/* ===== PRICING ===== */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

.pricing-card {
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    border-color: var(--accent);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 8px;
}

.plan-price .price {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.plan-price .period {
    color: var(--text-muted);
}

.plan-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.plan-features li i {
    font-size: 1.1rem;
}

.plan-features li .ri-check-line {
    color: #10b981 !important;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.5));
    font-weight: 800;
}

.plan-features li.disabled {
    color: var(--text-muted);
}

.plan-features li.disabled i {
    color: var(--text-muted);
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
    width: 100%;
    justify-content: center;
}

.trial-note {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


/* ===== OFFERS & DEALS ===== */
.offers {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    transition: padding 0.5s ease;
}

.offers.collapsed {
    padding-bottom: 20px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    /* Collapsible logic */
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.offers.collapsed .offers-grid {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.offer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}

.offer-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.offer-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.offer-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.offer-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.offer-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.btn-deal {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-deal:hover {
    background: var(--accent);
    color: white;
}

@media (max-width: 768px) {
    .offers {
        padding: 60px 0;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item summary {
    padding: 24px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--text-muted);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 32px;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    font-size: 0.95rem;
}

/* Footer Logo Hover Animation */
.footer-brand .nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.footer-brand .nav-logo:hover {
    transform: translateY(-4px) scale(1.02);
}

.footer-brand .nav-logo .logo-icon {
    transition: filter 0.3s ease, box-shadow 0.3s ease;
}

.footer-brand .nav-logo:hover .logo-icon {
    filter: drop-shadow(0 0 12px rgba(138, 43, 226, 0.6));
}

.footer-brand .nav-logo span {
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

.footer-brand .nav-logo:hover span {
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
    color: var(--accent, #8a2be2);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text-primary);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .footer-col {
        min-width: 0;
    }

    .footer-col a {
        font-size: 0.85rem;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ===== CALCULATOR ===== */
.calculator-section {
    padding: 40px 0 80px;
    /* Reduced top padding */
    position: relative;
    /* Subtle glow to fill the void */
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
}

/* Optional: Add a separator line if needed, but gradient is cleaner */
.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.calc-header {
    text-align: center;
    margin-bottom: 40px;
}

.calc-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 12px;
}

.calc-header .section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

.calculator-wrapper {
    max-width: 700px;
    margin: 0 auto;
    /* Glassmorphism background */
    background: rgba(20, 15, 30, 0.4);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    /* Elegant border */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;

    /* Ambient glow behind/around */
    position: relative;
    box-shadow:
        0 20px 60px -10px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(138, 43, 226, 0.1);
    overflow: hidden;
}

/* Ambient glow effect */
.calculator-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.15), transparent 60%);
    pointer-events: none;
    z-index: -1;
    transform: translateZ(0);
    /* Hardware acceleration */
}

.calc-input-section {
    text-align: center;
    margin-bottom: 30px;
}

.calc-input-section label {
    font-size: 1rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 10px;
}

.slider-display {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 8px;
    padding: 0 5px;
}

/* Custom Range Slider */
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #2a2a30;
    border-radius: 6px;
    outline: none;
    transition: box-shadow .2s;
    border: 1px solid var(--border-color);
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 14px rgba(139, 92, 246, 0.5);
    border: 3px solid #1a1a1f;
    transition: transform 0.2s;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.result-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.res-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.res-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.red-glow .res-value {
    color: #ef4444;
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.25);
}

.orange-glow .res-value {
    color: #f97316;
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.25);
}

.purple-glow .res-value {
    color: #8b5cf6;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.25);
}

.calc-roi-box {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    box-shadow: none;
}

.roi-icon {
    font-size: 1.5rem;
    color: #10b981;
    text-shadow: none;
}

.roi-content strong {
    display: block;
    color: #10b981;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.roi-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .calc-results-grid {
        grid-template-columns: 1fr;
    }

    .calculator-wrapper {
        padding: 24px;
    }
}

@media (max-width: 480px) {

    .container {
        padding: 0 12px;
        /* Give more horizontal space */
    }

    /* Tighter spacing for actions */
    .nav-actions {
        gap: 6px;
    }

    /* Hide 'Log In' button */
    /* Compact Log In button (Icon only) */
    .btn-ghost {
        display: inline-flex;
        padding: 8px;
    }

    .btn-ghost span {
        display: none;
    }

    .btn-ghost i {
        display: block;
        font-size: 1.4rem;
        color: var(--text-secondary);
    }

    /* Compact language switcher */
    .lang-switch {
        margin-left: 0;
        gap: 2px;
    }

    .lang-switch button {
        padding: 4px 6px;
        font-size: 0.7rem;
    }

    /* Optimize 'Start Free' button */
    .nav-actions .btn-primary {
        padding: 6px 8px;
        /* Tighter padding */
        font-size: 0.7rem;
        /* Slightly smaller */
        white-space: nowrap;
    }

    /* Hide icon inside button to save space */
    .nav-actions .btn-primary i {
        display: none;
    }

    /* Logo: Hide text, show only icon  */
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin-right: 0;
    }

    .nav-logo span {
        display: none;
        /* Hide brand name "JayLex" in navbar */
    }

    /* Show brand text in footer on mobile */
    .footer-brand .nav-logo span {
        display: inline;
    }
}

/* ===== BRANDS MARQUEE ===== */
.brands-section {
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.brands-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.marquee-container {
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.brand-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.brand-item i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* Specific brand colors on hover (optional nice touch) */
/* Specific brand colors on hover with glow */
.brand-item:hover i {
    filter: drop-shadow(0 0 8px currentColor);
    transition: all 0.3s ease;
}

.brand-item:hover i.ri-netflix-fill {
    color: #E50914;
}

.brand-item:hover i.ri-spotify-fill {
    color: #1DB954;
}

.brand-item:hover i.ri-youtube-fill {
    color: #FF0000;
}

.brand-item:hover i.ri-amazon-fill {
    color: #FF9900;
}

.brand-item:hover i.ri-dropbox-fill {
    color: #0061FF;
}

.brand-item:hover i.ri-twitch-fill {
    color: #9146FF;
}

.brand-item:hover i.ri-playstation-fill {
    color: #00439C;
}

.brand-item:hover i.ri-xbox-fill {
    color: #107C10;
}

.brand-item:hover i.ri-steam-fill {
    color: #66c0f4;
}

.brand-item:hover i.ri-brush-fill {
    color: #FF0000;
}

/* Adobe */
.brand-item:hover i.ri-apple-fill {
    color: #ffffff;
}

.brand-item:hover i.ri-google-play-fill {
    color: #4285F4;
}

.brand-item:hover i.ri-discord-fill {
    color: #5865F2;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .brands-section {
        padding: 40px 0;
    }

    .brand-item {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .brand-item i {
        font-size: 1.2rem;
    }
}

/* ===== COOKIE CONSENT BANNER (GDPR/DSGVO) ===== */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(5, 5, 8, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 24px;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

#cookie-consent-banner.cookie-banner-hidden {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: var(--font-main);
}

.cookie-btn-primary {
    background: var(--accent);
    color: white;
}

.cookie-btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.cookie-btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cookie-btn-outline:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

/* Cookie Settings Panel */
.cookie-settings-panel {
    max-width: 1200px;
    margin: 24px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.cookie-category {
    padding: 16px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 8px;
}

.cookie-category label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

.cookie-category label input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category label strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.cookie-category p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.cookie-settings-panel .cookie-btn {
    grid-column: 1 / -1;
    justify-self: start;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .cookie-settings-panel {
        grid-template-columns: 1fr;
    }

    .cookie-settings-panel .cookie-btn {
        justify-self: center;
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* ===== MOBILE LANDING PAGE OPTIMIZATIONS ===== */
@media (max-width: 768px) {

    /* Hero Section for Mobile */
    .hero {
        padding: 100px 0 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .hero-cta {
        margin-bottom: 24px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .cta-note {
        font-size: 0.8rem;
    }

    /* Desktop Mockup - Make it mobile friendly */
    .desktop-mockup {
        border-radius: 16px;
        max-width: 100%;
    }

    .mockup-header {
        height: 32px;
        padding: 0 12px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .mockup-title {
        font-size: 0.65rem;
    }

    .mockup-body {
        height: auto;
        min-height: 350px;
        flex-direction: column;
    }

    .mockup-sidebar {
        display: none;
    }

    .mockup-main {
        padding: 16px;
    }

    .mockup-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }

    .stat-box {
        padding: 12px;
        border-radius: 12px;
    }

    .stat-label {
        font-size: 0.6rem;
        margin-bottom: 6px;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .stat-value.small {
        font-size: 1rem;
    }

    .stat-sub {
        font-size: 0.6rem;
    }

    .stat-progress {
        margin-top: 8px;
    }

    /* Subscription list in mockup */
    .mockup-list {
        gap: 8px;
    }

    .mockup-item {
        padding: 10px 12px;
        border-radius: 12px;
    }

    .item-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-right: 10px;
        border-radius: 8px;
    }

    .item-name {
        font-size: 0.85rem;
    }

    .item-name span {
        font-size: 0.65rem;
    }

    .item-price {
        font-size: 0.85rem;
        margin-right: 12px;
    }

    .item-price span {
        font-size: 0.6rem;
    }

    .item-date {
        font-size: 0.7rem;
    }

    /* Brands Section */
    .brands-section {
        padding: 20px 0;
    }

    .brands-title {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    /* Features Section */
    .features {
        padding: 40px 0;
        min-height: 0;
    }

    .feature-tabs {
        gap: 8px;
        margin-bottom: 24px;
        padding: 0 10px;
    }

    .feature-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
        gap: 6px;
    }

    .feature-tab i {
        font-size: 1rem;
    }

    .feature-tab span {
        display: none;
    }

    .feat-content h3 {
        font-size: 1.5rem;
    }

    .feat-content p {
        font-size: 1rem;
    }

    .feat-list li {
        font-size: 0.95rem;
    }

    .feat-image img {
        border-radius: 16px;
    }

    /* Calculator Section */
    .calculator-section {
        padding: 24px 0 40px;
    }

    .calc-header h2 {
        font-size: 1.5rem;
    }

    .calculator-wrapper {
        padding: 20px;
        border-radius: 20px;
    }

    .slider-display {
        font-size: 2rem;
    }

    .res-value {
        font-size: 1.4rem;
    }

    .res-label {
        font-size: 0.75rem;
    }

    .calc-roi-box {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .roi-content strong {
        font-size: 0.9rem;
    }

    .roi-content p {
        font-size: 0.8rem;
    }

    /* How it works */
    .how-it-works {
        padding: 40px 0;
    }

    .steps {
        flex-direction: column;
        gap: 16px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step h3 {
        font-size: 1.1rem;
    }

    .step p {
        font-size: 0.9rem;
    }

    .step-arrow,
    .step-arrow.animate-in {
        transform: rotate(90deg) !important;
        margin: 15px 0;
        display: flex;
        justify-content: center;
    }

    .step-arrow.animate-in i {
        animation: arrowSlideMobile 0.4s ease-out forwards;
    }

    @keyframes arrowSlideMobile {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Pricing Section */
    .pricing {
        padding: 40px 0;
    }

    .pricing-grid {
        gap: 16px;
        margin-top: 24px;
    }

    .pricing-card {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .plan-price .price {
        font-size: 2.5rem;
    }

    .plan-features li {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    /* CTA Section */
    .cta-section {
        padding: 40px 0;
    }

    .cta-box {
        padding: 36px 20px;
        border-radius: 20px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .cta-box p {
        font-size: 0.95rem;
    }

    /* FAQ */
    .faq {
        padding: 40px 0;
    }

    .faq-item summary {
        font-size: 1rem;
        padding: 18px 0;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding-top: 30px;
    }

    .footer-container {
        gap: 24px;
        padding-bottom: 24px;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-col h4 {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .footer-col a {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding: 20px 0;
    }
}

/* ===== EXTRA SMALL SCREENS (under 480px) ===== */
@media (max-width: 480px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .mockup-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .stat-box {
        padding: 10px 8px;
    }

    .stat-value {
        font-size: 1rem;
    }

    .stat-value.small {
        font-size: 0.9rem;
    }

    .mockup-item {
        padding: 8px 10px;
    }

    .item-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        margin-right: 8px;
    }

    .item-name {
        font-size: 0.75rem;
    }

    .item-price {
        font-size: 0.75rem;
        margin-right: 8px;
    }

    .item-date {
        font-size: 0.6rem;
    }

    /* Feature tabs - icon only */
    .feature-tab {
        padding: 10px 14px;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .pricing-card {
        padding: 24px 20px;
    }

    .plan-price .price {
        font-size: 2rem;
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }

    .calc-header h2 {
        font-size: 1.3rem;
    }
}

/* ==========================================
   SCROLL ANIMATIONS - How It Works Steps
   ========================================== */

/* Initial hidden state */
.step,
.step-arrow {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animated state when visible */
.step.animate-in,
.step-arrow.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for cascade effect */
.step:nth-child(1) {
    transition-delay: 0s;
}

.step-arrow:nth-child(2) {
    transition-delay: 0.15s;
}

.step:nth-child(3) {
    transition-delay: 0.3s;
}

.step-arrow:nth-child(4) {
    transition-delay: 0.45s;
}

.step:nth-child(5) {
    transition-delay: 0.6s;
}

/* Step number bounce animation */
@keyframes stepBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

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

.step.animate-in .step-number {
    animation: stepBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: inherit;
}

/* Arrow slide-in animation */
@keyframes arrowSlide {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-arrow.animate-in i {
    animation: arrowSlide 0.4s ease-out forwards;
}

/* Hover effects for steps */
.step {
    cursor: default;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
}

.step-number {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Section header animation */
.how-it-works .section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ==========================================
   SCROLL ANIMATIONS - Pricing Section
   ========================================== */

/* Pricing header animation */
.pricing .hero-content {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pricing .hero-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Pricing cards - initial hidden state */
.pricing-card {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Free card - slides from left */
.pricing-card:first-child {
    transform: translateX(-60px) scale(0.95);
}

/* Pro card - slides from right */
.pricing-card.featured {
    transform: translateX(60px) scale(0.95);
}

/* Animated state */
.pricing-card.animate-in {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Staggered delays */
.pricing-card:first-child {
    transition-delay: 0.1s;
}

.pricing-card.featured {
    transition-delay: 0.3s;
}

/* Hover lift effect */
.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.3);
}

/* Price counter animation */
@keyframes priceCount {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        transform: scale(1.1);
    }

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

.pricing-card.animate-in .plan-price .price {
    animation: priceCount 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.3s;
}

/* Feature list stagger */
.pricing-card.animate-in .plan-features li {
    opacity: 0;
    animation: fadeSlideUp 0.4s ease forwards;
}

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

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

.pricing-card.animate-in .plan-features li:nth-child(1) {
    animation-delay: 0.2s;
}

.pricing-card.animate-in .plan-features li:nth-child(2) {
    animation-delay: 0.25s;
}

.pricing-card.animate-in .plan-features li:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card.animate-in .plan-features li:nth-child(4) {
    animation-delay: 0.35s;
}

.pricing-card.animate-in .plan-features li:nth-child(5) {
    animation-delay: 0.4s;
}

.pricing-card.animate-in .plan-features li:nth-child(6) {
    animation-delay: 0.45s;
}

.pricing-card.animate-in .plan-features li:nth-child(7) {
    animation-delay: 0.5s;
}

.pricing-card.animate-in .plan-features li:nth-child(8) {
    animation-delay: 0.55s;
}

/* ==========================================
   SCROLL ANIMATIONS - Calculator Section
   ========================================== */

/* Header animation */
.calculator-section .calc-header {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Calculator wrapper - scale up from center */
.calculator-section .calculator-wrapper {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.2s;
}

.calculator-section .calculator-wrapper.animate-in {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Result cards - 3D flip with color burst */
.result-card {
    opacity: 0;
    transform: perspective(1000px) rotateY(-30deg) translateZ(-50px);
    transition: opacity 0.5s ease,
        transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
}

.result-card.animate-in {
    opacity: 1;
    transform: perspective(1000px) rotateY(0) translateZ(0);
}

/* Staggered card delays */
.result-card:nth-child(1) {
    transition-delay: 0.3s;
}

.result-card:nth-child(2) {
    transition-delay: 0.45s;
}

.result-card:nth-child(3) {
    transition-delay: 0.6s;
}

/* Enhanced glow effects on animation */
/* Enhanced glow effects on animation */
.result-card.calc-card-light.animate-in {
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.2);
    background: linear-gradient(145deg, rgba(20, 10, 30, 0.6), rgba(40, 20, 60, 0.4));
}

.result-card.calc-card-medium.animate-in {
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.35);
    border: 1px solid rgba(138, 43, 226, 0.35);
    background: linear-gradient(145deg, rgba(30, 15, 45, 0.7), rgba(60, 25, 80, 0.5));
}

.result-card.calc-card-accent.animate-in {
    box-shadow: 0 10px 50px rgba(138, 43, 226, 0.5);
    border: 1px solid rgba(138, 43, 226, 0.6);
    background: linear-gradient(145deg, rgba(40, 20, 60, 0.8), rgba(80, 30, 100, 0.6));
}

/* Result value counter animation */
@keyframes countUp {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }

    60% {
        transform: scale(1.15);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.result-card.animate-in .res-value {
    animation: countUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: inherit;
}

/* ROI Box - slide up with sparkle */
.calc-roi-box {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.8s;
}

.calc-roi-box.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ROI icon sparkle animation */
@keyframes sparkle {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-15deg) scale(1.2);
    }

    75% {
        transform: rotate(15deg) scale(1.2);
    }
}

.calc-roi-box.animate-in .roi-icon i {
    animation: sparkle 0.8s ease-in-out;
    animation-delay: 1s;
}

/* Hover effects for result cards */
.result-card:hover {
    transform: translateY(-8px) scale(1.05);
}

.result-card.calc-card-light:hover {
    box-shadow: 0 15px 50px rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.4);
}

.result-card.calc-card-medium:hover {
    box-shadow: 0 15px 50px rgba(138, 43, 226, 0.5);
    border-color: rgba(138, 43, 226, 0.6);
}

.result-card.calc-card-accent:hover {
    box-shadow: 0 15px 60px rgba(138, 43, 226, 0.7);
    border-color: rgba(138, 43, 226, 0.8);
    transform: translateY(-8px) scale(1.05);
}

/* Slider glow animation */
@keyframes sliderPulse {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(138, 43, 226, 0);
    }

    50% {
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
    }
}

.calculator-wrapper.animate-in .range-slider::-webkit-slider-thumb {
    animation: sliderPulse 2s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* ==========================================
   ENHANCED FEATURE CONTENT STYLING
   ========================================== */

/* Feature content container */
.feat-content {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-pane.active .feat-content {
    opacity: 1;
    transform: translateX(0);
}

/* Feature title - gradient text */
.feat-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    /* Richer, more vibrant gradient */
    background: linear-gradient(135deg, #ffffff 10%, #d8b4fe 60%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    /* Stronger accents glow */
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.3));
}

/* Feature description - soft glow */
.feat-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Feature list styling */
.feat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.feat-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.feat-list li:last-child {
    border-bottom: none;
}

/* Animate list items when pane is active */
.feature-pane.active .feat-list li {
    opacity: 1;
    transform: translateX(0);
}

.feature-pane.active .feat-list li:nth-child(1) {
    transition-delay: 0.2s;
}

.feature-pane.active .feat-list li:nth-child(2) {
    transition-delay: 0.3s;
}

.feature-pane.active .feat-list li:nth-child(3) {
    transition-delay: 0.4s;
}

.feature-pane.active .feat-list li:nth-child(4) {
    transition-delay: 0.5s;
}

/* Refined checkmark icons */
.feat-list li i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff !important;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.feat-list li:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Text span hover effect */
.feat-list li span {
    transition: color 0.3s ease, transform 0.3s ease;
}

.feat-list li:hover span {
    color: white;
    transform: translateX(4px);
}

/* Feature CTA button enhancement */
.feat-content .btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.feat-content .btn-primary:hover::before {
    left: 100%;
}

/* Feature image parallax enhancement */
.feat-image {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.feature-pane.active .feat-image {
    animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================
   MODERN VISUAL POLISH
   ========================================== */

/* Navbar glassmorphism enhancement */
.navbar {
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(15, 10, 30, 0.85) !important;
    border-bottom: 1px solid rgba(138, 43, 226, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Enhanced section badges with shimmer */
.section-badge,
.badge-new {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(138, 43, 226, 0.1) 100%);
    border: 1px solid rgba(138, 43, 226, 0.4);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
}

.section-badge::before,
.badge-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeShimmer {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

/* CTA Box premium glow */
.cta-box {
    position: relative;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15) 0%, rgba(100, 20, 180, 0.1) 100%);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 24px;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #8a2be2 0%, #9c27b0 50%, #8a2be2 100%);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
    animation: ctaGlow 4s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* Section header h2 gradient enhancement */
.section-header h2,
.calc-header h2 {
    background: linear-gradient(135deg, #ffffff 0%, #e8d5ff 40%, #c9a8ff 70%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Hero title gradient polish */
.hero h1 {
    text-shadow: 0 4px 30px rgba(138, 43, 226, 0.3);
}

/* Button hover glow enhancement */
.btn-primary {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 6px 35px rgba(138, 43, 226, 0.6);
    transform: translateY(-2px);
}

/* Pricing card featured border glow */
.pricing-card.featured {
    border: 2px solid transparent;
    background:
        linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(135deg, #8a2be2, #9c27b0, #8a2be2) border-box;
    box-shadow: 0 10px 50px rgba(138, 43, 226, 0.3);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #8a2be2, #9c27b0);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.4;
    filter: blur(15px);
}

/* Popular badge pulse */
.popular-badge {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
    }

    50% {
        box-shadow: 0 0 25px rgba(138, 43, 226, 0.8);
    }
}

/* Section divider lines */
section {
    position: relative;
}

.features::after,
.calculator-section::after,
.how-it-works::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.5), transparent);
}

/* Enhanced marquee brands glow on hover */
.brand-item:hover {
    color: #8a2be2;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.7);
    transform: scale(1.1);
}

.brand-item {
    transition: all 0.3s ease;
}

/* Footer modernization */
.footer {
    background: linear-gradient(180deg, rgba(10, 5, 20, 0.95) 0%, rgba(5, 2, 10, 1) 100%);
    border-top: 1px solid rgba(138, 43, 226, 0.1);
}

.footer-brand .nav-logo span {
    background: linear-gradient(135deg, #ffffff 0%, #c9a8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: -10px;
}

/* Footer tagline alignment fix */
.footer-brand p {
    margin-left: -5px;
    /* Shift left to align with logo icon */
    opacity: 0.8;
}

/* Smooth page scroll behavior */
html {
    scroll-behavior: smooth;
}

/* ==========================================
   OFFERS 3D SCROLL ANIMATION
   ========================================== */
.offers-grid {
    perspective: 1200px;
    padding-bottom: 20px;
}

.offer-card {
    opacity: 0;
    transform: translateY(80px) rotateX(20deg) scale(0.9);
    transform-origin: center bottom;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

.offer-card.animate-in {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
}

.offer-card:hover {
    transform: translateY(-12px) scale(1.03) rotateX(4deg);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    z-index: 10;
    border-color: rgba(139, 92, 246, 0.4);
}

/* ==========================================
   SMOOTH FAQ ANIMATION
   ========================================== */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--accent);
}

/* Plus icon */
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-item p {
    margin: 0;
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    /* Transitions managed by JS, but defaults help */
    transform-origin: top;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* ===== ANIMATED FEATURE CARDS ===== */
.feature-animation-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: transparent;
    /* Was #050508 - removed per user request */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed box-shadow and border to let video float */
}

/* Soft Round Gradient Background */
.feature-animation-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- Tracking Animation --- */
.tracking-mockup {
    width: 85%;
    background: rgba(22, 22, 28, 0.8);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.tracking-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.tracking-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tracking-stat {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    flex: 1;
    margin-right: 15px;
}

.tracking-stat:last-child {
    margin-right: 0;
}

.t-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.t-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.sub-list-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.sub-list-scroll {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: scrollList 10s linear infinite;
}

.sub-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.sub-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.sub-info {
    flex: 1;
}

.sub-name {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}

.sub-cost {
    font-weight: 700;
}

@keyframes scrollList {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* --- Analytics Animation --- */
.analytics-chart-container {
    width: 90%;
    height: 70%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-bar {
    width: 40px;
    background: linear-gradient(to top, var(--accent), #ec4899);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: height 1s ease;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.chart-bar::after {
    content: attr(data-value);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    opacity: 0;
    animation: fadeIn 0.5s forwards 1s;
}

.chart-bar:nth-child(1) {
    height: 40%;
    animation: growBar1 2s ease-out forwards;
}

.chart-bar:nth-child(2) {
    height: 60%;
    animation: growBar2 2s ease-out forwards;
    animation-delay: 0.2s;
    background: linear-gradient(to top, #3b82f6, #06b6d4);
}

.chart-bar:nth-child(3) {
    height: 30%;
    animation: growBar3 2s ease-out forwards;
    animation-delay: 0.4s;
    background: linear-gradient(to top, #f59e0b, #ef4444);
}

.chart-bar:nth-child(4) {
    height: 80%;
    animation: growBar4 2s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes growBar1 {
    from {
        height: 0;
    }

    to {
        height: 40%;
    }
}

@keyframes growBar2 {
    from {
        height: 0;
    }

    to {
        height: 60%;
    }
}

@keyframes growBar3 {
    from {
        height: 0;
    }

    to {
        height: 30%;
    }
}

@keyframes growBar4 {
    from {
        height: 0;
    }

    to {
        height: 80%;
    }
}

.pie-chart-floating {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--accent) 0% 40%, #ec4899 40% 70%, #06b6d4 70% 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: floatPie 6s ease-in-out infinite;
}

@keyframes floatPie {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* --- Organization Animation --- */
.org-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.org-folder {
    position: absolute;
    width: 180px;
    height: 140px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    animation: floatFolder 8s ease-in-out infinite;
}

.org-folder i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.org-folder span {
    font-weight: 600;
}

.org-folder:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--accent);
    transform: scale(1.05);
    z-index: 10;
}

.org-folder:hover i {
    color: var(--accent);
}

.folder-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.folder-2 {
    top: 50%;
    left: 45%;
    animation-delay: -2s;
    background: rgba(255, 255, 255, 0.08);
}

.folder-3 {
    top: 15%;
    right: 15%;
    animation-delay: -4s;
}

.org-tag {
    position: absolute;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: floatTag 10s linear infinite;
}

.tag-1 {
    top: 60%;
    left: 20%;
    background: #ef4444;
    color: white;
    animation-duration: 12s;
}

.tag-2 {
    top: 30%;
    right: 40%;
    background: #10b981;
    color: white;
    animation-duration: 9s;
    animation-delay: -3s;
}

.tag-3 {
    bottom: 20%;
    right: 20%;
    background: #f59e0b;
    color: white;
    animation-duration: 14s;
    animation-delay: -5s;
}

@keyframes floatFolder {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatTag {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(10deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* --- Notification Animation --- */
.notify-phone {
    width: 280px;
    height: 500px;
    background: #000;
    border: 4px solid #333;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    position: relative;
    padding: 40px 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 80px;
    gap: 15px;
}

.notify-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(120%);
    animation: slideInNotify 4s ease-in-out infinite;
}

.notify-icon-box {
    width: 36px;
    height: 36px;
    background: #10b981;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.notify-icon-box.warn {
    background: #f59e0b;
}

.notify-icon-box.alert {
    background: #ef4444;
}

.notify-text h4 {
    font-size: 0.85rem;
    color: #111;
    margin-bottom: 2px;
}

.notify-text p {
    font-size: 0.75rem;
    color: #555;
    line-height: 1.2;
}

.notify-card:nth-child(1) {
    animation-delay: 0s;
}

.notify-card:nth-child(2) {
    animation-delay: 1.5s;
}

.notify-card:nth-child(3) {
    animation-delay: 3s;
}

@keyframes slideInNotify {
    0% {
        transform: translateX(120%);
        opacity: 0;
    }

    10% {
        transform: translateX(0);
        opacity: 1;
    }

    80% {
        transform: translateX(0);
        opacity: 1;
    }

    90% {
        transform: translateX(0) scale(0.95);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-50px);
        opacity: 0;
    }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .feature-animation-container {
        min-height: 300px;
    }

    .tracking-mockup {
        width: 95%;
    }

    .notify-phone {
        height: 350px;
        width: 220px;
    }
}

/* ===== NEW TRACKING MOCKUP (Refined) ===== */
.tracking-mockup-new {
    width: 90%;
    max-width: 600px;
    height: 380px;
    background: #0d0d12;
    border: 1px solid #1f1f26;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.5s ease;
}

/* Glass Reflection Effect (Double Shine) */
.tracking-mockup-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg,
            transparent 40%,
            rgba(255, 255, 255, 0.05) 45%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.05) 55%,
            transparent 60%,
            transparent 70%,
            rgba(255, 255, 255, 0.1) 75%,
            transparent 80%);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 10;
    animation: glassShine 8s infinite ease-in-out;
}

@keyframes glassShine {
    0% {
        left: -150%;
    }

    50% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.tracking-mockup-new:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Window Header */
.tm-window-header {
    height: 36px;
    background: #16161c;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid #1f1f26;
}

.tm-controls {
    display: flex;
    gap: 8px;
    margin-right: 16px;
}

.tm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.tm-dot.red {
    background: #ff5f57;
}

.tm-dot.yellow {
    background: #febc2e;
}

.tm-dot.green {
    background: #28c840;
}

.tm-title {
    font-size: 0.75rem;
    color: #555;
    font-weight: 500;
}

/* Body */
.tm-body {
    flex: 1;
    display: flex;
    overflow: hidden;
    /* Hide scrollbars */
}

/* Sidebar */
.tm-sidebar {
    width: 60px;
    background: #0d0d12;
    border-right: 1px solid #1f1f26;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
}

.tm-logo {
    width: 24px;
    height: 24px;
    margin-bottom: 30px;
}

.tm-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tm-nav-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: default;
    transition: all 0.2s;
}

.tm-nav-item i {
    font-size: 1.1rem;
}

.tm-nav-item.active {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent);
}

.tm-nav-item.bottom {
    margin-top: auto;
    margin-bottom: 20px;
}

/* Main Content */
.tm-main {
    flex: 1;
    background: #09090c;
    padding: 24px;
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.tm-scroll-wrapper {
    height: 100%;
    overflow: hidden;
}

.tm-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: scrollListNew 15s linear infinite;
}

@keyframes scrollListNew {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Cards */
.tm-card {
    background: #111116;
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    border: 1px solid #1f1f26;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.tm-card:hover {
    background: #16161c;
}

.tm-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    border-radius: 2px;
}

.card-disney .tm-icon {
    background: #0061FF;
}

.card-disney::after {
    background: #0061FF;
    box-shadow: 0 0 10px #0061FF;
    opacity: 0.6;
}

.card-spotify .tm-icon {
    background: #1DB954;
}

.card-spotify::after {
    background: #1DB954;
    box-shadow: 0 0 10px #1DB954;
    opacity: 0.6;
}

.card-amazon .tm-icon {
    background: #FF9900;
}

.card-amazon::after {
    background: #FF9900;
    box-shadow: 0 0 10px #FF9900;
    opacity: 0.6;
}

.card-netflix .tm-icon {
    background: #E50914;
}

.card-netflix::after {
    background: #E50914;
    box-shadow: 0 0 10px #E50914;
    opacity: 0.6;
}

.card-discord .tm-icon {
    background: #5865F2;
}

.card-discord::after {
    background: #5865F2;
    box-shadow: 0 0 10px #5865F2;
    opacity: 0.6;
}


.tm-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 16px;
    flex-shrink: 0;
}

.tm-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tm-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.tm-cat {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
}

.tm-price {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: right;
    margin-right: 16px;
}

.tm-period {
    font-size: 0.7rem;
    color: #666;
    font-weight: 400;
}

.tm-date {
    font-size: 0.75rem;
    color: #444;
    font-weight: 500;
}

/* Responsive adjustments for new mockup */
@media (max-width: 768px) {
    .tm-date {
        display: none;
    }

    .tm-sidebar {
        width: 50px;
    }

    .tm-card {
        padding: 12px 14px;
    }

    .tracking-mockup-new {
        height: 320px;
    }
}

.tracking-mockup-new.hero-version {
    max-width: 900px;
    height: 520px;
    margin: 0 auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.tracking-mockup-new.hero-version:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Specific tweaks for hero version responsiveness */
@media (max-width: 992px) {
    .tracking-mockup-new.hero-version {
        height: 450px;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .tracking-mockup-new.hero-version {
        height: 350px;
        transform: none;
        /* Simplify on mobile */
    }

    .tracking-mockup-new.hero-version:hover {
        transform: none;
    }
}

/* ===== TRACKING VIDEO STYLES (Refined x3 - Square) ===== */
.tracking-video-wrapper {
    /* Width/Shape properties now inherited from group selector up top */
    /* ... */
    position: relative;
    /* Neon Glow removed */
    box-shadow: none;

    transform: perspective(1000px) rotateY(-4deg);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: transparent !important;
    /* Back is safe if video covers it */
    margin: 0 auto;
    animation: floatVideoRefined 6s ease-in-out infinite;
    line-height: 0;
}

.tracking-video-wrapper video {
    width: 100%;
    height: 100%;
    /* Fill the square */
    display: block;
    object-fit: cover;
    /* Crop to fill square */
    border-radius: 20px;
}

/* Typography Refinements for Feature Section */
.feat-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.feat-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 24px;
    font-weight: 400;
}

.feat-list li {
    font-size: 1.05rem;
    color: #e5e7eb;
    margin-bottom: 12px;
}

.feat-list li i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-right: 8px;
}

/* Hover Effect */
.tracking-video-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: none;
    animation-play-state: paused;
}

/* Remove glass overlay */
.tracking-video-wrapper::after {
    display: none;
}

@keyframes floatVideoRefined {

    0%,
    100% {
        transform: perspective(1000px) rotateY(-4deg) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(-4deg) translateY(-12px);
    }
}

@media (max-width: 768px) {
    .tracking-video-wrapper {
        max-width: 100%;
        transform: none;
        animation: none;
    }
}

/* Offers Collapse Animation */
.offers-grid {
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin 0.3s ease, transform 0.4s ease;
    max-height: none;
    opacity: 1;
    overflow: visible;
    transform: translateY(0);
}

.offers.collapsed .offers-grid {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    transform: translateY(-20px);
    pointer-events: none;
    visibility: hidden;
    /* Ensure GPU ignores it */
}

/* ===== UTILITY CLASSES ===== */

/* Hidden mockup (replaces inline display:none) */
.hidden-mockup {
    display: none;
}

/* Logo image styling (replaces inline styles) */
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Feature highlight (replaces inline color:var(--accent)) */
.feature-highlight {
    color: var(--accent);
}

/* Section header with toggle button */
.section-header-with-toggle {
    position: relative;
    padding-right: 40px;
}

/* Section toggle button (replaces inline styles) */
.section-toggle {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: #ff4757;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 10px;
}

.section-toggle:hover {
    transform: scale(1.1);
}

/* Footer-specific logo styles */
.footer-nav-logo {
    text-decoration: none;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
}

/* Rounded logo image variant for legal pages */
.logo-img-rounded {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
}

/* ===== APP UPCOMING BANNER ===== */
.app-upcoming-banner {
    margin: 0 auto 60px;
    max-width: 800px;
    position: relative;
    border-radius: 24px;
    padding: 2px;
    /* Gradient border substrate */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(139, 92, 246, 0.1);
}

.app-banner-content {
    background: rgba(13, 13, 18, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 22px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.app-banner-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15), transparent 60%);
    animation: rotateGlow 10s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.app-text {
    flex: 1;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.app-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.app-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.app-store-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 170px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 12px;
    color: white;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
}

.store-btn.disabled {
    opacity: 0.6;
    cursor: default;
    background: rgba(255, 255, 255, 0.02);
}

.store-btn:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.store-btn i {
    font-size: 1.8rem;
    color: #e2e8f0;
}

.store-btn .btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-btn .small-text {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.store-btn .store-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .app-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }

    .app-text h3 {
        font-size: 1.3rem;
    }

    .app-store-buttons {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .store-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 16px;
    }

    .store-btn .btn-text {
        align-items: flex-start;
    }

    .store-btn i {
        font-size: 1.6rem;
    }

    .app-badge {
        margin: 0 auto 16px;
    }
}

@media (max-width: 480px) {
    .app-store-buttons {
        flex-direction: column;
    }

    .store-btn {
        width: 100%;
        justify-content: flex-start;
        padding-left: 24px;
    }
}