/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800;900&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --bg-black: #080808;
    --bg-dark: #121212;
    --bg-card: rgba(22, 22, 22, 0.7);
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-bright: #FFD700;
    --gold-dark: #AA771C;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #AA771C 100%);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.35);
    --gold-glow-strong: 0 0 35px rgba(255, 215, 0, 0.6);
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --text-muted: #707070;
    --border-color: rgba(212, 175, 55, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-black);
    color: var(--text-white);
    overflow-x: clip;
}

body {
    line-height: 1.6;
    overflow-x: clip;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(8, 8, 8, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 0;
    transition: var(--transition-smooth);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 63px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000000;
    box-shadow: var(--gold-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 3.5s infinite;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--gold-glow-strong);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--gold-primary);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

@keyframes shine {
    0% {
        left: -150%;
    }

    20%,
    100% {
        left: 150%;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 80px 0;
    background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.15) 0%, rgba(8, 8, 8, 0) 65%);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* Full-width Background Gallery */
.hero-bg-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-col {
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: grayscale(100%) contrast(1.15) brightness(0.4);
    opacity: 0.45;
    height: 100%;
    width: 100%;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(8, 8, 8, 0.15) 0%, rgba(8, 8, 8, 0.85) 85%),
        linear-gradient(to bottom, rgba(8, 8, 8, 0.1) 0%, var(--bg-black) 100%);
    z-index: 1;
}

/* Brand & Event Collage */
.hero-brand-collage {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
    text-align: center;
}

.collage-bg-text {
    position: absolute;
    /* top: -20px; */
    font-size: 260px;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.08);
    letter-spacing: 0.12em;
    z-index: 1;
    pointer-events: none;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    user-select: none;
    white-space: nowrap;
}

.collage-images {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 30px;
}

.collage-img-main {
    height: 400px;
    width: auto;
    object-fit: contain;
    z-index: 5;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
    transition: var(--transition-smooth);
    position: relative;
    top: 40px;
}

.hero-brand-collage:hover .collage-img-main {
    transform: translateY(-5px) scale(1.02);
}

.collage-divider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 8px;
    z-index: 6;
}

.collage-divider-line {
    height: 2px;
    width: 120px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.8) 50%, rgba(212, 175, 55, 0) 100%);
}

.collage-divider-text {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--gold-bright);
    letter-spacing: 0.2em;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.35);
    text-align: center;
}

.collage-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 12px;
    z-index: 6;
}

.collage-title {
    font-family: 'Outfit', sans-serif;
    font-size: 100px;
    font-weight: 900;
    letter-spacing: -0.01em;
    margin-bottom: 0px;
    text-align: center;
    z-index: 4;
    line-height: 1;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.collage-title.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hook & Info details */
.hero-details-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-hook {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-gray);
    max-width: 680px;
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-info-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    width: 100%;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.info-card-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.info-card-value {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
}

.info-card-value span {
    color: var(--gold-primary);
    display: block;
    font-size: 12px;
}

/* Countdown */
.countdown-container {
    margin: 24px 0;
    text-align: center;
}

.countdown-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.time-segment {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 12px;
    min-width: 70px;
    text-align: center;
}

.time-num {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold-bright);
    line-height: 1;
}

.time-label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-top: 4px;
    font-weight: 500;
}

/* Sections General */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 300;
}

/* O Summit / Methodology Section */
.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
}

.method-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-p {
    font-size: 17px;
    color: var(--text-gray);
    font-weight: 300;
}

.method-p strong {
    color: var(--text-white);
    font-weight: 600;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.benefit-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.02);
    transform: translateX(5px);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--gold-bright);
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 4px;
}

.benefit-content p {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 300;
}

/* Pricing box */
.pricing-box {
    background: var(--bg-card);
    border: 2px solid var(--gold-primary);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    box-shadow: var(--gold-glow);
    position: relative;
}

@media (min-width: 992px) {
    .method-visual {
        position: -webkit-sticky;
        position: sticky;
        top: 110px;
        z-index: 10;
    }
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000000;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.price-title {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.price-val {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 8px;
}

.price-val span {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold-bright);
}

.price-details {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 32px;
}

.pricing-box .btn {
    width: 100%;
}

/* Mentor Section */
.mentor-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mentor-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.mentor-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0) 60%, rgba(8, 8, 8, 0.9) 100%);
    z-index: 2;
}

.mentor-img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: grayscale(20%);
}

.mentor-visual:hover .mentor-img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.mentor-bio {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mentor-subtitle {
    color: var(--gold-bright);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.mentor-title {
    font-size: 40px;
    line-height: 1.1;
}

.mentor-text {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 300;
}

.mentor-bullets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 10px;
}

.mentor-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.mentor-bullet-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Conselheiros / League of Heroes Section */
.conselheiros-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.conselheiros-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.9)), url('imagens/liga-do-sst.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%) blur(3px);
    transform: scale(1.05);
    /* Evita bordas brancas geradas pelo blur */
    z-index: -1;
}

.heroes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .heroes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .heroes-grid {
        grid-template-columns: 1fr;
    }
}

/* Card 3D Pop-out "League of Heroes" */
.hero-card {
    position: relative;
    height: 380px;
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.4) 0%, rgba(14, 14, 14, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: visible;
    /* Need overflow visible for pop-out effect */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-card-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.hero-card-img-container {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    pointer-events: none;
}

.hero-card-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.6));
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom center;
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.hero-card-info {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-card-badge {
    background: var(--gold-gradient);
    color: #000;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-card-name {
    font-size: 18px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-card-role {
    font-size: 12px;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Hover States for 3D card */
.hero-card:hover,
.hero-card.reveal.active:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.5) 0%, rgba(16, 16, 16, 0.95) 100%);
    z-index: 20 !important;
}

.hero-card:hover .hero-card-bg-glow {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero-card:hover .hero-card-img {
    transform: scale(1.15) translateY(-20px);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
}

/* Especialistas Section */
.especialistas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

@media (max-width: 992px) {
    .especialistas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .especialistas-grid {
        grid-template-columns: 1fr;
    }
}

.spec-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.spec-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--gold-glow);
    transform: translateY(-5px);
}

.spec-img-container {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold-primary);
    margin-bottom: 24px;
    background: #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spec-name {
    font-size: 22px;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px;
    color: var(--text-white);
}

.spec-role {
    color: var(--gold-bright);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.spec-desc {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 300;
}

/* Mystery / Silhouette Spec Card */
.spec-card-mystery {
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(212, 175, 55, 0.3);
}

.spec-card-mystery .spec-img-container {
    border-style: dashed;
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.spec-card-mystery .spec-img-container span {
    font-size: 48px;
    color: rgba(212, 175, 55, 0.3);
    font-family: 'Outfit', sans-serif;
}

/* Partner section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.partner-card.bg-white {
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.partner-card.bg-black {
    background: #000000;
    border: 1px solid #FFFFFF;
    /* Contorno branco */
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.partner-logo {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Venue Section */
#venue {
    background-color: var(--bg-dark);
}

.venue-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.venue-tag {
    color: var(--gold-bright);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.venue-title {
    font-size: 36px;
    line-height: 1.2;
}

.venue-desc {
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 300;
}

.venue-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.venue-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.venue-point-icon {
    color: var(--gold-bright);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.venue-point-text h5 {
    font-size: 15px;
    color: var(--text-white);
    margin-bottom: 2px;
}

.venue-point-text p {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 300;
}

.venue-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.venue-gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.venue-gallery-img:hover {
    transform: scale(1.03);
    border-color: var(--border-color);
}

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

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

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
}

.faq-toggle {
    color: var(--gold-bright);
    transition: var(--transition-smooth);
    font-size: 18px;
}

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

.faq-answer p {
    padding: 0 24px 44px 24px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--border-color);
    background: rgba(22, 22, 22, 0.9);
}

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

/* Call to Action Final Section */
.final-cta {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, rgba(8, 8, 8, 0) 70%);
    text-align: center;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 60px 40px;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.cta-box h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 32px;
    font-weight: 300;
}

/* Footer */
footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px 0;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 320px;
}

.footer-links h5 {
    font-size: 15px;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold-bright);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-bright);
    border-color: var(--border-color);
    transform: translateY(-2px);
}

/* Responsiveness */
@media (max-width: 991px) {
    .collage-bg-text {
        font-size: 130px;
        top: 30px;
    }

    .collage-images {
        height: 320px;
    }

    .collage-img-main {
        height: 320px;
    }

    .collage-title {
        font-size: 64px;
    }

    .method-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mentor-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .venue-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    section {
        padding: 60px 0;
    }

    /* Global buttons and header optimization on mobile */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    header {
        padding: 8px 0;
    }

    .logo-img {
        height: 44px;
    }

    #header-cta-btn {
        padding: 6px 14px;
        font-size: 11px;
    }

    /* Hero section spacing and layout */
    .hero {
        padding-top: 100px;
    }

    .collage-bg-text {
        font-size: 80px;
        top: 40px;
        letter-spacing: 0.05em;
    }

    .collage-images {
        height: 240px;
    }

    .collage-img-main {
        height: 240px;
        top: 20px;
        /* Reduced shift to prevent overlapping the title/divider on mobile */
    }

    .collage-title {
        font-size: 44px;
    }



    .collage-divider-text {
        font-size: 15px;
        letter-spacing: 0.1em;
    }

    .collage-divider-line {
        width: 60px;
    }

    .hero-hook {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-info-box {
        padding: 20px 16px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    /* Countdown mobile optimization to prevent horizontal overflow */
    .countdown-timer {
        gap: 6px;
        justify-content: center;
    }

    .time-segment {
        min-width: 55px;
        padding: 8px 4px;
    }

    .time-num {
        font-size: 20px;
    }

    .time-label {
        font-size: 9px;
    }

    /* Typography and element sizing optimizations */
    .section-title {
        font-size: 28px;
    }

    .mentor-title {
        font-size: 30px;
    }

    .venue-title {
        font-size: 28px;
    }

    .pricing-box {
        padding: 32px 24px;
    }

    .price-val {
        font-size: 40px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

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

    .partner-card {
        height: 75px;
    }

    /* No reordering needed on mobile because the DOM order naturally places White on left and Black on right */

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

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