/* SpinLoud - Shopify Partners Inspired Dark Theme */
/* Accent: Blue #0000FF */

:root {
    --blue: #0000FF;
    --blue-light: #4D4DFF;
    --blue-dark: #0000CC;
    --blue-glow: rgba(0, 0, 255, 0.4);
    --blue-bg: #000033;
    --black: #000000;
    --dark-bg: #0a0a0a;
    --dark-card: rgba(17, 17, 17, 0.8);
    --dark-border: rgba(255, 255, 255, 0.1);
    --gray-900: #0f0f0f;
    --gray-800: #171717;
    --gray-700: #262626;
    --gray-600: #404040;
    --gray-500: #7a7a7a;
    --gray-400: #b0b0b0;
    --gray-300: #d0d0d0;
    --gray-200: #e8e8e8;
    --gray-100: #e5e5e5;
    --white: #ffffff;
    --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-300);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Responsive visibility */
.mobile-only { display: none; }
.desktop-only { display: inline; }

@media (max-width: 768px) {
    .mobile-only { display: inline; }
    .desktop-only { display: none; }
}

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Typography */
.text-gradient {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--white) 50%, var(--blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--blue-glow);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue-light);
    background: rgba(0, 0, 255, 0.1);
}

.btn-text {
    color: var(--gray-300);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.btn-text:hover { color: var(--white); }

.btn-block {
    display: flex;
    width: 100%;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
}

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

.nav-logo img {
    height: 60px;
}

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

.nav-links a {
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
}

.lang-option {
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    border-radius: 4px;
    transition: all 0.2s;
}

.lang-option:hover { color: var(--gray-300); }

.lang-option.active {
    background: var(--blue);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
}

/* Trust Banner */
.trust-banner {
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: 12px 0;
    position: relative;
    z-index: 10;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-items span {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    opacity: 0.9;
}

/* Hero Section with Background Image */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 100px 0 60px;
    overflow: hidden;
    background: var(--black);
    display: flex;
    align-items: center;
}

.hero > .container {
    width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Background Image with Gradient Overlay */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 20, 0.6) 20%,
        rgba(0, 0, 40, 0.5) 40%,
        rgba(0, 0, 60, 0.4) 70%,
        rgba(0, 0, 100, 0.2) 100%
    );
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    z-index: 1;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--blue-dark) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: pulse 8s ease-in-out infinite 4s;
}

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

.particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, var(--blue-light) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px;
    background-position: 0 0, 40px 40px;
    opacity: 0.2;
    animation: particleFloat 20s linear infinite;
    z-index: 1;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-80px); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 0, 255, 0.2);
    border: 1px solid rgba(0, 0, 255, 0.3);
    color: var(--blue-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-microcopy {
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-500);
}

/* Floating UI Elements */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-ui {
    position: relative;
    width: 100%;
    height: 100%;
}

.ui-card {
    position: absolute;
    background: var(--dark-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.ui-player {
    top: 20px;
    left: 0;
    width: 280px;
    animation-delay: 0s;
}

.player-header {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.player-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-700);
}

.player-dot:nth-child(1) { background: #ff5f57; }
.player-dot:nth-child(2) { background: #ffbd2e; }
.player-dot:nth-child(3) { background: #28c840; }

.player-now {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.player-track {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.player-artist {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.player-progress {
    height: 4px;
    background: var(--gray-800);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    border-radius: 2px;
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.ui-channels {
    top: 180px;
    right: 20px;
    width: 200px;
    padding: 16px;
    animation-delay: -2s;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 4px;
    transition: all 0.2s;
}

.channel-item.active {
    background: rgba(0, 0, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(0, 0, 255, 0.3);
}

.channel-icon {
    font-size: 16px;
}

.ui-stats {
    bottom: 60px;
    left: 40px;
    width: 160px;
    text-align: center;
    animation-delay: -4s;
}

.stat-label {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--blue-light);
    margin: 4px 0;
}

.stat-desc {
    font-size: 12px;
    color: var(--gray-400);
}

.ui-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--blue);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 10px 40px var(--blue-glow);
    animation: float 6s ease-in-out infinite;
}

.ui-badge-ai {
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    animation-delay: -3s;
}

.ui-badge-live {
    top: 0;
    right: 120px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.4);
    animation-delay: -1s;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

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

.ui-badge-mood {
    top: 60px;
    left: 50px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
    animation-delay: -4s;
}

.ui-badge-request {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.5);
    animation-delay: -3s;
    z-index: 10;
    font-weight: 700;
}

.ui-badge-quality {
    bottom: 40px;
    right: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
    animation-delay: -2s;
}

/* Player Waveform */
.player-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 30px;
    margin: 12px 0;
}

.player-waveform span {
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 100%);
    border-radius: 3px;
    animation: waveformAnim 1s ease-in-out infinite;
}

.player-waveform span:nth-child(1) { animation-delay: 0s; height: 40%; }
.player-waveform span:nth-child(2) { animation-delay: 0.1s; height: 70%; }
.player-waveform span:nth-child(3) { animation-delay: 0.2s; height: 50%; }
.player-waveform span:nth-child(4) { animation-delay: 0.3s; height: 90%; }
.player-waveform span:nth-child(5) { animation-delay: 0.4s; height: 60%; }
.player-waveform span:nth-child(6) { animation-delay: 0.5s; height: 80%; }
.player-waveform span:nth-child(7) { animation-delay: 0.6s; height: 45%; }
.player-waveform span:nth-child(8) { animation-delay: 0.7s; height: 95%; }
.player-waveform span:nth-child(9) { animation-delay: 0.8s; height: 55%; }
.player-waveform span:nth-child(10) { animation-delay: 0.9s; height: 75%; }
.player-waveform span:nth-child(11) { animation-delay: 0.85s; height: 65%; }
.player-waveform span:nth-child(12) { animation-delay: 0.75s; height: 85%; }
.player-waveform span:nth-child(13) { animation-delay: 0.65s; height: 50%; }
.player-waveform span:nth-child(14) { animation-delay: 0.55s; height: 70%; }
.player-waveform span:nth-child(15) { animation-delay: 0.45s; height: 60%; }

@keyframes waveformAnim {
    0%, 100% { transform: scaleY(0.5); opacity: 0.6; }
    50% { transform: scaleY(1); opacity: 1; }
}

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

/* Stats Bar */
.stats-bar {
    position: relative;
    background: var(--blue);
    padding: 50px 0;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    color: var(--white);
}

.stat-text strong {
    display: block;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-text span {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
}

/* Dark Section (Black) */
.section-dark {
    background: var(--dark-bg);
    position: relative;
}

/* Blue Section */
.section-blue {
    background: var(--blue);
    position: relative;
    overflow: hidden;
}

/* How It Works Section with Background */
.section-how {
    position: relative;
    overflow: hidden;
}

.how-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
}

.how-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/how-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.how-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 180, 0.85) 0%,
        rgba(0, 0, 150, 0.8) 30%,
        rgba(0, 0, 120, 0.75) 60%,
        rgba(0, 0, 180, 0.85) 100%
    );
    z-index: 1;
}

.section-how .container {
    position: relative;
    z-index: 2;
}

/* Section Rounded Corners - Shopify Style */
.section-rounded-top {
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

/* Ensure sections have proper background for rounded corners */
.section.section-rounded-top.section-dark {
    background: var(--dark-bg);
}

.section.section-rounded-top.section-blue {
    background: var(--blue);
}

.stats-bar.section-rounded-top {
    border-radius: 40px 40px 0 0;
}

.big-stats-section.section-rounded-top {
    border-radius: 40px 40px 0 0;
}

.section-cta.section-rounded-top {
    border-radius: 40px 40px 0 0;
}

.footer.section-rounded-top {
    border-radius: 40px 40px 0 0;
}

.section-rounded-bottom {
    border-radius: 0 0 40px 40px;
}

/* Section Glow Effects for Transitions */
.section-glow-top::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 255, 0.5), transparent);
    box-shadow: 0 0 20px 5px rgba(0, 0, 255, 0.3);
    border-radius: 50%;
    z-index: 10;
}

.section-glow-bottom::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 255, 0.5), transparent);
    box-shadow: 0 0 20px 5px rgba(0, 0, 255, 0.3);
    border-radius: 50%;
    z-index: 10;
}

/* Section Transitions */
.section-transition-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, var(--black) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.section-transition-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(0deg, var(--black) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.section-gradient {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--blue-bg) 50%, var(--dark-bg) 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-header-center {
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-light);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Why SpinLoud Cards */
.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.why-card {
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.15) 0%, rgba(0, 0, 80, 0.1) 100%);
    border: 1px solid rgba(0, 0, 255, 0.3);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover {
    border-color: var(--blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--blue-glow);
}

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

.why-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.why-card p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.why-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.why-card-tags span {
    padding: 6px 14px;
    background: rgba(0, 0, 255, 0.2);
    border: 1px solid rgba(0, 0, 255, 0.3);
    border-radius: 50px;
    font-size: 12px;
    color: var(--blue-light);
    font-weight: 500;
}

/* Comparison Section */
.comparison-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 60px;
    position: relative;
}

.comparison-header {
    text-align: center;
    margin-bottom: 32px;
}

.comparison-vs {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    box-shadow: 0 10px 40px var(--blue-glow);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparison-col h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--dark-border);
}

.comparison-playlist h4 {
    color: var(--gray-400);
}

.comparison-spinloud h4 {
    color: var(--blue-light);
}

.comparison-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-col li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray-300);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-col li:last-child {
    border-bottom: none;
}

.x-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 68, 68, 0.2);
    color: #ff6b6b;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.check-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* AI + Radyocu Section */
.ai-radio-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.2) 0%, rgba(0, 0, 100, 0.15) 100%);
    border: 1px solid rgba(0, 0, 255, 0.4);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.ai-radio-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.ai-radio-content {
    position: relative;
    z-index: 1;
}

.ai-radio-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.ai-radio-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.ai-radio-content p {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.8;
    max-width: 600px;
}

.ai-radio-visual {
    position: relative;
    z-index: 1;
}

.ai-radio-visual .ai-wave {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 80px;
}

.ai-radio-visual .ai-wave span {
    width: 8px;
    background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 100%);
    border-radius: 4px;
    animation: waveAnim 1.2s ease-in-out infinite;
}

.ai-radio-visual .ai-wave span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ai-radio-visual .ai-wave span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.ai-radio-visual .ai-wave span:nth-child(3) { height: 40%; animation-delay: 0.2s; }
.ai-radio-visual .ai-wave span:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.ai-radio-visual .ai-wave span:nth-child(5) { height: 50%; animation-delay: 0.4s; }
.ai-radio-visual .ai-wave span:nth-child(6) { height: 70%; animation-delay: 0.5s; }
.ai-radio-visual .ai-wave span:nth-child(7) { height: 35%; animation-delay: 0.6s; }
.ai-radio-visual .ai-wave span:nth-child(8) { height: 90%; animation-delay: 0.7s; }
.ai-radio-visual .ai-wave span:nth-child(9) { height: 45%; animation-delay: 0.8s; }
.ai-radio-visual .ai-wave span:nth-child(10) { height: 65%; animation-delay: 0.9s; }

@keyframes waveAnim {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(1.4); opacity: 1; }
}

/* Manifesto */
.manifesto {
    text-align: center;
    padding: 60px 40px;
    margin-bottom: 60px;
}

.manifesto-text {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.manifesto-sub {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 500px;
    margin: 0 auto;
}

/* Technology Section */
.tech-section {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.1) 0%, rgba(0, 0, 80, 0.05) 100%);
    border: 1px solid rgba(0, 0, 255, 0.2);
    border-radius: 24px;
    margin-top: 60px;
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tech-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.tech-section p {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 20px;
}

.tech-note {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 50, 100, 0.4);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 8px;
    font-size: 13px;
    color: #00ccff;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    position: relative;
}

.tech-note::before {
    content: '>';
    margin-right: 8px;
    color: #00ff88;
    font-weight: bold;
}

/* Features Highlight Grid */
.features-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.feature-highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-highlight-card:hover {
    background: rgba(0, 0, 255, 0.08);
    border-color: rgba(0, 0, 255, 0.3);
    transform: translateY(-4px);
}

.feature-highlight-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.feature-highlight-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-highlight-card p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Icon Animations */
.icon-pulse {
    display: inline-block;
    animation: iconPulse 2s ease-in-out infinite;
}

.icon-wave {
    display: inline-block;
    animation: iconWave 1.5s ease-in-out infinite;
}

.icon-spin {
    display: inline-block;
    animation: iconSpin 3s linear infinite;
}

.icon-glow {
    display: inline-block;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes iconWave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes iconGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)); }
}

/* Coming Soon Feature Card */
.feature-coming-soon {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.1) 0%, rgba(0, 0, 80, 0.05) 100%);
    border-color: rgba(0, 0, 255, 0.3);
}

.coming-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    animation: comingPulse 2s ease-in-out infinite;
}

@keyframes comingPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Early Bird Banner */
.early-bird-banner {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* CTA Section Enhanced */
.cta-tagline {
    font-size: 18px;
    color: var(--gray-300);
    font-style: italic;
    margin-bottom: 8px;
}

.cta-coming {
    font-size: 15px;
    color: var(--blue-light);
    margin-bottom: 24px;
    padding: 8px 20px;
    background: rgba(0, 0, 255, 0.15);
    border-radius: 50px;
    display: inline-block;
}

/* Contact Address */
.contact-address {
    line-height: 1.6;
    color: var(--gray-300);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 4px;
}

/* Enhanced Tech Section */
.tech-section-enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    text-align: left;
    padding: 48px 48px 48px 48px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0, 0, 40, 0.95) 0%, rgba(0, 0, 20, 0.98) 100%);
    border: 1px solid rgba(0, 100, 255, 0.3);
    box-shadow:
        0 0 40px rgba(0, 100, 255, 0.15),
        inset 0 0 60px rgba(0, 50, 255, 0.05);
}

/* Tech Grid Background */
.tech-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 100, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 100, 255, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    border-radius: 24px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Scanning Line Effect */
.tech-section-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 150, 255, 0.8) 50%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.6);
    animation: scanLine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scanLine {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% - 2px); opacity: 0; }
}

/* Corner Accents */
.tech-visual::before,
.tech-visual::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 150, 255, 0.5);
    pointer-events: none;
}

.tech-visual::before {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.tech-visual::after {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.tech-visual {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-waveform {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 80px;
}

.tech-waveform span {
    width: 6px;
    background: linear-gradient(180deg, #00f0ff 0%, #0066ff 100%);
    border-radius: 3px;
    animation: techWave 1.2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.6), 0 0 20px rgba(0, 100, 255, 0.3);
}

.tech-waveform span:nth-child(1) { animation-delay: 0s; height: 30px; }
.tech-waveform span:nth-child(2) { animation-delay: 0.1s; height: 50px; }
.tech-waveform span:nth-child(3) { animation-delay: 0.2s; height: 70px; }
.tech-waveform span:nth-child(4) { animation-delay: 0.3s; height: 45px; }
.tech-waveform span:nth-child(5) { animation-delay: 0.4s; height: 60px; }
.tech-waveform span:nth-child(6) { animation-delay: 0.5s; height: 35px; }
.tech-waveform span:nth-child(7) { animation-delay: 0.6s; height: 55px; }
.tech-waveform span:nth-child(8) { animation-delay: 0.7s; height: 75px; }
.tech-waveform span:nth-child(9) { animation-delay: 0.8s; height: 40px; }
.tech-waveform span:nth-child(10) { animation-delay: 0.9s; height: 65px; }
.tech-waveform span:nth-child(11) { animation-delay: 1s; height: 50px; }
.tech-waveform span:nth-child(12) { animation-delay: 1.1s; height: 30px; }
.tech-waveform span:nth-child(13) { animation-delay: 0.15s; height: 55px; }
.tech-waveform span:nth-child(14) { animation-delay: 0.25s; height: 45px; }
.tech-waveform span:nth-child(15) { animation-delay: 0.35s; height: 35px; }

@keyframes techWave {
    0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

.tech-badge {
    position: absolute;
    bottom: 0;
    right: 20px;
    background: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 20px;
    letter-spacing: 2px;
    box-shadow:
        0 0 20px rgba(0, 150, 255, 0.6),
        0 0 40px rgba(0, 100, 255, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    z-index: 1;
    animation: badgePulse 2s ease-in-out infinite;
    border: 1px solid rgba(0, 200, 255, 0.3);
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 150, 255, 0.6), 0 0 40px rgba(0, 100, 255, 0.4); }
    50% { box-shadow: 0 0 30px rgba(0, 150, 255, 0.8), 0 0 60px rgba(0, 100, 255, 0.5); }
}

.tech-content {
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.tech-icon-animated {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.tech-icon-animated > span {
    font-size: 40px;
    position: relative;
    z-index: 1;
}

.tech-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.tech-rings span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 0, 255, 0.3);
    border-radius: 50%;
    animation: techRing 2s ease-out infinite;
}

.tech-rings span:nth-child(1) { animation-delay: 0s; }
.tech-rings span:nth-child(2) { animation-delay: 0.5s; }
.tech-rings span:nth-child(3) { animation-delay: 1s; }

@keyframes techRing {
    0% {
        width: 40px;
        height: 40px;
        opacity: 0.6;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.tech-section-enhanced h3 {
    text-align: left;
    margin-bottom: 12px;
}

.tech-section-enhanced p {
    text-align: left;
    margin: 0 0 16px 0;
    max-width: none;
}

/* Secondary Features */
.features-secondary {
    padding-top: 40px;
    border-top: 1px solid var(--dark-border);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: var(--blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--blue-glow);
}

/* AI Hero Feature Card - Enhanced */
.feature-ai-hero {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.2) 0%, rgba(0, 0, 100, 0.15) 100%);
    border: 1px solid rgba(0, 0, 255, 0.4);
    position: relative;
    overflow: hidden;
    padding: 40px;
}

.feature-ai-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 0, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: aiGlow 4s ease-in-out infinite;
}

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

.feature-ai-hero:hover {
    border-color: var(--blue-light);
    box-shadow: 0 0 80px rgba(0, 0, 255, 0.4);
}

.ai-hero-content {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.feature-icon-ai {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 255, 0.5);
    flex-shrink: 0;
}

.feature-icon-ai .feature-emoji {
    font-size: 36px;
}

.ai-hero-text h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.ai-hero-text p {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 500px;
}

.ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ai-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 0, 255, 0.2);
    border: 1px solid rgba(0, 0, 255, 0.4);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ai-wave-visual {
    position: relative;
    z-index: 1;
    padding-right: 20px;
}

.ai-wave {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 80px;
}

.ai-wave span {
    width: 5px;
    background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 100%);
    border-radius: 3px;
    animation: waveAnim 1.2s ease-in-out infinite;
}

.ai-wave span:nth-child(1) { height: 25px; animation-delay: 0s; }
.ai-wave span:nth-child(2) { height: 40px; animation-delay: 0.1s; }
.ai-wave span:nth-child(3) { height: 30px; animation-delay: 0.2s; }
.ai-wave span:nth-child(4) { height: 55px; animation-delay: 0.3s; }
.ai-wave span:nth-child(5) { height: 35px; animation-delay: 0.4s; }
.ai-wave span:nth-child(6) { height: 60px; animation-delay: 0.5s; }
.ai-wave span:nth-child(7) { height: 40px; animation-delay: 0.6s; }
.ai-wave span:nth-child(8) { height: 50px; animation-delay: 0.7s; }
.ai-wave span:nth-child(9) { height: 30px; animation-delay: 0.8s; }
.ai-wave span:nth-child(10) { height: 20px; animation-delay: 0.9s; }

@keyframes waveAnim {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(1.4); opacity: 1; }
}

/* Legacy feature-large for backwards compatibility */
.feature-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.15) 0%, rgba(0, 0, 100, 0.1) 100%);
    border: 1px solid rgba(0, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-large::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.feature-large:hover {
    border-color: var(--blue);
    box-shadow: 0 0 60px rgba(0, 0, 255, 0.3);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 255, 0.2);
    border: 1px solid rgba(0, 0, 255, 0.3);
    border-radius: 16px;
    margin-bottom: 20px;
}

.feature-large .feature-icon-wrap {
    width: 88px;
    height: 88px;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 255, 0.4);
}

.feature-emoji {
    font-size: 28px;
}

.feature-large .feature-emoji {
    font-size: 40px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.step-card:hover {
    border-color: var(--blue);
    transform: translateY(-8px);
}

.step-number {
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue-light), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--gray-400);
}

/* Channels Showcase */
.channels-showcase {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.channel-card {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 0, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.channel-card:hover {
    border-color: var(--blue);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 255, 0.3);
}

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

.channel-visual {
    width: 100%;
    max-width: 140px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 16px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.channel-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.channel-card:hover .channel-visual {
    transform: scale(1.08) rotateZ(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 255, 0.4);
}

.channel-card:hover .channel-visual::after {
    opacity: 1;
}

/* Channel album art with gradient fallbacks */
.channel-visual.pop {
    background: url('../assets/images/channels/pop.jpg') no-repeat center / cover,
                linear-gradient(135deg, #ff6b6b, #feca57);
}
.channel-visual.jazz {
    background: url('../assets/images/channels/jazz.jpg') no-repeat center / cover,
                linear-gradient(135deg, #5f27cd, #341f97);
}
.channel-visual.rock {
    background: url('../assets/images/channels/rock.jpg') no-repeat center / cover,
                linear-gradient(135deg, #2d3436, #636e72);
}
.channel-visual.chill {
    background: url('../assets/images/channels/chill.jpg') no-repeat center / cover,
                linear-gradient(135deg, #00d2d3, #54a0ff);
}
.channel-visual.ac {
    background: url('../assets/images/channels/ac.jpg') no-repeat center / cover,
                linear-gradient(135deg, #ff9ff3, #f368e0);
}
.channel-visual.oldies {
    background: url('../assets/images/channels/oldies.jpg') no-repeat center / cover,
                linear-gradient(135deg, #ffeaa7, #fdcb6e);
}

.channel-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.channel-card p {
    font-size: 13px;
    color: var(--gray-400);
}

.channels-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
}

.pricing-featured {
    border-color: var(--blue);
    box-shadow: 0 0 80px var(--blue-glow);
}

.pricing-featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light), var(--blue));
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--gray-400);
}

.pricing-price {
    margin: 24px 0 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.price-old {
    font-size: 24px;
    color: var(--gray-500);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
}

.price-period {
    font-size: 18px;
    color: var(--gray-500);
}

.pricing-trial {
    font-size: 14px;
    color: var(--blue-light);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--dark-border);
    font-size: 14px;
    color: var(--gray-300);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .feature-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-features li.coming-soon {
    opacity: 0.5;
}

.pricing-enterprise {
    background: linear-gradient(180deg, var(--dark-card) 0%, rgba(0,0,51,0.8) 100%);
}

/* Single Pricing Layout */
.pricing-single {
    max-width: 500px;
    margin: 0 auto;
}

.pricing-single-card {
    padding: 48px;
}

.pricing-options {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.pricing-option {
    flex: 1;
    min-width: 140px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-option:hover {
    border-color: var(--blue);
    background: rgba(0, 0, 255, 0.1);
}

.option-period {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.option-price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.option-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 4px 10px;
    background: var(--blue);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    color: var(--white);
}

.pricing-microcopy {
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
}

/* Licensing Section */
.section-licensing {
    padding: 60px 0;
}

.licensing-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.licensing-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.licensing-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.licensing-content p {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-text-link {
    font-size: 14px;
    color: var(--blue-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-text-link:hover {
    color: var(--white);
}

/* FAQ Section */
.section-faq {
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 0, 255, 0.3);
}

.faq-item.active {
    border-color: var(--blue);
    background: rgba(0, 0, 255, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--blue-light);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.8;
}

/* Channels CTA */
.channels-cta {
    text-align: center;
    margin-top: 32px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Testimonials Section with Background */
.section-testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.testimonials-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/testimonials-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.testimonials-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 20, 0.85) 20%,
        rgba(0, 0, 40, 0.6) 50%,
        rgba(0, 0, 60, 0.4) 80%,
        rgba(0, 0, 80, 0.3) 100%
    );
    z-index: 1;
}

.section-testimonials .container {
    position: relative;
    z-index: 2;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .big-stats-section {
        padding: 40px 0;
        overflow: visible;
    }

    .big-stats-section .container {
        padding: 0;
    }

    .big-stats-grid {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 12px 24px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .big-stats-grid::-webkit-scrollbar {
        display: none;
    }

    .big-stat {
        flex: 0 0 auto;
        min-width: 80px;
    }

    .big-stat-number {
        font-size: 32px !important;
    }

    .big-stat-label {
        font-size: 11px !important;
    }
}

.testimonial-card {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(0, 0, 255, 0.3);
}

.testimonial-content p {
    font-size: 18px;
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
    border-radius: 50%;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.author-role {
    font-size: 14px;
    color: var(--gray-500);
}

/* CTA Section */
.section-cta {
    padding: 120px 0;
    background: var(--blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.section-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--blue);
}

.cta-content .btn-primary:hover {
    background: var(--gray-100);
    box-shadow: 0 10px 40px rgba(255,255,255,0.3);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-400);
    margin-bottom: 32px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-300);
    font-size: 16px;
    transition: color 0.2s;
}

.contact-item:hover {
    color: var(--blue-light);
}

.contact-form {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    font-size: 15px;
    color: var(--white);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 20px var(--blue-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--black);
    border-top: 1px solid var(--dark-border);
}

.footer.footer-blue {
    background: var(--blue);
    border-top: none;
}

.footer-blue .footer-brand p,
.footer-blue .footer-col h4,
.footer-blue .footer-col a,
.footer-blue .footer-bottom p,
.footer-blue .footer-legal a {
    color: rgba(255,255,255,0.8);
}

.footer-blue .footer-col a:hover,
.footer-blue .footer-legal a:hover {
    color: var(--white);
}

.footer-blue .footer-lang .lang-option {
    color: rgba(255,255,255,0.7);
}

.footer-blue .footer-lang .lang-option.active {
    color: var(--white);
    background: rgba(255,255,255,0.2);
}

.footer-blue .footer-bottom {
    border-top-color: rgba(255,255,255,0.2);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 12px;
    transition: color 0.2s;
}

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

.footer-lang {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-lang .lang-option {
    padding: 0;
    background: none;
    color: var(--gray-500);
    font-size: 14px;
}

.footer-lang .lang-option:hover { color: var(--white); }
.footer-lang .lang-option.active { color: var(--blue-light); background: none; box-shadow: none; }

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

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-600);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--gray-600);
    transition: color 0.2s;
}

.footer-legal a:hover { color: var(--white); }

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--blue-glow); }
    50% { box-shadow: 0 0 40px var(--blue-glow), 0 0 60px var(--blue-glow); }
}

/* Marquee Animation */
.marquee-section {
    background: var(--blue);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

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

/* Animated Logo Cloud */
.logos-section {
    padding: 80px 0;
    background: var(--dark-bg);
    border-bottom: 1px solid var(--dark-border);
}

.logos-header {
    text-align: center;
    margin-bottom: 48px;
}

.logos-header p {
    font-size: 14px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logos-track {
    display: flex;
    animation: logosScroll 25s linear infinite;
    width: max-content;
}

.logos-group {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
}

.logo-item {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-600);
    opacity: 0.6;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.logo-item:hover {
    color: var(--white);
    opacity: 1;
}

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

/* Floating Elements */
.float-element {
    animation: floatAnimation 6s ease-in-out infinite;
}

.float-element:nth-child(2) { animation-delay: -2s; }
.float-element:nth-child(3) { animation-delay: -4s; }

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    75% { transform: translateY(10px) rotate(-1deg); }
}

/* Card Hover Effects */
.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.card-3d:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

/* Glowing Border */
.glow-border {
    position: relative;
}

.glow-border::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg, var(--blue), var(--blue-light), var(--blue));
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-border:hover::after {
    opacity: 1;
}

/* Animated Stats */
.animated-stat {
    position: relative;
    overflow: hidden;
}

.animated-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,255,0.2), transparent);
    animation: statShine 3s ease-in-out infinite;
}

@keyframes statShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* Big Stats Section */
.big-stats-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--blue-bg) 100%);
    position: relative;
    overflow: hidden;
}

.big-stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, var(--blue-glow) 0%, transparent 50%);
    opacity: 0.3;
}

.big-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

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

.big-stat-number {
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white) 0%, var(--blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.big-stat-label {
    font-size: 16px;
    color: var(--gray-400);
}

/* Device Mockup Animation */
.device-frame {
    position: relative;
    animation: deviceFloat 8s ease-in-out infinite;
}

@keyframes deviceFloat {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-20px) rotateX(5deg); }
}

/* Staggered Animations for Children */
.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

/* Animated Grid Background */
.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

/* Animated Text Highlight */
.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--blue);
    opacity: 0.3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.text-highlight:hover::after {
    transform: scaleX(1);
}

/* Enhanced Hero Effects */
.hero-content {
    animation: slideUp 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-visual {
    animation: slideInRight 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* Pulsing CTA */
.btn-primary.pulse {
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--blue-glow); }
    50% { box-shadow: 0 0 0 15px rgba(0,0,255,0); }
}

/* Feature Card Entrance */
.feature-card {
    animation: scaleIn 0.6s ease forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Gradient Text Animation */
.animated-gradient-text {
    background: linear-gradient(90deg, var(--blue-light), var(--white), var(--blue-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s linear infinite;
}

@keyframes gradientText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Interactive Hover Line */
.hover-line {
    position: relative;
    display: inline-block;
}

.hover-line::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
}

.hover-line:hover::after {
    width: 100%;
}

/* Bounce Effect */
.bounce {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Icon Animation */
.icon-spin {
    transition: transform 0.4s ease;
}

.icon-spin:hover {
    transform: rotate(360deg);
}

/* Wave Animation for CTA */
.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230a0a0a' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat center bottom;
    background-size: cover;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-content a {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    transition: color 0.2s;
}

.mobile-menu-content a:hover {
    color: var(--blue-light);
}

.mobile-menu-cta {
    margin-top: 20px;
}

.mobile-menu-cta .btn-primary {
    padding: 16px 32px;
    font-size: 18px;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Horizontal Scroll for Cards */
@media (max-width: 768px) {
    /* Why Cards - Mobile */
    .why-cards {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 20px 24px;
        margin-bottom: 40px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .why-cards::-webkit-scrollbar {
        display: none;
    }

    .why-cards > * {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }

    .why-card {
        padding: 32px 24px;
    }

    .why-card-icon {
        font-size: 40px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    /* Comparison Section - Mobile */
    .comparison-section {
        padding: 32px 20px;
        margin-left: 24px;
        margin-right: 24px;
        margin-bottom: 40px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .comparison-col h4 {
        font-size: 20px;
        text-align: center;
    }

    .comparison-vs {
        font-size: 14px;
        padding: 10px 24px;
    }

    /* AI + Radyocu Section - Mobile */
    .ai-radio-section {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
        margin-left: 24px;
        margin-right: 24px;
        margin-bottom: 40px;
    }

    .ai-radio-icon {
        font-size: 36px;
    }

    .ai-radio-content h3 {
        font-size: 22px;
    }

    .ai-radio-visual {
        display: flex;
        justify-content: center;
    }

    /* Manifesto - Mobile */
    .manifesto {
        padding: 40px 24px;
        margin-bottom: 40px;
    }

    .manifesto-text {
        font-size: 24px;
    }

    .manifesto-sub {
        font-size: 15px;
    }

    /* Secondary Features - Mobile */
    .features-secondary {
        margin-left: 0;
        margin-right: 0;
        padding-top: 24px;
        border-top: none;
    }

    /* Tech Section - Mobile */
    .tech-section {
        padding: 32px 20px;
        margin: 40px 24px 0;
    }

    .tech-section h3 {
        font-size: 20px;
    }

    /* Features Highlight Grid - Mobile */
    .features-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 40px;
        padding: 0 16px;
    }

    .feature-highlight-card {
        padding: 20px 16px;
    }

    .feature-highlight-icon {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .feature-highlight-card h4 {
        font-size: 14px;
    }

    .feature-highlight-card p {
        font-size: 12px;
    }

    /* Enhanced Tech Section - Mobile */
    .tech-section-enhanced {
        flex-direction: column;
        padding: 32px 20px;
        text-align: center;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(0, 0, 255, 0.15) 0%, rgba(0, 0, 80, 0.08) 100%);
        border: 1px solid rgba(0, 0, 255, 0.3);
        position: relative;
    }

    .tech-section-enhanced::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
            linear-gradient(rgba(0, 0, 255, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 0, 255, 0.05) 1px, transparent 1px);
        background-size: 20px 20px;
        pointer-events: none;
        border-radius: inherit;
    }

    .tech-visual {
        width: 100%;
        height: 80px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .tech-waveform {
        justify-content: center;
    }

    .tech-waveform span {
        width: 4px;
    }

    .tech-badge {
        right: auto;
        bottom: auto;
        position: relative;
        margin-top: 12px;
        box-shadow: 0 0 20px rgba(0, 0, 255, 0.4);
    }

    .tech-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .tech-section-enhanced h3,
    .tech-section-enhanced p {
        text-align: center;
    }

    .tech-note {
        text-align: center;
        display: block;
    }

    .tech-icon-animated {
        margin-bottom: 12px;
    }

    .tech-icon-animated > span {
        font-size: 32px;
    }

    /* Trust Banner - Mobile */
    .trust-items {
        gap: 16px;
        padding: 0 16px;
    }

    .trust-items span {
        font-size: 11px;
    }

    /* FAQ - Mobile */
    .faq-accordion {
        padding: 0 16px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 13px;
    }

    /* Licensing - Mobile */
    .licensing-content {
        padding: 0 24px;
    }

    /* Pricing Options - Mobile */
    .pricing-single {
        padding: 0 24px;
    }

    .pricing-options {
        flex-direction: column;
    }

    .pricing-option {
        min-width: auto;
    }

    /* Remove container padding for full-width scroll */
    .section-features .container,
    .section-pricing .container,
    .section-testimonials .container,
    .section-how .container {
        padding-left: 0;
        padding-right: 0;
    }

    /* Keep header centered with padding */
    .section-features .section-header,
    .section-pricing .section-header,
    .section-testimonials .section-header,
    .section-how .section-header {
        padding-left: 24px;
        padding-right: 24px;
    }

    .features-grid,
    .pricing-grid,
    .testimonials-grid,
    .steps-grid {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 20px 24px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .features-grid::-webkit-scrollbar,
    .pricing-grid::-webkit-scrollbar,
    .testimonials-grid::-webkit-scrollbar,
    .steps-grid::-webkit-scrollbar {
        display: none;
    }

    .features-grid > *,
    .steps-grid > * {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }

    .pricing-grid > * {
        flex: 0 0 300px;
        min-width: 300px;
        max-width: 300px;
    }

    .testimonials-grid > * {
        flex: 0 0 320px;
        min-width: 320px;
        max-width: 320px;
    }

    /* Channel Section */
    .section-channels .container {
        padding-left: 0;
        padding-right: 0;
    }

    .section-channels .section-header {
        padding-left: 24px;
        padding-right: 24px;
    }

    .channels-showcase {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 20px 24px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .channels-showcase::-webkit-scrollbar {
        display: none;
    }

    .channels-showcase > * {
        flex: 0 0 120px;
        min-width: 120px;
        max-width: 120px;
    }

    .channel-card {
        text-align: center;
        padding: 14px;
    }

    .channel-visual {
        max-width: 90px;
        margin: 0 auto 10px;
    }

    .channel-card h4 {
        font-size: 13px;
    }

    .channel-card p {
        font-size: 10px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

    .feature-large {
        grid-column: span 2;
    }

    .channels-showcase {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .hero { padding: 140px 0 80px; }
    .hero-title { font-size: 40px; }

    .section { padding: 80px 0; }
    .section-title { font-size: 32px; }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Horizontal scroll styles are defined above - these grids scroll horizontally on mobile */

    .feature-large {
        grid-column: span 1;
        display: flex !important;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .feature-large .feature-icon-wrap {
        margin: 0 auto 8px;
    }

    /* AI Hero Card Mobile */
    .feature-ai-hero {
        grid-column: span 1 !important;
        display: flex !important;
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 20px;
    }

    .ai-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon-ai {
        width: 64px;
        height: 64px;
        margin: 0 auto;
    }

    .feature-icon-ai .feature-emoji {
        font-size: 32px;
    }

    .ai-hero-text h3 {
        font-size: 20px;
    }

    .ai-hero-text p {
        font-size: 14px;
    }

    .ai-tags {
        justify-content: center;
    }

    .ai-tag {
        font-size: 10px;
        padding: 5px 10px;
    }

    .ai-wave-visual {
        display: none;
    }

    /* channels-showcase horizontal scroll defined above */

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 32px;
    }
}
