        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

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

        :root {
            --primary: #e94560;
            --primary-soft: rgba(233,69,96,0.14);
            --purple: #6c3df5;
            --teal: #2bc5b4;
            --bg-dark: #080614;
            --bg-mid: #100d24;
            --glass: rgba(255,255,255,0.04);
            --glass-light: rgba(255,255,255,0.07);
            --glass-border: rgba(255,255,255,0.08);
            --text-muted: rgba(255,255,255,0.45);
            --radius-xl: 24px;
            --radius-2xl: 36px;
        }

        html { scroll-behavior: smooth; }

        body {
            min-height: 100vh;
            background: var(--bg-dark);
            font-family: 'Inter', sans-serif;
            color: #fff;
            overflow-x: hidden;
        }

        /* ── Animated grid background ── */
        body::before {
            content: '';
            position: fixed; inset: 0; z-index: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        /* ── Orbs ── */
        .orb {
            position: fixed; border-radius: 50%;
            filter: blur(110px); opacity: 0.22;
            pointer-events: none; z-index: 0;
            animation: floatOrb 14s ease-in-out infinite alternate;
        }
        .orb-1 { width: 600px; height: 600px; background: var(--primary); top: -180px; left: -120px; animation-delay: 0s; }
        .orb-2 { width: 450px; height: 450px; background: var(--purple); bottom: -80px; right: -80px; animation-delay: -6s; }
        .orb-3 { width: 320px; height: 320px; background: var(--teal); top: 45%; left: 55%; animation-delay: -3s; opacity: 0.1; }
        @keyframes floatOrb {
            0%   { transform: scale(0.9) translate(0, 0); }
            100% { transform: scale(1.15) translate(28px, -28px); }
        }

        /* ── Wrapper ── */
        .page-wrapper { position: relative; z-index: 1; display: flex; flex-direction: column; min-height: 100vh; }

        /* ── Navbar ── */
        nav {
            display: flex; align-items: center; justify-content: space-between;
            padding: 20px 44px;
            background: rgba(8,6,20,0.65);
            backdrop-filter: blur(22px);
            border-bottom: 1px solid var(--glass-border);
            position: sticky; top: 0; z-index: 100;
        }
        .logo {
            display: flex; align-items: center; gap: 11px;
            font-size: 1.25rem; font-weight: 900; letter-spacing: -0.5px;
            text-decoration: none; color: #fff;
        }
        .logo-icon {
            width: 38px; height: 38px; border-radius: 11px;
            background: linear-gradient(135deg, var(--primary), var(--purple));
            display: flex; align-items: center; justify-content: center; font-size: 1rem;
        }
        .logo .accent { color: var(--primary); }
        .nav-links { display: flex; align-items: center; gap: 8px; }
        .nav-link {
            color: var(--text-muted); text-decoration: none;
            font-size: 0.85rem; font-weight: 500; padding: 8px 14px; border-radius: 100px;
            transition: color 0.2s, background 0.2s;
        }
        .nav-link:hover { color: #fff; background: var(--glass-light); }
        .nav-cta {
            background: var(--primary); color: #fff;
            padding: 10px 24px; border-radius: 100px;
            text-decoration: none; font-weight: 700; font-size: 0.85rem;
            transition: box-shadow 0.25s, transform 0.25s;
            white-space: nowrap;
        }
        .nav-cta:hover { box-shadow: 0 0 28px rgba(233,69,96,0.55); transform: translateY(-1px); }
        .nav-mobile-menu { display: none; background: none; border: none; color: #fff; font-size: 1.3rem; cursor: pointer; }

        /* ── Hero ── */
        .hero {
            flex: 1; display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            text-align: center; padding: 110px 24px 70px;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--primary-soft);
            border: 1px solid rgba(233,69,96,0.3);
            color: var(--primary);
            padding: 7px 22px; border-radius: 100px;
            font-size: 0.75rem; font-weight: 700;
            letter-spacing: 1.4px; text-transform: uppercase;
            margin-bottom: 32px;
            animation: fadeUp 0.9s ease both;
        }
        .hero h1 {
            font-size: clamp(2.8rem, 8vw, 5.5rem);
            font-weight: 900; line-height: 1.05; letter-spacing: -2.5px;
            max-width: 880px;
            animation: fadeUp 0.9s 0.1s ease both;
        }
        .hero h1 .gr { background: linear-gradient(135deg, var(--primary) 0%, #ff8a65 55%, var(--purple) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero-sub {
            font-size: 1.12rem; color: var(--text-muted);
            max-width: 560px; line-height: 1.8;
            margin: 26px auto 0;
            animation: fadeUp 0.9s 0.2s ease both;
        }

        /* ── Three cards in hero ── */
        .hero-cards {
            display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
            margin: 44px auto 0; max-width: 780px;
            animation: fadeUp 0.9s 0.3s ease both;
        }
        .hero-card {
            background: var(--glass); border: 1px solid var(--glass-border);
            border-radius: 18px; padding: 22px 26px;
            backdrop-filter: blur(14px); text-align: left;
            flex: 1; min-width: 200px; max-width: 240px;
            transition: transform 0.3s, border-color 0.3s;
            cursor: default;
        }
        .hero-card:hover { transform: translateY(-5px); border-color: rgba(233,69,96,0.35); }
        .hero-card-icon { font-size: 1.5rem; margin-bottom: 12px; }
        .hero-card h4 { font-size: 0.9rem; font-weight: 800; margin-bottom: 5px; }
        .hero-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

        /* ── CTA Buttons row ── */
        .hero-actions {
            display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
            margin-top: 44px;
            animation: fadeUp 0.9s 0.4s ease both;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), #c0392b);
            color: #fff; padding: 16px 38px; border-radius: 100px;
            text-decoration: none; font-weight: 700; font-size: 1rem;
            box-shadow: 0 10px 30px rgba(233,69,96,0.4);
            transition: all 0.25s;
        }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 42px rgba(233,69,96,0.6); }
        .btn-ghost {
            background: var(--glass); border: 1px solid var(--glass-border);
            color: #fff; padding: 16px 38px; border-radius: 100px;
            text-decoration: none; font-weight: 600; font-size: 1rem;
            backdrop-filter: blur(12px); transition: all 0.25s;
        }
        .btn-ghost:hover { background: var(--glass-light); transform: translateY(-2px); }

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

        /* ── Platforms ── */
        .platforms-section { padding: 10px 24px 80px; text-align: center; }
        .platforms-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
        .platforms-scroll { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .platform-pill {
            display: flex; align-items: center; gap: 8px;
            background: var(--glass); border: 1px solid var(--glass-border);
            padding: 10px 20px; border-radius: 100px;
            font-size: 0.85rem; font-weight: 600;
            transition: all 0.22s; backdrop-filter: blur(10px); cursor: default;
        }
        .platform-pill:hover { transform: translateY(-2px); }
        .p-spotify:hover  { border-color: #1DB954; color: #1DB954; }
        .p-apple:hover    { border-color: #FA243C; color: #FA243C; }
        .p-youtube:hover  { border-color: #FF0000; color: #FF0000; }
        .p-amazon:hover   { border-color: #FF9900; color: #FF9900; }
        .p-jiosaavn:hover { border-color: #2bc5b4; color: #2bc5b4; }
        .p-gaana:hover    { border-color: #E5002B; color: #E5002B; }
        .p-wynk:hover     { border-color: #00a0df; color: #00a0df; }
        .p-resso:hover    { border-color: #ff4466; color: #ff4466; }

        /* ── Section shared ── */
        .section { padding: 90px 24px; max-width: 1120px; margin: 0 auto; }
        .section-label {
            text-align: center; font-size: 0.72rem; font-weight: 700;
            letter-spacing: 2.2px; text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
        }
        .section-title {
            text-align: center; font-size: clamp(1.9rem, 4.5vw, 3rem);
            font-weight: 900; letter-spacing: -1.2px; margin-bottom: 14px;
        }
        .section-sub { text-align: center; color: var(--text-muted); font-size: 1rem; line-height: 1.75; max-width: 520px; margin: 0 auto 60px; }

        /* ── Feature cards ── */
        .cards-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px;
        }
        .feat-card {
            background: var(--glass); border: 1px solid var(--glass-border);
            border-radius: var(--radius-xl); padding: 36px 30px;
            backdrop-filter: blur(14px);
            transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
        }
        .feat-card:hover { transform: translateY(-7px); border-color: rgba(233,69,96,0.3); box-shadow: 0 24px 55px rgba(0,0,0,0.35); }
        .card-icon {
            width: 54px; height: 54px; border-radius: 15px;
            background: var(--primary-soft); border: 1px solid rgba(233,69,96,0.25);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem; color: var(--primary); margin-bottom: 22px;
        }
        .card-icon.purple { background: rgba(108,61,245,0.14); border-color: rgba(108,61,245,0.25); color: var(--purple); }
        .card-icon.teal   { background: rgba(43,197,180,0.12); border-color: rgba(43,197,180,0.22); color: var(--teal); }
        .feat-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
        .feat-card p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; }

        /* ── Three product showcase ── */
        .products { padding: 80px 24px; }
        .products-inner { max-width: 1120px; margin: 0 auto; }
        .product-row {
            display: flex; align-items: center; gap: 60px; flex-wrap: wrap;
            margin-bottom: 100px;
        }
        .product-row:last-child { margin-bottom: 0; }
        .product-row.reverse { flex-direction: row-reverse; }
        .product-text { flex: 1; min-width: 280px; }
        .product-text .section-label { text-align: left; }
        .product-text .section-title { text-align: left; font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
        .product-text p { color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; margin-bottom: 28px; }
        .product-text ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
        .product-text ul li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.8); }
        .product-text ul li i { color: var(--primary); font-size: 0.75rem; }

        .product-mock {
            flex: 0 0 280px; background: var(--glass);
            border: 1px solid var(--glass-border); border-radius: var(--radius-2xl); padding: 26px 22px;
            backdrop-filter: blur(18px);
            box-shadow: 0 40px 90px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
        }
        .mock-cover {
            width: 100%; aspect-ratio: 1;
            background: linear-gradient(135deg, #2a0a30, var(--purple) 50%, var(--primary));
            border-radius: 18px; margin-bottom: 16px;
            display: flex; align-items: center; justify-content: center;
            font-size: 2.8rem; color: rgba(255,255,255,0.55);
        }
        .mock-cover.bio-grad { background: linear-gradient(135deg, #0a1a30, var(--teal) 50%, var(--purple)); }
        .mock-cover.profile-grad { background: linear-gradient(135deg, #1a0a20, var(--primary) 50%, #ff8a65); }
        .mock-title  { font-size: 0.9rem; font-weight: 800; text-align: center; margin-bottom: 4px; }
        .mock-artist { font-size: 0.72rem; color: var(--text-muted); text-align: center; margin-bottom: 16px; }
        .mock-btn {
            background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border);
            border-radius: 9px; padding: 10px 14px;
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 8px; font-size: 0.72rem; font-weight: 600;
            transition: background 0.2s; cursor: default;
        }
        .mock-btn:hover { background: rgba(255,255,255,0.08); }
        .mock-btn i.fa-spotify { color: #1DB954; }
        .mock-btn i.fa-apple   { color: #FA243C; }
        .mock-btn i.fa-youtube { color: #FF0000; }
        .mock-tag {
            display: inline-block; background: var(--primary-soft); border: 1px solid rgba(233,69,96,0.25);
            color: var(--primary); padding: 6px 14px; border-radius: 100px;
            font-size: 0.72rem; font-weight: 700; margin: 6px 4px 0 0;
            letter-spacing: 0.5px;
        }
        .mock-tag.t2 { background: rgba(108,61,245,0.12); border-color: rgba(108,61,245,0.22); color: var(--purple); }
        .mock-tag.t3 { background: rgba(43,197,180,0.1); border-color: rgba(43,197,180,0.2); color: var(--teal); }

        /* Bio mock */
        .bio-avatar {
            width: 64px; height: 64px; border-radius: 50%;
            background: linear-gradient(135deg, var(--purple), var(--teal));
            margin: 0 auto 12px; display: flex; align-items: center; justify-content: center;
            font-size: 1.6rem;
        }
        .bio-name { text-align: center; font-weight: 800; font-size: 0.95rem; margin-bottom: 4px; }
        .bio-genre { text-align: center; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 14px; }
        .bio-link-btn {
            background: rgba(0,0,0,0.35); border: 1px solid var(--glass-border);
            border-radius: 10px; padding: 11px 14px;
            display: flex; align-items: center; gap: 10px;
            margin-bottom: 8px; font-size: 0.78rem; font-weight: 600;
            width: 100%; text-align: left; cursor: default; transition: background 0.2s;
        }
        .bio-link-btn:hover { background: rgba(255,255,255,0.07); }
        .bio-link-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; }
        .bio-link-icon.s { background: rgba(29,185,84,0.15); color: #1DB954; }
        .bio-link-icon.y { background: rgba(255,0,0,0.12); color: #FF0000; }
        .bio-link-icon.i { background: rgba(225,48,108,0.12); color: #e1306c; }

        /* Profile mock */
        .profile-header { text-align: center; margin-bottom: 14px; }
        .profile-avatar {
            width: 72px; height: 72px; border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), #ff8a65);
            margin: 0 auto 10px; display: flex; align-items: center; justify-content: center;
            font-size: 1.8rem; border: 3px solid rgba(233,69,96,0.4);
        }
        .profile-name { font-weight: 900; font-size: 1rem; }
        .profile-handle { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 4px; }
        .profile-stats { display: flex; justify-content: center; gap: 20px; margin: 10px 0 12px; }
        .profile-stat { text-align: center; }
        .profile-stat .num { font-size: 0.9rem; font-weight: 800; }
        .profile-stat .lbl { font-size: 0.65rem; color: var(--text-muted); }
        .profile-release {
            background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border);
            border-radius: 10px; padding: 9px 12px;
            display: flex; align-items: center; gap: 10px; margin-bottom: 7px; cursor: default;
        }
        .release-thumb {
            width: 34px; height: 34px; border-radius: 8px;
            background: linear-gradient(135deg, var(--purple), var(--primary)); flex-shrink: 0;
            display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
        }
        .release-info .r-title { font-size: 0.78rem; font-weight: 700; }
        .release-info .r-year  { font-size: 0.65rem; color: var(--text-muted); }

        /* ── Stats bar ── */
        .stats-bar {
            background: var(--glass); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
            backdrop-filter: blur(14px);
        }
        .stats-inner {
            max-width: 1000px; margin: 0 auto;
            display: flex; flex-wrap: wrap; padding: 50px 24px; gap: 40px; justify-content: space-around;
        }
        .stat-item { text-align: center; }
        .stat-num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -1.5px;
            background: linear-gradient(135deg, #fff, var(--text-muted));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

        /* ── How it works ── */
        .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; counter-reset: step; }
        .step {
            background: var(--glass); border: 1px solid var(--glass-border);
            border-radius: var(--radius-xl); padding: 36px 28px;
            backdrop-filter: blur(14px); position: relative;
            transition: transform 0.3s, border-color 0.3s;
        }
        .step:hover { transform: translateY(-6px); border-color: rgba(233,69,96,0.3); }
        .step-num {
            width: 40px; height: 40px; border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--purple));
            display: flex; align-items: center; justify-content: center;
            font-size: 0.9rem; font-weight: 900; margin-bottom: 20px;
        }
        .step h4 { font-size: 1rem; font-weight: 800; margin-bottom: 9px; }
        .step p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

        /* ── CTA Banner ── */
        .cta-section {
            margin: 20px 24px 80px; max-width: 960px; margin-inline: auto;
            background: linear-gradient(135deg, rgba(233,69,96,0.16) 0%, rgba(108,61,245,0.12) 100%);
            border: 1px solid rgba(233,69,96,0.22);
            border-radius: var(--radius-2xl); padding: 80px 44px;
            text-align: center; position: relative; overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(circle at 50% 0%, rgba(233,69,96,0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section h2 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); font-weight: 900; letter-spacing: -1.2px; margin-bottom: 14px; }
        .cta-section p  { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 40px; line-height: 1.75; max-width: 500px; margin-inline: auto; margin-bottom: 40px; }
        .cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

        /* ── Pricing teaser ── */
        .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
        .price-card {
            background: var(--glass); border: 1px solid var(--glass-border);
            border-radius: var(--radius-xl); padding: 36px 30px;
            backdrop-filter: blur(14px); text-align: center;
            transition: transform 0.3s, border-color 0.3s;
        }
        .price-card:hover { transform: translateY(-6px); }
        .price-card.featured { border-color: rgba(233,69,96,0.4); background: linear-gradient(135deg, rgba(233,69,96,0.09), var(--glass)); }
        .price-badge { display: inline-block; background: var(--primary); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 18px; }
        .price-name { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
        .price-amount { font-size: 2.4rem; font-weight: 900; letter-spacing: -1.5px; margin-bottom: 4px; }
        .price-amount span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
        .price-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 26px; line-height: 1.6; }
        .price-list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
        .price-list li { font-size: 0.84rem; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.8); }
        .price-list li i { color: var(--teal); font-size: 0.75rem; }
        .price-btn {
            display: block; width: 100%; padding: 13px; border-radius: 100px;
            font-weight: 700; font-size: 0.88rem; text-decoration: none;
            transition: all 0.25s; text-align: center;
        }
        .price-btn.outline { border: 1px solid var(--glass-border); color: #fff; background: var(--glass); }
        .price-btn.outline:hover { background: var(--glass-light); }
        .price-btn.filled { background: var(--primary); color: #fff; box-shadow: 0 8px 24px rgba(233,69,96,0.35); }
        .price-btn.filled:hover { box-shadow: 0 12px 32px rgba(233,69,96,0.55); transform: translateY(-2px); }

        /* ── Testimonial / Quote ── */
        .testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
        .testi-card {
            background: var(--glass); border: 1px solid var(--glass-border);
            border-radius: var(--radius-xl); padding: 30px 28px;
            backdrop-filter: blur(14px);
        }
        .testi-stars { color: #f5c518; font-size: 0.8rem; margin-bottom: 14px; letter-spacing: 2px; }
        .testi-quote { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
        .testi-author { display: flex; align-items: center; gap: 12px; }
        .testi-avatar {
            width: 40px; height: 40px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; font-size: 1rem;
            flex-shrink: 0;
        }
        .av1 { background: linear-gradient(135deg, var(--primary), var(--purple)); }
        .av2 { background: linear-gradient(135deg, var(--teal), var(--purple)); }
        .av3 { background: linear-gradient(135deg, #ff8a65, var(--primary)); }
        .testi-name { font-size: 0.85rem; font-weight: 700; }
        .testi-role { font-size: 0.72rem; color: var(--text-muted); }

        /* ── Footer ── */
        footer {
            border-top: 1px solid var(--glass-border);
            padding: 40px 44px 28px;
            background: rgba(8,6,20,0.7); backdrop-filter: blur(14px);
        }
        .footer-top {
            display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; margin-bottom: 36px;
        }
        .footer-brand .logo { margin-bottom: 12px; }
        .footer-brand p { font-size: 0.82rem; color: var(--text-muted); max-width: 240px; line-height: 1.7; }
        .footer-col h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
        .footer-col a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.84rem; margin-bottom: 10px; transition: color 0.2s; }
        .footer-col a:hover { color: #fff; }
        .footer-bottom {
            display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
            padding-top: 24px; border-top: 1px solid var(--glass-border);
            font-size: 0.76rem; color: var(--text-muted); gap: 12px;
        }
        .footer-social { display: flex; gap: 12px; }
        .footer-social a {
            width: 36px; height: 36px; border-radius: 50%;
            background: var(--glass); border: 1px solid var(--glass-border);
            display: flex; align-items: center; justify-content: center;
            color: var(--text-muted); text-decoration: none; font-size: 0.9rem;
            transition: all 0.2s;
        }
        .footer-social a:hover { background: var(--primary-soft); color: var(--primary); border-color: rgba(233,69,96,0.3); }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            nav { padding: 16px 22px; }
            .nav-links .nav-link { display: none; }
            .nav-mobile-menu { display: block; }
            .hero { padding: 80px 20px 50px; }
            .product-row, .product-row.reverse { flex-direction: column; gap: 40px; }
            .product-mock { flex: none; width: 100%; max-width: 310px; margin: 0 auto; }
            .cta-section { padding: 55px 24px; }
            footer { padding: 36px 22px 22px; }
            .footer-top { gap: 30px; }
        }
        @media (max-width: 480px) {
            .hero h1 { letter-spacing: -1.5px; }
            .hero-card { min-width: 160px; }
        }
