:root {
    --bg: #070707;
    --panel: #0d0d0d;
    --muted: #9b9b9b;
    --text: #e8e6e3;
    --gold: #d1a95f;
    --accent: #e6c389;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-high: rgba(255, 255, 255, 0.08);
    /* Higher opacity for hover */
    --maxwide: 1200px;
    --container-padding: 32px;
    --radius: 20px;
    --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.7);
    --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    --transition: 400ms cubic-bezier(.16, 1, .3, 1);
    /* Smoother interaction */
    font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* --- ANIMATIONS --- */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(209, 169, 95, 0.2);
    }

    50% {
        box-shadow: 0 0 35px rgba(209, 169, 95, 0.45);
    }
}

@keyframes slow-drift {
    0% {
        background-position: 0% 50%;
        opacity: 0.03;
    }

    50% {
        background-position: 100% 50%;
        opacity: 0.06;
    }

    100% {
        background-position: 0% 50%;
        opacity: 0.03;
    }
}

/* --- LAYOUT ROOT --- */
.site-wrap {
    background: var(--bg);
    color: var(--text);
    display: block;
    overflow-x: hidden;
    position: relative;
}

/* Background Texture */
.site-wrap::before {
    content: '';
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3C/g%3E%3C/svg%3E");
    mask-image: radial-gradient(circle, #000 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.site-inner {
    width: 90%;
    max-width: var(--maxwide);
    margin: 0 auto;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
    margin: 0;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 48px;
    background: linear-gradient(135deg, #fff 40%, var(--muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    line-height: 1.7;
    color: var(--muted);
    font-size: 1.1rem;
}

.accent {
    color: var(--gold);
    background: linear-gradient(90deg, #e6c389, #d1a95f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    letter-spacing: 0.02em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #e6c389, #d1a95f);
    color: #0b0b0b;
    box-shadow: 0 4px 20px rgba(209, 169, 95, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::after {
    transform: rotate(45deg) translateY(100%);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 35px rgba(209, 169, 95, 0.5);
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}


/* --- HERO SECTION --- */
/* "Inside the Hall" Concept */
.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    min-height: 85vh;
    /* Immersive height */
    margin-bottom: 80px;
    perspective: 1000px;
    /* 3D context */
}

@media(min-width: 980px) {
    .hero {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-left {
    z-index: 10;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 8px 16px;
    background: rgba(209, 169, 95, 0.1);
    border-radius: 4px;
    border-left: 2px solid var(--gold);
}

.hero-pills {
    display: flex;
    gap: 12px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.h-pill {
    padding: 8px 16px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    transition: var(--transition);
}

.h-pill i {
    color: var(--gold);
}

.h-pill:hover {
    border-color: var(--gold);
    background: rgba(209, 169, 95, 0.1);
    transform: translateY(-2px);
    color: #fff;
}

/* 3D Visual Stack */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-layer {
    position: absolute;
    border-radius: var(--radius);
    transition: transform 0.1s cubic-bezier(0.2, 0, 0.2, 1);
    /* Quick response */
    box-shadow: var(--shadow);
}

.layer-main {
    width: 90%;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
}

.layer-back {
    width: 60%;
    right: 0;
    top: 50px;
    z-index: 1;
    opacity: 0.6;
    filter: blur(2px) grayscale(50%);
    transform: translateZ(-50px);
}

.layer-float {
    width: 30%;
    left: -20px;
    bottom: 40px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px;
    border: 1px solid rgba(209, 169, 95, 0.3);
}

/* Trust Signals */
.trust-row {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
}

.rating {
    display: flex;
    color: var(--gold);
    gap: 2px;
}


/* --- JOURNEY SECTION (STEPS) --- */
.journey-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    position: relative;
    padding: 20px 0;
}

.journey-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 24px;
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}

.journey-step:hover {
    background: var(--glass-high);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    transition: color 0.3s;
}

.journey-step:hover .step-number {
    color: rgba(209, 169, 95, 0.2);
}

.step-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}


/* --- CINEMATIC SECTION --- */
.cinematic {
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    margin: 100px 0;
}

.cine-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media(min-width: 980px) {
    .cine-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

.cine-visual {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.cine-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 10s ease;
}

.cine-visual:hover img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.cine-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d0d, #111);
}

.check-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    color: #ccc;
    font-size: 1.05rem;
}

.check-list i {
    color: var(--gold);
    background: rgba(209, 169, 95, 0.1);
    padding: 4px;
    border-radius: 50%;
    font-size: 0.8rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}


/* --- MENTOR CARDS --- */
.mentor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
    margin-bottom: 100px;
}

.mentor-card {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.mentor-card:hover {
    border-color: var(--gold);
    background: var(--glass-high);
}

.mentor-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 2px solid var(--gold);
    padding: 4px;
    /* inner transparency gap */
    background-clip: content-box;
}

.mentor-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
    font-weight: 700;
}

.mentor-name {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 12px;
}


/* --- TESTIMONIAL CAROUSEL --- */
.testimonials-wrap {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.2));
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.testimonial-slide {
    display: none;
    animation: fade-in 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-icon {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 24px;
}

.test-text {
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 32px;
    line-height: 1.6;
}

.test-author h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.carousel-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}


/* --- PRICING & FINAL CTA --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.price-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(209, 169, 95, 0.15);
    background: linear-gradient(160deg, rgba(209, 169, 95, 0.05), rgba(0, 0, 0, 0.4));
}

.price-big {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin: 20px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-big span {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 400;
}

.timer-box {
    margin-top: 20px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    gap: 12px;
    font-family: monospace;
    font-size: 1.2rem;
    color: var(--gold);
}

.sep {
    color: #555;
}

/* UTILS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- FAQ SECTION REPAIRS --- */
.section-faq {
    padding-top: 100px;
    /* Extra spacing as requested */
}

.faq-list {
    margin-top: 40px;
    display: grid;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* The header row of the FAQ item */
.faq-head {
    display: flex !important;
    align-items: center;
    gap: 24px;
    padding: 24px 10px;
    cursor: pointer;
    width: 100%;
}

.faq-item .number {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0.7;
    min-width: 24px;
}

.faq-btn {
    appearance: none;
    -webkit-appearance: none;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    flex: 1;
    padding: 0;
    font-family: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-btn:focus-visible {
    outline: 1px dashed var(--gold) !important;
}

/* Plus icon */
.faq-btn::after {
    content: '+';
    font-weight: 300;
    color: var(--gold);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.faq-item.open .faq-btn::after,
.faq-btn[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 10px 24px 60px;
    /* indent to align with text */
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    display: none;
}

/* Show answer when parent has class 'open' or button is aria-expanded */
.faq-item.open .faq-answer,
.faq-item button[aria-expanded="true"]~.faq-answer {
    display: block;
    animation: fade-in-slide 0.3s ease;
}

@keyframes fade-in-slide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}