/* =====================================================
   MERIVISION - Music Distribution Platform
   Modern & Soft Design System
   ===================================================== */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors - Modern Blue */
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    
    /* Secondary Colors - Fresh Purple */
    --secondary: #8b5cf6;
    --secondary-dark: #7c3aed;
    
    /* Accent Colors - Vibrant Cyan */
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    
    /* Neutral Colors - Clean Light Theme */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #64748b;
    --gray-500: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-300: #e2e8f0;
    --gray-200: #f1f5f9;
    --gray-100: #f8fafc;
    --white: #ffffff;
    
    /* Gradients - Modern & Vibrant */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-dark: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --gradient-glass: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.03) 100%);
    
    /* Shadows - Modern */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 8px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px -5px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 30px -8px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 25px rgba(59, 130, 246, 0.2);
    
    /* Border Radius - Modern */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== Reset & Base Styles ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--gray-100);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height:  auto;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: none;
    cursor:  pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform:  translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary-dark);
}

.btn-glass {
    background: rgba(59, 130, 246, 0.08);
    backdrop-filter: blur(10px);
    color: var(--gray-700);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.btn-glass:hover {
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-dark);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray-600);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gray-800);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gray-800);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(6, 182, 212, 0.04) 0%, transparent 50%);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.hero-visual {
    position: relative;
    width: 450px;
    height: 450px;
    z-index: 10;
}

.vinyl-record {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e7ff 0%, #f3f4f6 50%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 0 20px rgba(59, 130, 246, 0.08),
        0 0 80px rgba(59, 130, 246, 0.15),
        inset 0 0 100px rgba(59, 130, 246, 0.05);
    animation: spin 8s linear infinite;
    position: relative;
    z-index: 10;
}

.vinyl-record::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: repeating-radial-gradient(
        circle at center,
        transparent 0px,
        transparent 3px,
        rgba(59, 130, 246, 0.04) 3px,
        rgba(59, 130, 246, 0.04) 4px
    );
}

.vinyl-inner {
    width: 140px;
    height: 140px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
}

.vinyl-inner::after {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
    animation: float 3s ease-in-out infinite;
    box-shadow: var(--shadow-md);
    z-index: 15;
}

.floating-card i {
    font-size: 1.5rem;
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-1 i { color: #1DB954; }

.card-2 {
    top: 30%;
    right: 0;
    animation-delay: 1s;
}

.card-2 i { color: #fc3c44; }

.card-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.card-3 i { color: #FF0000; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
    fill: var(--white);
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom:  4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* ===== Features Section ===== */
.features {
    padding: 6rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(59, 130, 246, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #3b82f6; /* Fallback */
    background: var(--gradient-primary);
    border-radius:  var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ===== Platforms Section ===== */
.platforms {
    padding: 6rem 0;
    background: var(--gray-100);
}

.platforms-slider {
    display:  flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.platform-item {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.platform-item:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* ===== How It Works Section ===== */
.how-it-works {
    padding: 6rem 0;
    background: var(--white);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:  1rem;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius:  50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.step-connector {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
}

/* ===== CTA Section ===== */
.cta {
    padding: 6rem 0;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--gray-600);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* ===== Page Hero ===== */
.page-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--gray-600);
    font-size: 1.2rem;
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding:  4rem 0 6rem;
}

.pricing-toggle {
    display:  flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    color: var(--gray-600);
    font-weight: 500;
}

.toggle-label.active {
    color: var(--gray-800);
}

.save-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height:  0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-300);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(30px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: rgba(59, 130, 246, 0.05);
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    width:  60px;
    height: 60px;
    margin: 0 auto 1rem;
    background:  var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.pricing-header h3 {
    margin-bottom: 0.25rem;
}

.pricing-header p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    color: var(--gray-600);
}

.features-list {
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.features-list li i {
    color: var(--primary-light);
}

.features-list li.disabled {
    color: var(--gray-600);
}

.features-list li.disabled i {
    color: var(--gray-600);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 4rem 0 6rem;
    background: var(--gray-100);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.05);
}

.faq-question i {
    transition: var(--transition);
    color: var(--gray-500);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow:  hidden;
    transition: var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
}

/* ===== Artists Section ===== */
.artists-section {
    padding:  4rem 0 6rem;
}

.artists-grid {
    display:  grid;
    grid-template-columns:  repeat(3, 1fr);
    gap: 2rem;
}

.artist-card {
    background:  rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.artist-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
}

.artist-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.artist-placeholder {
    width: 100%;
    height: 100%;
    background:  var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
}

.artist-overlay {
    position:  absolute;
    top: 0;
    left: 0;
    right:  0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.play-btn {
    width:  60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:  1.5rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
}

.artist-info {
    padding: 1.5rem;
}

.artist-info h3 {
    margin-bottom: 0.25rem;
}

.genre {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.artist-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.artist-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.artist-stats .stat i {
    color: var(--primary-light);
}

.artist-social {
    display: flex;
    gap: 1rem;
}

.artist-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.artist-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 4rem 0 6rem;
    background: var(--dark-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius:  var(--radius-xl);
    padding: 2rem;
    transition:  var(--transition);
}

.testimonial-card:hover {
    border-color:  rgba(99, 102, 241, 0.3);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--gray-300);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width:  50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content:  center;
    color: var(--white);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    color:  var(--gray-500);
    font-size: 0.9rem;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 4rem 0 6rem;
}

.contact-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.contact-hero-content h2 {
    margin-bottom: 1rem;
}

.contact-hero-content p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.contact-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-detail {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0.5rem 0;
}

.contact-description {
    color: var(--gray-600);
    margin: 1rem 0 1.5rem;
}

.contact-social-section {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
}

.contact-social-section h3 {
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
}

.contact-social-section > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
}

.social-link-large i {
    font-size: 1.5rem;
    color: var(--primary);
}

.social-link-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
}

.social-link-large:hover i {
    color: var(--primary-dark);
}

/* Legacy Contact Styles - Keep for backwards compatibility */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.info-items {
    display:  flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display:  flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.info-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.contact-social h4 {
    margin-bottom: 1rem;
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    background: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.contact-form h2 {
    margin-bottom: 2rem;
}

.form-row {
    display:  grid;
    grid-template-columns:  1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-md);
    color: var(--gray-800);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.08);
}

.form-group select option {
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Map Section ===== */
.map-section {
    padding:  0 0 6rem;
}

.map-placeholder {
    background: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-xl);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--gray-600);
}

/* ===== Footer ===== */
.footer {
    background: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-600);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    color: var(--gray-500);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 2rem;
        border-bottom: 1px solid rgba(59, 130, 246, 0.15);
        box-shadow: var(--shadow-md);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-connector {
        width:  3px;
        height:  50px;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .platforms-slider {
        gap: 1.5rem;
    }
    
    .platform-item {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

/* ===== Login Page Styles ===== */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: var(--gradient-glass);
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.login-box {
    padding: 3rem;
}

.login-box h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.login-box p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.form-group input {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -0.5rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--gray-600);
    cursor: pointer;
}

.forgot-link {
    color: var(--primary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn-login {
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-login:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--gray-300);
}

.divider span {
    background: var(--white);
    padding: 0 1rem;
    color: var(--gray-500);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem;
    border: 2px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-700);
}

.social-btn:hover {
    border-color: var(--gray-400);
    background: var(--gray-100);
    transform: translateY(-2px);
}

.social-btn i {
    font-size: 1.25rem;
}

.login-info {
    background: var(--gradient-primary);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.login-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.login-info p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
}

@media (max-width: 968px) {
    .login-wrapper {
        grid-template-columns: 1fr;
    }
    
    .login-info {
        display: none;
    }
}

@media (max-width: 480px) {
    .login-box {
        padding: 2rem 1.5rem;
    }
    
    .login-box h1 {
        font-size: 1.5rem;
    }
}

/* ===== Toast Notification ===== */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 350px;
    max-width: 450px;
    transform: translateX(500px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    border-left: 4px solid var(--primary);
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-notification.toast-error {
    border-left-color: #ef4444;
}

.toast-notification.toast-success {
    border-left-color: #10b981;
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.toast-error .toast-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.toast-success .toast-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.toast-message {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    font-size: 1rem;
}

.toast-close:hover {
    color: var(--gray-700);
}

@media (max-width: 480px) {
    .toast-notification {
        min-width: auto;
        max-width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }
}

/* ===== Login Footer Styles ===== */
.login-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-300);
    text-align: center;
}

.login-footer p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.login-footer a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== Legal Pages Styles ===== */
.legal-section {
    padding: 6rem 0 4rem;
    background: var(--gray-100);
}

.legal-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.legal-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.legal-intro {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-article {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.legal-article h2 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.15);
}

.legal-article h2 i {
    color: var(--primary);
    font-size: 1.5rem;
}

.legal-article h3 {
    font-size: 1.25rem;
    color: var(--gray-800);
    margin: 1.5rem 0 1rem;
}

.legal-text {
    color: var(--gray-700);
    line-height: 1.8;
}

.legal-text p {
    margin-bottom: 1rem;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.5rem;
}

.legal-text ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-text ul li strong {
    color: var(--gray-900);
}

.legal-note {
    background: rgba(59, 130, 246, 0.08);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: var(--radius);
}

.legal-highlight {
    background: rgba(139, 92, 246, 0.08);
    border-left: 4px solid var(--secondary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: var(--radius);
    font-weight: 500;
}

.contact-info-box {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 1.5rem 0;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-row div {
    flex: 1;
}

.info-row strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.info-row p {
    color: var(--gray-700);
    margin: 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.right-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.right-item i {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
}

.right-item h4 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.right-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

/* Cookie Table Styles */
.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cookie-table thead {
    background: rgba(59, 130, 246, 0.08);
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--gray-900);
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.cookie-table td {
    padding: 1rem;
    color: var(--gray-700);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table code {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-dark);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.browser-item {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.browser-item h4 {
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.browser-item h4 i {
    color: var(--primary);
    font-size: 1.25rem;
}

.browser-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.faq-item {
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h4 {
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.faq-item p {
    color: var(--gray-700);
    margin: 0;
    line-height: 1.7;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-article {
        padding: 2rem 1.5rem;
    }
    
    .legal-article h2 {
        font-size: 1.5rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .browser-instructions {
        grid-template-columns: 1fr;
    }
    
    .cookie-table {
        font-size: 0.875rem;
    }
}

/* ===== FAQ Page Styles ===== */
.faq-hero {
    padding: 6rem 0 3rem;
    background: var(--gradient-glass);
    text-align: center;
}

.faq-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.faq-hero-content p {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.faq-hero-content a {
    color: var(--primary);
    font-weight: 500;
}

.faq-search {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.faq-search i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    font-size: 1.25rem;
}

.faq-search input {
    width: 100%;
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-xl);
    font-size: 1rem;
    transition: var(--transition);
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.faq-section {
    padding: 3rem 0 6rem;
}

.faq-categories {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-full);
    color: var(--gray-700);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
}

.category-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid .faq-item {
    background: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-grid .faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-grid .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-grid .faq-question h3 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin: 0;
}

.faq-grid .faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-grid .faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-grid .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-grid .faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-grid .faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    max-width: 700px;
    margin: 4rem auto 0;
    text-align: center;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
}

.faq-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.faq-cta p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Help Center Styles ===== */
.help-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.help-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.help-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.help-section {
    padding: 4rem 0 6rem;
    background: var(--gray-100);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.help-category {
    background: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
}

.help-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.help-category-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.help-category h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.help-category > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.help-links {
    list-style: none;
}

.help-links li {
    margin-bottom: 0.75rem;
}

.help-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: var(--radius);
}

.help-links a:hover {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
}

.help-links i {
    color: var(--primary);
    font-size: 0.75rem;
}

.help-guides {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

.guide-article {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.guide-article h3 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-article h3 i {
    color: var(--primary);
}

.guide-content h4 {
    font-size: 1.25rem;
    color: var(--gray-800);
    margin: 1.5rem 0 1rem;
}

.guide-content p,
.guide-content ul,
.guide-content ol {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.guide-content ul,
.guide-content ol {
    padding-left: 1.5rem;
}

.guide-content li {
    margin-bottom: 0.5rem;
}

.earnings-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.earnings-table th,
.earnings-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.earnings-table th {
    background: rgba(59, 130, 246, 0.08);
    font-weight: 600;
    color: var(--gray-900);
}

.earnings-table tr:last-child td {
    border-bottom: none;
}

.help-cta {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.help-cta-content i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.help-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.help-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.help-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.help-cta-buttons .btn {
    background: var(--white);
    color: var(--primary);
}

.help-cta-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.help-cta-buttons .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.help-cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== API Documentation Styles ===== */
.api-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: var(--white);
    padding: 5rem 0 3rem;
}

.api-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.api-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.api-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.api-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.api-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.api-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.api-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.api-stat-item i {
    font-size: 2.5rem;
    color: var(--accent-light);
}

.api-stat-item strong {
    display: block;
    font-size: 1.5rem;
}

.api-stat-item span {
    font-size: 0.875rem;
    opacity: 0.8;
}

.api-section {
    padding: 4rem 0 6rem;
}

.api-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.api-sidebar {
    position: sticky;
    top: 6rem;
    height: fit-content;
}

.api-nav h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin: 2rem 0 1rem;
}

.api-nav h3:first-child {
    margin-top: 0;
}

.api-nav ul {
    list-style: none;
}

.api-nav li {
    margin-bottom: 0.5rem;
}

.api-nav a {
    color: var(--gray-700);
    padding: 0.5rem 1rem;
    display: block;
    border-radius: var(--radius);
    transition: var(--transition);
}

.api-nav a:hover {
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary);
}

.api-content {
    max-width: 100%;
}

.api-block {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.api-block h2 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.15);
}

.api-block h2 i {
    color: var(--primary);
}

.api-block h3 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin: 2rem 0 1rem;
}

.api-block h4 {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin: 1.5rem 0 0.75rem;
}

.api-block p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.api-block ul {
    color: var(--gray-700);
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.api-block li {
    margin-bottom: 0.5rem;
}

.code-block {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    overflow-x: auto;
    margin: 1.5rem 0;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

.code-block code {
    color: #e2e8f0;
}

.code-block pre {
    margin: 0;
}

code {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-dark);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.method-get { background: rgba(16, 185, 129, 0.1); color: #059669; }
.method-post { background: rgba(59, 130, 246, 0.1); color: #2563eb; }
.method-put { background: rgba(245, 158, 11, 0.1); color: #d97706; }
.method-delete { background: rgba(239, 68, 68, 0.1); color: #dc2626; }

.api-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.api-table th,
.api-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.api-table th {
    background: rgba(59, 130, 246, 0.08);
    font-weight: 600;
    color: var(--gray-900);
}

.api-table tr:last-child td {
    border-bottom: none;
}

.api-note {
    background: rgba(245, 158, 11, 0.08);
    border-left: 4px solid #f59e0b;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.api-note i {
    color: #f59e0b;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.api-note p {
    margin: 0;
}

.sdk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.sdk-card {
    background: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.sdk-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.sdk-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.api-cta {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.api-cta i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.api-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.api-cta p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.code-example {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.code-example code {
    font-size: 1.25rem;
    background: none;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 0.75rem;
}

.code-example p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

/* Responsive Support Pages */
@media (max-width: 1024px) {
    .api-layout {
        grid-template-columns: 1fr;
    }
    
    .api-sidebar {
        position: static;
        background: var(--white);
        padding: 1.5rem;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(59, 130, 246, 0.15);
    }
}

@media (max-width: 768px) {
    .faq-hero-content h1,
    .help-hero h1,
    .api-hero-content h1 {
        font-size: 2rem;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .sdk-grid {
        grid-template-columns: 1fr;
    }
    
    .api-stats {
        gap: 1.5rem;
    }
}

/* ===== Homepage Enhancement Styles ===== */

/* Success Stories / Testimonials */
.success-stories {
    padding: 6rem 0;
    background: var(--gradient-glass);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--white);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.author-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-stats span {
    font-size: 0.85rem;
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.author-stats i {
    font-size: 0.75rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.stat-icon i {
    font-size: 2.5rem;
}

.stat-content {
    position: relative;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-top: 0.5rem;
}

/* Pricing Preview */
.pricing-preview {
    padding: 6rem 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.pricing-price {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-700);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--gray-700);
}

.pricing-features li i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* FAQ Section on Homepage */
.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-container .faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-container .faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-container .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-container .faq-question h3 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin: 0;
}

.faq-container .faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.faq-container .faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-container .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-container .faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-container .faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.faq-container .faq-answer a {
    color: var(--primary);
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--white);
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}