:root {
    --paradise-purple: #8B2FC9;
    --paradise-pink: #E91E8C;
    --paradise-gradient: linear-gradient(135deg, #8B2FC9 0%, #E91E8C 50%, #FF6B35 100%);
    --nine15-green: #C8FF00;
    --nine15-dark: #1A1A1A;
    --candy-orange: #FF6B35;
    --candy-blue: #00B4D8;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark: #212529;
    --section-padding: 100px 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.navbar.scrolled .logo {
    color: var(--dark);
}

.logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

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

.navbar.scrolled .logo span {
    background: var(--paradise-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Brand link buttons */
.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--paradise-purple);
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 12px;
}

.brand-link:hover {
    gap: 10px;
    opacity: 0.8;
}

.brand-link.light {
    color: rgba(255,255,255,0.7);
}

.brand-link.light:hover {
    color: var(--white);
}

.brand-link.green {
    color: var(--nine15-green);
}

/* Map */
.map-wrapper {
    margin-top: 48px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--dark);
}

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

.navbar.scrolled .nav-links a:hover {
    color: var(--paradise-purple);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--paradise-gradient);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--white) !important;
    color: var(--paradise-purple) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.navbar.scrolled .nav-cta {
    background: var(--paradise-gradient) !important;
    color: var(--white) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 47, 201, 0.3);
}

.nav-cta::after {
    display: none !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: all 0.3s;
}

.navbar.scrolled .mobile-toggle span {
    background: var(--dark);
}

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

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

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1a0533 0%, #2d1052 25%, #4a1a6b 50%, #6b2085 75%, #8B2FC9 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(233, 30, 140, 0.15) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: heroGlow 6s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #FFD700, #FF6B35, #E91E8C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--paradise-gradient);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 47, 201, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* ==================== SECTION STYLES ==================== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--paradise-purple);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--medium-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==================== SERVICES OVERVIEW ==================== */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

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

.service-card {
    background: var(--light-gray);
    border-radius: 24px;
    padding: 48px 36px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--paradise-gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    overflow: hidden;
}

.service-icon img.service-brand-logo {
    display: block;
    width: 64px;
    height: 64px;
    max-width: 64px;
    max-height: 64px;
    object-fit: contain;
}

.service-icon.radio {
    background: linear-gradient(135deg, rgba(139, 47, 201, 0.1), rgba(233, 30, 140, 0.1));
}

.service-icon.nine15 {
    background: rgba(200, 255, 0, 0.15);
}

.service-icon.candy {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 180, 216, 0.1));
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    font-weight: 600;
    color: var(--paradise-purple);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 12px;
}

/* ==================== WHY ADVERTISE ==================== */
.why-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.why-visual {
    position: relative;
}

.why-visual-box {
    background: var(--paradise-gradient);
    border-radius: 32px;
    padding: 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-visual-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.why-visual-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.why-visual-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.why-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--paradise-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
}

.why-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-item p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.testimonial-media {
    position: relative;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
}

.testimonial-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 47, 201, 0.5), rgba(233, 30, 140, 0.35) 45%, rgba(0, 0, 0, 0.2) 100%);
}

.testimonial-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: rgba(0,0,0,0.45);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
}

.testimonial-body {
    padding: 28px;
}

.testimonial-company {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 18px;
}

.testimonial-person {
    font-weight: 700;
    color: var(--dark);
}

/* ==================== LOGO LOOP ==================== */
.logo-loop {
    padding: 48px 0;
    background: linear-gradient(135deg, #12081f 0%, #2a0d3d 45%, #0d1b2e 100%);
    overflow: hidden;
}

.logo-loop-title {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.logo-marquee-viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-marquee {
    display: flex;
    width: max-content;
    gap: 48px;
    animation: logoMarquee 60s linear infinite;
}

.logo-track {
    display: flex;
    gap: 48px;
    align-items: center;
    padding: 12px 0;
    flex-shrink: 0;
}

.logo-loop.reverse .logo-marquee {
    animation-direction: reverse;
}

.logo-loop.reverse .logo-track {
    flex-direction: row-reverse;
}

.logo-track img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.9;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
    transition: opacity 0.3s ease;
}

.logo-track img:hover {
    opacity: 1;
}

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

/* ==================== PARADISE FM ==================== */
.paradise-fm {
    padding: var(--section-padding);
    background: var(--white);
}

.paradise-fm .section-label {
    color: var(--paradise-purple);
}

.station-intro {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.station-fact {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
}

.station-fact .fact-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.station-fact h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.station-fact p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* Rates Table */
.rates-block {
    margin-bottom: 48px;
}

.rates-block h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.rates-block > p {
    color: var(--medium-gray);
    margin-bottom: 24px;
}

.rates-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid #E9ECEF;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.rates-table thead {
    background: var(--light-gray);
}

.rates-table th {
    padding: 16px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--medium-gray);
    white-space: nowrap;
}

.rates-table td {
    padding: 16px 24px;
    border-top: 1px solid #E9ECEF;
    white-space: nowrap;
}

.rates-table tbody tr:hover {
    background: rgba(139, 47, 201, 0.03);
}

.time-info {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 32px;
}

.time-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.time-info ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.time-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.time-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.time-badge.prime { background: rgba(139, 47, 201, 0.1); color: var(--paradise-purple); }
.time-badge.atime { background: rgba(233, 30, 140, 0.1); color: var(--paradise-pink); }
.time-badge.random { background: rgba(255, 107, 53, 0.1); color: var(--candy-orange); }

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.package-card {
    border: 2px solid #E9ECEF;
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
}

.package-card:hover {
    border-color: var(--paradise-purple);
    box-shadow: 0 12px 40px rgba(139, 47, 201, 0.1);
}

.package-card.featured {
    border-color: var(--paradise-purple);
    background: linear-gradient(180deg, rgba(139, 47, 201, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.package-card.featured::before {
    content: var(--popular-text, 'Populair');
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--paradise-gradient);
    color: var(--white);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.package-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.package-price {
    margin-bottom: 24px;
}

.package-price .amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--paradise-purple);
}

.package-price .period {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.package-price .basis {
    font-size: 0.8rem;
    color: var(--medium-gray);
    display: block;
    margin-top: 4px;
}

.package-value {
    display: inline-block;
    background: rgba(139, 47, 201, 0.08);
    color: var(--paradise-purple);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

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

.package-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #495057;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.5;
}

.package-features li::before {
    content: '✓';
    color: var(--paradise-purple);
    font-weight: 700;
    flex-shrink: 0;
}

.package-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--paradise-purple);
    color: var(--paradise-purple);
}

.package-btn:hover {
    background: var(--paradise-gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.package-card.featured .package-btn {
    background: var(--paradise-gradient);
    border-color: transparent;
    color: var(--white);
}

.package-card.featured .package-btn:hover {
    box-shadow: 0 8px 24px rgba(139, 47, 201, 0.3);
}

/* Discount banner */
.discount-banner {
    background: var(--paradise-gradient);
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    color: var(--white);
    flex-wrap: wrap;
    gap: 24px;
}

.discount-banner h4 {
    font-size: 1.4rem;
    font-weight: 800;
}

.discount-banner p {
    opacity: 0.9;
    margin-top: 4px;
}

.discount-items {
    display: flex;
    gap: 24px;
}

.discount-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 16px;
}

.discount-item .pct {
    font-size: 1.8rem;
    font-weight: 900;
}

.discount-item .dur {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Sponsoring */
.sponsoring-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.sponsor-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 32px;
}

.sponsor-card .show-name {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.sponsor-card .show-time {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--paradise-purple);
    margin-bottom: 16px;
}

.sponsor-card .show-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--paradise-purple);
    margin-bottom: 16px;
}

.sponsor-card ul {
    list-style: none;
}

.sponsor-card ul li {
    font-size: 0.85rem;
    color: var(--medium-gray);
    padding: 4px 0;
    display: flex;
    gap: 8px;
}

.sponsor-card ul li::before {
    content: '•';
    color: var(--paradise-purple);
    font-weight: 700;
}

/* Extra services */
.extra-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.extra-service {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 28px;
}

.extra-service h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.extra-service .price-tag {
    color: var(--paradise-purple);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.extra-service p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ==================== 915 SECTION ==================== */
.nine15-section {
    padding: var(--section-padding);
    background: var(--nine15-dark);
    color: var(--white);
}

.nine15-section .section-label {
    color: var(--nine15-green);
}

.nine15-section .section-title {
    color: var(--white);
}

.nine15-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.nine15-section .station-fact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 255, 0, 0.1);
}

.nine15-section .station-fact h4 {
    color: var(--nine15-green);
}

.nine15-section .station-fact p {
    color: rgba(255, 255, 255, 0.6);
}

.nine15-section .time-info {
    background: rgba(255, 255, 255, 0.05);
}

.nine15-section .time-info h4 {
    color: var(--nine15-green);
}

.nine15-section .time-info li {
    color: rgba(255, 255, 255, 0.6);
}

.nine15-section .time-badge.prime { background: rgba(200, 255, 0, 0.15); color: var(--nine15-green); }
.nine15-section .time-badge.atime { background: rgba(200, 255, 0, 0.1); color: #A3D900; }
.nine15-section .time-badge.random { background: rgba(200, 255, 0, 0.08); color: #8AB800; }

.nine15-section .rates-table-wrapper {
    border-color: rgba(255, 255, 255, 0.1);
}

.nine15-section .rates-table thead {
    background: rgba(255, 255, 255, 0.05);
}

.nine15-section .rates-table th {
    color: var(--nine15-green);
}

.nine15-section .rates-table td {
    border-top-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
}

.nine15-section .rates-table tbody tr:hover {
    background: rgba(200, 255, 0, 0.03);
}

.nine15-section .package-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.nine15-section .package-card:hover {
    border-color: var(--nine15-green);
    box-shadow: 0 12px 40px rgba(200, 255, 0, 0.05);
}

.nine15-section .package-card.featured {
    border-color: var(--nine15-green);
    background: linear-gradient(180deg, rgba(200, 255, 0, 0.05) 0%, rgba(26, 26, 26, 1) 100%);
}

.nine15-section .package-card.featured::before {
    background: var(--nine15-green);
    color: var(--nine15-dark);
}

.nine15-section .package-name {
    color: var(--white);
}

.nine15-section .package-price .amount {
    color: var(--nine15-green);
}

.nine15-section .package-price .period,
.nine15-section .package-price .basis {
    color: rgba(255, 255, 255, 0.5);
}

.nine15-section .package-value {
    background: rgba(200, 255, 0, 0.1);
    color: var(--nine15-green);
}

.nine15-section .package-features li {
    color: rgba(255, 255, 255, 0.7);
}

.nine15-section .package-features li::before {
    color: var(--nine15-green);
}

.nine15-section .package-btn {
    border-color: var(--nine15-green);
    color: var(--nine15-green);
}

.nine15-section .package-btn:hover {
    background: var(--nine15-green);
    color: var(--nine15-dark);
}

.nine15-section .package-card.featured .package-btn {
    background: var(--nine15-green);
    border-color: var(--nine15-green);
    color: var(--nine15-dark);
}

.nine15-section .discount-banner {
    background: var(--nine15-green);
    color: var(--nine15-dark);
}

.nine15-section .discount-item {
    background: rgba(0, 0, 0, 0.15);
    color: var(--nine15-dark);
}

.nine15-section .extra-service {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 255, 0, 0.08);
}

.nine15-section .extra-service h4 {
    color: var(--white);
}

.nine15-section .extra-service .price-tag {
    color: var(--nine15-green);
}

.nine15-section .extra-service p {
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== CANDYBOX ==================== */
.candybox-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.candybox-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(255, 107, 53, 0.04) 0%, transparent 70%);
}

.candy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.candy-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.candy-content > p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.candy-features li {
    padding: 12px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.candy-features li .feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 180, 216, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.candy-features li h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.candy-features li p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

.candy-visual {
    position: relative;
}

.candy-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.candy-card {
    background: var(--light-gray);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
}

.candy-card:nth-child(2) {
    transform: translateY(20px);
}

.candy-card:nth-child(3) {
    transform: translateY(-20px);
}

.candy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.candy-card:nth-child(2):hover {
    transform: translateY(12px);
}

.candy-card:nth-child(3):hover {
    transform: translateY(-28px);
}

.candy-card .emoji {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.candy-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.candy-card p {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

/* ==================== PRODUCTION ==================== */
.production-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.production-banner {
    background: linear-gradient(135deg, #1a0533, #2d1052);
    border-radius: 32px;
    padding: 60px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.production-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.production-banner > div > p {
    font-size: 1.05rem;
    opacity: 0.8;
    line-height: 1.7;
}

.production-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.prod-feat {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
}

.prod-feat h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--nine15-green);
}

.prod-feat p {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.5;
}

/* ==================== CTA / CONTACT ==================== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a0533 0%, #2d1052 25%, #4a1a6b 50%, #6b2085 75%, #8B2FC9 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(233, 30, 140, 0.1) 0%, transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(200, 255, 0, 0.05) 0%, transparent 70%);
}

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

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.cta-methods {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.cta-method {
    color: var(--white);
    text-align: center;
}

.cta-method .method-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    margin-bottom: 8px;
}

.cta-method .method-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-method a {
    color: var(--white);
    text-decoration: none;
}

.cta-method a:hover {
    text-decoration: underline;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0D0D0D;
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-brand .logo {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* ==================== LANGUAGE SWITCHER ==================== */
.lang-switcher {
    position: relative;
    margin-left: 12px;
}

.lang-current {
    background: none;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.lang-current:hover {
    border-color: rgba(255,255,255,0.8);
}

.navbar.scrolled .lang-current {
    color: var(--dark);
    border-color: rgba(0,0,0,0.2);
}

.navbar.scrolled .lang-current:hover {
    border-color: var(--paradise-purple);
    color: var(--paradise-purple);
}

.lang-current svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
}

.lang-current svg path {
    fill: currentColor;
}

.lang-switcher.open .lang-current svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    overflow: hidden;
    min-width: 130px;
    z-index: 1001;
}

.lang-switcher.open .lang-dropdown {
    display: block;
}

.lang-option {
    display: block;
    width: 100%;
    padding: 10px 18px;
    border: none;
    background: none;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
}

.lang-option:hover {
    background: var(--light-gray);
}

.lang-option.active {
    color: var(--paradise-purple);
    font-weight: 700;
}

@media (max-width: 768px) {
    .lang-switcher {
        position: absolute;
        top: 50%;
        right: 60px;
        transform: translateY(-50%);
        margin-left: 0;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-grid,
    .candy-grid,
    .production-banner {
        grid-template-columns: 1fr;
    }

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

    .sponsoring-grid,
    .extra-services {
        grid-template-columns: 1fr;
    }

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

    .hero-stats {
        gap: 24px;
    }

    .discount-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }

    .navbar {
        padding: 14px 0;
    }

    .navbar .container {
        justify-content: flex-start;
        gap: 12px;
    }

    .navbar .logo span {
        display: none;
    }

    .navbar .logo-icon {
        width: 36px;
        height: 36px;
    }

    .lang-switcher {
        position: static;
        transform: none;
        margin-left: auto;
    }

    .lang-current {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .mobile-toggle {
        margin-left: 8px;
    }

    .hero {
        align-items: flex-start;
        padding-top: 120px;
        padding-bottom: 48px;
    }

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

    .testimonial-body {
        padding: 22px;
    }

    .logo-loop {
        padding: 36px 0;
    }

    .logo-loop-title {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .logo-marquee {
        gap: 28px;
        animation-duration: 40s;
    }

    .logo-track {
        gap: 28px;
    }

    .logo-track img {
        height: 28px;
        max-width: 120px;
        object-fit: contain;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--dark) !important;
    }

    .mobile-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .station-intro {
        grid-template-columns: 1fr;
    }

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

    .candy-card:nth-child(2),
    .candy-card:nth-child(3) {
        transform: none;
    }

    .production-banner {
        padding: 36px;
    }

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

    .discount-items {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .cta-methods {
        flex-direction: column;
        gap: 24px;
    }
}

/* Subpage styles */
.subpage-hero {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, #12081f 0%, #2a0d3d 45%, #0d1b2e 100%);
    text-align: center;
}
.subpage-hero .section-label {
    color: rgba(255,255,255,0.7);
}
.subpage-hero .section-title {
    color: var(--white);
}
.subpage-hero .section-subtitle {
    color: rgba(255,255,255,0.6);
}
.subpage-hero .brand-link {
    color: rgba(255,255,255,0.5);
}
.subpage-hero .brand-link:hover {
    color: var(--white);
}
.subpage-hero .breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 16px;
}
.subpage-hero .breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}
.subpage-hero .breadcrumb a:hover {
    color: var(--white);
}
.subpage-hero .breadcrumb span {
    color: rgba(255,255,255,0.3);
    margin: 0 8px;
}

.subpage-brand-logo {
    display: block;
    width: 180px;
    height: auto;
    max-height: 120px;
    margin: 16px auto 24px;
    object-fit: contain;
}
