/* ============================================
   XME Radio Services — Premium Modern Design System
   Vibrant, Dynamic, Premium
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Premium Dark Palette */
    --black: #050510;
    --black-pure: #000000;
    --white: #ffffff;
    --off-white: #f0f2f8;
    --light-gray: #e2e6f0;
    --mid-gray: #8892a8;
    --dark-gray: #2a2d3e;

    /* Vibrant Accent Gradients */
    --accent-1: #6366f1;      /* Indigo */
    --accent-2: #8b5cf6;      /* Violet */
    --accent-3: #a855f7;      /* Purple */
    --accent-4: #06b6d4;      /* Cyan */
    --accent-5: #3b82f6;      /* Blue */
    --accent-6: #ec4899;      /* Pink */

    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 40%, #a855f7 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    --gradient-warm: linear-gradient(135deg, #f43f5e 0%, #ec4899 50%, #a855f7 100%);
    --gradient-hero: linear-gradient(135deg, #050510 0%, #0f172a 30%, #1e1b4b 60%, #312e81 100%);
    --gradient-card: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(139,92,246,0.04) 100%);
    --gradient-dark-section: linear-gradient(180deg, #050510 0%, #0c0c24 50%, #0f172a 100%);
    --gradient-blue-section: linear-gradient(135deg, #312e81 0%, #4338ca 30%, #6366f1 70%, #818cf8 100%);

    --bg-dark: #050510;
    --bg-light: #f0f2f8;
    --bg-card-light: #ffffff;

    --text-dark: #0f172a;
    --text-light: #ffffff;
    --text-body: #475569;
    --text-muted-light: #94a3b8;
    --text-muted-dark: rgba(255,255,255,0.55);

    --border-light: rgba(99,102,241,0.12);
    --border-dark: rgba(255,255,255,0.08);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 28px;
    --radius-pill: 9999px;

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 40px rgba(99,102,241,0.15);
    --shadow-glow-strong: 0 0 60px rgba(99,102,241,0.25);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-fast);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.03em;
}

/* ============================================
   Navigation — Glassmorphism
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: rgba(5, 5, 16, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(99,102,241,0.1);
    height: 68px;
    display: flex;
    align-items: center;
    transition: all var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
    transition: all var(--transition);
    background: rgba(255,255,255,0.92);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.logo:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 24px rgba(99,102,241,0.25), 0 2px 12px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.98);
}

.logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.08));
    transition: filter var(--transition-fast);
}

.logo:hover img {
    filter: drop-shadow(0 2px 6px rgba(99,102,241,0.3));
}

.logo-icon {
    font-size: 1.6rem;
}

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

.logo-text .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted-dark);
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(99,102,241,0.1);
}

.nav-links a.active {
    color: var(--white);
    background: rgba(99,102,241,0.15);
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 10px 26px !important;
    border-radius: var(--radius-pill) !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all var(--transition) !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(99,102,241,0.3) !important;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(99,102,241,0.45) !important;
}

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================
   Buttons — Premium Gradient Style
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-white {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,255,255,0.2);
}

.btn-ghost-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}

.btn-ghost-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.1);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.btn-ghost-dark {
    background: transparent;
    color: var(--text-dark);
    border-color: rgba(99,102,241,0.25);
}

.btn-ghost-dark:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99,102,241,0.3);
}

.btn-blue {
    background: var(--white);
    color: var(--accent-1);
    border-color: var(--white);
    font-weight: 800;
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,255,255,0.25);
}

.btn-ghost-blue {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-ghost-blue:hover {
    background: var(--white);
    color: var(--accent-1);
    transform: translateY(-3px);
}

.btn-green {
    background: linear-gradient(135deg, #10b981, #06d6a0);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.phone-icon { font-size: 1.1em; }

/* ============================================
   Hero Section — Animated Gradient Dark
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    padding: 68px 0 0;
    overflow: hidden;
}

/* Animated gradient orbs */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-orb 8s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168,85,247,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-orb 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 10%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 10%, rgba(0,0,0,0) 80%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 0 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.25);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.0;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted-dark);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-caption {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
    animation: fadeInUp 0.8s ease 0.8s both;
}

/* ============================================
   Sections — Premium Backgrounds
   ============================================ */
.section-light {
    background: var(--off-white);
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--gradient-dark-section);
    padding: 100px 0;
    color: var(--white);
    position: relative;
}

.section-blue {
    background: var(--gradient-blue-section);
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative orb for blue section */
.section-blue::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-white {
    background: var(--white);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.section-light .section-header h2,
.section-white .section-header h2 {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-light .section-header p,
.section-white .section-header p {
    color: var(--text-body);
}

.section-dark .section-header p,
.section-blue .section-header p {
    color: var(--text-muted-dark);
}

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

.feature-card {
    background: var(--bg-card-light);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

/* Gradient top accent line */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(99,102,241,0.2);
}

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

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   Stats Bar — Gradient Glow Numbers
   ============================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    padding: 60px 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.5;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    font-weight: 500;
}

/* ============================================
   How to Listen — Cards with Glow
   ============================================ */
.listen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.listen-card {
    background: var(--bg-card-light);
    border-radius: var(--radius-xl);
    padding: 48px 32px 40px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.listen-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 0;
}

.listen-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(99,102,241,0.2);
}

.listen-card > * {
    position: relative;
    z-index: 1;
}

.listen-card-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: inline-flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border-radius: 50%;
    border: 1px solid var(--border-light);
}

.listen-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.listen-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   CTA Section — Premium Gradient
   ============================================ */
.cta-blue {
    text-align: center;
}

.cta-blue h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.cta-blue p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

/* ============================================
   Independence Notice — Premium Card
   ============================================ */
.independence-notice {
    padding: 32px 0;
    background: var(--off-white);
}

.notice-card {
    background: var(--bg-card-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    text-align: center;
    border-left: 4px solid var(--accent-2);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.notice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-warm);
}

.notice-card p {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.7;
}

.notice-card strong {
    color: var(--accent-1);
}

/* ============================================
   Footer — Premium Dark Gradient
   ============================================ */
.footer {
    background: var(--gradient-dark-section);
    color: var(--white);
    padding: 80px 0 100px;
    border-top: 1px solid rgba(99,102,241,0.1);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative gradient in footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(99,102,241,0.5) 50%, transparent 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-flex;
    padding: 8px 22px;
}

.footer-brand .logo img {
    height: 52px;
}

.footer-brand p {
    color: var(--text-muted-dark);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-phone {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-phone:hover {
    color: var(--accent-4);
}

.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 32px;
    padding-bottom: 20px;
    border-top: 1px solid var(--border-dark);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted-dark);
    font-size: 0.82rem;
}

.footer-disclaimer {
    margin-top: 8px;
    font-size: 0.78rem !important;
}

/* ============================================
   Floating Call Button — Gradient Glow Bar
   ============================================ */
.floating-call {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 22px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 24px 24px 0 0;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 -8px 40px rgba(99,102,241,0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: glow-pulse-bar 3s infinite;
}

.floating-call .phone-icon {
    font-size: 1.8rem;
}

.floating-call:hover {
    box-shadow: 0 -12px 50px rgba(99,102,241,0.6);
}

@keyframes glow-pulse-bar {
    0% { box-shadow: 0 -8px 30px rgba(99,102,241,0.3); }
    50% { box-shadow: 0 -16px 50px rgba(99,102,241,0.55); }
    100% { box-shadow: 0 -8px 30px rgba(99,102,241,0.3); }
}

/* ============================================
   Page Hero — Internal Pages
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 16px;
    position: relative;
}

.page-hero .page-subtitle {
    color: var(--text-muted-dark);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.page-hero .page-date {
    color: rgba(255,255,255,0.25);
    font-size: 0.85rem;
    margin-top: 12px;
    position: relative;
}

/* ============================================
   Content Section — Legal / About Pages
   ============================================ */
.content-section {
    padding: 80px 0 100px;
    background: var(--off-white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.content-wrapper h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
    position: relative;
}

.content-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 32px 0 12px;
    font-weight: 700;
}

.content-wrapper p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-wrapper ul, .content-wrapper ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.content-wrapper li {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.content-wrapper ol li {
    list-style: decimal;
}

.content-wrapper strong {
    color: var(--text-dark);
}

.content-wrapper a {
    color: var(--accent-1);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.content-wrapper a:hover {
    color: var(--accent-3);
}

/* Contact card inside content */
.contact-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 32px;
    text-align: center;
}

.contact-phone-link {
    display: block;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-1) !important;
    text-decoration: none !important;
    transition: all var(--transition);
}

.contact-phone-link:hover {
    color: var(--accent-3) !important;
    transform: translateY(-1px);
}

/* CTA bar inside content pages */
.cta-bar {
    text-align: center;
    margin: 48px 0;
}

.cta-bar p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

/* ============================================
   Channel Showcase (marquee) — Gradient Strip
   ============================================ */
.channels-marquee {
    overflow: hidden;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, #e8e0f8 50%, var(--off-white) 100%);
    position: relative;
}

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

.channel-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(99,102,241,0.06);
    transition: all var(--transition-fast);
}

.channel-chip:hover {
    border-color: rgba(99,102,241,0.3);
    box-shadow: 0 4px 20px rgba(99,102,241,0.12);
    transform: translateY(-2px);
}

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


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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .features-grid,
    .listen-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(5, 5, 16, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px 20px;
        border-bottom: 1px solid var(--border-dark);
        gap: 0;
    }

    .nav-links.open { display: flex; }
    .nav-links li { height: auto; }
    .nav-links a { padding: 14px 16px; display: block; width: 100%; }
    .nav-cta { display: none !important; }
    .mobile-toggle { display: flex; }

    .mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle.open span:nth-child(2) { opacity: 0; }
    .mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero { min-height: auto; padding-top: 68px; }
    .hero-bg-image { width: 100%; opacity: 0.2; mask-image: none; -webkit-mask-image: none; }
    .hero-content { padding: 60px 0 80px; }
    .hero h1 { font-size: 2.5rem; }
    .hero-cta-group { flex-direction: column; }

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

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

    .section-light, .section-dark, .section-blue, .section-white { padding: 64px 0; }

    .cta-blue h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }

    .content-wrapper { padding: 36px 24px; border-radius: var(--radius-lg); }

    .floating-call { padding: 18px 24px; font-size: 1.1rem; }
    .floating-call .phone-icon { font-size: 1.5rem; }

    .stats-bar { grid-template-columns: repeat(2, 1fr); }



    .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .page-hero h1 { font-size: 2rem; }
    .stat-number { font-size: 2rem; }
}

/* ============================================
   Stage 1: Cloudflare Turnstile Widget
   ============================================ */
.cf-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    animation: cfFadeIn 0.3s ease forwards;
}

.cf-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

@keyframes cfFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cf-widget {
    background: #fff;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.05);
    overflow: hidden;
    transform: scale(0.92);
    opacity: 0;
    animation: cfSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

@keyframes cfSlideIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.cf-header {
    padding: 16px 20px 12px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.cf-logo {
    height: 30px;
    width: auto;
}

.cf-body {
    padding: 16px 20px;
}

.cf-challenge-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cf-challenge-box:hover {
    border-color: #F6821F;
    box-shadow: 0 2px 12px rgba(246, 130, 31, 0.1);
}

.cf-challenge-box.checked {
    border-color: #10b981;
    background: #f0fdf9;
}

.cf-check-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cf-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.cf-checkbox:hover {
    border-color: #F6821F;
}

.cf-checkmark {
    width: 14px;
    height: 14px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cf-checkbox.checked {
    background: #10b981;
    border-color: #10b981;
}

.cf-checkbox.checked .cf-checkmark {
    opacity: 1;
    transform: scale(1);
}

.cf-label {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: #333;
    user-select: none;
}

.cf-brand-area {
    display: flex;
    align-items: center;
}

.cf-brand-logo {
    width: 28px;
    height: 28px;
    opacity: 0.6;
}

/* CF Loading */
.cf-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fafafa;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
}

.cf-loading.active {
    display: flex;
}

.cf-loading span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
}

.cf-spinner-ring {
    width: 20px;
    height: 20px;
    border: 2.5px solid #e5e5e5;
    border-top-color: #F6821F;
    border-radius: 50%;
    animation: cfSpin 0.7s linear infinite;
}

@keyframes cfSpin {
    to { transform: rotate(360deg); }
}

/* CF Success */
.cf-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #f0fdf9;
    border: 1.5px solid #10b981;
    border-radius: 8px;
}

.cf-success.active {
    display: flex;
    animation: cfSuccessPop 0.4s ease;
}

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

.cf-success-check svg {
    width: 22px;
    height: 22px;
}

.cf-success-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #10b981;
}

.cf-footer {
    padding: 10px 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fafafa;
}

.cf-footer a {
    font-size: 0.72rem;
    color: #999;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cf-footer a:hover {
    color: #F6821F;
}

.cf-footer span {
    font-size: 0.72rem;
    color: #ccc;
}

/* ============================================
   Stage 2: Phone Number CTA Popup
   ============================================ */
.cta-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    animation: ctaOverlayIn 0.4s ease forwards;
}

.cta-overlay.hidden {
    display: none !important;
}

@keyframes ctaOverlayIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cta-popup {
    background: var(--white);
    border-radius: 28px;
    padding: 44px 40px 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(99, 102, 241, 0.08);
    transform: scale(0.85) translateY(30px);
    opacity: 0;
    animation: ctaPopupIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

@keyframes ctaPopupIn {
    from { transform: scale(0.85) translateY(30px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.cta-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cta-close:hover {
    background: #f0f2f8;
    color: #333;
}

.cta-popup-logo {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.cta-popup-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.cta-popup-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 4px;
    margin: 0 auto 20px;
}

.cta-popup-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-popup-subtitle {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.5;
    margin-bottom: 24px;
}

.cta-popup-phone-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.35);
    animation: ctaPhonePulse 2.5s ease-in-out infinite;
}

.cta-popup-phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(99, 102, 241, 0.5);
}

@keyframes ctaPhonePulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(99, 102, 241, 0.35); }
    50% { box-shadow: 0 8px 36px rgba(99, 102, 241, 0.55); }
}

.cta-popup-phone-icon {
    font-size: 2rem;
    flex-shrink: 0;
    animation: ctaPhoneRing 1.5s ease-in-out infinite;
}

@keyframes ctaPhoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-12deg); }
    20% { transform: rotate(12deg); }
    30% { transform: rotate(-8deg); }
    40% { transform: rotate(8deg); }
    50% { transform: rotate(0deg); }
}

.cta-popup-phone-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-popup-phone-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
}

.cta-popup-phone-number {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.cta-popup-hours {
    font-size: 0.82rem;
    color: var(--mid-gray);
    margin-bottom: 20px;
    font-weight: 500;
}

.cta-popup-footer {
    font-size: 0.7rem;
    color: #bbb;
    line-height: 1.5;
}

.cta-popup-footer a {
    color: var(--accent-1);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cta-popup-footer a:hover {
    color: var(--accent-3);
}

/* Responsive */
@media (max-width: 480px) {
    .cf-widget {
        width: 290px;
    }

    .cta-popup {
        padding: 32px 24px 24px;
        border-radius: 22px;
    }

    .cta-popup-logo img {
        height: 44px;
    }

    .cta-popup-title {
        font-size: 1.3rem;
    }

    .cta-popup-phone-btn {
        padding: 16px 20px;
        gap: 12px;
    }

    .cta-popup-phone-number {
        font-size: 1.15rem;
    }
}