
  :root {
    --bg: #080a0f;
    --bg2: #0d1018;
    --bg3: #111520;
    --card: #141820;
    --card2: #181d28;
    --accent: #e8ff47;
    --accent2: #7c3aed;
    --accent3: #06d6a0;
    --text: #f0f2f8;
    --muted: #7a8299;
    --border: rgba(255,255,255,0.07);
    --glow: rgba(232,255,71,0.15);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── NOISE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: rgba(8,10,15,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--accent);
    text-decoration: none;
  }
  .nav-logo span { color: var(--text); }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }

  .nav-cta {
    display: flex;
    gap: 12px;
  }

  .btn-ghost {
    padding: 9px 22px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: transparent;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

  .btn-primary {
    padding: 9px 22px;
    border: none;
    border-radius: 50px;
    background: var(--accent);
    color: #080a0f;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 30px var(--glow); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 60px 80px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 40%, rgba(124,58,237,0.18) 0%, transparent 60%),
      radial-gradient(ellipse 50% 50% at 20% 80%, rgba(6,214,160,0.1) 0%, transparent 50%),
      radial-gradient(ellipse 60% 40% at 80% 10%, rgba(232,255,71,0.07) 0%, transparent 50%);
  }

  /* Animated soundwave bars */
  .soundwave {
    position: absolute;
    bottom: 80px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.15;
  }
  .wave-bar {
    width: 4px;
    background: var(--accent);
    border-radius: 4px;
    animation: wave 1.4s ease-in-out infinite;
  }
  @keyframes wave {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
  }

  .hero-content {
    max-width: 760px;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.9s ease forwards;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,255,71,0.1);
    border: 1px solid rgba(232,255,71,0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
  }

  .hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(62px, 8vw, 110px);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 28px;
  }

  .hero h1 em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--accent);
  }

  .hero p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 44px;
    font-weight: 400;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
  }

  .btn-xl {
    padding: 16px 36px;
    border-radius: 60px;
    background: var(--accent);
    color: #080a0f;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
    box-shadow: 0 4px 30px rgba(232,255,71,0.25);
  }
  .btn-xl:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,255,71,0.35); }

  .btn-xl-ghost {
    padding: 16px 36px;
    border-radius: 60px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
  }
  .btn-xl-ghost:hover { border-color: var(--accent); color: var(--accent); }

  .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stat {
  min-width: 110px;
}

  .stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 1px;
    line-height: 1;
    color: var(--text);
  }

  .stat-num span { color: var(--accent); }

  .stat-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .hero-visual {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
  }

  .vinyl {
    position: relative;
    width: 100%;
    height: 100%;
    animation: spin 18s linear infinite;
  }

  @keyframes spin { to { transform: rotate(360deg); } }
  @keyframes fadeUp { from { opacity:0; transform:translateY(30px);} to {opacity:1; transform:translateY(0);} }

  /* ─── SECTION COMMON ─── */
  section { padding: 100px 60px; }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
  }

  .section-tag::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 66px);
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.65;
  }

  /* ─── TICKER ─── */
  .ticker-wrap {
    background: var(--accent);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
  }

  .ticker-track {
    display: flex;
    gap: 60px;
    animation: ticker 28s linear infinite;
    white-space: nowrap;
  }

  .ticker-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: 2px;
    color: #080a0f;
  }

  .ticker-dot { width: 6px; height: 6px; background: #080a0f; border-radius: 50%; opacity: 0.5; }

  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── PLATFORMS ─── */
  .platforms {
    background: var(--bg2);
  }

  .platforms-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 24px;
    flex-wrap: wrap;
  }

  .platform-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 7px 18px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
  }

  .filter-btn.active, .filter-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #080a0f;
  }

  .platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 48px;
  }

  .platform-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.25s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .platform-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 16px;
  }

  .platform-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  }

  .platform-card:hover::before { opacity: 1; }

  .platform-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    flex-shrink: 0;
  }

  .platform-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    letter-spacing: 0.3px;
  }

  .platform-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    color: var(--muted);
  }

  .more-platforms {
    text-align: center;
    padding: 28px;
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 16px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
  }

  .more-platforms strong { color: var(--accent); }

  /* ─── SERVICES ─── */
  .services { background: var(--bg); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
  }

  .service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }

  .service-card:hover {
    border-color: rgba(232,255,71,0.25);
    transform: translateY(-4px);
  }

  .service-card.featured {
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(6,214,160,0.1));
    border-color: rgba(124,58,237,0.4);
    grid-column: span 1;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(232,255,71,0.1);
    border: 1px solid rgba(232,255,71,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 24px;
  }

  .service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 24px;
  }

  .service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #a0aabf;
  }

  .service-list li::before {
    content: '✓';
    width: 18px; height: 18px;
    background: rgba(6,214,160,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--accent3);
    flex-shrink: 0;
  }

  /* ─── HOW IT WORKS ─── */
  .hiw { background: var(--bg2); position: relative; overflow: hidden; }

  .hiw-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(124,58,237,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
  }

  .steps::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--accent), var(--border), transparent);
  }

  .step {
    padding: 0 28px;
    text-align: center;
    position: relative;
  }

  .step-num {
    width: 84px; height: 84px;
    border-radius: 50%;
    background: var(--card2);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    color: var(--muted);
    margin: 0 auto 32px;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
  }

  .step:hover .step-num {
    background: var(--accent);
    border-color: var(--accent);
    color: #080a0f;
    box-shadow: 0 0 40px rgba(232,255,71,0.3);
  }

  .step h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
  }

  .step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
  }



/* ─── TABLET ─── */
@media (max-width: 992px) {

  .reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

/* ─── MOBILE ─── */
@media (max-width: 640px) {

  .whyus {
    padding-left: 20px;
    padding-right: 20px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 40px;
  }

  .reason {
    padding: 20px 18px;
    border-radius: 18px;
    gap: 14px;
  }

  .reason-ico {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 18px;
  }

  .reason-body h4 {
    font-size: 15px;
  }

  .reason-body p {
    font-size: 12.5px;
    line-height: 1.55;
  }

}

  /* ─── ROYALTIES ─── */
  .royalties {
    background: var(--bg2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .royalties-visual {
    position: relative;
  }

  .donut-wrap {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
  }

  .donut-legend {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 40px;
  }

  .legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
  }

  .legend-dot {
    width: 12px; height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
  }

  .legend-pct {
    margin-left: auto;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
  }

  /* ─── PRICING ─── */
  .pricing { background: var(--bg); }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
    align-items: start;
  }

  .price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s;
    position: relative;
  }

  .price-card.popular {
    background: linear-gradient(160deg, var(--card2) 0%, rgba(232,255,71,0.05) 100%);
    border-color: rgba(232,255,71,0.35);
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(232,255,71,0.1);
  }

  .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #080a0f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
  }

  .plan-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
  }

  .plan-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 62px;
    letter-spacing: 1px;
    line-height: 1;
    color: var(--text);
    margin-bottom: 4px;
  }

  .plan-price sup { font-size: 24px; vertical-align: top; margin-top: 12px; display: inline-block; }
  .plan-price span { font-size: 18px; color: var(--muted); font-family: 'Outfit', sans-serif; font-weight: 400; }

  .plan-desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.5;
  }

  .plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
  }

  .plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #9aa0b5;
  }

  .plan-features li .chk {
    color: var(--accent3);
    font-size: 12px;
    background: rgba(6,214,160,0.12);
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .plan-features li .no {
    color: var(--muted);
    font-size: 12px;
    background: rgba(255,255,255,0.05);
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .btn-plan {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    display: block;
    text-decoration: none;
  }

  .btn-plan:hover { border-color: var(--accent); color: var(--accent); }
  .btn-plan.accent { background: var(--accent); border-color: var(--accent); color: #080a0f; }
  .btn-plan.accent:hover { box-shadow: 0 8px 30px rgba(232,255,71,0.3); transform: translateY(-1px); }

  /* ─── TESTIMONIALS ─── */
  .testimonials { background: var(--bg2); }

  .test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
  }

  .test-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
  }

  .stars {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .test-text {
    font-size: 14px;
    line-height: 1.7;
    color: #b0bac8;
    margin-bottom: 24px;
    font-style: italic;
  }

  .test-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #080a0f;
    flex-shrink: 0;
  }

  .author-name { font-size: 14px; font-weight: 600; color: var(--text); }
  .author-meta { font-size: 12px; color: var(--muted); }

  /* ─── CTA BANNER ─── */
  .cta-banner {
    background: var(--bg);
    padding: 80px 60px;
  }

  .cta-inner {
    background: linear-gradient(135deg, rgba(232,255,71,0.08) 0%, rgba(124,58,237,0.15) 100%);
    border: 1px solid rgba(232,255,71,0.2);
    border-radius: 32px;
    padding: 72px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-inner::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,255,71,0.07) 0%, transparent 70%);
    top: -100px; left: -100px;
    border-radius: 50%;
  }

  .cta-inner::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
    bottom: -100px; right: -100px;
    border-radius: 50%;
  }

  .cta-inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    letter-spacing: 2px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
  }

  .cta-inner h2 em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--accent);
  }

  .cta-inner p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  /* ─── FOOTER ─── */
  footer {
    background: #050609;
    padding: 72px 60px 36px;
    border-top: 1px solid var(--border);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    margin-top: 16px;
    max-width: 300px;
  }

  .footer-stats {
    display: flex;
    gap: 28px;
    margin-top: 28px;
  }

  .f-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--accent);
    line-height: 1;
  }

  .f-stat-lbl {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .footer-col h5 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

  .footer-col ul a {
    color: #7a8299;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }

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

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: 13px;
    color: var(--muted);
  }

  .made {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .heart { color: #ef4444; }

  /* SVG Vinyl */
  .vinyl-svg circle { fill: none; }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  @media (max-width: 1024px) {
    nav { padding: 16px 30px; }
    nav .nav-links { display: none; }
    .hero { padding: 120px 30px 60px; }
    .hero-visual { display: none; }
    section { padding: 72px 30px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .steps::before { display: none; }
    .reasons-grid { grid-template-columns: 1fr 1fr; }
    .royalties { grid-template-columns: 1fr; padding: 72px 30px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.popular { transform: none; }
    .test-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .cta-inner { padding: 48px 32px; }
    .platforms-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  }
  
  
/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 10px;
  transition: 0.3s;
}

/* Mobile */
@media (max-width: 1024px) {

  nav {
    padding: 16px 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: rgba(8,10,15,0.98);
    backdrop-filter: blur(20px);

    flex-direction: column;
    gap: 0;

    display: none;
    padding: 15px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    list-style: none;
  }

  .nav-links a {
    display: block;
    padding: 14px 20px;
    width: 100%;
  }

  .nav-cta {
    display: none;
  }
}


.nav-logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.logo-img{
  width:42px;
  height:42px;
  object-fit:contain;
  border-radius:50%;
}

.nav-logo span{
  font-family:'Bebas Neue',sans-serif;
  font-size:28px;
  letter-spacing:2px;
  color:var(--accent);
}

.nav-logo strong{
  color:var(--text);
  font-weight:400;
}


.footer-social a,
.footer-contact a{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:#7a8299;
  text-decoration:none;
  transition:0.25s;
  line-height:1.6;
}

.footer-social a svg,
.footer-contact a svg{
  flex-shrink:0;
  margin-top:2px;
  transition:0.3s;
}

/* YouTube */
.footer-social li:nth-child(1) svg{
  color:#ff0000;
  filter:drop-shadow(0 0 8px rgba(255,0,0,0.4));
}

/* Instagram */
.footer-social li:nth-child(2) svg{
  color:#e1306c;
  filter:drop-shadow(0 0 8px rgba(225,48,108,0.4));
}

/* Facebook */
.footer-social li:nth-child(3) svg{
  color:#1877f2;
  filter:drop-shadow(0 0 8px rgba(24,119,242,0.4));
}

/* Location */
.footer-contact li:nth-child(1) svg{
  color:#f59e0b;
  filter:drop-shadow(0 0 8px rgba(245,158,11,0.35));
}

/* WhatsApp */
.footer-contact li:nth-child(2) svg{
  color:#25d366;
  filter:drop-shadow(0 0 8px rgba(37,211,102,0.4));
}

/* Email */
.footer-contact li:nth-child(3) svg{
  color:#06b6d4;
  filter:drop-shadow(0 0 8px rgba(6,182,212,0.4));
}

.footer-social a:hover svg,
.footer-contact a:hover svg{
  transform:scale(1.15) rotate(-5deg);
}

.footer-social a:hover,
.footer-contact a:hover{
  color:var(--accent);
  transform:translateX(4px);
}


@media (max-width: 768px) {

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
  }

  .stat {
    min-width: 0;
  }

  .stat-num {
    font-size: 34px;
  }

}





html,
body {
  overflow-x: hidden;
}



