:root {
    --bg-main: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent: #f97316;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
}

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

body {
    background: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.ambient-bg {
    position: fixed;
    top: -20vh;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

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

h1,
h2,
h3,
.logo,
.faq-q {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.glass {
    background: var(--card-bg);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    border-radius: 16px;
}

/* Header */
.hero {
    text-align: center;
    padding: 80px 0 40px;
}

.headline {
    font-size: clamp(2rem, 5vw, 4rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, #facc15, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subhead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 30px;
}

.video-teaser {
    display: inline-block;
    animation: bounce 3.2s ease-in-out infinite;
    font-weight: 500;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

/* VSL */
.vsl-sect {
    margin-bottom: 80px;
}

.vsl-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

 

.vsl-box {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    border: 1px solid rgba(249, 115, 22, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    transition: 0.3s;
}

.vsl-box:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.5);
}

.play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: 0.3s;
    margin-bottom: 12px;
}

.vsl-box:hover .play-btn {
    background: var(--accent);
    transform: scale(1.1);
}

.play-btn svg {
    width: 30px;
    height: 30px;
    margin-left: 4px;
}

.vsl-txt {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Results */
.results {
    margin-bottom: 80px;
    text-align: center;
}

.results h2,
.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

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

.card {
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    object-fit: contain;
    padding: 2px;
}

.logo {
    font-size: 1.25rem;
}

.date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
}

blockquote {
    font-size: 1.1rem;
    color: #e4e4e7;
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

ul {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

ul li span {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
}

/* FAQ */
.faq {
    margin-bottom: 80px;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.faq-item {
    overflow: hidden;
    transition: 0.3s;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-q span {
    transition: 0.3s;
}

.faq-item.active .faq-q span {
    transform: rotate(180deg);
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-hybrid {
    margin: 0 24px 24px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.faq-vid {
    width: 140px;
    height: 80px;
    background: #000;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.faq-vid .play-btn.small {
    width: 40px;
    height: 40px;
    margin: 0;
}

.faq-vid .play-btn.small svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
}

.faq-vid:hover .play-btn {
    background: var(--accent);
    transform: scale(1.1);
}

.faq-hybrid p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Booking */
.booking {
    padding-bottom: 80px;
}

.booking-wrap {
    padding: 40px;
    text-align: center;
}

.booking-wrap h2 {
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .faq-hybrid {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-vid {
        width: 100%;
    }
}