/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
    --spotify: #1DB954;
    --gold: #C9A84C;
    --gold-dim: rgba(201, 168, 76, 0.3);
    --white: #ffffff;
    --text-muted: #999999;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1001;
}

.logo-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(233, 30, 99, 0.4));
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05) rotate(-5deg);
}

.logo-text {
    background: linear-gradient(135deg, #e91e63, #9c27b0, #673ab7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e91e63, #9c27b0);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #e91e63;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #e91e63, #9c27b0);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.cta-button {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a1a 100%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.stat {
    text-align: center;
}

.stat i {
    font-size: 2rem;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
}

.stat-label {
    font-size: 0.9rem;
    color: #999999;
}

.hero-cta {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #ffffff;
    border: none;
    padding: 18px 45px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.6);
}

.hero-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.hero-cta:hover i {
    transform: translateX(5px);
}

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

/* Section Styles */
section {
    padding: 100px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #999999;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a1a 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(233, 30, 99, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #999999;
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    background: #0a0a0a;
}

.pricing-category-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 60px;
    color: #ffffff;
}

.pricing-category-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #999999;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(233, 30, 99, 0.1);
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.3);
}

.pricing-card.popular {
    border-color: #e91e63;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.3);
}

.pricing-card.premium {
    border-color: #9c27b0;
    box-shadow: 0 10px 40px rgba(156, 39, 176, 0.3);
}

.pricing-card.annual {
    border-color: rgba(103, 58, 183, 0.3);
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.05) 0%, rgba(156, 39, 176, 0.05) 100%);
}

.pricing-card.annual:hover {
    border-color: rgba(103, 58, 183, 0.7);
    box-shadow: 0 20px 50px rgba(103, 58, 183, 0.4);
}

.pricing-card.annual.popular {
    border-color: #673ab7;
    box-shadow: 0 10px 40px rgba(103, 58, 183, 0.4);
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
}

.pricing-card.annual.premium {
    border-color: #512da8;
    box-shadow: 0 10px 40px rgba(81, 45, 168, 0.4);
    background: linear-gradient(135deg, rgba(81, 45, 168, 0.1) 0%, rgba(103, 58, 183, 0.1) 100%);
}

.popular-badge,
.premium-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    color: #e91e63;
    margin-top: 10px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: #999999;
    margin-top: 10px;
}

.pricing-features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature:last-child {
    border-bottom: none;
}

.feature i {
    color: #e91e63;
    font-size: 1.2rem;
}

.feature.highlight {
    color: #e91e63;
    font-weight: 600;
}

.pricing-button {
    width: 100%;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
}

/* Regions Section */
.regions {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a1a 100%);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.region-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(233, 30, 99, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.region-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.region-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.region-card p {
    color: #999999;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    text-align: left;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-info p {
    font-size: 1.1rem;
    color: #999999;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-cta {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #ffffff;
    border: none;
    padding: 18px 45px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.contact-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.6);
}

.contact-cta i {
    margin-left: 10px;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 25px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1a0a1a 0%, #0a0a0a 100%);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(233, 30, 99, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e91e63;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #e91e63;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e91e63;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666666;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1a0a1a 0%, #0a0a0a 100%);
    border: 2px solid rgba(233, 30, 99, 0.3);
    border-radius: 25px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: #999999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #e91e63;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.3);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.price-summary {
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-top: 10px;
}

.price-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    color: #cccccc;
}

.price-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.submit-button {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
}

.submit-button i {
    margin-left: 10px;
}

/* ===================== SPOTIFY BRAND PARTNERSHIP ===================== */
#spotify-partnership {
  padding: 8rem 5%;
  background: linear-gradient(180deg, #080808 0%, #0A0F0A 50%, #080808 100%);
  max-width: 1400px;
  margin: 0 auto;
}

.sp-header { text-align: center; margin-bottom: 5rem; }

.sp-badge {
  display: inline-block;
  background: rgba(29,185,84,0.1);
  border: 1px solid var(--spotify);
  color: var(--spotify);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

.sp-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.sp-subline {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.sp-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.sp-eem-logo { height: 45px; object-fit: contain; }

.sp-cross {
  font-size: 28px;
  color: var(--spotify);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

.sp-spotify-badge {
  background: var(--spotify);
  color: #080808;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.sp-rule {
  width: 80px;
  height: 1px;
  background: var(--spotify);
  margin: 0 auto;
  opacity: 0.5;
}

/* CARDS */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.sp-card {
  background: #111;
  border-top: 2px solid var(--spotify);
  padding: 2.5rem 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.sp-card:hover {
  box-shadow: 0 0 30px rgba(29,185,84,0.15);
  transform: translateY(-4px);
}

.sp-card-icon { font-size: 28px; margin-bottom: 1rem; }

.sp-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  color: var(--spotify);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.sp-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* HOW IT WORKS */
.sp-steps {
  margin-bottom: 5rem;
  text-align: center;
}

.sp-steps-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--spotify);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.sp-steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.sp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  min-width: 120px;
}

.sp-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--spotify);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: var(--spotify);
  background: #080808;
  font-weight: 700;
}

.sp-step p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--white);
  letter-spacing: 0.05em;
  text-align: center;
}

.sp-step-line {
  flex: 1;
  min-width: 40px;
  max-width: 80px;
  height: 1px;
  border-top: 1px dashed rgba(29,185,84,0.3);
  margin-bottom: 20px;
}

/* STATS BAR */
.sp-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #111;
  border: 1px solid rgba(29,185,84,0.2);
  padding: 3rem 2rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.sp-stat { text-align: center; }

.sp-stat-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.sp-stat-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--spotify);
  text-transform: uppercase;
  margin-top: 0.4rem;
  font-weight: 600;
}

/* CTA */
.sp-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(ellipse at center, #0D1A0D 0%, #080808 70%);
  border: 1px solid rgba(29,185,84,0.15);
  border-radius: 10px;
}

.sp-cta h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 800;
}

.sp-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.sp-cta-btns { 
  display: flex; 
  gap: 1rem; 
  justify-content: center; 
  flex-wrap: wrap; 
  margin-bottom: 2rem; 
}

.sp-btn-primary {
  background: var(--spotify);
  color: #080808;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.sp-btn-primary:hover { 
  background: #17a349; 
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 185, 84, 0.4);
}

.sp-btn-secondary {
  border: 1px solid var(--spotify);
  color: var(--spotify);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
  display: inline-block;
}

.sp-btn-secondary:hover { 
  background: var(--spotify); 
  color: #080808;
  transform: translateY(-2px);
}

.sp-disclaimer {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  opacity: 0.6;
  margin-bottom: 0 !important;
  font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(233, 30, 99, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .cta-button {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .features-grid,
    .pricing-grid,
    .regions-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    /* Spotify Partnership Responsive */
    .sp-grid { 
        grid-template-columns: 1fr; 
    }
    
    .sp-steps-row { 
        flex-direction: column; 
        gap: 1.5rem; 
    }
    
    .sp-step-line { 
        width: 1px; 
        height: 30px; 
        border-top: none; 
        border-left: 1px dashed rgba(29,185,84,0.3); 
        margin-bottom: 0; 
    }
    
    .sp-stats { 
        grid-template-columns: repeat(2, 1fr); 
        display: grid; 
    }

    #spotify-partnership {
        padding: 4rem 5%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .logo-text {
        font-size: 1rem;
    }

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