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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: #1e293b;
    background-color: #f8fafc;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-wrap {
    text-align: center;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background: #0ea5e9;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Navigation */
.navbar-overlay {
    position: relative;
}

.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.navbar-brand {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.logo-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.025em;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin-left: auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: white;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    min-width: 200px;
    padding: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
}

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

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #64748b;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: #f8fafc;
    color: #0ea5e9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.btn-primary {
    background: #0ea5e9;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #0284c7;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-success {
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 12px;
    border-radius: 20px;
}

.btn-success:hover {
    background: #059669;
}

.btn-white {
    background: white;
    color: #0ea5e9;
}

.btn-white:hover {
    background: #f1f5f9;
}

.btn-light {
    background: white;
    color: #1e293b;
    padding: 1rem 2rem;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
}

.btn-light:hover {
    background: #f8fafc;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
    position: relative;
}

.hero-stripe {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: repeating-linear-gradient(45deg, white 0 12px, transparent 12px 24px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr; /* single column */
    gap: 2.5rem;
    align-items: center;       /* vertical alignment */
    justify-items: center;     /* horizontal centering */
    padding: 10rem 0 5rem 0;    /* increase top padding from 5rem to 8rem */
}


.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white; /* makes text white */
    line-height: 1.1;
    margin-bottom: 1.25rem;
}


.hero-text {
    display: flex;
    flex-direction: column; /* stack h1, p, buttons */
    justify-content: center; /* vertical centering */
    align-items: center;     /* horizontal centering */
    text-align: center;      /* center multi-line text */
}



.hero-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.demo-player {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.5rem;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.now-playing {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.album-art {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
}

.station-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.live-status {
    font-size: 0.875rem;
    opacity: 0.8;
}

.audio-player {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Trust Badges */
.trust-badges {
    background: white;
    padding: 2.5rem 0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Section Headers */
.section-header {
    max-width: 32rem;
    margin-bottom: 2.5rem;
}

.section-header.center {
    max-width: 32rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: #64748b;
    font-size: 1.125rem;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
}

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

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-card h3 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.feature-card ul {
    list-style: none;
    color: #64748b;
    font-size: 0.875rem;
}

.feature-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.feature-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    background: #0f4f5f;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 4rem 0;
}

.pricing-section .section-header {
    color: white;
}

.pricing-section .section-header h2 {
    color: white;
}

.pricing-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid #0ea5e9;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.25);
    transform: scale(1.02);
}

.plan-badge {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.plan-badge.popular {
    color: #0ea5e9;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
}

.period {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    margin-left: 0.25rem;
}

.pricing-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.features-list li {
    color: #475569;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.pricing-note {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.pricing-note a {
    color: #0ea5e9;
    font-weight: 600;
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* Comparison Table */
.comparison-table {
    margin-top: 3rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.875rem;
}

.comparison-table th {
    background: #f8fafc;
    color: #64748b;
    font-weight: 600;
}

.comparison-table td {
    color: #475569;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* CTA Strip */
.cta-strip {
    background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
    padding: 2.5rem 0;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Projects Section */
.projects-section {
    background: white;
    padding: 4rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: #f0f9ff;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.project-card h3 {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.project-audio {
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.faq-item[open] {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: #0f172a;
    list-style: none;
    padding: 0;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 300;
    color: #64748b;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-content {
    margin-top: 0.75rem;
    color: #64748b;
    line-height: 1.6;
}

/* Footer CTA */
.footer-cta {
    background: #1e40af;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.footer-cta h4 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 1.25rem;
    position: relative;
}

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

.footer-col h6 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0.75rem 0 2rem;
}

.footer-col p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-methods span {
    color: white;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icon {
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }
    
    .navbar-collapse {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 0 0 12px 12px;
    }
    
    .navbar-collapse.show {
        display: block;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
        margin: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 0.75rem;
        display: block;
        border-radius: 8px;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 0.5rem;
        border-radius: 8px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
details summary:focus {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

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

@media (max-width: 768px) {
  .hero-content {
    padding: 6rem 0 3rem 0; /* more breathing room at the top */
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 7rem 0 3rem 0; /* even more space for very small screens */
  }
}



/* Print styles */
@media print {
    .navbar,
    .preloader,
    .hero-section,
    .cta-strip,
    .footer-cta {
        display: none;
    }
}