: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;
    background-color: #030014;
}

body {
    font-family: var(--font-main);
    background-color: transparent;
    /* Transparent to show animated background */
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    /* Prevent horizontal overflow on mobile */
    max-width: 100vw;
}

/* ===== 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;
}

.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);
}

/* Feature group labels - category dividers */
.plan-features li.feature-group-label {
    border-bottom: none;
    padding: 6px 0 2px;
    margin-top: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(139, 92, 246, 0.6);
    gap: 6px;
}

.plan-features li.feature-group-label:first-child {
    margin-top: 0;
    padding-top: 0;
}

.plan-features li.feature-group-label i {
    font-size: 0.8rem;
    color: rgba(139, 92, 246, 0.5);
}

.pricing-card.featured .plan-features li.feature-group-label {
    color: rgba(139, 92, 246, 0.8);
}

.pricing-card.featured .plan-features li.feature-group-label i {
    color: rgba(139, 92, 246, 0.7);
}

/* Highlighted Pro features */
.feature-highlight {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.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: rgba(255, 255, 255, 0.6);
    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;
}

/* ===== PROMO CODE ===== */
.promo-code-wrapper {
    margin: 16px 0 8px;
}

.promo-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75); /* Highlighted against purple background */
    cursor: pointer;
    padding: 6px 0;
    transition: color 0.2s;
    -webkit-user-select: none;
    user-select: none;
}

.promo-toggle:hover,
.promo-toggle.active {
    color: #ffffff;
}

.promo-toggle i {
    font-size: 1rem;
    transition: transform 0.3s;
}

.promo-toggle.active i {
    transform: rotate(-15deg) scale(1.15);
}

.promo-input-row {
    display: flex;
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.promo-input-row.active {
    max-height: 60px;
    opacity: 1;
    margin-top: 10px;
}

.promo-input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    font-family: var(--font-main), monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.promo-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 4px;
}

.promo-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.promo-check {
    width: 42px;
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: var(--accent);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.promo-check:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.05);
}

.promo-check.applied {
    background: #10b981;
    border-color: #10b981;
    color: white;
}


/* ===== 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-col a.cancel-contract-link {
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-col a.cancel-contract-link:hover {
    color: #f87171;
}

.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;
    }

    .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);
    touch-action: manipulation;
}

.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: 54px;
        height: 54px;
        font-size: 1.4rem;
        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-consent-banner {
        max-height: min(52dvh, 440px);
        overflow-y: auto;
        padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cookie-banner-text h3 {
        margin-bottom: 4px;
        font-size: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .cookie-banner-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 8px;
    }

    .cookie-btn {
        min-width: 0;
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    #cookie-accept-all {
        grid-column: 1 / -1;
    }

    .cookie-settings-panel {
        grid-template-columns: 1fr;
        margin-top: 14px;
        padding-top: 14px;
        gap: 10px;
    }

    .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 ===== */

    /* 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 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%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    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;
    }
}

/* ═══════════════════════════════════════════
   CANCEL SHOWCASE SECTION
   ═══════════════════════════════════════════ */

.cancel-showcase {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.showcase-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.05) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
    z-index: 0;
    border-radius: 50%;
    animation: slowPulse 10s infinite alternate;
    pointer-events: none;
}

@keyframes slowPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.cancel-showcase-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.cancel-showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.cancel-showcase-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 100px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.cancel-showcase-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 40%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cancel-showcase-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Search */
.cancel-showcase-search {
    position: relative;
    max-width: 540px;
    margin: 0 auto 48px;
}

.cancel-showcase-search i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 2;
}

.cancel-showcase-search input {
    width: 100%;
    padding: 18px 24px 18px 54px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px; /* Pill shape */
    color: #fff;
    font-size: 1.05rem;
    font-family: var(--font-main);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.cancel-showcase-search input::-webkit-search-decoration,
.cancel-showcase-search input::-webkit-search-cancel-button,
.cancel-showcase-search input::-webkit-search-results-button,
.cancel-showcase-search input::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
}

.cancel-showcase-search input:focus {
    border-color: rgba(236, 72, 153, 0.6);
    background: rgba(40, 30, 50, 0.8);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.15), 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cancel-showcase-search input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

/* Service Grid */
.cancel-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.cs-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.cs-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cs-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(236, 72, 153, 0.4);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(236, 72, 153, 0.15);
}

.cs-card:hover::before {
    opacity: 1;
}

.cs-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    background: rgba(139, 92, 246, 0.15);
    background: color-mix(in srgb, var(--brand-color, #8b5cf6) 15%, transparent);
    color: var(--brand-color, #8b5cf6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border: 1px solid color-mix(in srgb, var(--brand-color, #8b5cf6) 30%, transparent);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.15);
    box-shadow: 0 4px 10px color-mix(in srgb, var(--brand-color, #8b5cf6) 10%, transparent);
}

.cs-info {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.cs-name {
    display: -webkit-box;
    font-weight: 600;
    font-size: 0.95rem;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.cs-cat {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.cs-arrow {
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.cs-card:hover .cs-arrow {
    color: var(--accent);
    transform: translateX(4px);
}

.cs-card-all {
    border: 1px dashed rgba(255, 255, 255, 0.15);
    background: transparent;
}

.cs-card-all:hover {
    border-style: solid;
    border-color: var(--accent);
    background: rgba(139, 92, 246, 0.05);
}

.cs-card-all .cs-cat {
    color: var(--accent);
    font-weight: 500;
}

/* Footer CTA */
.cancel-showcase-footer {
    text-align: center;
    margin-top: 36px;
}

.btn-cancel-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: rgba(139, 92, 246, 0.1);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
    box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-cancel-all::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: 100%; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.5s ease;
}

.btn-cancel-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.25), inset 0 0 0 1px rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.2);
}

.btn-cancel-all:hover::before {
    left: 100%; right: -100%;
}

.btn-cancel-all i {
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    font-size: 1.2rem;
}

.btn-cancel-all:hover i {
    transform: translateX(6px);
}

/* Brand icon variables */
.cs-netflix { --brand-color: #e50914; }
.cs-spotify { --brand-color: #1ed760; }
.cs-amazon { --brand-color: #ff9900; }
.cs-mcfit { --brand-color: #ffd700; }
.cs-vodafone { --brand-color: #e60000; }
.cs-telekom { --brand-color: #e20074; }
.cs-o2 { --brand-color: #0050aa; }
.cs-adobe { --brand-color: #fa0f00; }
.cs-bild { --brand-color: #df0000; }
.cs-blinkist { --brand-color: #2cce74; }
.cs-cookidoo { --brand-color: #4caf50; }
.cs-jaylex { --brand-color: #8b5cf6; }
.cs-default { --brand-color: #9ca3af; }
.cs-disney { --brand-color: #113ccf; }
.cs-fitfirst { --brand-color: #ff6b00; }
.cs-congstar { --brand-color: #e6007e; }
.cs-dazn { --brand-color: #f5f50a; }
.cs-sky { --brand-color: #0072ce; }
.cs-ionos { --brand-color: #003d8f; }
.cs-adac { --brand-color: #ffcc00; }
.cs-allianz { --brand-color: #003781; }
.cs-check24 { --brand-color: #063773; }
.cs-gymondo { --brand-color: #00b4d8; }
.cs-audible { --brand-color: #f49b1a; }
.cs-apple { --brand-color: #ffffff; }
.cs-parship { --brand-color: #e65100; }

.cs-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.4);
}
.cs-no-results i { font-size: 2rem; margin-bottom: 12px; display: block; }
.cs-no-results p { font-size: 0.95rem; }

@media (max-width: 768px) {
    .cancel-showcase {
        padding: 60px 0;
    }

    .cancel-showcase-grid {
        grid-template-columns: 1fr;
    }

    .cancel-showcase-header h2 {
        font-size: 1.5rem;
    }
}

/* ==========================================
   MOBILE SECTION DOTS NAVIGATION
   ========================================== */
.section-dots {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .section-dots {
        position: fixed;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 90;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 14px;
        padding: 12px 6px;
        border-radius: 20px;
        background: rgba(3, 0, 20, 0.5);
        -webkit-backdrop-filter: blur(16px) saturate(1.5);
        backdrop-filter: blur(16px) saturate(1.5);
        border: 1px solid rgba(139, 92, 246, 0.15);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
        
        /* Initial hidden state — slides in from right */
        opacity: 0;
        pointer-events: none;
        transform: translateY(-50%) translateX(20px);
        transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .section-dots.visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(-50%) translateX(0);
    }

    .dot-item {
        display: flex;
        align-items: center;
        gap: 0;
        text-decoration: none;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        position: relative;
    }

    .dot-pip {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        border: 1.5px solid rgba(255, 255, 255, 0.15);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
        position: relative;
    }

    .dot-label {
        position: absolute;
        right: calc(100% + 8px);
        white-space: nowrap;
        font-size: 0.7rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        background: rgba(3, 0, 20, 0.85);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        padding: 4px 10px;
        border-radius: 8px;
        border: 1px solid rgba(139, 92, 246, 0.2);
        opacity: 0;
        transform: translateX(8px);
        transition: all 0.25s ease;
        pointer-events: none;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        letter-spacing: 0.3px;
    }

    /* Show label on touch/active */
    .dot-item:active .dot-label,
    .dot-item.active .dot-label {
        opacity: 1;
        transform: translateX(0);
    }

    /* Active dot state */
    .dot-item.active .dot-pip {
        width: 10px;
        height: 10px;
        background: var(--accent, #8b5cf6);
        border-color: rgba(139, 92, 246, 0.6);
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.5),
                     0 0 20px rgba(139, 92, 246, 0.2);
    }

    /* Hover / touch feedback */
    .dot-item:active .dot-pip {
        transform: scale(1.3);
        background: var(--accent, #8b5cf6);
        border-color: rgba(139, 92, 246, 0.8);
    }

    /* Active label auto-hide after 2s (via animation) */
    .dot-item.active .dot-label {
        animation: dotLabelShow 2.5s ease forwards;
    }

    @keyframes dotLabelShow {
        0% { opacity: 0; transform: translateX(8px); }
        10% { opacity: 1; transform: translateX(0); }
        80% { opacity: 1; transform: translateX(0); }
        100% { opacity: 0; transform: translateX(8px); }
    }
}

/* =========================================================
   2026-07-26 — truthful landing refresh
   Product clarity, accessible contrast and compact mobile UX
   ========================================================= */

html {
    scroll-padding-top: 92px;
}

.btn-primary,
.btn-outline,
.feature-tab,
.lang-btn,
.cookie-btn,
.cs-card,
.faq-item summary {
    min-height: 44px;
}

.custom-lang-dropdown .lang-dropdown-toggle {
    min-height: 44px;
    font: inherit;
    cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(167, 139, 250, 0.85);
    outline-offset: 3px;
}

.hero-badge {
    border-color: rgba(167, 139, 250, 0.3);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 10px 35px rgba(76, 29, 149, 0.14);
}

.hero-subtitle {
    max-width: 680px;
    line-height: 1.7;
}

.hero-cta .cta-note {
    color: rgba(235, 232, 255, 0.72);
    line-height: 1.4;
}

.pricing .hero {
    min-height: 0;
    padding: 96px 20px 104px;
}

.pricing .hero-content h2 {
    margin: 0 auto 22px;
    max-width: 880px;
    color: var(--text-primary);
    font-size: clamp(2.25rem, 5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.pricing .hero-content p {
    max-width: 720px;
    margin-inline: auto;
    line-height: 1.7;
}

.pricing-card {
    border-radius: 28px;
    padding: 38px 34px 32px;
}

.pricing-card.featured {
    color: #f8f7ff;
    background:
        linear-gradient(155deg, rgba(72, 37, 138, 0.98), rgba(35, 19, 68, 0.98)) padding-box,
        linear-gradient(135deg, #a78bfa, #ec4899) border-box;
    box-shadow: 0 28px 70px rgba(76, 29, 149, 0.34);
}

.pricing-card.featured .plan-name,
.pricing-card.featured .price,
.pricing-card.featured .plan-features li,
.pricing-card.featured .plan-features strong {
    color: #fff;
}

.pricing-card.featured .plan-desc,
.pricing-card.featured .period,
.pricing-card.featured .trial-note {
    color: rgba(245, 243, 255, 0.76);
}

.pricing-card.featured .plan-features li.disabled {
    color: rgba(237, 233, 254, 0.45);
}

.pricing-card.featured .plan-features li.feature-group-label,
.pricing-card.featured .plan-features li.feature-group-label i {
    color: #ddd6fe;
}

.pricing-card.featured .feature-highlight {
    color: #fff;
}

.pricing-card.featured .btn-primary {
    background: #fff;
    color: #4c1d95;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured .btn-primary:hover {
    background: #f5f3ff;
    color: #3b0764;
}

.cancel-showcase-sub {
    max-width: 720px;
    margin-inline: auto;
    line-height: 1.65;
}

.cancel-showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
}

.cs-card {
    min-height: 92px;
    padding: 16px 18px;
}

.cs-info {
    min-width: 0;
}

.cs-name {
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.25;
}

.cs-cat {
    line-height: 1.35;
}

.guarantee-section {
    padding-block: 88px;
}

.guarantee-card {
    padding: 62px 54px 46px;
    border-color: rgba(167, 139, 250, 0.24);
}

.guarantee-subtitle,
.guarantee-item p,
.guarantee-disclaimer {
    line-height: 1.65;
}

.guarantee-item {
    align-items: flex-start;
}

/* Compact, non-blocking DSGVO choice card */
#cookie-consent-banner {
    left: auto;
    right: 16px;
    bottom: 16px;
    width: min(620px, calc(100vw - 32px));
    padding: 18px;
    border: 1px solid rgba(167, 139, 250, 0.26);
    border-radius: 20px;
    background: rgba(10, 8, 18, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.cookie-banner-content {
    max-width: none;
    display: block;
}

.cookie-banner-text h3 {
    margin-bottom: 4px;
}

.cookie-banner-text p {
    max-width: none;
    line-height: 1.45;
}

.cookie-banner-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 14px;
}

.cookie-btn {
    min-height: 44px;
    padding: 10px 15px;
    white-space: normal;
}

#cookie-accept-all {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    box-shadow: 0 8px 22px rgba(124, 58, 237, 0.26);
}

.cookie-settings-panel {
    max-width: none;
    margin-top: 16px;
    padding-top: 16px;
}

@media (max-width: 768px) {
    .pricing .hero {
        padding: 74px 14px 80px;
    }

    .pricing .hero-content h2 {
        font-size: clamp(2rem, 10vw, 3rem);
        letter-spacing: -0.04em;
    }

    .pricing-grid {
        gap: 28px;
    }

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

    .guarantee-section {
        padding-block: 66px;
    }

    .guarantee-card {
        padding: 54px 20px 28px;
        border-radius: 26px;
    }

    .guarantee-grid {
        gap: 12px;
    }

    .guarantee-item {
        padding: 18px;
        border-radius: 18px;
    }

    .cs-card {
        min-height: 82px;
        padding: 13px 14px;
        gap: 12px;
    }

    .cancel-showcase-grid {
        grid-template-columns: 1fr;
    }

    .cs-icon {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
    }

    #cookie-consent-banner {
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        width: auto;
        max-height: min(48dvh, 430px);
        padding: 14px;
        border-radius: 18px;
    }

    .cookie-banner-content {
        display: block;
        text-align: left;
    }

    .cookie-banner-text p {
        font-size: 0.76rem;
        line-height: 1.4;
    }

    .cookie-banner-buttons {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        margin-top: 12px;
    }

    #cookie-accept-all {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .cookie-btn {
        width: 100%;
        padding-inline: 10px;
    }

    .section-dots {
        right: 5px;
        gap: 12px;
        padding: 10px 5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   2026-07-26 — final visual refinement
   Compact pricing, calmer section rhythm and mobile polish
   ========================================================= */

.pricing {
    padding: 0;
}

.pricing .hero {
    padding: 88px 20px 92px;
}

.pricing-grid {
    width: min(100%, 920px);
    max-width: 920px;
    gap: 28px;
    margin-top: 50px;
    align-items: start;
}

.pricing-card {
    overflow: visible;
    isolation: isolate;
}

.pricing-card:hover {
    transform: translateY(-4px) scale(1.008);
    box-shadow: 0 24px 64px rgba(76, 29, 149, 0.24);
}

.plan-highlights {
    display: grid;
    gap: 0;
    margin: 4px 0 18px;
    padding: 0;
    list-style: none;
}

.plan-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 42px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.4;
}

.plan-highlights li:last-child {
    border-bottom: 0;
}

.plan-highlights li > i {
    display: inline-grid;
    place-items: center;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: -1px;
    border-radius: 999px;
    color: #047857;
    background: rgba(16, 185, 129, 0.13);
    font-size: 0.92rem;
    font-weight: 800;
}

.pricing-card.featured .plan-highlights li {
    color: rgba(248, 247, 255, 0.86);
    border-bottom-color: rgba(237, 233, 254, 0.12);
}

.pricing-card.featured .plan-highlights li > i {
    color: #a7f3d0;
    background: rgba(16, 185, 129, 0.2);
}

.pricing-card.featured .plan-highlights strong {
    color: #fff;
}

.plan-comparison {
    margin: 2px 0 20px;
    overflow: clip;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
}

.plan-comparison summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 50px;
    padding: 0 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.3;
    list-style: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.plan-comparison summary::-webkit-details-marker {
    display: none;
}

.plan-comparison summary::marker {
    content: "";
}

.plan-comparison summary i {
    flex: 0 0 auto;
    font-size: 1.25rem;
    transition: transform 0.22s ease;
}

.plan-comparison[open] summary {
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.plan-comparison[open] summary i {
    transform: rotate(180deg);
}

.plan-comparison .plan-features {
    max-height: 440px;
    margin: 0;
    padding: 10px 16px 16px;
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.55) transparent;
}

.plan-comparison .plan-features li {
    align-items: flex-start;
    line-height: 1.4;
}

.pricing-card.featured .plan-comparison {
    border-color: rgba(221, 214, 254, 0.2);
    background: rgba(255, 255, 255, 0.055);
}

.pricing-card.featured .plan-comparison summary {
    color: rgba(245, 243, 255, 0.84);
}

.pricing-card.featured .plan-comparison[open] summary {
    color: #fff;
    border-bottom-color: rgba(221, 214, 254, 0.16);
}

.pricing-card > .btn-outline {
    margin-top: auto;
}

.features {
    min-height: 0;
    padding: 92px 0 82px;
}

.app-upcoming-banner {
    margin-bottom: 42px;
}

.app-banner-content {
    padding: 30px 38px;
}

.how-it-works {
    padding: 84px 0;
}

.cancel-showcase {
    padding: 84px 0;
}

.faq {
    padding: 82px 0;
}

.cta-section {
    padding: 68px 0 88px;
}

.cancel-showcase-grid {
    gap: 18px;
}

.cs-card {
    border-color: rgba(167, 139, 250, 0.15);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
}

.cs-card:hover {
    transform: translateY(-3px);
    border-color: rgba(236, 72, 153, 0.38);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), 0 0 24px rgba(236, 72, 153, 0.1);
}

.cs-icon {
    border-radius: 15px;
}

.feature-tab i,
.g-icon i,
.cs-icon i,
.hero-badge i {
    line-height: 1;
}

@media (hover: none) {
    .pricing-card:hover,
    .cs-card:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 76px;
    }

    .nav-container {
        height: 64px;
        padding-inline: 14px;
    }

    .nav-logo {
        font-size: 1.22rem;
    }

    .nav-actions {
        gap: 7px;
    }

    .custom-lang-dropdown .lang-dropdown-toggle {
        min-height: 40px;
        padding: 7px 10px;
    }

    #nav-login-btn {
        display: none;
    }

    #nav-register-btn {
        min-height: 40px;
        padding: 9px 12px;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .hero-container {
        padding-inline: 16px;
    }

    .hero h1 {
        font-size: clamp(2rem, 10.5vw, 3.2rem);
        line-height: 1.04;
        letter-spacing: -0.045em;
    }

    .hero-subtitle {
        line-height: 1.6;
    }

    .features {
        padding: 64px 0 58px;
    }

    .app-upcoming-banner {
        margin-bottom: 30px;
    }

    .app-banner-content {
        gap: 0;
        padding: 26px 20px;
    }

    .pricing .hero {
        padding: 64px 12px 72px;
    }

    .pricing-grid {
        width: min(100%, 520px);
        gap: 24px;
        margin-top: 34px;
    }

    .pricing-card {
        padding: 32px 22px 26px;
    }

    .plan-highlights {
        margin-bottom: 16px;
    }

    .plan-highlights li {
        font-size: 0.92rem;
    }

    .plan-comparison .plan-features {
        max-height: min(52dvh, 430px);
    }

    .how-it-works,
    .cancel-showcase,
    .faq {
        padding: 62px 0;
    }

    .cta-section {
        padding: 56px 0 72px;
    }

    .cancel-showcase-grid {
        gap: 14px;
    }

    .section-dots {
        display: none;
    }
}

@media (max-width: 390px) {
    .nav-logo .beta-badge {
        display: none;
    }

    .custom-lang-dropdown .lang-dropdown-toggle {
        padding-inline: 8px;
    }

    #nav-register-btn {
        padding-inline: 10px;
    }

    .pricing-card {
        padding-inline: 18px;
    }
}

@media (min-width: 769px) {
    html:lang(ru) #hero h1 {
        font-size: clamp(2.6rem, 4.55vw, 3.35rem);
    }
}

/* =========================================================
   2026-07-26 — adaptive theme and motion refinement
   ========================================================= */

html[data-landing-theme="dark"] {
    --text-secondary: #b8b4c5;
    --text-muted: #8f8a9e;
    color-scheme: dark;
}

html[data-landing-theme="light"] {
    --bg-primary: #f7f6fb;
    --bg-secondary: #efeff6;
    --bg-card: rgba(255, 255, 255, 0.82);
    --bg-card-hover: rgba(255, 255, 255, 0.98);
    --border-color: rgba(36, 31, 51, 0.11);
    --text-primary: #17141f;
    --text-secondary: #575365;
    --text-muted: #777283;
    --accent: #7254e8;
    --accent-hover: #5f3ed8;
    --accent-glow: rgba(114, 84, 232, 0.2);
    --success: #087a57;
    color-scheme: light;
    background: #f7f6fb;
}

.landing-theme-toggle {
    position: relative;
    display: inline-grid;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.landing-theme-toggle:hover {
    color: var(--text-primary);
    border-color: rgba(167, 139, 250, 0.5);
    background: rgba(139, 92, 246, 0.11);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(76, 29, 149, 0.14);
}

.landing-theme-toggle i {
    position: absolute;
    font-size: 1.18rem;
    line-height: 1;
    transition:
        opacity 0.28s ease,
        transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-icon-light {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-icon-dark {
    opacity: 0;
    transform: rotate(-60deg) scale(0.65);
}

html[data-landing-theme="light"] .theme-icon-light {
    opacity: 0;
    transform: rotate(60deg) scale(0.65);
}

html[data-landing-theme="light"] .theme-icon-dark {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

html[data-landing-theme="light"] body {
    background: transparent;
    color: var(--text-primary);
}

html[data-landing-theme="light"] .soft-glow-background {
    background-color: #f7f6fb;
}

html[data-landing-theme="light"] .soft-glow-background::before {
    opacity: 1;
    background:
        radial-gradient(ellipse at 50% -8%, rgba(139, 92, 246, 0.18) 0%, transparent 58%),
        radial-gradient(ellipse at 92% 22%, rgba(236, 72, 153, 0.11) 0%, transparent 46%),
        radial-gradient(ellipse at 8% 72%, rgba(96, 165, 250, 0.1) 0%, transparent 45%),
        linear-gradient(180deg, #faf9fd 0%, #f4f2fa 54%, #f8f7fb 100%);
    animation: lightAmbient 14s ease-in-out infinite alternate;
}

@keyframes lightAmbient {
    from { filter: saturate(0.96); transform: scale(1); }
    to { filter: saturate(1.06); transform: scale(1.025); }
}

html[data-landing-theme="light"] .navbar {
    background: rgba(250, 249, 253, 0.84) !important;
    border-bottom-color: rgba(36, 31, 51, 0.1);
    box-shadow: 0 8px 30px rgba(58, 44, 91, 0.08);
}

html[data-landing-theme="light"] .nav-logo > span:not(.beta-badge),
html[data-landing-theme="light"] .footer-brand .nav-logo > span:not(.beta-badge) {
    color: #17141f;
    background: none;
    -webkit-text-fill-color: #17141f;
    filter: none;
    text-shadow: none;
}

html[data-landing-theme="light"] .beta-badge {
    border-color: rgba(114, 84, 232, 0.18);
    box-shadow: 0 5px 14px rgba(114, 84, 232, 0.16);
}

html[data-landing-theme="light"] .landing-theme-toggle,
html[data-landing-theme="light"] .custom-lang-dropdown .lang-dropdown-toggle {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(36, 31, 51, 0.11);
    box-shadow: 0 6px 18px rgba(58, 44, 91, 0.06);
}

html[data-landing-theme="light"] .custom-lang-dropdown .lang-dropdown-menu {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(36, 31, 51, 0.11);
    box-shadow: 0 18px 50px rgba(58, 44, 91, 0.16);
}

html[data-landing-theme="light"] .custom-lang-dropdown .lang-dropdown-menu button:hover {
    color: var(--text-primary);
    background: rgba(114, 84, 232, 0.08);
}

html[data-landing-theme="light"] .hero-badge,
html[data-landing-theme="light"] .feature-tab,
html[data-landing-theme="light"] .plan-comparison {
    background: rgba(255, 255, 255, 0.64);
    border-color: rgba(65, 50, 105, 0.13);
    box-shadow: 0 10px 30px rgba(58, 44, 91, 0.055);
}

html[data-landing-theme="light"] .hero h1 {
    color: #17141f;
    text-shadow: none;
}

html[data-landing-theme="light"] .hero-cta .cta-note {
    color: #696475;
}

html[data-landing-theme="light"] .brands-title,
html[data-landing-theme="light"] .brand-item {
    color: #666173;
}

html[data-landing-theme="light"] .app-upcoming-banner {
    background: linear-gradient(135deg, rgba(114, 84, 232, 0.2), rgba(236, 72, 153, 0.13));
    box-shadow: 0 20px 55px rgba(68, 50, 111, 0.11);
}

html[data-landing-theme="light"] .app-banner-content {
    background: rgba(255, 255, 255, 0.87);
}

html[data-landing-theme="light"] .app-text h3 {
    color: #17141f;
    background: none;
    -webkit-text-fill-color: #17141f;
}

html[data-landing-theme="light"] .feature-tab:hover {
    color: var(--text-primary);
    background: rgba(114, 84, 232, 0.07);
}

html[data-landing-theme="light"] .feature-tab.active {
    color: #fff;
    background: linear-gradient(135deg, #7254e8, #8b5cf6);
}

html[data-landing-theme="light"] .tracking-video-wrapper,
html[data-landing-theme="light"] .analytics-video-wrapper,
html[data-landing-theme="light"] .organize-video-wrapper,
html[data-landing-theme="light"] .notify-video-wrapper {
    background: #0b0812;
    box-shadow: 0 24px 70px rgba(69, 50, 111, 0.16);
}

html[data-landing-theme="light"] .how-it-works,
html[data-landing-theme="light"] .faq {
    background: rgba(237, 236, 244, 0.72);
}

html[data-landing-theme="light"] .section-header h2,
html[data-landing-theme="light"] .calc-header h2,
html[data-landing-theme="light"] .guarantee-title {
    background: linear-gradient(135deg, #17141f 8%, #473678 60%, #7254e8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

html[data-landing-theme="light"] .cancel-showcase-header h2 {
    background: linear-gradient(135deg, #17141f 25%, #7254e8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

html[data-landing-theme="light"] .cancel-showcase-search input {
    color: #17141f;
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(65, 50, 105, 0.14);
    box-shadow: 0 14px 38px rgba(58, 44, 91, 0.09), inset 0 1px 0 #fff;
}

html[data-landing-theme="light"] .cancel-showcase-search input:focus {
    background: #fff;
    border-color: rgba(114, 84, 232, 0.62);
    box-shadow: 0 0 0 4px rgba(114, 84, 232, 0.12), 0 18px 42px rgba(58, 44, 91, 0.12);
}

html[data-landing-theme="light"] .cancel-showcase-search input::placeholder {
    color: #878290;
}

html[data-landing-theme="light"] .cs-card {
    color: #17141f;
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(65, 50, 105, 0.11);
    box-shadow: 0 14px 36px rgba(58, 44, 91, 0.075);
}

html[data-landing-theme="light"] .cs-card:hover {
    background: #fff;
    border-color: rgba(114, 84, 232, 0.32);
    box-shadow: 0 18px 44px rgba(58, 44, 91, 0.13);
}

html[data-landing-theme="light"] .cs-arrow {
    color: rgba(36, 31, 51, 0.28);
}

html[data-landing-theme="light"] .cs-card-all {
    background: rgba(255, 255, 255, 0.46);
    border-color: rgba(114, 84, 232, 0.24);
}

html[data-landing-theme="light"] .cs-no-results {
    color: var(--text-secondary);
}

html[data-landing-theme="light"] .btn-cancel-all {
    color: #4d36a0;
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(114, 84, 232, 0.28);
    box-shadow: 0 12px 34px rgba(58, 44, 91, 0.08);
}

html[data-landing-theme="light"] .pricing-card:not(.featured) {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(65, 50, 105, 0.12);
    box-shadow: 0 22px 60px rgba(58, 44, 91, 0.09);
}

html[data-landing-theme="light"] .pricing-card:not(.featured) .plan-highlights li > i {
    color: #087a57;
}

html[data-landing-theme="light"] .pricing-card:not(.featured) .btn-outline {
    color: #4d36a0;
    border-color: rgba(114, 84, 232, 0.3);
    background: rgba(114, 84, 232, 0.055);
}

html[data-landing-theme="light"] .guarantee-section {
    background: radial-gradient(circle at 10% 20%, rgba(114, 84, 232, 0.09) 0%, transparent 52%);
}

html[data-landing-theme="light"] .guarantee-card {
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(65, 50, 105, 0.12);
    box-shadow: 0 30px 90px rgba(58, 44, 91, 0.1);
}

html[data-landing-theme="light"] .guarantee-item {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(65, 50, 105, 0.09);
}

html[data-landing-theme="light"] .guarantee-item:hover {
    background: #fff;
}

html[data-landing-theme="light"] .g-content h3 {
    color: var(--text-primary);
}

html[data-landing-theme="light"] .g-content p {
    color: var(--text-secondary);
}

html[data-landing-theme="light"] .guarantee-footer {
    border-top-color: rgba(65, 50, 105, 0.1);
}

html[data-landing-theme="light"] .guarantee-seal img {
    filter: none;
    opacity: 0.74;
}

html[data-landing-theme="light"] .guarantee-seal span {
    color: var(--text-muted);
}

html[data-landing-theme="light"] .guarantee-disclaimer {
    color: #6246bf;
}

html[data-landing-theme="light"] .faq-item {
    border-bottom-color: rgba(65, 50, 105, 0.12);
}

html[data-landing-theme="light"] .cta-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(237, 233, 254, 0.78));
    border-color: rgba(114, 84, 232, 0.22);
    box-shadow: 0 24px 70px rgba(58, 44, 91, 0.1);
}

html[data-landing-theme="light"] .cta-box::before {
    opacity: 0.18;
}

html[data-landing-theme="light"] .footer {
    color: var(--text-primary);
    background: linear-gradient(180deg, rgba(249, 248, 252, 0.96), #efedf5 100%);
    border-top-color: rgba(65, 50, 105, 0.1);
}

html[data-landing-theme="light"] #cookie-consent-banner {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(65, 50, 105, 0.13);
    box-shadow: 0 24px 70px rgba(58, 44, 91, 0.17);
}

html[data-landing-theme="light"] .cookie-btn {
    color: var(--text-primary);
    border-color: rgba(65, 50, 105, 0.14);
    background: rgba(114, 84, 232, 0.06);
}

html[data-landing-theme="light"] #cookie-accept-all {
    color: #fff;
}

/* Calmer premium motion */
.feature-pane.active .feat-image {
    animation: none;
}

.section-badge::before,
.badge-new::before {
    opacity: 0.36;
    animation-duration: 8s;
}

.popular-badge {
    animation: none;
}

.app-banner-glow {
    animation-duration: 30s;
}

.showcase-glow {
    animation-duration: 16s;
}

.cta-box::before {
    animation-duration: 9s;
}

#hero .hero-badge,
#hero h1,
#hero .hero-subtitle,
#hero .hero-cta,
#hero .hero-image {
    animation: heroReveal 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#hero h1 { animation-delay: 70ms; }
#hero .hero-subtitle { animation-delay: 130ms; }
#hero .hero-cta { animation-delay: 190ms; }
#hero .hero-image { animation-delay: 270ms; }

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

@media (max-width: 768px) {
    .landing-theme-toggle {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .custom-lang-dropdown .lang-dropdown-toggle,
    #nav-register-btn {
        min-height: 42px;
    }

    #hero.hero {
        padding: 112px 0 44px;
    }

    #hero .hero-badge {
        margin-bottom: 20px;
        padding: 7px 13px;
        font-size: 0.78rem;
    }

    #hero h1 {
        max-width: 560px;
        margin-inline: auto;
        margin-bottom: 18px;
        font-size: clamp(1.95rem, 8.9vw, 2.8rem);
        line-height: 1.05;
    }

    #hero .hero-subtitle {
        max-width: 520px;
        margin-bottom: 28px;
        font-size: 1rem;
    }

    #hero .hero-cta {
        margin-bottom: 34px;
    }

    #hero .btn-large {
        min-height: 50px;
        padding: 13px 22px;
    }

    #hero .tracking-mockup-new.hero-version {
        height: 310px;
        max-width: 100%;
    }
}

@media (max-width: 390px) {
    .nav-actions {
        gap: 5px;
    }

    .landing-theme-toggle {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .custom-lang-dropdown .lang-dropdown-toggle,
    #nav-register-btn {
        min-height: 44px;
    }

    #nav-register-btn {
        padding-inline: 8px;
        font-size: 0.7rem;
    }
}

@media (max-width: 350px) {
    .landing-theme-toggle {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .current-lang-label {
        display: none;
    }

    .custom-lang-dropdown .lang-dropdown-toggle {
        width: 40px;
        min-height: 40px;
        justify-content: center;
        gap: 0;
        padding-inline: 0;
    }

    .custom-lang-dropdown .lang-dropdown-toggle .ri-arrow-down-s-line {
        display: none;
    }

    #nav-register-btn {
        width: 40px;
        min-height: 40px;
        padding: 0;
        overflow: hidden;
        font-size: 0;
    }

    #nav-register-btn::before {
        content: "↗";
        font-size: 1.15rem;
        line-height: 1;
    }
}

/* =========================================================
   2026-07-27 — light-theme feature and catalogue refinement
   ========================================================= */

/* The previous dark-first feature treatment used white text and a circular
   blend mask. On a pale canvas both became washed out, so light mode gets a
   deliberate product-preview surface rather than an inverted dark effect. */
html[data-landing-theme="light"] .features {
    position: relative;
    isolation: isolate;
    padding: 88px 0 84px;
    background:
        radial-gradient(ellipse 58% 54% at 18% 52%, rgba(114, 84, 232, 0.075), transparent 72%),
        radial-gradient(ellipse 46% 44% at 82% 35%, rgba(236, 72, 153, 0.055), transparent 74%);
}

html[data-landing-theme="light"] .feature-tabs {
    gap: 10px;
    margin-bottom: 46px;
}

html[data-landing-theme="light"] .feature-tab {
    min-height: 46px;
    padding: 11px 19px;
    color: #5a5567;
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(65, 50, 105, 0.12);
    box-shadow: 0 8px 22px rgba(58, 44, 91, 0.055);
}

html[data-landing-theme="light"] .feature-tab.active {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, #6547df 0%, #7c5cf0 100%);
    box-shadow: 0 12px 24px rgba(101, 71, 223, 0.22);
}

html[data-landing-theme="light"] .feature-pane {
    gap: clamp(34px, 5vw, 72px);
}

html[data-landing-theme="light"] .feature-animation-container {
    min-height: 380px;
}

html[data-landing-theme="light"] .feature-animation-container::before {
    width: 390px;
    height: 390px;
    opacity: 0.5;
    background: radial-gradient(circle, rgba(114, 84, 232, 0.16) 0%, rgba(114, 84, 232, 0.035) 48%, transparent 72%);
    filter: blur(26px);
    animation: none;
}

html[data-landing-theme="light"] .tracking-video-wrapper,
html[data-landing-theme="light"] .analytics-video-wrapper,
html[data-landing-theme="light"] .organize-video-wrapper,
html[data-landing-theme="light"] .notify-video-wrapper {
    width: min(100%, 440px);
    aspect-ratio: 1 / 1;
    padding: 9px;
    overflow: hidden;
    border: 1px solid rgba(65, 50, 105, 0.15);
    border-radius: 30px;
    background: linear-gradient(145deg, #17131f, #0b0910) !important;
    -webkit-mask-image: none;
    mask-image: none;
    box-shadow:
        0 28px 52px rgba(44, 34, 71, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: perspective(1000px) rotateY(-2deg);
    animation: none;
}

html[data-landing-theme="light"] .tracking-video-wrapper video,
html[data-landing-theme="light"] .analytics-video-wrapper video,
html[data-landing-theme="light"] .organize-video-wrapper video,
html[data-landing-theme="light"] .notify-video-wrapper video {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    object-fit: cover;
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

html[data-landing-theme="light"] .feat-content h3 {
    color: #1c1826;
    background: linear-gradient(135deg, #181420 5%, #3e2c70 58%, #7357dd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: none;
    text-shadow: none;
}

html[data-landing-theme="light"] .feat-content p {
    color: #5f596b;
    text-shadow: none;
}

html[data-landing-theme="light"] .feat-list li {
    color: #2f2a39;
    border-bottom-color: rgba(65, 50, 105, 0.1);
}

html[data-landing-theme="light"] .feat-list li span,
html[data-landing-theme="light"] .feat-list li:hover span {
    color: inherit;
}

html[data-landing-theme="light"] .feat-list li i {
    border-color: rgba(114, 84, 232, 0.2);
    box-shadow: 0 7px 14px rgba(101, 71, 223, 0.2);
}

/* A dark dashboard remains a strong product cue in the light theme, but is
   framed like hardware instead of floating in a gray fog. */
html[data-landing-theme="light"] #hero .tracking-mockup-new.hero-version {
    max-width: 860px;
    border-color: rgba(49, 39, 72, 0.48);
    border-radius: 18px;
    box-shadow: 0 28px 56px rgba(43, 33, 65, 0.24);
}

html[data-landing-theme="light"] #hero .tracking-mockup-new.hero-version::before {
    opacity: 0.42;
}

/* The default catalogue now has exactly fifteen curated records. The old
   sixteenth "all records" card duplicated the CTA below and left a lonely,
   asymmetric item on the last row. */
html[data-landing-theme="light"] .cancel-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

html[data-landing-theme="light"] .cs-card {
    min-height: 94px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(58, 44, 91, 0.07);
}

html[data-landing-theme="light"] .cs-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(58, 44, 91, 0.12);
}

html[data-landing-theme="light"] .cs-card-all {
    grid-column: 1 / -1;
    width: min(100%, 460px);
    justify-self: center;
}

html[data-landing-theme="light"] .cancel-showcase-footer {
    margin-top: 28px;
}

@media (max-width: 900px) {
    html[data-landing-theme="light"] .feature-animation-container {
        min-height: auto;
    }

    html[data-landing-theme="light"] .tracking-video-wrapper,
    html[data-landing-theme="light"] .analytics-video-wrapper,
    html[data-landing-theme="light"] .organize-video-wrapper,
    html[data-landing-theme="light"] .notify-video-wrapper {
        width: min(100%, 400px);
        transform: none;
    }

    html[data-landing-theme="light"] .cancel-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    html[data-landing-theme="light"] .features {
        padding: 62px 0;
    }

    html[data-landing-theme="light"] .feature-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }

    html[data-landing-theme="light"] .feature-tab {
        min-height: 44px;
        padding: 10px 13px;
        font-size: 0.9rem;
    }

    html[data-landing-theme="light"] .feature-animation-container {
        min-height: 0;
    }

    html[data-landing-theme="light"] .tracking-video-wrapper,
    html[data-landing-theme="light"] .analytics-video-wrapper,
    html[data-landing-theme="light"] .organize-video-wrapper,
    html[data-landing-theme="light"] .notify-video-wrapper {
        width: min(100%, 340px);
        padding: 7px;
        border-radius: 25px;
    }

    html[data-landing-theme="light"] .tracking-video-wrapper video,
    html[data-landing-theme="light"] .analytics-video-wrapper video,
    html[data-landing-theme="light"] .organize-video-wrapper video,
    html[data-landing-theme="light"] .notify-video-wrapper video {
        border-radius: 19px;
    }

    html[data-landing-theme="light"] .feat-content h3 {
        font-size: clamp(1.7rem, 8vw, 2.05rem);
    }

    html[data-landing-theme="light"] .cancel-showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    #hero .hero-badge,
    #hero h1,
    #hero .hero-subtitle,
    #hero .hero-cta,
    #hero .hero-image {
        animation: none !important;
    }

    .soft-glow-background::before {
        transform: none !important;
    }
}

/* =========================================================
   2026-07-27 — final product-grade visual polish
   Tighter rhythm, stable reveals and responsive hero preview
   ========================================================= */

/* First viewport */
#hero.hero {
    padding: 132px 0 28px;
}

#hero h1 {
    max-width: 1120px;
    margin-inline: auto;
    margin-bottom: 22px;
    font-size: clamp(2.7rem, 5vw, 3.65rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

#hero .hero-subtitle {
    max-width: 680px;
    margin-bottom: 32px;
    line-height: 1.65;
    text-wrap: balance;
}

#hero .hero-cta {
    margin-bottom: 42px;
}

#hero .hero-image {
    padding-bottom: 8px;
}

#hero .tracking-mockup-new.hero-version {
    height: 480px;
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

/* Remove the long visual pauses between major product moments. */
.brands-section {
    padding: 36px 0 48px;
}

.brands-title {
    margin-bottom: 18px;
}

.features,
html[data-landing-theme="light"] .features {
    padding: 74px 0 72px;
}

.features .section-header,
.how-it-works .section-header {
    margin-bottom: 44px;
}

.app-upcoming-banner {
    margin-bottom: 34px;
}

.feature-tabs,
html[data-landing-theme="light"] .feature-tabs {
    margin-bottom: 38px;
}

.how-it-works {
    padding: 72px 0;
}

.cancel-showcase {
    padding: 72px 0 68px;
}

.cancel-showcase-header {
    margin-bottom: 32px;
}

.cancel-showcase-search {
    margin-bottom: 36px;
}

.cancel-showcase-footer {
    margin-top: 26px;
}

.pricing .hero {
    padding: 72px 20px 82px;
}

/* The three-step explanation is a real component, not three floating labels. */
.steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr);
    align-items: stretch;
    gap: 14px;
    max-width: 1060px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: none;
    min-height: 224px;
    padding: 28px 24px 24px;
    border: 1px solid rgba(167, 139, 250, 0.15);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.13);
}

.step-number {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    color: #fff;
    box-shadow: 0 12px 28px rgba(99, 72, 220, 0.25);
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.step p {
    max-width: 250px;
    line-height: 1.55;
}

.step-arrow {
    display: grid;
    place-items: center;
    min-width: 40px;
}

.step-arrow i {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.08);
    color: var(--accent);
}

html[data-landing-theme="light"] .how-it-works {
    background:
        radial-gradient(circle at 15% 20%, rgba(114, 84, 232, 0.08), transparent 34%),
        radial-gradient(circle at 85% 76%, rgba(236, 72, 153, 0.055), transparent 34%),
        rgba(241, 239, 247, 0.86);
}

html[data-landing-theme="light"] .step {
    border-color: rgba(65, 50, 105, 0.11);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 38px rgba(58, 44, 91, 0.075);
}

html[data-landing-theme="light"] .step h3 {
    color: #1d1926;
}

html[data-landing-theme="light"] .step p {
    color: #645f6f;
}

html[data-landing-theme="light"] .step-arrow i {
    border-color: rgba(114, 84, 232, 0.16);
    background: rgba(114, 84, 232, 0.075);
}

/* Softer, more intentional product framing in the light theme. */
html[data-landing-theme="light"] #hero .tracking-mockup-new.hero-version {
    border-color: rgba(45, 34, 67, 0.36);
    box-shadow:
        0 34px 70px rgba(43, 33, 65, 0.22),
        0 2px 0 rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
    #hero.hero {
        padding-top: 116px;
    }

    #hero .tracking-mockup-new.hero-version {
        height: 400px;
        transform: none;
    }

    .steps {
        grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr);
        gap: 10px;
    }

    .step {
        padding-inline: 18px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding-inline: 12px;
    }

    .logo-icon {
        width: 46px;
        height: 46px;
    }

    #hero.hero {
        padding: 104px 0 20px;
    }

    #hero h1 {
        max-width: 620px;
        margin-bottom: 18px;
        font-size: clamp(2rem, 9.6vw, 2.75rem);
        line-height: 1.06;
    }

    #hero .hero-subtitle {
        margin-bottom: 26px;
        font-size: 0.98rem;
        line-height: 1.58;
    }

    #hero .hero-cta {
        margin-bottom: 30px;
    }

    #hero .tracking-mockup-new.hero-version {
        width: min(100%, 390px);
        height: 318px;
        border-radius: 16px;
    }

    #hero .tm-main {
        padding: 14px 10px;
    }

    #hero .tm-list {
        gap: 8px;
    }

    #hero .tm-card {
        display: grid;
        grid-template-columns: 34px minmax(0, 1fr) auto;
        gap: 10px;
        padding: 10px 11px;
        border-radius: 10px;
    }

    #hero .tm-icon {
        width: 34px;
        height: 34px;
        margin-right: 0;
        border-radius: 9px;
        font-size: 1rem;
    }

    #hero .tm-name {
        overflow: hidden;
        font-size: 0.82rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    #hero .tm-cat {
        font-size: 0.64rem;
    }

    #hero .tm-price {
        margin-right: 0;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    #hero .tm-period,
    #hero .tm-date {
        display: none;
    }

    .brands-section {
        padding: 30px 0 38px;
    }

    .features,
    html[data-landing-theme="light"] .features,
    .how-it-works,
    .cancel-showcase {
        padding-block: 56px;
    }

    .features .section-header,
    .how-it-works .section-header {
        margin-bottom: 34px;
    }

    .feature-tabs,
    html[data-landing-theme="light"] .feature-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 8px;
        margin-inline: -12px;
        margin-bottom: 30px;
        padding: 2px 12px 8px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .feature-tabs::-webkit-scrollbar {
        display: none;
    }

    .feature-tab,
    html[data-landing-theme="light"] .feature-tab {
        flex: 0 0 auto;
        min-height: 44px;
        scroll-snap-align: start;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 12px;
        width: min(100%, 460px);
    }

    .step {
        min-height: 0;
        padding: 24px 20px 22px;
    }

    .step-arrow,
    .step-arrow.animate-in {
        min-height: 32px;
        margin: 0;
        transform: rotate(90deg) !important;
    }

    .pricing .hero {
        padding: 58px 12px 70px;
    }
}

@media (max-width: 390px) {
    .nav-actions {
        gap: 4px;
    }

    .landing-theme-toggle,
    .custom-lang-dropdown .lang-dropdown-toggle,
    #nav-register-btn {
        min-height: 42px;
    }

    .landing-theme-toggle {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .custom-lang-dropdown .lang-dropdown-toggle {
        padding-inline: 8px;
    }

    #nav-register-btn {
        padding-inline: 9px;
        font-size: 0.68rem;
    }
}
