/* ============================================
   UNBOUND COLLECTIVE — PREMIUM DESIGN SYSTEM
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --bg-primary: #010002;
    --bg-secondary: #0a0510;
    --purple-deep: #4E136D;
    --purple-dark: #1a0a2e;
    --crimson: #D80057;
    --pink: #FB004C;
    --gold: #EDD0A8;
    --text-white: #F5F0EB;
    --text-muted: #9A8C7E;
    --text-dim: #665e56;
    --font-heading: 'Forum', serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --glass-bg: rgba(10, 5, 16, 0.55);
    --glass-border: rgba(237, 208, 168, 0.08);
    --glass-blur: 12px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--text-white); }

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

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

.section { padding: 120px 0; position: relative; }

/* ---- Glassmorphism Card Utility ---- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* ---- Section Background Utilities ---- */
.has-bg-photo {
    position: relative;
    overflow: hidden;
}

.section-bg-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    filter: blur(1px);
}

.section-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(1, 0, 2, 0.85) 0%,
        rgba(1, 0, 2, 0.75) 50%,
        rgba(1, 0, 2, 0.9) 100%
    );
}

.section-bg-overlay.overlay-purple {
    background: linear-gradient(180deg,
        rgba(1, 0, 2, 0.8) 0%,
        rgba(78, 19, 109, 0.25) 50%,
        rgba(1, 0, 2, 0.88) 100%
    );
}

.section-bg-overlay.overlay-deep-purple {
    background: linear-gradient(180deg,
        rgba(1, 0, 2, 0.82) 0%,
        rgba(26, 10, 46, 0.5) 50%,
        rgba(1, 0, 2, 0.9) 100%
    );
}

.section-bg-overlay.overlay-heavy {
    background: linear-gradient(180deg,
        rgba(1, 0, 2, 0.9) 0%,
        rgba(1, 0, 2, 0.82) 50%,
        rgba(1, 0, 2, 0.95) 100%
    );
}

.has-bg-photo .container {
    position: relative;
    z-index: 1;
}

/* ---- Section Dividers ---- */
.section-divider {
    display: flex;
    justify-content: center;
    padding: 0;
    height: 1px;
    position: relative;
}

.section-divider span {
    display: block;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

/* ---- Section Header ---- */
.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 16px auto 0;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 64px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--crimson), var(--pink));
    color: var(--text-white);
    border: 1px solid rgba(216, 0, 87, 0.3);
    box-shadow: 0 2px 16px rgba(216, 0, 87, 0.2);
}

.btn-primary:hover {
    color: var(--text-white);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 24px rgba(216, 0, 87, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.75rem;
}

.btn-large {
    padding: 18px 44px;
    font-size: 0.9rem;
}

/* ============================================
   1. NAVIGATION BAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(1, 0, 2, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(237, 208, 168, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 140px;
    width: auto;
    filter: invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-link {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.nav-link:hover { color: var(--gold); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s;
}

/* ============================================
   2. HERO CAROUSEL
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(1, 0, 2, 0.5) 0%,
        rgba(1, 0, 2, 0.4) 40%,
        rgba(1, 0, 2, 0.7) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 120px 24px 80px;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(245, 240, 235, 0.7);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Hero Navigation */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(237, 208, 168, 0.12);
    color: var(--gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 0.5;
}

.hero-arrow:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
}

.hero-arrow-left { left: 28px; }
.hero-arrow-right { right: 28px; }

.hero-nav {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.hero-dot.active {
    background: var(--gold);
    box-shadow: 0 0 12px rgba(237, 208, 168, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: var(--gold);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   3. PILLARS / REDEFINING WELLNESS
   ============================================ */
.pillar-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}

.pillar-card {
    padding: 40px 32px;
    text-align: center;
    border-top: 2px solid var(--purple-deep);
    box-shadow: 0 0 30px rgba(78, 19, 109, 0.15);
    transition: all var(--transition);
}

.pillar-card:hover {
    border-top-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(78, 19, 109, 0.25);
}

.pillar-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 16px;
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 40px 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--purple-deep), var(--bg-primary));
    border: 1px solid rgba(78, 19, 109, 0.4);
}

.stat {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(237, 208, 168, 0.15);
}

/* ============================================
   4. PHILOSOPHY / BEYOND THE SEPARATION
   ============================================ */
.pain-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.pain-card {
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
}

.pain-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--purple-deep);
    border-radius: 2px;
}

.pain-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 12px;
    padding-left: 16px;
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding-left: 16px;
}

.philosophy-quote {
    padding: 48px 0;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    background: linear-gradient(90deg, transparent, rgba(78, 19, 109, 0.15), transparent);
    border-top: 1px solid rgba(237, 208, 168, 0.08);
    border-bottom: 1px solid rgba(237, 208, 168, 0.08);
    margin-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
}

.philosophy-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1.8;
}

.philosophy-approach {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.philosophy-approach h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 16px;
}

.philosophy-approach p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ============================================
   5. GALLERY
   ============================================ */
.gallery {
    background: linear-gradient(180deg, var(--bg-primary), var(--purple-dark), var(--bg-primary));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 1;
    position: relative;
}

.gallery-item.gallery-wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.85) saturate(0.9);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1) saturate(1.1);
}

/* ============================================
   6. OFFERINGS (6-card)
   ============================================ */
.offerings {
    background: linear-gradient(180deg, var(--bg-primary), rgba(26, 10, 46, 0.2), var(--bg-primary));
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offering-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    transition: transform var(--transition);
}

.offering-card:hover {
    transform: translateY(-4px);
}

.offering-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offering-card:hover .offering-bg {
    transform: scale(1.05);
}

.offering-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(1, 0, 2, 0.2) 0%,
        rgba(1, 0, 2, 0.85) 100%
    );
}

.offering-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 1;
}

.offering-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.offering-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.offering-desc {
    font-size: 0.88rem;
    color: rgba(245, 240, 235, 0.65);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ============================================
   7. VIDEO SECTION
   ============================================ */
.video-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
}

.video-text h2 {
    text-align: left;
}

.video-text h2::after {
    margin: 16px 0 0;
}

.video-text .section-label {
    text-align: left;
}

.video-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 20px 0 32px;
}

.video-embed {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(237, 208, 168, 0.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.video-embed iframe {
    width: 100%;
    height: 100%;
}

/* ============================================
   8. FEATURED EVENT
   ============================================ */
.event-card {
    padding: 48px;
    text-align: center;
}

.event-details {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 48px;
    text-align: left;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    padding: 24px;
    border: 1px solid var(--gold);
    border-radius: 8px;
}

.event-month {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
}

.event-day {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-white);
    line-height: 1;
}

.event-year {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.event-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.event-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 12px;
}

.event-countdown {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.countdown-unit {
    text-align: center;
}

.countdown-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    min-width: 70px;
}

.countdown-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 8px;
    display: block;
}

.event-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.event-limited {
    font-size: 0.8rem;
    color: var(--crimson);
    font-style: italic;
}

/* ============================================
   9. TEAM / WHO WE ARE
   ============================================ */
.team-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 56px;
}

.team-member {
    text-align: center;
    padding: 32px;
    max-width: 360px;
}

.team-photo {
    width: 240px;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 2px solid rgba(237, 208, 168, 0.15);
}

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

.team-member h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.trust-badge {
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.trust-badge span {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* ============================================
   10. MEMBERSHIP TIERS
   ============================================ */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.membership-card {
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.membership-card:hover {
    transform: translateY(-4px);
}

/* Tier-specific styling */
.tier-free {
    border-color: rgba(255, 255, 255, 0.06);
    opacity: 0.85;
}

.tier-practitioner {
    border-color: rgba(78, 19, 109, 0.4);
    border-top: 2px solid var(--purple-deep);
}

.tier-devotee {
    border-color: rgba(216, 0, 87, 0.3);
    border-top: 2px solid var(--crimson);
    box-shadow: 0 0 40px rgba(216, 0, 87, 0.12);
}

.tier-devotee:hover {
    box-shadow: 0 0 60px rgba(216, 0, 87, 0.2);
}

.tier-initiate {
    border-color: rgba(237, 208, 168, 0.2);
    border-top: 2px solid var(--gold);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: linear-gradient(135deg, var(--crimson), var(--pink));
    color: var(--text-white);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 5px 16px;
    border-radius: 20px;
    text-transform: uppercase;
}

.membership-header {
    margin-bottom: 28px;
}

.membership-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.membership-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.membership-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.membership-features li.included { color: var(--text-muted); }
.membership-features li.excluded { color: #444; }

.membership-cta {
    width: 100%;
}

.membership-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.membership-note a {
    color: var(--gold);
    text-decoration: underline;
}

/* ============================================
   11. GUARANTEE
   ============================================ */
.guarantee {
    background: linear-gradient(180deg, var(--bg-primary), rgba(26, 10, 46, 0.15), var(--bg-primary));
}

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

.guarantee-card {
    padding: 40px 28px;
    text-align: center;
}

.guarantee-icon {
    margin-bottom: 20px;
}

.guarantee-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.guarantee-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.satisfaction-badge {
    display: flex;
    justify-content: center;
}

.badge-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1;
}

.badge-text {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============================================
   12. FAQ
   ============================================ */
.faq {
    background: linear-gradient(180deg, var(--bg-primary), rgba(26, 10, 46, 0.12), var(--bg-primary));
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: color var(--transition);
    text-align: left;
}

.faq-question:hover { color: var(--gold); }

.faq-chevron {
    transition: transform 0.3s;
    flex-shrink: 0;
    color: var(--gold);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 28px 22px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   13. MERCH TEASER
   ============================================ */
.merch-teaser {
    text-align: center;
    padding: 40px 0;
}

.merch-teaser p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ============================================
   14. CTA + NEWSLETTER
   ============================================ */
.cta-block {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.cta-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 48px 0 36px;
}

.cta-value {
    padding: 28px 20px;
    text-align: center;
}

.cta-value-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.cta-value h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.cta-value p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cta-offer {
    padding: 16px 28px;
    margin-bottom: 36px;
    display: inline-block;
}

.offer-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
}

.newsletter-form {
    border-top: 1px solid rgba(237, 208, 168, 0.08);
    padding-top: 48px;
}

.newsletter-form h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.newsletter-form > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.newsletter-input-group {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(237, 208, 168, 0.12);
}

.newsletter-input-group input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(10, 5, 16, 0.6);
    border: none;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.newsletter-input-group input::placeholder { color: var(--text-dim); }
.newsletter-input-group input:focus { outline: none; }

.newsletter-input-group .btn { border-radius: 0; }

/* ============================================
   15. CONTACT
   ============================================ */
.contact {
    background: linear-gradient(180deg, var(--bg-primary), rgba(26, 10, 46, 0.1), var(--bg-primary));
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-bottom: 56px;
}

.contact-photo-side {
    position: relative;
    min-height: 480px;
}

.contact-photo-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(1, 0, 2, 0.3) 0%,
        rgba(1, 0, 2, 0.7) 100%
    );
}

.contact-photo-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px;
    z-index: 1;
}

.contact-photo-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.contact-photo-text p {
    font-size: 0.95rem;
    color: rgba(245, 240, 235, 0.7);
    line-height: 1.7;
}

.contact-form-side {
    background: var(--glass-bg);
    padding: 48px 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 5, 16, 0.6);
    border: 1px solid rgba(237, 208, 168, 0.1);
    border-radius: 6px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.contact-social {
    text-align: center;
}

.contact-social h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(237, 208, 168, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
}

.social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(237, 208, 168, 0.06);
}

/* ============================================
   16. FOOTER
   ============================================ */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(237, 208, 168, 0.06);
    background: linear-gradient(180deg, var(--bg-primary), rgba(26, 10, 46, 0.06));
}

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

.footer-logo {
    height: 48px;
    margin-bottom: 16px;
    filter: invert(1);
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links h4, .footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-links ul { list-style: none; }

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color var(--transition);
}

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

.footer-newsletter p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(237, 208, 168, 0.12);
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(10, 5, 16, 0.6);
    border: none;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.footer-newsletter-form input::placeholder { color: var(--text-dim); }
.footer-newsletter-form input:focus { outline: none; }

.btn-small-footer {
    padding: 12px 16px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(237, 208, 168, 0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .membership-grid { grid-template-columns: repeat(2, 1fr); }
    .pillar-cards { grid-template-columns: repeat(2, 1fr); }
    .pain-points { grid-template-columns: 1fr; }
    .offerings-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-badges { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .video-wrapper { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(1, 0, 2, 0.95);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid rgba(237, 208, 168, 0.06);
    }

    .nav-menu.active { display: flex; }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .nav-toggle { display: flex; }

    .hero-title { font-size: clamp(2rem, 7vw, 3rem); }

    .pillar-cards { grid-template-columns: 1fr; }
    .offerings-grid { grid-template-columns: 1fr; }
    .membership-grid { grid-template-columns: 1fr; }
    .guarantee-grid { grid-template-columns: 1fr; }
    .trust-badges { grid-template-columns: 1fr; }
    .cta-values { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .gallery-item.gallery-wide { grid-column: span 2; }

    .stats-bar {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .event-details {
        flex-direction: column;
        text-align: center;
    }

    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-photo-side {
        min-height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-arrow { display: none; }

    .event-countdown { gap: 16px; }
    .countdown-number { font-size: 2rem; }
}
