        @font-face {
            font-family: 'Rajdhani';
            font-style: normal;
            font-weight: 300;
            font-display: swap;
            src: url('/fonts/rajdhani-v17-latin-300.woff2') format('woff2');
        }
        @font-face {
            font-family: 'Rajdhani';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url('/fonts/rajdhani-v17-latin-regular.woff2') format('woff2');
        }
        @font-face {
            font-family: 'Rajdhani';
            font-style: normal;
            font-weight: 500;
            font-display: swap;
            src: url('/fonts/rajdhani-v17-latin-500.woff2') format('woff2');
        }
        @font-face {
            font-family: 'Rajdhani';
            font-style: normal;
            font-weight: 600;
            font-display: swap;
            src: url('/fonts/rajdhani-v17-latin-600.woff2') format('woff2');
        }
        @font-face {
            font-family: 'Rajdhani';
            font-style: normal;
            font-weight: 700;
            font-display: swap;
            src: url('/fonts/rajdhani-v17-latin-700.woff2') format('woff2');
        }
        @font-face {
            font-family: 'JetBrains Mono';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url('/fonts/jetbrains-mono-v24-latin-regular.woff2') format('woff2');
        }
        @font-face {
            font-family: 'JetBrains Mono';
            font-style: normal;
            font-weight: 500;
            font-display: swap;
            src: url('/fonts/jetbrains-mono-v24-latin-500.woff2') format('woff2');
        }
        @font-face {
            font-family: 'JetBrains Mono';
            font-style: normal;
            font-weight: 600;
            font-display: swap;
            src: url('/fonts/jetbrains-mono-v24-latin-600.woff2') format('woff2');
        }
        @font-face {
            font-family: 'JetBrains Mono';
            font-style: normal;
            font-weight: 700;
            font-display: swap;
            src: url('/fonts/jetbrains-mono-v24-latin-700.woff2') format('woff2');
        }
        @font-face {
            font-family: 'JetBrains Mono';
            font-style: normal;
            font-weight: 800;
            font-display: swap;
            src: url('/fonts/jetbrains-mono-v24-latin-800.woff2') format('woff2');
        }

        :root {
            --bg-primary: #0a0e14;
            --bg-secondary: #111720;
            --bg-card: #161d28;
            --accent-cyan: #00d9ff;
            --accent-blue: #0099cc;
            --text-primary: #e8edf4;
            --text-secondary: #d4dae2;
            --text-muted: #858f99;
            --border: #1f2936;
            --glow: rgba(0, 217, 255, 0.15);
            --green: #22c55e;
        }

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

        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }


        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(var(--border) 1px, transparent 1px),
                linear-gradient(90deg, var(--border) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.2;
            z-index: -1;
            pointer-events: none;
        }


        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 14, 20, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            padding: 0.5rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--accent-cyan);
            text-transform: uppercase;
        }

        .nav-price {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        .nav-price span {
            color: var(--accent-cyan);
        }

        /* Hero Section - Mobile First */
        .hero {
            margin-top: 80px;
            padding: 2rem 1.5rem 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-content {
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 1rem;
            background: linear-gradient(180deg, #ffffff 0%, #b8b8b8 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero h1 .hero-eyebrow {
            display: block;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
            color: var(--accent-cyan);
            background: linear-gradient(180deg, #4be8ff 0%, #00a8cc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero h1 .highlight {
            color: var(--accent-cyan);
            display: block;
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 0.5rem;
            background: linear-gradient(180deg, #4be8ff 0%, #00a8cc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-weight: 400;
            line-height: 1.5;
            margin-top: 2.5rem;
        }


        .reach-stat {
            margin-top: 1.75rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
        }

        .reach-headline {
            text-align: center;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.7rem;
            font-weight: 700;
            line-height: 1.1;
        }

        .reach-word {
            display: inline;
            color: var(--text-primary);
            background: linear-gradient(180deg, #ffffff 0%, #b8b8b8 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .reach-number {
            display: inline-block;
            white-space: nowrap;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--accent-cyan);
            line-height: 1.1;
            margin: 0 0.15em;
        }

        .reach-digit {
            display: inline-block;
            position: relative;
            height: 0.85em;
            width: 0.55em;
            overflow: hidden;
            vertical-align: baseline;
            transform: translateY(0.15em);
        }

        .reach-digit-strip {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            transform: translateY(0);
            transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reach-digit-strip span {
            display: block;
            height: 0.85em;
            line-height: 0.85;
            background: linear-gradient(180deg, #4be8ff 0%, #00a8cc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .reach-separator {
            display: inline-block;
            color: var(--accent-cyan);
            margin: 0 0.04em;
            background: linear-gradient(180deg, #4be8ff 0%, #00a8cc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .reach-label {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            color: var(--text-secondary);
            font-weight: 500;
            margin-top: 0.1rem;
        }

        .reach-platforms {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.25rem;
            margin-top: 0.65rem;
        }

        .reach-platforms img {
            height: 32px;
            width: auto;
            object-fit: contain;
        }

        .hero-visual {
            width: 90%;
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
            border: 0px solid var(--border);
            border-radius: 40px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
            width: 100%;
            max-width: 320px;
            padding: 1rem 1rem;
            background: var(--accent-cyan);
            color: var(--bg-primary);
            font-size: 1.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 0 30px var(--glow);
        }

        .cta-button:hover {
            background: var(--text-primary);
            transform: translateY(-2px);
            box-shadow: 0 0 25px var(--glow);
        }

        .cta-arrow-img {
            height: 24px;
            width: auto;
            margin-left: 0.6rem;
            flex-shrink: 0;
            object-fit: contain;
            transform: translateY(-2px);
        }


        .section {
            padding: 3rem 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-dark {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            max-width: 100%;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        .section-dark .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.6rem;
            color: var(--accent-cyan);
            background: linear-gradient(180deg, #4be8ff 0%, #00a8cc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.75rem;
            font-weight: bold
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(180deg, #ffffff 0%, #b8b8b8 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-text {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-weight: 500;
            margin-top: 30px;
        }


        .problem-list {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.5rem;
            margin-top: 1rem;
        }

        .problem-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
            font-size: 1rem;
            color: var(--text-secondary);
        }

        .problem-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .problem-item:first-child {
            padding-top: 0;
        }

        .problem-icon {
            color: #ff3c3c;
            font-size: 1.1rem;
            flex-shrink: 0;
            margin-top: 4.5px;
            width: 15px;
            height: 15px;
        }


        .correct-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}


        .solution-intro {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .solution-list {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.5rem;
            margin-top: 1rem;
        }

        .solution-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.85rem 0;
            border-bottom: 1px solid var(--border);
        }

        .solution-item:first-child {
            padding-top: 0;
        }

        .solution-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .solution-item-content {
            flex: 1;
        }

        .solution-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            display: block;
            margin-bottom: 0.15rem;
        }

        .solution-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }


        .compat-list-standalone {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            margin-top: 1.5rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.5rem;
        }

        .compat-item-standalone {
            display: flex;
            align-items: flex-start;
            gap: 0.85rem;
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        .compat-item-standalone img {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .compat-footer-standalone {
            text-align: center;
            font-size: 0.95rem;
            color: var(--text-muted);
            font-style: italic;
            margin-top: 1.25rem;
        }

        .compat-footer-standalone a {
            color: var(--accent-cyan);
            text-decoration: none;
        }

        .compat-footer-standalone a:hover {
            text-decoration: underline;
        }


        .tested-cases {
            margin: 1.5rem 0 1.25rem;
            margin-left: -1.5rem;
            margin-right: -1.5rem;
        }

        .tested-cases-label {
            font-size: 1.25rem;
            font-weight: 600;
            background: linear-gradient(180deg, #ffffff 0%, #b8b8b8 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            margin-bottom: 1.75rem;
            padding: 0 1.5rem;
            line-height: 1.3;
        }

        .tested-cases-marquee {
            position: relative;
            overflow: hidden;
            width: 100%;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        }

        .tested-cases-track {
            display: flex;
            gap: 0.6rem;
            width: max-content;
            will-change: transform;
            transform: translate3d(0, 0, 0);
        }

        .tested-cases.is-visible .tested-cases-track {
            animation: tested-cases-scroll 70s linear infinite;
        }

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

        @keyframes tested-cases-scroll {
            from {
                transform: translate3d(0, 0, 0);
            }
            to {
                transform: translate3d(-50%, 0, 0);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .tested-cases.is-visible .tested-cases-track {
                animation: none;
            }
        }

        .tested-case-pill {
            display: inline-flex;
            align-items: center;
            flex-shrink: 0;
            background: var(--bg-card);
            border: 1px solid rgba(0, 217, 255, 0.35);
            border-radius: 999px;
            padding: 0.5rem 0.95rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--accent-cyan);
            white-space: nowrap;
            font-family: inherit;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        .tested-case-pill-text {
            background: linear-gradient(180deg, #4be8ff 0%, #00a8cc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 380px;
            margin-left: auto;
            margin-right: auto;
            margin-top: 1.5rem;
        }

        .carousel-track {
            display: flex;
            gap: 3rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 0 0.25rem;
        }

        .carousel-track::-webkit-scrollbar {
            display: none;
        }

        .carousel-slide {
            flex: 0 0 100%;
            scroll-snap-align: center;
            display: flex;
            flex-direction: column;
            background: var(--bg-card);
            border: 2px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
        }

        .carousel-slide-image {
            width: 100%;
            aspect-ratio: 1/1;
            background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .carousel-slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
            user-select: none;
            -webkit-user-drag: none;
        }

        .carousel-slide-review {
            padding: 0.9rem 1.1rem 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            flex: 1;
            border-top: 1px solid var(--border);
        }

        .carousel-review-title {
            font-size: 0.95rem;
            color: var(--accent-cyan);
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-family: 'JetBrains Mono', monospace;
        }

        .carousel-review-text {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .carousel-review-text:empty {
            display: none;
        }

        .carousel-review-author {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 600;
            padding-top: 0.15rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--accent-cyan);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .verified-badge svg {
            flex-shrink: 0;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border);
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--accent-cyan);
        }

        .carousel-trust {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
            padding-top: 1.25rem;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .carousel-trust-stars {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            font-size: 1.5rem;
            line-height: 1;
            color: #facc15;
        }

        .carousel-trust-stars .star {
            display: inline-block;
        }

        .carousel-trust-stars .star-half {
            position: relative;
            display: inline-block;
            color: var(--border);
        }

        .carousel-trust-stars .star-half::before {
            content: '★';
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            overflow: hidden;
            color: #facc15;
        }

        .carousel-trust-text {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 340px;
            line-height: 1.4;
        }

        .carousel-trust-text strong {
            color: var(--text-primary);
            font-weight: 700;
        }

        .carousel-trust-recommend {
            font-size: 0.9rem;
            color: var(--text-secondary);
            max-width: 320px;
            line-height: 1.4;
            margin-top: 0.15rem;
        }

        .carousel-trust-recommend strong {
            color: var(--accent-cyan);
            font-weight: 700;
        }

        .carousel-arrow {
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: rgba(10, 14, 20, 0.45);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(0, 217, 255, 0.5);
            border-radius: 50%;
            color: var(--accent-cyan);
            font-size: 1.8rem;
            line-height: 1;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 0 4px 0;
            font-weight: 400;
            box-shadow: 0 0 12px rgba(0, 217, 255, 0.199);
            animation: carouselArrowPulse 6s ease-in-out infinite;
            transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        }

        .carousel-arrow:hover {
            background: rgba(0, 217, 255, 0.85);
            color: var(--bg-primary);
            border-color: var(--accent-cyan);
        }

        .carousel-arrow.prev {
            left: -6px;
            padding: 0 4px 4px 0;
        }

        .carousel-arrow.next {
            right: -6px;
            padding: 0 0 4px 4px;
            animation-delay: 2s;
        }

        @keyframes carouselArrowPulse {
            0%, 100% {
                box-shadow: 0 0 8px rgba(0, 217, 255, 0.15);
                transform: translateY(-50%) scale(1);
            }
            50% {
                box-shadow: 0 0 18px rgba(0, 217, 255, 0.45);
                transform: translateY(-50%) scale(1.08);
            }
        }

        .featured-collage {
            margin-top: 1.5rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            aspect-ratio: 1 / 1;
            background: var(--bg-card);
        }

        .featured-collage img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .before-after-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .before-after-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            aspect-ratio: 3 / 4;
            background: var(--bg-card);
        }

        .before-after-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .use-cases {
            margin-top: 2.5rem;
        }

        .use-cases-label {
            font-size: 1.35rem;
            font-weight: 700;
            background: linear-gradient(180deg, #ffffff 0%, #b8b8b8 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            margin-bottom: 1.25rem;
            line-height: 1.3;
        }

        .use-cases-image {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            aspect-ratio: 16 / 9;
            background: var(--bg-card);
        }

        .use-cases-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .before-after-label {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            background: rgba(10, 14, 20, 0.85);
            backdrop-filter: blur(8px);
        }

        .before-after-label.before {
            color: var(--text-muted);
            border: 1px solid var(--border);
        }

        .before-after-label.after {
            color: var(--accent-cyan);
            border: 1px solid var(--accent-cyan);
        }

        .comparison-wrapper {
            margin-top: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .comparison-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.25rem;
            position: relative;
            transition: opacity 0.2s;
        }

        .comparison-card.is-alternative {
            opacity: 0.78;
            padding: 1rem 1.1rem;
        }

        .comparison-card.is-alternative:hover {
            opacity: 1;
        }

        .comparison-card.highlight {
            border: 2px solid var(--accent-cyan);
            box-shadow: 0 0 30px var(--glow);
            padding: 1.5rem 1.35rem;
        }

        .comparison-card-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 0.6rem;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .comparison-card.highlight .comparison-card-header {
            margin-bottom: 0.85rem;
        }

        .comparison-card-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .comparison-card.highlight .comparison-card-title {
            color: var(--accent-cyan);
            font-size: 1.2rem;
        }

        .comparison-card-price {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .comparison-card.highlight .comparison-card-price {
            color: var(--accent-cyan);
            font-size: 1.1rem;
        }

        .comparison-card-text {
            font-size: 0.9rem;
            line-height: 1.55;
            color: var(--text-secondary);
            margin: 0;
        }

        .comparison-card-text strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .comparison-card.highlight .comparison-card-text strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .footer-socials {
            display: flex;
            justify-content: center;
            gap: 1.25rem;
            margin: 1rem 0 0.75rem;
        }

        .footer-socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid var(--border);
            color: var(--text-muted);
            transition: all 0.2s;
            text-decoration: none;
        }

        .footer-socials a:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }

        .footer-socials svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .final-cta {
            padding: 3rem 1.5rem;
            text-align: center;
            background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
        }

        .final-cta .section-inner {
            max-width: 600px;
            margin: 0 auto;
        }

        .final-cta .section-label {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .cta-intro {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2rem;
            text-align: left;
        }

        .cta-intro strong {
            color: var(--text-primary);
        }

        .product-carousel {
            position: relative;
            width: 100%;
            max-width: 400px;
            margin: 0 auto 2rem;
        }

        .product-carousel-track {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 0 0.25rem;
        }

        .product-carousel-track::-webkit-scrollbar {
            display: none;
        }

        .product-carousel-slide {
            flex: 0 0 100%;
            scroll-snap-align: center;
            aspect-ratio: 1/1;
            background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
            border: 2px solid var(--border);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            user-select: none;
            -webkit-user-drag: none;
            cursor: zoom-in;
        }

        .product-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 0.9rem;
        }

        .product-carousel-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--border);
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
            padding: 0;
        }

        .product-carousel-dot.active {
            background: var(--accent-cyan);
        }

        .product-carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            background: rgba(10, 14, 20, 0.35);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            line-height: 1;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 400;
            transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
            opacity: 0.7;
        }

        .product-carousel-arrow:hover {
            background: rgba(0, 217, 255, 0.7);
            color: var(--bg-primary);
            border-color: var(--accent-cyan);
            opacity: 1;
        }

        .product-carousel-arrow.prev {
            left: 6px;
            padding: 0 2px 2px 0;
        }

        .product-carousel-arrow.next {
            right: 6px;
            padding: 0 0 2px 2px;
        }

        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            padding: 1rem;
        }

        .lightbox-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-image {
            max-width: 92vw;
            max-height: 88vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 0 50px rgba(0, 217, 255, 0.2);
        }

        .lightbox-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 44px;
            height: 44px;
            background: rgba(10, 14, 20, 0.7);
            border: 1px solid rgba(0, 217, 255, 0.5);
            border-radius: 50%;
            color: var(--accent-cyan);
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            padding: 0 0 3px 0;
            transition: background 0.2s ease, color 0.2s ease;
            z-index: 10000;
        }

        .lightbox-close:hover {
            background: var(--accent-cyan);
            color: var(--bg-primary);
        }

        .lightbox-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: rgba(10, 14, 20, 0.7);
            border: 1px solid rgba(0, 217, 255, 0.5);
            border-radius: 50%;
            color: var(--accent-cyan);
            font-size: 2rem;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .lightbox-arrow:hover {
            background: var(--accent-cyan);
            color: var(--bg-primary);
        }

        .lightbox-arrow.prev {
            left: 1rem;
            padding: 0 4px 4px 0;
        }

        .lightbox-arrow.next {
            right: 1rem;
            padding: 0 0 4px 4px;
        }

        .lightbox-counter {
            position: absolute;
            bottom: 1.25rem;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(10, 14, 20, 0.7);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 0.4rem 1rem;
            color: var(--text-secondary);
            font-size: 0.85rem;
            font-family: 'JetBrains Mono', monospace;
        }

        .product-carousel-slide img {
            cursor: zoom-in;
        }

        .price-display {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.7rem;
            margin-bottom: 0rem;
        }

        .price-display-main {
            font-family: 'JetBrains Mono', monospace;
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--accent-cyan);
            background: linear-gradient(180deg, #4be8ff 0%, #00a8cc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        .price-display-strike {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-muted);
            text-decoration: line-through;
            text-decoration-thickness: 2px;
        }

        .price-note {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            margin-top: 0.25rem;
        }

        .deadline-box {
            max-width: 100%;
            margin: 0.5rem auto 1.5rem;
            padding: 0.85rem 1.1rem;
            background: rgba(0, 217, 255, 0.06);
            border: 1px solid rgba(0, 217, 255, 0.4);
            border-radius: 8px;
            text-align: center;
        }

        .deadline-box-headline {
            font-size: 0.95rem;
            color: var(--accent-cyan);
            font-weight: 700;
            letter-spacing: 0.3px;
            margin-bottom: 0.25rem;
        }

        .deadline-box-text {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        .deadline-box-text strong {
            color: var(--text-primary);
            font-weight: 700;
        }

        .final-cta .cta-button {
            margin-bottom: 1rem;
        }

        .delivery-note {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-style: italic;
            margin-bottom: 0.75rem;
            font-weight: 500;
        }

        .payment-icons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: -1rem;
            flex-wrap: wrap;
        }

        .recovery-section .payment-icons {
            margin-top: 1rem;
        }

        .payment-icon {
            height: 32px;
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .payment-icon:hover {
            opacity: 1;
        }

        .faq-grid {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

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

        .faq-question {
            width: 100%;
            padding: 1.15rem;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .faq-question:hover {
            color: var(--accent-cyan);
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--accent-cyan);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer-content {
            padding: 0 1.25rem 1.25rem;
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .faq-contact {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 1rem;
            color: var(--text-muted);
        }

        .faq-contact a {
            color: var(--accent-cyan);
            text-decoration: none;
        }

        .faq-contact a:hover {
            text-decoration: underline;
        }

.faq-extra {
    display: none;
}

.faq-extra.open {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-show-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.75rem;
    transition: background 0.2s ease, border-color 0.2s ease;
    width: 100%;
}

.faq-show-more span {
    background: linear-gradient(180deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-show-more:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.25);
}

.faq-show-more.hidden {
    display: none;
}

.faq-contact-wrapper {
    display: none;
}

.faq-contact-wrapper.open {
    display: block;
}

@media (min-width: 768px) {
    .faq-extra {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .faq-show-more {
        display: none;
    }

    .faq-contact-wrapper {
        display: block;
    }

    .comparison-wrapper {
        flex-direction: row;
        gap: 1rem;
    }

    .comparison-card {
        flex: 1;
    }
}


        .recovery-section {
            padding-top: 1rem;
            padding-bottom: 3rem;
            text-align: center;
        }


        .recovery-builds {
            margin-bottom: 2.5rem;
        }

        .recovery-builds-label {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(180deg, #ffffff 0%, #b8b8b8 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.25rem;
            margin-top: 1rem;
            line-height: 1.2;
        }

        .recovery-builds-label-accent {
            display: inline-block;
            background: linear-gradient(180deg, #4be8ff 0%, #00a8cc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .recovery-builds-image {
            max-width: 600px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            aspect-ratio: 4 / 3;
            background: var(--bg-card);
        }

        .recovery-builds-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }


        .recovery-trust {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .recovery-trust-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 0.85rem 1rem;
            flex: 1 1 auto;
            min-width: 100px;
            max-width: 170px;
        }

        .recovery-trust-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent-cyan);
            background: linear-gradient(180deg, #4be8ff 0%, #00a8cc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.25rem;
            line-height: 1.1;
        }

        .recovery-trust-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            line-height: 1.3;
        }


        .recovery-product-image {
            max-width: 280px;
            margin: 0 auto 1rem;
        }

        .recovery-product-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }


        .recovery-price-reminder {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.35rem;
            margin-bottom: 1rem;
        }

        .recovery-price-reminder-line {
            display: inline-flex;
            align-items: baseline;
            gap: 0.6rem;
        }

        .recovery-price-reminder-line strong {
            font-family: 'JetBrains Mono', monospace;
            font-size: 2.1rem;
            font-weight: 700;
            color: var(--accent-cyan);
            background: linear-gradient(180deg, #4be8ff 0%, #00a8cc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        .recovery-price-reminder-strike {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-muted);
            text-decoration: line-through;
            text-decoration-thickness: 1.5px;
        }

        .recovery-price-reminder-deadline {
            display: inline-block;
            font-size: 0.9rem;
            font-weight: 700;
            background: rgba(0, 217, 255, 0.06);
            border: 1px solid rgba(0, 217, 255, 0.4);
            border-radius: 8px;
            padding: 0.55rem 1.4rem;
            margin-top: 0.35rem;
            max-width: 320px;
            text-align: center;
            color: #e9e8e8;
        }

        .recovery-price-reminder-deadline-text {
            background: linear-gradient(180deg, #cececeb9 0%, #9c9c9c 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .recovery-cta-button {
            display: inline-flex;
            margin-top: 0.5rem;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            padding: 0.95rem 1rem;
            max-width: 360px;
        }

        @media (min-width: 768px) {
            .recovery-trust {
                gap: 1.25rem;
            }

            .recovery-trust-item {
                padding: 1rem 1.25rem;
            }

            .recovery-trust-number {
                font-size: 1.35rem;
            }

            .recovery-trust-label {
                font-size: 0.85rem;
            }
        }

        footer {
            padding: 2rem 1.5rem;
            text-align: center;
            border-top: 1px solid var(--border);
            background: var(--bg-secondary);
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        footer a {
            color: var(--text-secondary);
            text-decoration: none;
            margin: 0 0.5rem;
        }

        footer a:hover {
            color: var(--accent-cyan);
        }

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

        .hero-content > * {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
        .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
        .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
        .hero-content > *:nth-child(4) { animation-delay: 0.4s; }
        .hero-content > *:nth-child(5) { animation-delay: 0.5s; }

        @media (min-width: 768px) {
            nav {
                padding: 1.25rem 0;
            }

            .nav-container {
                padding: 0 2rem;
            }

            .logo {
                font-size: 1.8rem;
            }

            .nav-price {
                font-size: 1.4rem;
            }

            .hero {
                margin-top: 90px;
                padding: 3rem 2rem 4rem;
            }

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

            .hero h1 .highlight {
                font-size: 1.4rem;
            }

            .hero-subtitle {
                font-size: 1.25rem;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-visual {
                max-width: 700px;
                margin-left: auto;
                margin-right: auto;
            }

            .section {
                padding: 4rem 2rem;
            }

            .section-dark {
                padding-left: 2rem;
                padding-right: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .carousel-container {
                max-width: 450px;
            }

            .carousel-arrow {
                display: flex;
            }

            .final-cta {
                padding: 4rem 2rem;
            }

            .final-cta .section-label {
                font-size: 2.5rem;
            }

            .cta-intro {
                text-align: center;
            }

            .price-display-main {
                font-size: 4rem;
            }

            .price-display-strike {
                font-size: 1.7rem;
            }

        }

        @media (min-width: 1024px) {
            .hero {
                padding: 4rem 2rem 5rem;
            }

            .hero-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
                align-items: center;
                text-align: left;
            }

            .hero-content {
                text-align: left;
            }

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

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

            .hero-subtitle {
                margin-left: 0;
                margin-right: 0;
                max-width: none;
            }

            .hero-visual {
                max-width: none;
                margin: 0;
            }

            .cta-button {
                width: auto;
            }

            .carousel-container {
                max-width: 500px;
            }
        }
.video-hero {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}
.sticky-cta {
    position: fixed;
    bottom: 1rem;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sticky-cta .sticky-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 3rem;
    background: var(--accent-cyan);
    color: var(--bg-primary);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
}
@media (hover: hover) {
    .sticky-cta .sticky-button:hover {
        background: var(--text-primary);
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    }
}


.purchase-checklist {
    text-align: left;
    max-width: 440px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.purchase-checklist-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    text-align: center;
    font-weight: 600;
}

.purchase-checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.purchase-checklist-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid var(--border);
    min-height: 48px;
    text-align: center;
}

.purchase-checklist-item .check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}


@media (min-width: 768px) {
    .sticky-cta {
        display: none !important;
    }

    .purchase-checklist {
        max-width: 400px;
    }
}

.use-cases-carousel {
    max-width: 280px;
}

.use-cases-carousel .carousel-slide {
    border: 1px solid var(--border);
}

.use-cases-carousel .carousel-slide-image {
    aspect-ratio: 1 / 1;
}

.use-cases-carousel .carousel-arrow {
    top: 50%;
}

.use-cases-carousel + .carousel-dots {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card-text-expanded {
    display: none;
    margin-top: 0.75rem;
}

.comparison-wrapper.expanded .comparison-card-text-expanded {
    display: block;
}

.comparison-toggle {
    display: block;
    margin: 1.5rem auto 0;
    background: none;
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.comparison-toggle span {
    background: linear-gradient(180deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comparison-toggle:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.25);
}

.build-garantie-section {
    border-top-color: rgba(0, 217, 255, 0.7);
    border-bottom-color: rgba(0, 217, 255, 0.7);
    box-shadow:
        0 -10px 24px -8px rgba(0, 217, 255, 0.35),
        0 10px 24px -8px rgba(0, 217, 255, 0.35);
}

.build-garantie-section .build-garantie-icon {
    display: block;
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    color: var(--accent-cyan);
}

.build-garantie-section .section-label,
.build-garantie-section .section-title {
    text-align: center;
}

.section-body-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 1rem;
}

.section-body-text p {
    margin-bottom: 1rem;
}

.section-body-text p:last-child {
    margin-bottom: 0;
}

.about-quote-block {
    margin-top: 1rem;
}

.about-quote-block::after {
    content: '';
    display: block;
    clear: both;
}

.about-quote-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    float: left;
    margin: 0.2rem 1rem 0.3rem 0;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.about-quote-body {
    position: relative;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-quote-body::before,
.about-quote-body::after {
    color: var(--accent-cyan);
    font-family: Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 0;
    position: relative;
    top: 0.4rem;
    background: linear-gradient(180deg, #4be8ff 0%, #00a8cc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-quote-body::before {
    content: '\201C';
    margin-right: 0.2rem;
}

.about-quote-body::after {
    content: '\201D';
    margin-left: 0.1rem;
}

.about-quote-body p {
    display: inline;
}

.guarantee-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    max-width: 440px;
    margin: 0 auto 1.25rem;
    padding: 0.85rem 1.1rem;
    background: rgba(0, 217, 255, 0.06);
    border: 1px solid rgba(0, 217, 255, 0.35);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.4;
}

.guarantee-banner svg {
    flex-shrink: 0;
    color: var(--accent-cyan);
}

.community-builds-image {
    max-width: 900px;
    margin: 1.5rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 2 / 1;
    background: var(--bg-card);
}

.community-builds-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.community-divider {
    margin: 1.5rem 0 0;
    border: none;
    border-top: 1px solid var(--border);
}

.carousel-trust-source {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.15rem;
    max-width: 340px;
    line-height: 1.4;
}


@media (min-width: 1024px) {

    .hero {
        max-width: 960px;
        padding: 4rem 2rem 5rem;
    }
    .hero-grid {
        display: block;
    }
    .hero-content {
        text-align: center;
        max-width: 820px;
        margin: 0 auto;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-visual {
        width: 100%;
        max-width: 440px;
        margin: 2rem auto 1.5rem;
    }


    .before-after-grid {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .section {
        padding: 5rem 2rem;
    }

    .section-text,
    .solution-intro,
    .section-body-text,
    .cta-intro,
    .about-quote-block {
        max-width: 820px;
    }

    .problem-list {
        display: block;
        column-count: 2;
        column-gap: 2.5rem;
        max-width: 1000px;
        padding: 1.5rem 2rem;
    }
    .problem-list .problem-item,
    .problem-list .problem-item:first-child,
    .problem-list .problem-item:last-child {
        break-inside: avoid;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        border-bottom: none;
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
    }

    .solution-list {
        display: block;
        column-count: 2;
        column-gap: 2.5rem;
        max-width: 1000px;
        padding: 1.5rem 2rem;
    }
    .solution-list .solution-item,
    .solution-list .solution-item:first-child,
    .solution-list .solution-item:last-child {
        break-inside: avoid;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        border-bottom: none;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }

    .compat-list-standalone {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 2rem;
        row-gap: 0.85rem;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        padding: 1.75rem 2rem;
    }

    .carousel-container {
        max-width: 820px;
    }
    .carousel-slide {
        flex-direction: row;
    }
    .carousel-slide-image {
        width: 45%;
        aspect-ratio: 1 / 1;
        flex-shrink: 0;
    }
    .carousel-slide-review {
        width: 55%;
        border-top: none;
        border-left: 1px solid var(--border);
        padding: 1.5rem 1.75rem;
        justify-content: center;
    }
    .carousel-review-text {
        font-size: 1rem;
    }

    .product-carousel {
        max-width: 360px;
    }


    .final-cta .section-inner {
        max-width: 720px;
    }
    .purchase-checklist {
        max-width: 480px;
    }

    .price-display-main {
        font-size: 3rem;
    }
    .price-display-strike {
        font-size: 1.35rem;
    }

    .final-cta .cta-button,
    .recovery-cta-button {
        width: 100%;
        max-width: 460px;
    }


    .build-garantie-section .section-body-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }


    .community-builds-image {
        max-width: 500px;
    }


    .final-cta {
        text-align: left;
    }
    .final-cta .section-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 3rem;
        align-items: start;
        max-width: 1100px;
        text-align: left;
    }

    .final-cta .section-label,
    .final-cta .cta-intro,
    .final-cta .deadline-box {
        grid-column: 1;
        max-width: 100%;
    }
    .final-cta .section-label {
        align-self: end;
        text-align: center;
    }
    .final-cta .cta-intro {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    .final-cta .deadline-box {
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .final-cta .product-carousel,
    .final-cta .price-display,
    .final-cta .price-note,
    .final-cta .guarantee-banner,
    .final-cta .cta-button,
    .final-cta .delivery-note,
    .final-cta .payment-icons {
        grid-column: 2;
    }
    .final-cta .product-carousel {
        grid-row: 1 / span 3;
        max-width: 380px;
        margin: 0 auto 1.5rem;
        align-self: start;
    }

    .final-cta .price-display {
        justify-content: center;
    }
    .final-cta .price-note,
    .final-cta .delivery-note {
        text-align: center;
    }
    .final-cta .guarantee-banner {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    .final-cta .payment-icons {
        justify-content: center;
    }
    .final-cta .cta-button {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 420px;
    }


    .faq-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        max-width: 1100px;
        align-items: start;
    }
    .faq-extra {
        display: contents;
    }
    .faq-contact-wrapper {
        grid-column: 1 / -1;
    }
    .faq-item.active .faq-answer {
        max-height: 600px;
    }


    .use-cases-carousel.carousel-container {
        max-width: 400px;
    }
    .use-cases-carousel .carousel-slide {
        flex-direction: column;
    }
    .use-cases-carousel .carousel-slide-image {
        width: 100%;
    }
}

        /* ============================================
           Visual Polish: Reveal, Glow, Microinteractions
           ============================================ */

        html {
            scroll-behavior: smooth;
        }

        /* CTA: softer, animated glow */
        .cta-button {
            position: relative;
            transition: transform 0.25s ease, box-shadow 0.4s ease, background 0.25s ease;
        }

        .cta-button::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 6px;
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.6), rgba(0, 153, 204, 0.3));
            filter: blur(14px);
            opacity: 0.45;
            z-index: -1;
            transition: opacity 0.35s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow:
                0 8px 30px rgba(0, 217, 255, 0.35),
                0 0 40px rgba(0, 217, 255, 0.25);
        }

        .cta-button:hover::after {
            opacity: 0.85;
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        .cta-arrow-img {
            transition: transform 0.3s ease;
        }

        .cta-button:hover .cta-arrow-img {
            transform: translate(4px, -2px);
        }

        /* Card hover: lift + subtle cyan border */
        .problem-list,
        .solution-list,
        .compat-list-standalone {
            transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
        }

        .problem-list:hover,
        .solution-list:hover,
        .compat-list-standalone:hover {
            transform: translateY(-2px);
            border-color: rgba(0, 217, 255, 0.35);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 30px rgba(0, 217, 255, 0.06);
        }

        /* Individual items: subtle background hover */
        .problem-item,
        .solution-item,
        .compat-item-standalone {
            transition: background 0.25s ease, transform 0.25s ease, padding-left 0.25s ease;
            border-radius: 6px;
            padding-left: 0.25rem;
            padding-right: 0.25rem;
        }

        .problem-item:hover,
        .solution-item:hover,
        .compat-item-standalone:hover {
            background: rgba(0, 217, 255, 0.04);
            padding-left: 0.5rem;
        }

        /* Before/After cards: gentle zoom-in on the image */
        .before-after-card {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .before-after-card img {
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .before-after-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(0, 217, 255, 0.08);
        }

        .before-after-card:hover img {
            transform: scale(1.04);
        }

        /* FAQ: finer hover */
        .faq-item {
            transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
        }

        .faq-item:hover {
            transform: translateX(2px);
        }

        /* Tested case pills: slight lift reaction */
        .tested-case-pill {
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .tested-case-pill:hover {
            transform: translateY(-2px);
            border-color: rgba(0, 217, 255, 0.7);
            box-shadow: 0 6px 18px rgba(0, 217, 255, 0.15);
        }

        /* Footer links: subtle underline slide */
        footer a {
            position: relative;
            transition: color 0.25s ease;
        }

        /* Section rhythm: more breathing room on larger screens */
        @media (min-width: 768px) {
            .section {
                padding-top: 4.5rem;
                padding-bottom: 4.5rem;
            }
        }

        @media (min-width: 1024px) {
            .section {
                padding-top: 5.5rem;
                padding-bottom: 5.5rem;
            }
        }

        /* Respect reduced motion */
        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            .cta-button,
            .cta-arrow-img,
            .problem-list,
            .solution-list,
            .compat-list-standalone,
            .before-after-card,
            .before-after-card img,
            .faq-item,
            .tested-case-pill {
                transition: none;
            }
        }
