:root {
    --bg-color: #0a0a0a;
    --bg-secondary: #111111;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --accent-color: #FF4500;
    /* Orange-Red - Updated from Logo */
    --accent-glow: #FF6347;
    /* Tomato */
    --highlight: #ffffff;
    /* White for sharp contrast */
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html,
body {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--highlight);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-glow));
    color: white;
    padding: 1rem 2rem;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.6);
}

.btn-primary:active {
    transform: scale(0.96) translateY(0);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--text-primary);
    background: rgba(0, 0, 0, 0.2);
    /* Safe background */
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--highlight);
    color: var(--highlight);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: scale(0.96) translateY(0);
}

/* Focus States for Accessibility (WCAG 2.4.7) */
.btn-primary:focus,
.btn-secondary:focus,
input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Remove outline for mouse users but keep for keyboard */
.btn-primary:focus:not(:focus-visible),
.btn-secondary:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    /* Slightly more transparent */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    /* Align menu to right since logo is gone */
    align-items: center;
}

.logo img {
    height: 40px;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-nav {
    border: 1px solid var(--text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.btn-nav:hover {
    background: var(--text-primary);
    color: var(--bg-color) !important;
}

.back-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.back-link:hover {
    background: var(--text-primary);
    color: var(--bg-color);
    transform: translateX(-3px);
    border-color: var(--text-primary);
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Sticky Logo */
.sticky-logo-container {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 2000;
    width: 70px;
    height: 70px;
    transition: var(--transition);;
}

.sticky-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(220, 90, 0, 0.4));
}

.sticky-logo-container:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 40px;
    transform: scale(1);
    opacity: 1;
}

/* Premium Gold Button Override */
.btn-premium-gold {
    border-color: #FFD700 !important;
    color: #FFD700 !important;
    background: rgba(255, 215, 0, 0.1) !important;
}

.btn-premium-gold:hover {
    background: rgba(255, 215, 0, 0.2) !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    color: white !important;
    border-color: #FFD700 !important;
}

/* Mobile-first hero optimization */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 16px;
    }
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 61, 0, 0.2) 0%, rgba(10, 10, 10, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: auroraPulse 8s infinite alternate ease-in-out;
    filter: blur(80px);
}

@keyframes auroraPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.7;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

/* Hero Secondary Links */
.hero-secondary-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-link {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.hero-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--highlight);
    color: var(--highlight);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-link:active {
    transform: scale(0.96) translateY(0);
}

.hero-small {
    height: auto;
    min-height: unset;
    padding: 110px 0 3rem 0;
}

/* Sections General */
.section {
    padding: 3rem 0;
}

/* Mix Builder Page - Compact Layout */
.mix-builder-page .section {
    padding: 1.5rem 0;
}

.mix-builder-page .hero-small {
    margin-bottom: 0;
}

/* Premium Spectacle Page - Compact Layout */
.premium-spectacle .section {
    padding: 1.5rem 0;
}

.premium-spectacle .request-hero {
    padding: 2rem 0 1.5rem 0;
}

/* Mobile: Reduce section padding */
@media (max-width: 768px) {
    .section {
        padding: 1.2rem 0;
    }

    .mix-builder-page .section {
        padding: 0.75rem 0;
    }

    .premium-spectacle .section {
        padding: 0.75rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

/* About */
.about {
    background-color: var(--bg-secondary);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.emphasis {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1rem;
    border-left: 3px solid var(--highlight);
    padding-left: 1rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Why Us */
.why-us {
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-color), var(--bg-secondary));
}

.why-us-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.contact-methods {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.contact-item .icon {
    font-size: 1.5rem;
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-info h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-info p,
.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--accent-glow);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.85rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Price Calculator */
.calculator {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 69, 0, 0.2);
    border-bottom: 1px solid rgba(255, 69, 0, 0.2);
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .calculator-container {
        padding: 1rem 0.75rem;
        border-radius: 14px;
    }
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.2);
}

.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"] {
    border-color: #ff0000;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.checkbox-group input {
    width: auto;
    width: 20px;
    height: 20px;
    accent-color: var(--accent-color);
}

.price-result {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.price-result h3 {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Form Hints */
.form-hint {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    font-style: italic;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card.featured {
    border: 2px solid #FFD700;
    /* Gold/Yellow */
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(0, 0, 0, 0.4));
    transform: scale(1.08);
    z-index: 2;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
    padding-top: 3.5rem;
    /* Extra space for badge */
}

.pricing-card.featured:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.25);
    border-color: #FFED4A;
    border-radius: 24px;
}



.badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    /* Gold/Yellow */
    color: #000;
    /* Black text for contrast on yellow */
    padding: 0.35rem 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-badge {
    display: inline-block;
    background: rgba(255, 69, 0, 0.15);
    color: var(--accent-color);
    border: 1px solid rgba(255, 69, 0, 0.4);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    margin-bottom: 0.4rem;
}

.new-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.features-list {
    list-style: none;
    text-align: left;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.features-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.4;
}

.features-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.features-list li.revision-note {
    font-size: 0.78rem;
    color: var(--text-secondary);
    opacity: 0.6;
    font-style: italic;
    margin-top: 0.4rem;
}

.features-list li.revision-note::before {
    content: '';
}

.btw-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.65;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
}

/* Responsive adjustments for pricing */
@media (max-width: 768px) {
    /* Pricing grid: 2 columns on mobile */
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .pricing-card {
        padding: 0.9rem 0.75rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .pricing-card h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .features-list {
        display: none; /* Hide heavy list on mobile */
    }

    .price-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
        letter-spacing: 0;
    }

    .new-price {
        font-size: 1.15rem;
    }

    .badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }

    .btn-info {
        font-size: 0.75rem;
        padding: 0.4rem;
        margin-top: 0;
    }

    .btn-preview {
        font-size: 0.75rem;
        padding: 0.5rem;
        margin-top: 0.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
        padding-top: 2rem;
        margin: 0;
    }

    .pricing-card.featured:hover {
        transform: translateY(-2px);
    }

    /* Mobile Details Modal ("Wolkje") */
    .info-content {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -45%);
        width: 90%;
        max-width: 340px;
        background: #171717;
        border: 1px solid rgba(255, 69, 0, 0.5); /* Accent border */
        box-shadow: 0 20px 50px rgba(0,0,0,0.9);
        z-index: 1000;
        padding: 2.5rem 1.5rem 1.5rem;
        border-radius: 20px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
        margin: 0;
        text-align: center;
        max-height: 85vh;
        overflow-y: auto;
    }

    .info-content.active {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%);
        border-left: 1px solid rgba(255, 69, 0, 0.5); /* override desktop */
        background: #171717; /* override desktop */
    }

    .info-content h3 {
        display: block;
        color: #fff;
        font-size: 1.25rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .info-content p {
        font-size: 1.1rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }

    .close-info {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        background: rgba(255,255,255,0.08);
        border: none;
        border-radius: 50%;
        color: #fff;
        font-size: 1.4rem;
        cursor: pointer;
        transition: background 0.2s;
    }
    
    .close-info:hover {
        background: rgba(255,255,255,0.2);
    }
}

/* Audio Comparison Player */
.btn-preview {
    background: rgba(255, 69, 0, 0.1);
    /* Subtle orange tint for visibility */
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-top: 1rem;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.btn-preview:hover {
    background: var(--accent-color);
    color: white;
}


/* Award Section */
.award-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 69, 0, 0.2);
    border-bottom: 1px solid rgba(255, 69, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.award-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.award-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.award-image-wrapper {
    position: relative;
    flex: 0 0 280px;
    max-width: 280px;
}

.award-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 69, 0, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.award-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 69, 0, 0.3);
}

/* Shine/Gloss effect on hover */
.award-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-primary);
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-answer ul {
    padding: 0 1.5rem 0 3rem;
    margin: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Active State for FAQ */
.faq-item.active .faq-answer {
    max-height: 500px;
    /* Increased for longer answers */
    padding: 1.5rem 0;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-item:hover {
    border-color: var(--accent-color);
}

.faq-category h2 {
    margin-top: 3rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

/* Sticky Mobile CTA Bar */
.sticky-cta-bar {
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
        gap: 0.75rem;
        z-index: 900;
        border-top: 1px solid rgba(255, 69, 0, 0.3);
        transform: translateY(100%);
        transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .sticky-cta-bar.visible {
        transform: translateY(0);
    }

    .sticky-cta-bar .btn-primary,
    .sticky-cta-bar .btn-secondary {
        flex: 1;
        text-align: center;
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 54px;
    height: 54px;
    bottom: 28px;
    right: 28px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}

/* Required Field Indicator */
.required-star {
    color: var(--accent-color);
    margin-left: 4px;
    font-weight: bold;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: none;
    /* Changed from translateY(0) to allow hover transforms */
}

/* For Who Section */
.for-who {
    background: linear-gradient(to bottom, var(--bg-color), var(--bg-secondary));
}

.for-who-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.for-who-column ul {
    list-style: none;
}

.for-who-column li {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.for-who-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.for-who-column strong {
    color: var(--text-primary);
}

.for-who-highlight {
    text-align: center;
    margin-top: 3rem;
    background: rgba(109, 40, 217, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(109, 40, 217, 0.1);
}

.for-who-highlight h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
}

.for-who-highlight h3::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.for-who-highlight ul {
    display: inline-block;
    text-align: left;
    list-style: none;
    padding: 0;
}

.for-who-highlight li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.for-who-highlight li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* You Do Your Thing Section */
.you-do-your-thing {
    background: var(--bg-secondary);
}

.you-do-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.you-do-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.you-do-content .subtitle {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
}

.check-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-list li {
    padding: 1rem 1.2rem 1rem 3rem;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.check-list li:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 69, 0, 0.3);
    transform: translateX(5px);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 1.2rem;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.two-columns h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* SEO Info Section */
.seo-info {
    background-color: var(--bg-color);
}

.seo-info .faq-container {
    margin-bottom: 3rem;
}

.seo-info .faq-answer h4 {
    color: var(--text-primary);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
}

.seo-info .faq-answer ul {
    list-style: none;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.seo-info .faq-answer li {
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    position: relative;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.seo-info .faq-answer li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 69, 0, 0.2);
}

.seo-info .faq-answer li::before {
    content: '✦';
    position: absolute;
    left: 1rem;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* SEO Expander Block */
.seo-expander-block {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-expander-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.expander-hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.expander-content.active .expander-hidden {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
}

.btn-expander {
    background: transparent;
    border: none;
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    font-family: var(--font-main);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-expander::after {
    content: '↓';
    transition: transform 0.3s ease;
}

.expander-content.active .btn-expander::after {
    transform: rotate(180deg);
}

.btn-expander:hover {
    color: var(--accent-glow);
}

.keyword-list {
    list-style: none;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.8rem;
}

.keyword-list li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.6rem 1rem 0.6rem 2.2rem;
    position: relative;
    background: rgba(255, 69, 0, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(255, 69, 0, 0.05);
    transition: var(--transition);
}

.keyword-list li:hover {
    background: rgba(255, 69, 0, 0.06);
    border-color: rgba(255, 69, 0, 0.1);
}

.keyword-list li::before {
    content: '›';
    position: absolute;
    left: 1rem;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Info Buttons & Content */
.btn-info {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    margin-top: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-info:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    color: var(--text-primary);
}

.info-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 0;
    position: relative;
}

.info-content p {
    font-size: inherit;
    line-height: inherit;
    margin-bottom: 0.5rem;
    color: inherit;
}

.info-content.active {
    max-height: 400px;
    opacity: 1;
    margin-top: 0.75rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--accent-color);
}

.info-content h3 {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.close-info {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.2s;
}

.close-info:hover {
    background: var(--accent-color);
}

/* Modal Backdrop (Global) */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    display: block;
    opacity: 1;
}

/* Price Breakdown */
.price-breakdown {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.price-breakdown.active {
    display: block;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.breakdown-total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    font-weight: bold;
    color: var(--text-primary);
}

.premium-contact-btn {
    margin-top: 1.5rem;
}


/* -- Premium CTA Card (shown in calculator when Premium is selected) -- */
.premium-cta-card {
    position: relative; margin-top: 1rem; padding: 1.8rem 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(15,10,30,0.85) 0%, rgba(30,10,10,0.85) 100%);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 69, 0, 0.35);
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.12), inset 0 1px 0 rgba(255,255,255,0.07);
    overflow: hidden;
    animation: premiumCardIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes premiumCardIn {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.premium-cta-card::before {
    content: '';
    position: absolute; top: -60px; right: -60px; width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,69,0,0.18) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
    animation: orbPulse 6s ease-in-out infinite alternate;
}
@keyframes orbPulse {
    from { transform: scale(1); opacity: 0.7; }
    to   { transform: scale(1.3); opacity: 1; }
}
.premium-cta-label {
    display: inline-block; font-size: 0.65rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent-color);
    background: rgba(255,69,0,0.1); border: 1px solid rgba(255,69,0,0.3);
    border-radius: 20px; padding: 0.25rem 0.75rem; margin-bottom: 0.9rem;
}
.premium-cta-intro { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; line-height: 1.3; }
.premium-cta-sub   { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 1.4rem; line-height: 1.55; }
.premium-cta-buttons { display: flex; flex-direction: column; gap: 0.6rem; }
.premium-cta-btn {
    display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1.2rem;
    border-radius: 12px; font-size: 0.9rem; font-weight: 700;
    text-decoration: none; border: 1px solid transparent; cursor: pointer;
    font-family: var(--font-main);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.premium-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.premium-cta-btn .btn-arrow { margin-left: auto; transition: transform 0.2s ease; }
.premium-cta-btn:hover .btn-arrow { transform: translateX(4px); }
.premium-cta-btn.btn-wa    { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.3); color: #25D366; }
.premium-cta-btn.btn-wa:hover  { background: rgba(37,211,102,0.2); border-color: rgba(37,211,102,0.55); }
.premium-cta-btn.btn-email { background: rgba(234,67,53,0.08); border-color: rgba(234,67,53,0.25); color: #f87171; }
.premium-cta-btn.btn-email:hover { background: rgba(234,67,53,0.18); border-color: rgba(234,67,53,0.5); }
.premium-cta-btn.btn-form  { background: linear-gradient(90deg,rgba(255,69,0,0.18),rgba(255,140,0,0.1)); border-color: rgba(255,69,0,0.4); color: var(--text-primary); }
.premium-cta-btn.btn-form:hover  { background: linear-gradient(90deg,rgba(255,69,0,0.28),rgba(255,140,0,0.2)); border-color: rgba(255,120,0,0.65); box-shadow: 0 8px 24px rgba(255,69,0,0.2); }
.premium-cta-divider {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.68rem; color: rgba(255,255,255,0.2);
    text-transform: uppercase; letter-spacing: 1.5px;
}
.premium-cta-divider::before, .premium-cta-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07); }

/* Request Page & Form - SPECTACLE UPGRADE */
.premium-spectacle {
    background: radial-gradient(circle at 50% 50%, #0f172a 0%, #020617 100%);
    background-color: #020617;
    /* Fallback */
    overflow-x: hidden;
    position: relative;
    color: #f8fafc;
    /* Ensure text is light */
}

.spectacle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    /* Reduced from 0.4 for better text contrast */
    animation: orbFloat 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #4f46e5;
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #9333ea;
    top: 40%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

.request-page {
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.request-hero {
    text-align: center;
    padding: 2rem 0 2rem;
}

.request-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.request-hero p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.premium-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 69, 0, 0.1);
    transition: var(--transition);
}

.premium-form:hover {
    border-color: rgba(255, 69, 0, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 69, 0, 0.15);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.form-group label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.premium-form textarea {
    min-height: 120px;
    max-height: 400px;
    resize: vertical;
    overflow-y: auto;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.2);
    outline: none;
}

.form-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Dynamic form fields */
.dynamic-fields {
    transition: all 0.3s ease;
    overflow: hidden;
}

.dynamic-fields .form-grid {
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--accent-color), #ff8c00);
    border: none;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
}

.btn-large::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.btn-large:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.4);
}

/* Modal Base */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 5000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
}

.modal-open {
    overflow: hidden !important;
}

.modal-content {
    background: var(--bg-secondary);
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: 24px;
    max-width: 650px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.close-modal-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 100;
}

.close-modal-icon:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

.btn-adjust {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.btn-adjust:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.request-summary {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    font-family: monospace;
    white-space: pre-wrap;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-platform {
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp {
    background: #25D366;
}

.btn-email {
    background: #ea4335;
}

.btn-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-copy {
    background: #4b5563;
}

.btn-platform:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.copy-feedback {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.3);
    z-index: 2000;
    animation: slideUpFade 0.3s ease-out;
}

@keyframes slideUpFade {
    from {
        transform: translate(-50%, 20px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .request-hero h1 {
        font-size: 2.5rem;
    }

    .request-hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .premium-form {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .btn-large {
        width: 100%;
        padding: 1.2rem 1rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }
}

/* --- GLOBAL MOBILE PROTECTION --- */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* --- HERO BRANDING --- */
.hero-branding {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-logo-wrapper {
    width: 250px;
    height: auto;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    margin: 0 auto 2.5rem auto;
}

@media (max-width: 768px) {
    .hero-logo-wrapper {
        width: 150px;
    }
}

.hero-logo-home {
    width: 250px;
    height: auto;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}


.hero-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(220, 90, 0, 0.5));
}

.hero-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(220, 90, 0, 0.5));
}

.hero-welcome {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.9;
}

/* --- ENHANCED HERO BUTTONS --- */
.btn-hero-impact {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-hero-impact.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c00 100%);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.3);
}

.btn-hero-impact.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.5);
}

.btn-hero-impact.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-impact.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-5px) scale(1.05);
}

/* Sticky Logo Refinement */
.sticky-logo-container {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.4s;
}

.sticky-logo-container.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

@media (max-width: 768px) {
    .hero-logo-wrapper {
        width: 80px;
        height: 80px;
    }

    .hero-logo-home {
        width: 150px;
        height: auto;
    }

    .hero-welcome {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .btn-hero-impact {
        padding: 0.9rem 1.5rem;
        width: 100%;
        font-size: 1rem;
    }

    .hero-branding {
        margin-bottom: 1rem;
    }
}

/* --- CONSOLIDATED RESPONSIVE STYLES --- */

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

@media (max-width: 768px) {

    /* Typography - More compact */
    h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    h2 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    /* Navigation */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Hero - Ultra compact */
    .hero {
        height: auto;
        min-height: auto;
        padding: 70px 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Hero secondary links mobile */
    .hero-secondary-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-link {
        font-size: 0.9rem;
    }

    /* Sections — overriding the earlier rule to be consistent */
    .section {
        padding: 1.2rem 0;
    }

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

    .for-who-compact,
    .two-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
        margin: 0;
    }

    /* Audio Player - THE CRITICAL FIX */
    .player-container {
        padding: 1.5rem 1rem;
        width: 100%;
    }

    .controls {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
    }


    /* Award Section */
    .award-container {
        flex-direction: column;
        gap: 2rem;
    }

    .award-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
    }

    .award-details {
        text-align: center;
    }

    /* Sticky Logo */
    .sticky-logo-container {
        width: 60px;
        height: 60px;
        top: 10px;
        left: 10px;
    }

    /* Compact pricing cards */
    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card h3 {
        font-size: 1.3rem;
    }

    .features-list {
        gap: 0.5rem;
    }

    .features-list li {
        font-size: 0.9rem;
    }

    /* Compact calculator */
    .calculator-container {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    /* Compact audio player details */
    .player-details {
        padding: 1rem 0;
    }

    .detail-list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    /* Compact FAQ */
    .faq-item {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

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

    h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2.2rem;
    }

    .calculator-container {
        padding: 1.2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .hero-buttons {
        gap: 1rem;
    }
}

/* Wedding Mention Styling */
.wedding-mention {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-style: italic;
}

.wedding-mention p {
    color: var(--text-primary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.wedding-mention strong {
    color: var(--accent-color);
    font-style: normal;
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

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

.splash-logo {
    width: 180px;
    height: auto;
    opacity: 0;
    transform: scale(1.5);
    animation: splashLogoIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.splash-welcome {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(10px);
    animation: splashTextIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

@keyframes splashLogoIn {
    0% {
        opacity: 0;
        transform: scale(1.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes splashTextIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide main content initially to prevent flash */
body.loading {
    overflow: hidden;
}

/* Mix Builder Specifics */
.builder-container {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);

    /* Skip Link for Accessibility */
    .skip-link {
        position: absolute;
        top: -100px;
        left: 1rem;
        background: var(--accent-color);
        color: white;
        padding: 1rem;
        z-index: 10000;
        transition: top 0.3s;
        text-decoration: none;
        border-radius: 0 0 10px 10px;
        font-weight: bold;
    }

    .skip-link:focus {
        top: 0;
    }

    /* FAQ Icon Update */
    .toggle-icon {
        font-size: 1rem;
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .faq-item.active .toggle-icon {
        transform: rotate(90deg);
    }

    .track-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: var(--transition);
    }

    .track-card:hover {
        border-color: var(--accent-color);
    }

    .track-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 0.5rem;
    }

    .track-header h3 {
        color: var(--accent-color);
    }

    .remove-track {
        background: transparent;
        border: none;
        color: var(--text-secondary);
        cursor: pointer;
        font-size: 0.9rem;
        transition: var(--transition);
    }

    .remove-track:hover {
        color: #ff4444;
    }

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

    .form-grid.row {
        display: flex;
        gap: 1rem;
    }

    .flex-1 {
        flex: 1;
    }

    .builder-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .total-duration-display {
        text-align: right;
    }

    .total-duration-display span:first-child {
        display: block;
        font-size: 0.9rem;
        color: var(--text-secondary);
    }

    #total-duration {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--accent-color);
    }

    .builder-footer {
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        padding: 1.5rem 0;
        background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 50%, rgba(10, 10, 10, 0) 100%);
        backdrop-filter: blur(10px);
        z-index: 100;
        margin-top: 2rem;
    }

    .builder-footer button {
        box-shadow: 0 8px 24px rgba(255, 69, 0, 0.4);
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            box-shadow: 0 8px 24px rgba(255, 69, 0, 0.4);
        }

        50% {
            box-shadow: 0 8px 32px rgba(255, 69, 0, 0.6);
        }
    }

    textarea.track-notes {
        width: 100%;
        min-height: 100px;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: var(--text-primary);
        font-family: var(--font-main);
        resize: vertical;
    }

    /* Mix Builder Summary Specifics */
    .summary-box {
        background: rgba(0, 0, 0, 0.4);
        padding: 1.5rem;
        border-radius: 12px;
        white-space: pre-wrap;
        font-family: monospace;
        font-size: 0.9rem;
        margin: 1.5rem 0;
        line-height: 1.5;
        max-height: 40vh;
        overflow-y: auto;
        border: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--text-secondary);
    }

    /* Mix Builder Header Actions */
    .track-header {
        cursor: pointer;
        user-select: none;
    }

    .track-header .header-actions {
        display: flex;
        gap: 0.5rem;
    }

    .track-header button {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        cursor: pointer;
        padding: 0.4rem 0.7rem;
        border-radius: 6px;
        font-size: 0.9rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .track-header button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.4s, height 0.4s;
    }

    .track-header button:hover::before {
        width: 200%;
        height: 200%;
    }

    .track-header button:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .track-header button:active {
        transform: translateY(0);
    }

    .track-header .toggle-track {
        background: rgba(255, 165, 0, 0.15);
        border-color: rgba(255, 165, 0, 0.3);
        color: #ffa500;
    }

    .track-header .toggle-track:hover {
        background: rgba(255, 165, 0, 0.25);
        border-color: rgba(255, 165, 0, 0.5);
        color: #ffb732;
    }

    .track-header .remove-track {
        background: rgba(255, 69, 0, 0.15);
        border-color: rgba(255, 69, 0, 0.3);
        color: #ff4500;
        font-weight: 600;
    }

    .track-header .remove-track:hover {
        background: rgba(255, 69, 0, 0.3);
        border-color: rgba(255, 69, 0, 0.6);
        color: #ff6347;
        animation: shake 0.4s ease-in-out;
    }

    @keyframes shake {

        0%,
        100% {
            transform: translateX(0) translateY(-2px);
        }

        25% {
            transform: translateX(-3px) translateY(-2px);
        }

        75% {
            transform: translateX(3px) translateY(-2px);
        }
    }

    @keyframes slideOutRight {
        from {
            opacity: 1;
            transform: translateX(0);
        }

        to {
            opacity: 0;
            transform: translateX(100%);
        }
    }

    @keyframes fadeOut {
        from {
            opacity: 1;
        }

        to {
            opacity: 0;
        }
    }

    /* Collapsed state styling */
    .track-card.collapsed {
        border-color: rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.02);
    }

    .track-card.collapsed h3 {
        color: var(--text-secondary);
    }

    /* =========================================================================
       8. MOBILE & RESPONSIVE TWEAKS (All pages)
       ========================================================================= */

    @media (max-width: 1024px) {
        .pricing-cards {
            gap: 1.5rem;
        }

        .form-grid.row {
            flex-direction: column;
            gap: 1.5rem;
        }
    }

    @media (max-width: 768px) {

        /* General Spacing */
        .section {
            padding: 2.5rem 0;
        }

        .container {
            padding: 0 1rem;
        }

        /* Hero Section */
        .hero h1 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.1rem;
            padding: 0 1rem;
        }



        .hero-buttons {
            flex-direction: column;
            gap: 0.6rem;
            padding: 0 0.5rem;
            margin-bottom: 0.5rem;
        }

        .btn-hero-impact {
            padding: 0.85rem 1.5rem;
            font-size: 1rem;
        }

        .btn-primary,
        .btn-secondary,
        .btn-preview,
        .btn-calc-trigger {
            width: 100%;
            text-align: center;
        }

        /* Pricing Cards */
        .pricing-cards {
            grid-template-columns: 1fr;
            /* Stack vertically on mobile */
            gap: 2rem;
        }

        .pricing-card {
            margin: 0 0.5rem;
        }

        /* Calculator Components */
        .price-breakdown {
            padding: 1rem;
            font-size: 0.9rem;
        }

        .breakdown-item {
            font-size: 0.95rem;
            /* Slightly smaller text */
        }

        /* Mix Briefing Tool */
        .track-card {
            padding: 1rem;
            /* Less padding to save screen space */
        }

        .track-header h3 {
            font-size: 1.1rem;
        }

        .track-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .track-controls {
            width: 100%;
            justify-content: flex-end;
            /* Push arrows to the right */
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 0.5rem;
        }

        .builder-actions {
            flex-direction: column;
            gap: 1.5rem;
            align-items: stretch;
        }

        .total-duration-display {
            text-align: center;
        }

        /* --- Mobile Polish & Refinements --- */
        /* 1. Lift WhatsApp button to avoid overlaps */
        .whatsapp-float {
            bottom: 90px;
            /* Increased to clear footer/action buttons */
        }

        /* 2. Improve Premium Page Header Spacing */
        .premium-spectacle .nav-container {
            justify-content: space-between;
            padding: 0 1rem;
            width: 100%;
            gap: 1rem;
        }

        .premium-spectacle .back-link {
            font-size: 0.85rem;
            padding: 0.5rem 1rem;
        }

        /* Ensure logo doesn't get squashed */
        .nav-logo-small img {
            width: 40px;
            height: 40px;
        }

        /* 3. Extra padding for pages to scroll past floating elements */
        body.sub-page main {
            padding-bottom: 120px;
        }

        /* Specific fix for FAQ footer overlap */
        .footer-bottom {
            padding-bottom: 4rem;
        }
    }

    @media (max-width: 480px) {
        .section {
            padding: 2.5rem 0;
        }

        .hero {
            padding: 5rem 0 3rem;
        }

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

        .step {
            padding: 1rem;
        }

        .slider-row>div {
            flex-direction: column;
            gap: 0.3rem;
            align-items: flex-start !important;
        }

        .slider-row input[type="text"] {
            width: 100% !important;
            text-align: left !important;
            margin-top: 0.2rem;
        }

        .pricing-card {
            padding: 1.5rem;
        }

        .price-breakdown {
            padding: 0.75rem;
        }

        .wa-contact {
            padding: 1.5rem 1rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .track-card {
            padding: 1rem;
            margin-bottom: 1rem;
            border-radius: 10px;
        }
    }
}
/* Mix Briefing Mobile UI Fixes */
.briefing-settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center; /* vertically centre the checkbox with the select */
}

/* Rush checkbox — fill its cell and align neatly */
.rush-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    cursor: pointer;
    min-height: 48px; /* match select height */
}

.rush-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.rush-group label {
    font-size: 0.95rem;
    color: var(--text-primary);
    cursor: pointer;
    margin: 0;
}

.track-header-responsive {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
}
.track-actions-responsive {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.track-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    outline: none;
    padding: 0.2rem;
}

@media (max-width: 600px) {
    .briefing-settings-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .rush-group {
        margin-top: 0 !important;
    }
    .track-header-responsive {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    .track-actions-responsive {
        width: 100%;
        justify-content: flex-end;
        padding-top: 0.8rem;
        border-top: 1px dashed rgba(255,255,255,0.1);
    }
}

/* Very small screens — tighten hero h1 further */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    .new-price {
        font-size: 1rem;
    }
    .pricing-card h3 {
        font-size: 0.9rem;
    }
}
