/* Festival Events Ticketing - Premium High-Energy Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap');

:root {
    /* Palette: New Design System (Figma Tokens) */
    --bg-core: #030405;
    --bg-secondary: #0b0a15;
    --bg-card: rgba(11, 10, 21, 0.8);
    --bg-card-hover: rgba(11, 10, 21, 0.6);

    /* Brand Accents - Peach/Violet/Blue gradient palette */
    --accent-primary: #c4b5ff; /* Violet */
    --accent-secondary: #ffbfb5; /* Peach */
    --accent-tertiary: #b5bfff; /* Blue */
    --accent-glow: rgba(196, 181, 255, 0.4);

    /* Gradient */
    --gradient-primary: linear-gradient(138.91deg, #ffbfb5 22%, #c4b5ff 55%, #b5bfff 85%);

    /* Text */
    --text-main: #ebebee;
    --text-muted: #9f9cb0;
    --text-dark: rgba(11, 10, 21, 0.9);

    /* Borders */
    --border-light: rgba(235, 235, 238, 0.1);
    --border-hover: rgba(235, 235, 238, 0.2);

    /* Effects */
    --glass-blur: 20px;
    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Reset & Typography */
html, body {
    background-color: var(--bg-core);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1rem 0;
}

p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Background Effects */
.gradient-mesh {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.12), transparent 25%);
    pointer-events: none;
}

.symbols-bg { display: none; }

/* Layout Utilities */
.wrapper { position: relative; overflow: hidden; }
.inner-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.flex { display: flex; justify-content: space-between; align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Typography Styles */
.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #A5B4FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-orange-text {
    background: linear-gradient(to right, #F472B6, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
#main-header {
    padding: 20px 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

#main-header.scrolled {
    background: rgba(3, 3, 5, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
}

header nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0; padding: 0;
}

header nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

header nav a:hover { color: var(--text-main); }

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s var(--ease-elastic);
    cursor: pointer;
    line-height: 1;
}

.button.gradient-orange {
    background: var(--text-main);
    color: var(--bg-core);
    border: 1px solid var(--text-main);
}

.button.gradient-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.button.gradient-purple {
    background: radial-gradient(54.09% 195.21% at 92.23% -4.17%, #bbbff433, #6b5fe799), radial-gradient(57.49% 47.97% at 0% 50%, #bbbff4, #413778);
    color: #FFFFFF;
}

.button.gradient-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.button.button-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
}

.button.button-outline:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
#hero {
    padding: 120px 0 80px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: center;
}

.festival-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    color: #818CF8;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 100%;
}

.hero-content .h2 {
    font-size: 1.25rem;
    max-width: 640px;
    margin-bottom: 32px;
    color: var(--text-muted);
}

.stat-highlight {
    font-family: 'Clash Display', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.hero-benefits {
    margin-top: 40px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: transform 0.2s;
}

.hero-benefits li i { color: var(--accent-secondary); }
.hero-benefits li strong { color: var(--text-main); display: block; }
.hero-benefits li span { font-size: 14px; color: var(--text-muted); }

/* Visuals */
.hero-platform {
    position: relative;
    perspective: 1000px;
    max-width: 100%;
}

.platform-preview img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 80px -20px rgba(0, 0, 0, 0.8);
}

.main-preview {
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-platform:hover .main-preview {
    transform: rotateY(-2deg) rotateX(1deg) scale(1.02);
}

.floating-preview {
    position: absolute;
    top: 20%; right: -10%;
    width: 60%;
    transform: rotateY(5deg) translateZ(40px);
    box-shadow: 0 30px 60px -10px rgba(0,0,0,0.9);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.1);
}

@keyframes float {
    0%, 100% { transform: rotateY(5deg) translateZ(40px) translateY(0); }
    50% { transform: rotateY(5deg) translateZ(40px) translateY(-20px); }
}

/* Feature Cards (Bento Grid Style) */
section { padding: 80px 0; }

.title-top { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.title-top h2 { font-size: 3rem; margin-bottom: 16px; }

.pain-point-box, .solution-box, .feature-container {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s var(--ease-elastic);
    position: relative;
    overflow: hidden;
}

.pain-point-box::before, .solution-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.pain-point-box:hover, .solution-box:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
}

.pain-point-box:hover::before, .solution-box:hover::before { opacity: 1; }

.icon-box {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.pain-point-box:hover .icon-box {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
    color: #fff;
}

.solution-box:hover .icon-box {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
}

/* Comparison Table */
.comparison-table {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 24px;
    overflow-x: auto;
}

table { width: 100%; border-collapse: collapse; }
th { text-align: left; padding: 24px; color: var(--text-muted); font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
td { padding: 24px; border-top: 1px solid var(--border-light); vertical-align: middle; }
.highlight-col { background: rgba(99, 102, 241, 0.05); border-radius: 12px; }
.highlight-col strong { color: var(--accent-primary); }
.check { color: var(--accent-tertiary); }
.cross { color: var(--border-hover); opacity: 0.5; }
.feature-icon { vertical-align: -3px; margin-right: 6px; color: var(--text-muted); flex-shrink: 0; }

/* Logos */
.grid-logos {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 40px; align-items: center; justify-items: center;
    opacity: 0.6;
}
.grid-logos img { filter: grayscale(100%); transition: 0.3s; }
.grid-logos img:hover { filter: grayscale(0%); opacity: 1; }

/* Stats */
.stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; margin-top: 80px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
}
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--text-main); display: block; margin-bottom: 8px; }
.stat-label { color: var(--text-muted); font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; }

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px; /* Ensure space below grid */
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px;
    display: flex; flex-direction: column;
    height: 100%;
}
.testimonial-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 18px;
}
.testimonial-stars { color: #FBBF24; margin-bottom: 16px; font-size: 14px; }
.testimonial-metrics { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--border-light); display: flex; gap: 24px; }
.metric-value { display: block; font-weight: 700; color: var(--text-main); }
.metric-label { font-size: 12px; color: var(--text-muted); }

/* Guarantee Box */
.guarantee-box {
    background: var(--bg-card);
    border: 1px solid var(--accent-primary);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.guarantee-icon {
    font-size: 48px;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.guarantee-box h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.guarantee-box p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer { padding: 80px 0 40px; border-top: 1px solid var(--border-light); margin-top: 80px; }

/* Mobile Menu */
.mobile-menu-icon { display: none; }

/* ================================================
   RESPONSIVE STYLES
   ================================================ */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        order: 1;
        text-align: center;
    }

    .hero-platform {
        order: 2;
        margin-top: 20px;
    }

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

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

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

/* Tablets */
@media (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content .h2, .title-top { margin-left: auto; margin-right: auto; }
    .hero-benefits { text-align: left; }

    /* Mobile Ordering: Content FIRST, Image SECOND */
    .hero-content { order: 1; }
    .hero-platform {
        order: 2;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .platform-preview img { max-width: 100%; }

    .grid-2, .stats-bar, .testimonial-grid { grid-template-columns: 1fr; }
    .floating-preview { display: none; }
    .button-row { justify-content: center; flex-wrap: wrap; gap: 12px; }
    h1 { font-size: 2.75rem; }

    /* Feature containers on tablet */
    .feature-container,
    .pain-point-box,
    .solution-box {
        padding: 28px;
    }

    .mobile-menu-icon { display: block; width: 30px; height: 30px; position: relative; z-index: 1001; cursor: pointer; }
    .mobile-menu-icon span { display: block; height: 2px; width: 100%; background: #fff; margin-bottom: 6px; position: absolute; left: 0; transition: all 0.3s ease; }
    .mobile-menu-icon span:nth-child(1) { top: 4px; }
    .mobile-menu-icon span:nth-child(2), .mobile-menu-icon span:nth-child(3) { top: 14px; }
    .mobile-menu-icon span:nth-child(4) { top: 24px; }

    .mobile-menu-icon.open span:nth-child(1), .mobile-menu-icon.open span:nth-child(4) { opacity: 0; top: 14px; }
    .mobile-menu-icon.open span:nth-child(2) { transform: rotate(45deg); }
    .mobile-menu-icon.open span:nth-child(3) { transform: rotate(-45deg); }

    header nav {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(3, 3, 5, 0.98);
        backdrop-filter: blur(20px);
        z-index: 999;
        padding: 80px 24px;
        align-items: flex-start;
        justify-content: center;
    }

    body.showMobileMenu { overflow: hidden; }
    body.showMobileMenu header nav { display: flex; }

    header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
    }

    header nav ul li { width: 100%; text-align: center; }
    header nav a { font-size: 1.25rem; display: block; padding: 12px; }
    header nav .button { width: 100%; justify-content: center; margin-top: 12px; }

    /* Section title adjustments */
    .title-top h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    /* Comparison tables - make scrollable */
    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table table {
        min-width: 500px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    /* Hero adjustments */
    #hero {
        padding: 80px 0 60px;
    }

    .hero-content h1,
    h1.seo-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        line-height: 1.2;
    }

    .hero-content .h2 {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Feature containers - prevent squashing */
    .feature-container,
    .pain-point-box,
    .solution-box {
        padding: 20px;
    }

    .feature-container h3,
    .pain-point-box h3,
    .solution-box h3 {
        font-size: 1.1rem;
    }

    /* Section titles */
    .title-top h2 {
        font-size: 1.5rem;
    }

    .title-top p {
        font-size: 1rem;
    }

    /* Grid gaps */
    .grid-2,
    .grid-3 {
        gap: 20px;
    }

    .grid-4 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Inner wrapper padding */
    .inner-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Buttons */
    .button {
        padding: 14px 24px;
        font-size: 14px;
    }

    .button-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .button-row .button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Stats */
    .stats-bar {
        padding: 24px;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 24px;
    }

    /* Footer */
    footer {
        padding: 40px 0 24px;
    }

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

    /* Hero benefits */
    .hero-benefits li {
        padding: 12px;
    }

    /* Icon boxes */
    .icon-box {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 16px;
    }

    /* Guarantee box */
    .guarantee-box {
        padding: 32px 24px;
        margin-top: 40px;
    }

    .guarantee-icon {
        font-size: 36px;
    }

    .guarantee-box h3 {
        font-size: 1.5rem;
    }

    /* Logo grids */
    .grid-logos {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 24px;
    }

    .grid-logos img {
        max-width: 80px;
    }

    /* Social proof popup */
    .social-proof-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-content h1,
    h1.seo-title {
        font-size: 1.4rem;
    }

    .hero-content .h2 {
        font-size: 0.95rem;
    }

    .title-top h2 {
        font-size: 1.3rem;
    }

    .feature-container,
    .pain-point-box,
    .solution-box {
        padding: 16px;
    }

    .feature-container h3,
    .pain-point-box h3,
    .solution-box h3 {
        font-size: 1rem;
    }

    .inner-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }

    .button {
        padding: 12px 20px;
        font-size: 13px;
    }

    .stats-bar {
        padding: 20px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 12px;
    }

    .testimonial-card {
        padding: 18px;
    }

    .guarantee-box {
        padding: 24px 16px;
    }

    .guarantee-box h3 {
        font-size: 1.25rem;
    }
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100vw;
}

/* Trust Badges */
.trust-badges { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin: 40px 0; }
.trust-badge { display: flex; align-items: center; gap: 10px; color: var(--text-muted); background: rgba(255,255,255,0.03); padding: 10px 20px; border-radius: 100px; font-size: 14px; border: 1px solid transparent; }
.trust-badge i { font-size: 16px; }
.trust-badge.security i { color: var(--accent-tertiary); }
.trust-badge.payment i { color: var(--accent-primary); }

/* Social Proof */
.social-proof-popup {
    position: fixed; bottom: 32px; left: 32px;
    background: rgba(20, 20, 25, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--accent-tertiary);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 999;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 320px;
}
.social-proof-popup.show { transform: translateY(0); }
.popup-content { display: flex; align-items: flex-start; gap: 12px; }
.popup-icon { color: var(--accent-tertiary); margin-top: 2px; }
.popup-text strong { display: block; color: var(--text-main); margin-bottom: 2px; font-size: 14px; }
.popup-text span { color: var(--text-muted); font-size: 13px; line-height: 1.4; }
.popup-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 18px; padding: 0; position: absolute; top: 8px; right: 8px; opacity: 0; }
.social-proof-popup:hover .popup-close { opacity: 1; }

/* Demo Booking Modal & Form Styles */
/* High specificity to override partials */
html body .modal {
    background-color: rgba(3, 3, 5, 0.9) !important;
    backdrop-filter: blur(12px) !important;
}

html body .modal-content {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    color: var(--text-main) !important;
    padding: 40px !important;
    max-width: 500px !important;
}

html body .modal-content .close {
    color: var(--text-muted) !important;
    top: 24px !important;
    right: 24px !important;
    opacity: 0.7;
    transition: all 0.2s ease;
}

html body .modal-content .close:hover {
    color: var(--text-main) !important;
    opacity: 1;
    transform: rotate(90deg);
}

/* Form Styles */
html body #demo-booking-form {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

html body #demo-booking-form h2 {
    font-family: 'Clash Display', sans-serif !important;
    font-size: 2rem !important;
    margin-bottom: 12px !important;
    color: var(--text-main) !important;
}

html body #demo-booking-form h2 i {
    color: var(--accent-secondary) !important;
}

html body #demo-booking-form p {
    color: var(--text-muted) !important;
    font-size: 1rem !important;
    margin-bottom: 32px !important;
}

/* Inputs */
html body .form-field-container input[type="text"],
html body .form-field-container input[type="email"] {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-main) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

html body .form-field-container input:focus {
    border-color: var(--accent-primary) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1) !important;
    outline: none !important;
}

/* Radio Buttons */
html body .radio-group {
    border: 1px solid var(--border-light) !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: 16px !important;
    padding: 20px !important;
}

html body .radio-label {
    color: var(--text-main) !important;
    font-weight: 600 !important;
    margin-bottom: 16px !important;
}

html body .radio-option {
    padding: 12px !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

html body .radio-option:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

html body .radio-option input[type="radio"] {
    accent-color: var(--accent-primary) !important;
    border-color: var(--text-muted) !important;
    background: transparent !important;
}

html body .radio-option input[type="radio"]:checked {
    background-color: var(--accent-primary) !important;
    border-color: var(--accent-primary) !important;
}

html body .radio-option span {
    color: var(--text-main) !important;
    font-size: 0.95rem !important;
}

/* Submit Button - New Design System */
html body #book-now-form-submit-btn {
    background: var(--gradient-primary) !important;
    color: var(--text-dark) !important;
    border-radius: 999px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 16px 24px !important;
    margin-top: 24px !important;
    box-shadow: 0 4px 24px rgba(196, 181, 255, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1px !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
}

html body #book-now-form-submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 32px rgba(196, 181, 255, 0.4) !important;
}

/* Trust Indicators in Modal */
html body .trust-indicators {
    margin-top: 24px !important;
    border-top: 1px solid var(--border-light) !important;
    padding-top: 20px !important;
}

html body .trust-badge {
    color: var(--text-muted) !important;
    font-size: 0.85rem !important;
}

html body .trust-badge i {
    color: var(--accent-tertiary) !important;
}
