:root {
    --primary: #4169FF;
    --primary-dark: #3151CC;
    --primary-light: #6C8FFF;
    --text: #1A1A1A;
    --text-light: #666666;
    --background: #FFFFFF;
    --background-light: #F8F9FE;
    --border: #E5E7EB;
    --radius: 12px;
    --shadow: 0 8px 24px rgba(65, 105, 255, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-padding: 1.5rem;
    --header-height: 4rem;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    letter-spacing: -0.011em;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: -0.02em;
}

.logo-text .accent {
    color: #4169FF;
    font-weight: 800;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.nav-link:hover {
    color: #1A1A1A;
}

.arrow {
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: -12px;
    background: white;
    border-radius: 16px;
    width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 8px;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown-header span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A1A1A;
}

.badge-new {
    background: #4169FF;
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.dropdown-items {
    padding: 8px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
}

.product-item:hover {
    background: rgba(65, 105, 255, 0.04);
}

.product-icon {
    width: 40px;
    height: 40px;
    background: rgba(65, 105, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-icon svg {
    width: 20px;
    height: 20px;
    color: #4169FF;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-name {
    color: #1A1A1A;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-desc {
    color: #666;
    font-size: 0.75rem;
}

.badge-beta {
    background: rgba(65, 105, 255, 0.08);
    color: #4169FF;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.dropdown-footer {
    padding: 12px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.01);
    border-radius: 0 0 12px 12px;
}

.dropdown-footer span {
    color: #666;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Update nav link styles */
.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-link:hover {
    color: #1A1A1A;
    background: rgba(0, 0, 0, 0.02);
}

.nav-link svg {
    transition: transform 0.2s ease;
}

.dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

.btn-get-started,
.btn-primary,
.cta-buttons .btn-primary,
.newsletter-form button {
    background: #526DFF;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
}

.btn-get-started::after,
.btn-primary::after,
.cta-buttons .btn-primary::after {
    content: none;
}

.btn-get-started:hover,
.btn-primary:hover,
.cta-buttons .btn-primary:hover,
.newsletter-form button:hover {
    background: #4055CC;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(82, 109, 255, 0.2);
}

.btn-get-started:hover::after,
.btn-primary:hover::after,
.cta-buttons .btn-primary:hover::after {
    transform: translateX(2px);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 7rem;
    padding-inline: 4rem;
    background: linear-gradient(150deg, #F8F9FF 0%, #FFFFFF 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(82, 109, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(82, 109, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 0%, 
        rgba(82, 109, 255, 0.03) 0%, 
        transparent 70%
    );
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 6rem;
    padding: 4rem 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 4.25rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #1A1A1A;
}

.gradient-text {
    background: linear-gradient(135deg, #526DFF 0%, #8A6FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
    max-width: 520px;
}

/* Feature Badges */
.feature-badges {
    display: flex;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
    flex-wrap: nowrap;
}

.badge {
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.badge-blue {
    background: rgba(82, 109, 255, 0.08);
    color: #526DFF;
}

.badge-purple {
    background: rgba(138, 111, 255, 0.08);
    color: #8A6FFF;
}

.badge:hover {
    transform: translateY(-1px);
    background: rgba(82, 109, 255, 0.12);
}

/* Features Grid */
.features-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 580px;
    background: white;
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card {
    background: white;
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(82, 109, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: #526DFF;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #1A1A1A;
    margin: 0;
}

.feature-card p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    letter-spacing: -0.01em;
}

/* SVG icons styling */
.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5px;
}

/* Container adjustments */
.hero-container {
    gap: 5rem;
    align-items: center;
}

/* Action links */
.action-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.action-links a {
    text-decoration: none;
    font-weight: 500;
}

.action-links a:first-child {
    color: #526DFF;
}

.action-links a:last-child {
    color: #666;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-nav {
        padding: 1.25rem 2rem;
    }
    
    .hero {
        padding-inline: 2rem;
    }
    
    .features-grid {
        padding: 1.25rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 2rem;
    }
    
    .nav-right {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 1rem;
    }
    
    .hero {
        padding-inline: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}

/* New Button Styles */
.action-buttons {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4169FF 0%, #8A6FFF 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.01em;
    box-shadow: 0 2px 8px rgba(65, 105, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(82, 109, 255, 0.25);
}

.btn-primary::after {
    content: "→";
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.btn-primary:hover::after {
    transform: translateX(2px);
}

.btn-secondary {
    background: transparent;
    color: #1A1A1A;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .feature-badges {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .badge {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
}

/* Add these styles to your existing CSS */

.supercharge {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #FFFFFF, #F8F9FF);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1A1A1A;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.features-cards .feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.features-cards .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(82, 109, 255, 0.1);
}

.features-cards .feature-icon {
    width: 40px;
    height: 40px;
    color: #526DFF;
    margin-bottom: 1.5rem;
}

.features-cards h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.features-cards p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .features-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .supercharge {
        padding: 4rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

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

/* Featured Product Section */
.featured-product {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(150deg, #F8F9FF 0%, #FFFFFF 100%);
    overflow: hidden; /* For the grid pattern */
}

/* Add grid pattern */
.featured-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(82, 109, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(82, 109, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* Add subtle radial gradient overlay */
.featured-product::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 50%, 
        rgba(82, 109, 255, 0.05) 0%, 
        transparent 70%
    );
    pointer-events: none;
}

/* Ensure content stays above the grid */
.featured-product .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(82, 109, 255, 0.08);
    color: #526DFF;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.featured-badge svg {
    color: #526DFF;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: #1A1A1A;
}

.product-subtitle {
    background: linear-gradient(135deg, #526DFF 0%, #8A6FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-content p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #1A1A1A;
}

.feature-item svg {
    color: #526DFF;
}

.product-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-chrome {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    color: #1A1A1A;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-chrome:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.product-preview {
    position: relative;
}

.preview-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.preview-image:hover {
    transform: perspective(1000px) rotateY(-2deg) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-content h2 {
        font-size: 3rem;
    }

    .preview-image {
        transform: none;
    }

    .preview-image:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .featured-product {
        padding: 4rem 1.5rem;
    }

    .product-content h2 {
        font-size: 2.5rem;
    }

    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-chrome {
        justify-content: center;
    }
}

/* Radio Player Styles */
.radio-player {
    background: #1E1E1E;
    width: 490px;
    height: 750px;
    border-radius: 4px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.player-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Header */
.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 6px;
    background: #242424;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close { background: #FF605C; }
.control.minimize { background: #FFBD44; }
.control.maximize { background: #00CA4E; }

/* Now Playing */
.now-playing {
    display: flex;
    align-items: center;
    padding: 6px;
    gap: 8px;
}

.station-logo {
    background: #FF0000;
    color: white;
    padding: 4px;
    border-radius: 2px;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    width: 44px;
    height: 44px;
}

.station-info {
    flex: 1;
}

.station-name {
    color: #00FF00;
    font-size: 12px;
}

.station-meta {
    color: #888;
    font-size: 11px;
}

.weather-info {
    text-align: right;
    font-size: 11px;
    color: #00FF00;
}

/* Player Controls */
.player-controls {
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-btn {
    background: none;
    border: none;
    color: #CCC;
    cursor: pointer;
    padding: 4px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: #333;
}

.progress {
    width: 30%;
    height: 100%;
    background: #00FF00;
}

/* Equalizer */
.equalizer-controls {
    display: flex;
    background: #242424; /* Darker background */
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 0; /* Remove padding */
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.equalizer-controls::-webkit-scrollbar {
    display: none;
}

.eq-button {
    background: transparent;
    border: none;
    color: #999;
    padding: 6px 14px; /* Slightly adjusted padding */
    font-size: 11px; /* Smaller font */
    cursor: pointer;
    transition: all 0.2s ease;
    border-right: 1px solid #333; /* Add separator */
    min-width: fit-content;
    font-weight: 400; /* Less bold */
}

.eq-button:last-child {
    border-right: none; /* Remove border from last button */
}

.eq-button:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.eq-button.active {
    background: #0066CC;
    color: white;
}

/* Browser Controls */
.browser-controls {
    padding: 6px;
    border-bottom: 1px solid #333;
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 12px; /* Space between All Countries and Favorites */
    padding: 8px;
    background: #1E1E1E;
}

.country-select {
    background: #1E1E1E;
    border: 1px solid #333;
    color: #CCC;
    padding: 4px 8px;
    font-size: 12px;
    width: auto;
    height: 24px; /* Match height with Favorites button */
}

.favorites-btn {
    background: none;
    border: none;
    color: #CCC;
    font-size: 12px;
    cursor: pointer;
    padding: 4px 8px;
    height: 24px; /* Match height with select */
    margin: 0; /* Remove any margin */
}

.search-bar {
    width: calc(100% - 18px);
    margin: 10px;
    background: #242424;
    border: 2px solid #333;
}

.search-bar::placeholder {
    color: #666;
}

/* Station List */
.station-list {
    flex: 1;
    overflow-y: auto;
    background: #1E1E1E;
    display: flex;
    flex-direction: column;
}

.station-item {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    gap: 8px;
    color: #CCC;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.station-item:last-child {
    border-bottom: none;
}

.station-item.active {
    background: #0066CC;
    color: white;
}

.station-icon {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 500;
}

.station-icon.dlf { background: #0066CC; }
.station-icon.bbc { background: #FF0000; }
.station-icon.smooth { background: #9B6EFF; }
.station-icon.rp { background: #00CC66; }
.station-icon.cv { background: #666; }

/* Footer */
.player-footer {
    padding: 5px;
    text-align: center;
    font-size: 12px;
    color: #00FF00;
    background: #1E1E1E;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.station-list::after {
    display: none;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #4169FF 0%, #8A6FFF 100%);
    position: relative;
    overflow: hidden;
}

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

.cta-card {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 3.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.02em;
}

.cta-card p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-primary:hover,
.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 2rem;
    background: #F8F9FF;
    text-align: center;
}

.why-choose h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    padding: 1.5rem;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    padding: 12px;
    background: rgba(82, 109, 255, 0.08);
    border-radius: 12px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 1rem;
    max-width: 250px;
}

/* Stay Updated Section */
.stay-updated {
    padding: 4rem 2rem;
    background: #fff;
}

.newsletter-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 4rem;
    background: #F8F9FF;
    border-radius: 32px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.newsletter-card h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
}

.newsletter-card p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #E5E7EB;
    border-radius: 100px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background: #526DFF;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 100px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Footer Styles */
.site-footer {
    position: relative;
    padding: 4rem 2rem;
    background: #fff;
    border-top: 1px solid #E5E7EB;
    overflow: hidden; /* For the background pattern */
}

/* Add decorative background pattern */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(82, 109, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(82, 109, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

/* Ensure content stays above pattern */
.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 8rem;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

/* Add subtle gradient overlay */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    pointer-events: none;
}

/* Left side - Brand section */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-logo svg {
    width: 32px;
    height: 32px;
    color: #526DFF;
}

.footer-logo span {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1A1A1A;
}

.footer-logo .accent {
    color: #526DFF;
}

.footer-brand p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Right side - Links section */
.footer-links {
    display: flex;
    gap: 8rem;
}

.link-group {
    min-width: 120px;
}

.link-group h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
}

.link-group a {
    display: block;
    color: #666;
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
    line-height: 1.5;
}

.link-group a:hover {
    color: #526DFF;
}

/* Social links */
.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(82, 109, 255, 0.1);
    color: #526DFF;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: rgba(82, 109, 255, 0.15);
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Footer bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9375rem;
}

.legal-links {
    display: flex;
    gap: 2.5rem;
}

.legal-links a {
    color: #666;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #526DFF;
}

/* Update button styles to remove arrows */
.btn-get-started,
.btn-primary,
.cta-buttons .btn-primary,
.newsletter-form button {
    background: #526DFF;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
}

/* Remove all arrow content */
.btn-get-started::after,
.btn-primary::after,
.cta-buttons .btn-primary::after {
    content: none;
}

/* Update hover states */
.btn-get-started:hover,
.btn-primary:hover,
.cta-buttons .btn-primary:hover,
.newsletter-form button:hover {
    background: #4055CC;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(82, 109, 255, 0.2);
}

/* Update Learn More button */
.btn-learn {
    background: #526DFF;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-learn:hover {
    background: #4055CC;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(82, 109, 255, 0.2);
}

/* Update navigation styles */
.nav-right .dropdown-content {
    min-width: 280px;
    padding: 0.75rem;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.product-item:hover {
    background: rgba(82, 109, 255, 0.04);
}

.product-icon {
    width: 32px;
    height: 32px;
    background: rgba(65, 105, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon svg {
    width: 20px;
    height: 20px;
    color: #4169FF;
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-name {
    color: #1A1A1A;
    font-size: 0.9375rem;
    font-weight: 500;
}

.product-desc {
    color: #666;
    font-size: 0.8125rem;
}

.coming-soon {
    padding: 0.75rem;
    color: #666;
    font-size: 0.8125rem;
    border-top: 1px solid #E5E7EB;
    margin-top: 0.5rem;
}

/* Update logo styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    color: #1A1A1A;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    letter-spacing: -0.02em;
}

.logo-text .accent {
    color: #526DFF;
}

/* Update the product icon styles to match */
.product-icon svg {
    width: 24px;
    height: 24px;
}

/* Update dropdown product icon */
.dropdown .product-icon {
    background: rgba(65, 105, 255, 0.1);
}

.dropdown .product-icon svg {
    color: #4169FF;
}

/* Update dropdown and product item styles */
.nav-right .dropdown-content {
    min-width: 280px;
    padding: 0.75rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.product-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.product-item:hover {
    background: rgba(65, 105, 255, 0.04);
}

.product-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(65, 105, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon svg {
    width: 18px;
    height: 18px;
    color: #4169FF;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.product-name {
    color: #1A1A1A;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.product-desc {
    color: #666;
    font-size: 0.75rem;
    letter-spacing: -0.01em;
}

.coming-soon {
    padding: 0.625rem 0.75rem;
    color: #666;
    font-size: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 0.25rem;
    text-align: left;
}

/* Update nav link styles */
.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #1A1A1A;
}

.nav-link .arrow {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Add/update these responsive styles */

/* Base responsive settings */
:root {
  --container-padding: 1.5rem;
  --header-height: 4rem;
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }
  
  /* Adjust text sizes for mobile */
  h1 {
    font-size: 2rem !important;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
  
  p {
    font-size: 1rem !important;
  }
}

/* Navigation responsive fixes */
@media (max-width: 768px) {
  .main-nav {
    padding: 0.5rem var(--container-padding);
  }

  .nav-links {
    display: none;  /* Hide nav links on mobile - you might want to add a mobile menu later */
  }

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

/* Content container responsive */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Hero section responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem var(--container-padding);
    text-align: center;
  }

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

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Button responsive */
@media (max-width: 768px) {
  .btn-get-started {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* Update/add these mobile-specific styles */

@media (max-width: 768px) {
  /* Fix hero section */
  .hero {
    padding: 6rem 1rem 2rem 1rem;
    min-height: auto;
  }

  .hero-container {
    flex-direction: column;
    padding: 0;
    gap: 2rem;
    width: 100%;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 0;
  }

  .hero h1 {
    font-size: 2.5rem !important;
    margin-bottom: 1rem;
    text-align: center;
  }

  .hero p {
    font-size: 1rem !important;
    margin: 0 auto 1.5rem auto;
    max-width: 100%;
    text-align: center;
  }

  /* Fix feature badges */
  .feature-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 auto 2rem auto;
  }

  .badge {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    white-space: nowrap;
  }

  /* Fix features grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    margin: 0;
    width: 100%;
  }

  /* Fix supercharge section */
  .supercharge {
    padding: 3rem 1rem;
    text-align: center;
  }

  .supercharge .container {
    padding: 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 2rem !important;
    margin-bottom: 1rem;
  }

  /* Fix feature cards */
  .features-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .feature-card {
    padding: 1.5rem;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto 1rem auto;
  }

  /* Fix World Radio section */
  .featured-product {
    padding: 3rem 1rem;
  }

  .featured-product .container {
    padding: 0;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-content {
    text-align: center;
  }

  /* Fix CTA section */
  .cta-section {
    padding: 2rem 1rem;
  }

  .cta-card {
    padding: 2rem 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons a {
    width: 100%;
    justify-content: center;
  }

  /* Fix Why Choose section */
  .why-choose {
    padding: 3rem 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }

  /* Fix navigation */
  .main-nav {
    padding: 0.75rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
  }

  .nav-right {
    gap: 0.5rem;
  }

  .btn-get-started {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  /* Fix footer */
  .site-footer {
    padding: 3rem 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .link-group {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Additional fixes for very small screens */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem !important;
  }

  .badge {
    width: auto;
    font-size: 0.8125rem;
  }

  .feature-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}



