        /* ── 3. Screenshots ───────────────────────────────── */
        .screenshots-section {
            background: #0f1424;
            overflow: hidden;
        }
        .screenshots-section .container { text-align: center; }
        .screenshot-gallery {
            display: flex;
            gap: 2rem;
            justify-content: center;
            align-items: flex-start;
            flex-wrap: wrap;
            margin-top: 3rem;
        }
        .screenshot-item {
            position: relative;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .screenshot-item:hover { transform: translateY(-6px) scale(1.02); }
        .screenshot-item img {
            border-radius: 14px;
            box-shadow: 0 12px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
            max-height: 440px;
            width: auto;
        }
        .screenshot-label {
            margin-top: 0.8rem;
            font-size: 0.85rem;
            color: #555b6e;
            font-weight: 500;
        }

        /* ── 4. Features (interactive hover cards) ────────── */
        .features {
            background: linear-gradient(180deg, #0f1424 0%, #0a0e1a 100%);
        }
        .features .container { text-align: center; }
        .fcard-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 960px;
            width: 100%;
            margin: 3rem auto 0;
            text-align: left;
        }
        .fcard-card {
            position: relative;
            padding: 32px 28px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            cursor: default;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                        border-color 0.4s ease,
                        box-shadow 0.4s ease;
            overflow: hidden;
        }
        .fcard-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            border-radius: 16px;
            background: radial-gradient(
                600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                var(--glow-color),
                transparent 40%
            );
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
            z-index: 0;
        }
        .fcard-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.12);
        }
        .fcard-card:hover::before { opacity: 1; }
        .fcard-card > * { position: relative; z-index: 1; }
        .fcard-card[data-color="green"]  { --glow-color: rgba(34, 197, 94, 0.08);  --accent: #4ade80; }
        .fcard-card[data-color="blue"]   { --glow-color: rgba(59, 130, 246, 0.08); --accent: #60a5fa; }
        .fcard-card[data-color="purple"] { --glow-color: rgba(139, 92, 246, 0.08); --accent: #a78bfa; }
        .fcard-card[data-color="amber"]  { --glow-color: rgba(245, 158, 11, 0.08); --accent: #fbbf24; }
        .fcard-card[data-color="cyan"]   { --glow-color: rgba(6, 182, 212, 0.08);  --accent: #22d3ee; }
        .fcard-card[data-color="rose"]   { --glow-color: rgba(244, 63, 94, 0.08);  --accent: #fb7185; }
        .fcard-card:hover {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--glow-color);
        }
        .fcard-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 20px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                        background 0.4s ease,
                        border-color 0.4s ease;
        }
        .fcard-card:hover .fcard-icon {
            border-color: rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.06);
        }
        .fcard-card[data-anim="pulse"]:hover .fcard-icon { animation: fcard-iconPulse 1.5s ease infinite; }
        .fcard-card[data-anim="rotate"]:hover .fcard-icon { animation: fcard-iconRotate 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
        .fcard-card[data-anim="bounce"]:hover .fcard-icon { animation: fcard-iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
        .fcard-card[data-anim="shake"]:hover .fcard-icon { animation: fcard-iconShake 0.5s ease; }
        .fcard-card[data-anim="flip"]:hover .fcard-icon { animation: fcard-iconFlip 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
        .fcard-card[data-anim="swing"]:hover .fcard-icon { animation: fcard-iconSwing 0.7s ease; }
        @keyframes fcard-iconPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }
        @keyframes fcard-iconRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        @keyframes fcard-iconBounce { 0% { transform: translateY(0); } 40% { transform: translateY(-12px); } 60% { transform: translateY(-4px); } 80% { transform: translateY(-8px); } 100% { transform: translateY(0); } }
        @keyframes fcard-iconShake { 0%, 100% { transform: translateX(0); } 15% { transform: translateX(-6px); } 30% { transform: translateX(5px); } 45% { transform: translateX(-4px); } 60% { transform: translateX(3px); } 75% { transform: translateX(-2px); } }
        @keyframes fcard-iconFlip { 0% { transform: perspective(200px) rotateY(0deg); } 100% { transform: perspective(200px) rotateY(360deg); } }
        @keyframes fcard-iconSwing { 0% { transform: rotate(0deg); } 20% { transform: rotate(15deg); } 40% { transform: rotate(-10deg); } 60% { transform: rotate(5deg); } 80% { transform: rotate(-3deg); } 100% { transform: rotate(0deg); } }
        .fcard-title {
            font-size: 16px;
            font-weight: 600;
            color: #f4f4f5;
            margin-bottom: 8px;
            transition: color 0.3s;
        }
        .fcard-card:hover .fcard-title { color: var(--accent); }
        .fcard-desc {
            font-size: 13.5px;
            line-height: 1.6;
            color: #71717a;
            transition: color 0.3s;
        }
        .fcard-card:hover .fcard-desc { color: #a1a1aa; }
        .fcard-code {
            font-size: 12px;
            background: rgba(255,255,255,0.06);
            padding: 1px 5px;
            border-radius: 3px;
        }
        .fcard-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        .fcard-card:hover .fcard-icon svg { opacity: 1; }

        /* ── 5. How It Works ──────────────────────────────── */
        .how-it-works {
            background: #0a0e1a;
        }
        .how-it-works .container { text-align: center; }
        .steps {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            justify-content: center;
        }
        .step {
            flex: 1;
            max-width: 280px;
            padding: 2rem 1.5rem;
            text-align: center;
        }
        .step-number {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6b8afd 0%, #8b5cf6 100%);
            color: #fff;
            font-size: 1.3rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
        }
        .step h3 {
            font-size: 1.1rem;
            font-weight: 650;
            color: #e8ecf4;
            margin-bottom: 0.5rem;
        }
        .step p {
            font-size: 0.9rem;
            color: #6b7280;
            line-height: 1.6;
        }

        /* ── 6. Pricing ───────────────────────────────────── */
        .pricing {
            background: linear-gradient(180deg, #0a0e1a 0%, #0f1424 100%);
            text-align: center;
        }
        .pricing-card {
            max-width: 440px;
            margin: 3rem auto 0;
            padding: 3rem 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #6b8afd, transparent);
        }
        .pricing-amount {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            margin-bottom: 0.25rem;
        }
        .pricing-amount span {
            font-size: 1.4rem;
            font-weight: 600;
            color: #6b8afd;
            vertical-align: super;
        }
        .pricing-detail {
            font-size: 1rem;
            color: #555b6e;
            margin-bottom: 2rem;
        }
        .pricing-list {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-bottom: 2rem;
        }
        .pricing-list li {
            padding: 0.55rem 0;
            font-size: 0.95rem;
            color: #8b93a7;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .pricing-list li::before {
            content: '\2713';
            color: #4ade80;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .competitor-note {
            margin-top: 2rem;
            padding: 1.25rem;
            border-radius: 10px;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.05);
            font-size: 0.85rem;
            color: #555b6e;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .competitor-note strong { color: #8b93a7; }

        .pricing-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            max-width: 720px;
            margin: 2.5rem auto 0;
            text-align: left;
        }
        .pricing-col {
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 12px;
            background: rgba(255,255,255,0.02);
            padding: 1.5rem;
        }
        .pricing-col-title {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }
        .pricing-col-included .pricing-col-title { color: #4ade80; }
        .pricing-col-future .pricing-col-title { color: #8b93a7; }
        .pricing-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .pricing-col li {
            padding: 0.45rem 0;
            font-size: 0.9rem;
            color: #8b93a7;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            display: flex;
            align-items: baseline;
            gap: 0.6rem;
        }
        .pricing-col li:last-child { border-bottom: none; }
        .pricing-col-included li::before {
            content: '\2713';
            color: #4ade80;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .pricing-col-future li::before {
            content: '\2192';
            color: #555b6e;
            font-weight: 400;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .pricing-col-note {
            margin-top: 1rem;
            font-size: 0.8rem;
            color: #555b6e;
            line-height: 1.5;
        }
        @media (max-width: 600px) {
            .pricing-columns { grid-template-columns: 1fr; }
        }

        /* ── 7. CTA ───────────────────────────────────────── */
        .final-cta {
            text-align: center;
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
            background: #0f1424;
        }
        .final-cta::before {
            content: '';
            position: absolute;
            bottom: -30%; left: 50%; transform: translateX(-50%);
            width: 800px; height: 800px;
            background: radial-gradient(circle, rgba(107,138,253,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .final-cta h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
            position: relative;
        }
        .final-cta p {
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 2.5rem;
            position: relative;
        }
        .final-cta .hero-buttons { position: relative; }

        /* ── Support ──────────────────────────────────────── */
        .support {
            background: #0a0e1a;
            text-align: center;
            padding: 4rem 2rem;
        }
        .support h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #e8ecf4;
            margin-bottom: 0.75rem;
        }
        .support p {
            color: #6b7280;
            font-size: 1rem;
            margin-bottom: 0.3rem;
        }
        .support a { font-weight: 500; }

        /* ── Footer ───────────────────────────────────────── */
        footer {
            background: #070a14;
            border-top: 1px solid rgba(255,255,255,0.04);
            text-align: center;
            padding: 2rem;
            font-size: 0.85rem;
            color: #3a3f4f;
        }
        footer a { color: #555b6e; }
        footer a:hover { color: #8b93a7; }
        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .footer-inner p { margin: 0; }
        .footer-links {
            display: flex;
            gap: 2rem;
        }

