:root {
    --bg-dark: #050505;
    --bg-surface: #121212;
    --bg-surface-light: #1e1e1e;
    
    --primary: #f5b000;
    --primary-glow: rgba(245, 176, 0, 0.3);
    --primary-dark: #cc9200;
    
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    
    --glass-bg: rgba(30, 30, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}


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

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    overscroll-behavior-x: none;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main, .main-content, article, section:first-of-type {
    flex: 1;
}

/* Ensure sections push down if they are the primary content */
main, .main-content {
    flex: 1 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

.text-gradient {
    background: linear-gradient(135deg, #f5b000, #ffda73);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(245, 176, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(245, 176, 0, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 176, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
/* Hero Premium Section */
.hero-premium {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-premium-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 0%, #151515 0%, #000 100%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatOrb 10s ease-in-out infinite alternate;
}

.orb-1 { width: 500px; height: 500px; background: rgba(245, 176, 0, 0.15); top: -10%; left: -10%; }
.orb-2 { width: 400px; height: 400px; background: rgba(255, 95, 86, 0.1); bottom: 10%; right: -5%; animation-delay: 2s; }
.orb-3 { width: 300px; height: 300px; background: rgba(39, 201, 63, 0.05); top: 30%; left: 50%; animation-delay: 4s; }

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
}

.hero-premium-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    z-index: 2;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 176, 0, 0.1);
    border: 1px solid rgba(245, 176, 0, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 25px;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(245, 176, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(245, 176, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 176, 0, 0); }
}

.hero-premium-title {
    font-size: 4.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-premium-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-premium-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-premium {
    background: linear-gradient(135deg, #f5b000, #ffda73);
    color: #000;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(245, 176, 0, 0.4), inset 0 -3px 0 rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.btn-premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(245, 176, 0, 0.6), inset 0 -3px 0 rgba(0,0,0,0.1);
}

.btn-premium:hover::after {
    left: 150%;
}

.btn-premium i {
    transition: transform 0.3s ease;
}

.btn-premium:hover i {
    transform: translateX(6px);
}

.btn-premium-outline {
    background: rgba(255,255,255,0.03);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.btn-premium-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.trusted-by {
    margin-bottom: 60px;
}

.trusted-by span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 15px;
}

.trusted-logos {
    display: flex;
    gap: 30px;
    justify-content: center;
    font-size: 1.8rem;
    color: #888;
}

.trusted-logos i {
    transition: var(--transition);
}

.trusted-logos i:hover {
    color: #fff;
    transform: scale(1.1);
}

.hero-premium-visual {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1200px;
}

.dashboard-wrapper {
    position: relative;
    transform: rotateX(5deg) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dashboard-wrapper:hover {
    transform: rotateX(0deg) scale(1);
}

.dashboard-main {
    background: rgba(15, 15, 15, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(245, 176, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.dash-header {
    background: rgba(0,0,0,0.5);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dash-dots {
    display: flex; gap: 8px;
}

.dash-dots span {
    width: 12px; height: 12px; border-radius: 50%;
}
.dash-dots .r { background: #ff5f56; }
.dash-dots .y { background: #ffbd2e; }
.dash-dots .g { background: #27c93f; }

.dash-title {
    margin: 0 auto;
    font-size: 0.9rem;
    color: #888;
    font-family: monospace;
}

.dash-body {
    padding: 40px;
    background: linear-gradient(180deg, transparent, rgba(245, 176, 0, 0.02));
}

.dash-chart {
    height: 250px;
    width: 100%;
}

.sparkline {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.float-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(15px);
    animation: floatCard 6s ease-in-out infinite alternate;
}

.float-left {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.float-right {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

.fc-icon {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}

.fc-content h4 {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 2px;
}

.fc-val {
    font-size: 1.4rem;
    font-weight: 700;
}

.fc-trend {
    font-size: 0.8rem;
    display: flex; align-items: center; gap: 4px;
}
.fc-trend.positive { color: #27c93f; }

@media(max-width: 992px) {
    .hero-premium-title { font-size: 3.5rem; }
    .float-card { display: none; }
}
@media(max-width: 768px) {
    .hero-premium-title { font-size: 2.5rem; }
    .hero-premium-cta { flex-direction: column; width: 100%; }
    .btn-premium, .btn-premium-outline { width: 100%; justify-content: center; }
}

/* Platforms Marquee - White Style */
.platforms-marquee {
    background: #000;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    width: 100%;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: marqueeMove 40s linear infinite;
    padding-left: 40px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.marquee-item i {
    font-size: 1.6rem;
}

.marquee-item:hover {
    opacity: 1;
}

@keyframes marqueeMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sections */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition);
}

.feature-card.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 176, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 176, 0, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* AI Tools */
.ai-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-ai {
    background: linear-gradient(135deg, rgba(245, 176, 0, 0.2), rgba(255, 95, 86, 0.2));
    border-color: rgba(245, 176, 0, 0.3);
}

.ai-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ai-content > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.tool-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tool-item {
    display: flex;
    gap: 20px;
}

.tool-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-surface-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.tool-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.tool-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.ai-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 176, 0, 0.15) 0%, transparent 70%);
    border: 1px solid rgba(245, 176, 0, 0.1);
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 1; }
}

.ai-card {
    padding: 40px;
    width: 100%;
    max-width: 400px;
    z-index: 1;
    text-align: center;
}

.ai-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 80px;
    margin-bottom: 30px;
}

.ai-waveform span {
    width: 6px;
    background: var(--primary);
    border-radius: 3px;
    animation: wave 1s ease-in-out infinite alternate;
}

.ai-waveform span:nth-child(1) { height: 20%; animation-delay: 0.1s; }
.ai-waveform span:nth-child(2) { height: 50%; animation-delay: 0.2s; }
.ai-waveform span:nth-child(3) { height: 100%; animation-delay: 0.3s; }
.ai-waveform span:nth-child(4) { height: 70%; animation-delay: 0.4s; }
.ai-waveform span:nth-child(5) { height: 90%; animation-delay: 0.5s; }
.ai-waveform span:nth-child(6) { height: 40%; animation-delay: 0.6s; }
.ai-waveform span:nth-child(7) { height: 30%; animation-delay: 0.7s; }

@keyframes wave {
    0% { transform: scaleY(0.3); opacity: 0.5; }
    100% { transform: scaleY(1); opacity: 1; }
}

.ai-status {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: fillProgress 3s ease-in-out infinite;
}

@keyframes fillProgress {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 100%; opacity: 0; }
}

/* CTA Section */
.cta-section {
    padding: 50px 0 100px;
}

.cta-card {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(145deg, rgba(30,30,30,0.8), rgba(15,15,15,0.9));
    border: 1px solid rgba(245, 176, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 176, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: #000;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-group h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.link-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
}

/* Responsive Design & Mobile Optimization */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    .hero-premium-title {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .ai-layout, .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-premium-title {
        font-size: 3.5rem;
    }
    .hero-premium-subtitle {
        font-size: 1.15rem;
    }
    .trusted-logos {
        gap: 20px;
        font-size: 1.5rem;
    }
    .dashboard-wrapper {
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .hero-premium {
        padding: 130px 0 60px;
    }
    .hero-premium-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    .hero-premium-subtitle {
        font-size: 1.05rem;
        padding: 0;
    }
    .hero-premium-cta {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .btn-premium, .btn-premium-outline {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }
    .trusted-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
    .dash-chart {
        height: 180px;
    }
    .dash-body {
        padding: 20px;
    }
    
    /* Mobile Nav Fixes */
    .navbar {
        background: rgba(5, 5, 5, 0.95) !important;
        backdrop-filter: blur(10px);
        padding: 0 !important; /* Controlled by height in nav-header */
        position: fixed;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-container {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
        min-height: auto;
    }
    .nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px; /* Consistent height on mobile */
        width: 100%;
        position: relative;
        z-index: 1002;
    }
    .logo {
        font-size: 1.15rem;
    }
    .logo img {
        height: 40px;
    }
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        cursor: pointer;
        width: 44px;
        height: 70px; /* Match nav-header height for perfect centering */
        position: relative;
        z-index: 1003;
        color: #fff;
    }
    .nav-links, .nav-actions {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px 0 30px;
        gap: 15px;
    }
    .nav-container.mobile-active {
        max-height: 100vh;
        overflow-y: auto;
    }
    .nav-links a {
        margin: 10px 0;
        font-size: 1.1rem;
    }
    .nav-container.mobile-active .nav-links,
    .nav-container.mobile-active .nav-actions {
        display: flex;
    }
    
    /* Footer & Other Sections */
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-brand p {
        margin: 20px auto 0;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .cta-card h2 {
        font-size: 2.2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-premium-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    .btn-premium {
        font-size: 1rem;
    }
    .dash-chart {
        height: 120px;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .premium-badge {
        font-size: 0.8rem;
    }
    .cta-card {
        padding: 60px 20px;
    }
}

/* =========================================
   WHY ARINAS SECTION
========================================= */
.why-section {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 176, 0, 0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

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

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(245, 176, 0, 0.1);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: #000;
    transform: scale(1.1);
}

.why-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.why-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* =========================================
   PRICING SECTION
========================================= */
.pricing-section { background: var(--bg-dark); }

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.pricing-card-premium {
    border: 2px solid var(--primary);
    background: linear-gradient(145deg, rgba(245, 176, 0, 0.05), var(--bg-surface));
    box-shadow: 0 0 40px rgba(245, 176, 0, 0.1);
}

.plan-popular {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 20px;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-header { margin-bottom: 32px; }
.plan-header h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.plan-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.price-amount { font-size: 3.5rem; font-weight: 800; letter-spacing: -1px; }
.price-period { color: var(--text-muted); font-size: 1rem; }

.plan-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-badge-green {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border-color: rgba(34, 197, 94, 0.2);
}

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

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.plan-features li i.fa-check { color: #4ade80; margin-top: 3px; flex-shrink: 0; }

.plan-everything { color: var(--text-main) !important; font-weight: 600; }
.plan-everything i { color: var(--primary) !important; }

.plan-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.plan-btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.plan-btn-outline:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.plan-btn-primary {
    background: linear-gradient(135deg, #f5b000, #ffda73);
    color: #000;
    border: none;
    box-shadow: 0 8px 20px rgba(245, 176, 0, 0.4);
}

.plan-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 176, 0, 0.55);
}

/* =========================================
   TESTIMONIALS SECTION
========================================= */
.testimonials-section {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.testimonial-card {
    padding: 36px;
    border-radius: 20px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 176, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.testimonial-text {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5b000, #ffda73);
    color: #000;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.95rem; font-weight: 700; }
.testimonial-author span { display: block; font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.testimonial-author > div:last-child { display: flex; flex-direction: column; }

/* Force avatar circle - override any conflicts */
div.author-avatar {
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #f5b000, #ffda73) !important;
    color: #000 !important;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
    text-align: center;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* Legal Modals Styling */
.legal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.legal-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.legal-modal-container {
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.legal-modal-overlay.active .legal-modal-container {
    transform: scale(1);
}

.legal-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(8px);
}

.legal-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.legal-modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.legal-modal-close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transform: rotate(90deg);
}

.legal-modal-body {
    padding: 30px 40px;
    overflow-y: auto;
    flex: 1;
    line-height: 1.7;
    color: var(--text-muted);
    scrollbar-width: thin;
    scrollbar-color: rgba(245, 176, 0, 0.3) rgba(255, 255, 255, 0.03);
}

.legal-modal-body::-webkit-scrollbar {
    width: 6px;
}

.legal-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

.legal-modal-body::-webkit-scrollbar-thumb {
    background: rgba(245, 176, 0, 0.3);
    border-radius: 3px;
}

.legal-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.legal-modal-body h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.legal-modal-body h1:first-of-type {
    margin-top: 0;
}

.legal-modal-body p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.legal-modal-body ul, .legal-modal-body ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-modal-body li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.legal-modal-body span.font-bold {
    font-weight: 700;
    color: #fff;
}

.legal-modal-body a {
    color: var(--primary);
    text-decoration: underline;
    transition: var(--transition);
}

.legal-modal-body a:hover {
    color: #fff;
}

/* Loading state styling */
.legal-modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    color: var(--text-muted);
}

.legal-modal-spinner {
    border: 3px solid rgba(245, 176, 0, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-left-color: var(--primary);
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .legal-modal-body {
        padding: 20px 25px;
    }
    .legal-modal-container {
        width: 95%;
        max-height: 90vh;
    }
}

/* --- BLOG STYLES --- */

        .blog-header { padding: 160px 0 60px; text-align: center; }
        .blog-header h1 { font-size: 3.5rem; margin-bottom: 20px; }
        .blog-header p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

        @media(max-width: 768px) {
            .blog-header { padding: 100px 20px 40px; }
            .blog-header h1 { font-size: 2.2rem; }
            .blog-header p { font-size: 1rem; }
            .blog-controls { gap: 15px; margin-bottom: 30px; }
            .category-filters { overflow-x: auto; white-space: nowrap; padding-bottom: 10px; width: 100%; justify-content: flex-start; }
            .blog-grid { grid-template-columns: 1fr; gap: 20px; }
        }
        
        .blog-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .search-bar {
            position: relative;
            flex: 1;
            max-width: 400px;
        }
        
        .search-bar input {
            width: 100%;
            padding: 15px 20px;
            padding-left: 50px;
            background: var(--bg-surface);
            border: 1px solid var(--glass-border);
            border-radius: 8px;
            color: var(--text-main);
            font-family: inherit;
            font-size: 1rem;
        }
        
        .search-bar i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
        }
        
        .category-filters {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            background: var(--bg-surface);
            border: 1px solid var(--glass-border);
            color: var(--text-muted);
            padding: 8px 16px;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            color: #000;
            border-color: var(--primary);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }
        
        .blog-card {
            background: var(--bg-surface);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            border-color: rgba(245, 176, 0, 0.3);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        
        .blog-image {
            height: 200px;
            background: #2a2a2a;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 2rem;
        }
        
        .blog-image::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
        }
        
        .blog-category {
            position: absolute;
            bottom: 15px;
            left: 20px;
            background: var(--primary);
            color: #000;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 1;
        }
        
        .blog-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-title {
            font-size: 1.4rem;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .blog-title a {
            color: var(--text-main);
            transition: var(--transition);
        }
        
        .blog-title a:hover {
            color: var(--primary);
        }
        
        .blog-excerpt {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
            flex: 1;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-muted);
            font-size: 0.85rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 15px;
        }
        
        .read-more {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        .read-more i {
            transition: transform 0.3s ease;
        }
    
.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(245, 176, 0, 0.2);
}
.blog-card {
    cursor: pointer;
}
.blog-card:hover .blog-image i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.blog-image i {
    transition: transform 0.3s ease;
}

/* Polish Alignment Fixes */
.search-bar input {
    height: 51px;
}
.filter-btn {
    height: 51px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}
.blog-controls {
    align-items: stretch;
}

/* Added Background Image for Hero */
.hero-premium-bg {
    background-image: linear-gradient(135deg, rgba(15, 12, 41, 0.8), rgba(48, 43, 99, 0.8), rgba(36, 36, 62, 0.8)), url('music_blog_hero_bg.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.footer-bottom {
    text-align: center;
    width: 100%;
}
.footer-bottom p {
    text-align: center;
    width: 100%;
}
