/* ============================================
   DESIGN SYSTEM — Celebrate Cinema 2026
   Whistling Woods International & CareerBeam
   ============================================ */

/* ───── GOOGLE FONTS ───── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800&family=Roboto:wght@300;400;500;700&display=swap');

/* ───── CSS VARIABLES ───── */
:root {
    /* Brand Colors */
    --primary: #af1996;
    --primary-dark: #7a1068;
    --primary-light: #d82ab7;
    --primary-glow: rgba(175, 25, 150, 0.45);
    
    --gold: #d4a843;
    --gold-light: #f3d078;
    --gold-dark: #a67c24;
    --gold-glow: rgba(212, 168, 67, 0.35);

    /* Backgrounds */
    --bg-dark: #07010a;
    --bg-body: #0a020e;
    --bg-card: rgba(25, 8, 30, 0.65);
    --bg-card-hover: rgba(35, 12, 42, 0.8);
    --bg-glass: rgba(18, 5, 22, 0.72);
    --bg-input: rgba(255, 255, 255, 0.05);
    --bg-input-focus: rgba(255, 255, 255, 0.09);

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-glass: rgba(212, 168, 67, 0.18);
    --border-focus: rgba(175, 25, 150, 0.6);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.78);
    --text-muted: rgba(255, 255, 255, 0.48);
    --text-accent: #e91e8c;

    /* Status */
    --success: #10b981;
    --success-bg: rgba(16, 185, 129, 0.12);
    --error: #ef4444;
    --error-bg: rgba(239, 68, 68, 0.12);
    --warning: #f59e0b;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Radii — Modern Luxury (Architectural 6-12px corners) */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-full: 8px; /* Modern sleek micro-rounding */

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ───── RESET & BASE ───── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* ───── BACKGROUND GLOW & PARTICLES ───── */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(175, 25, 150, 0.18) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* ───── LAYOUT ───── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.container-wide {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.section {
    padding: var(--space-4xl) 0;
    position: relative;
    z-index: 1;
}

.page {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-base);
    min-height: 80vh;
    padding-top: 80px;
}

.page.active {
    display: block;
}

.page.visible {
    opacity: 1;
}

#page-landing {
    padding-top: 0;
}

/* ───── TYPOGRAPHY ───── */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 40%, #ffffff 80%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--space-3xl);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.6;
}

.eyebrow-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

/* ───── GLASS CARD COMPONENT ───── */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    box-shadow: 0 10px 35px -5px rgba(0, 0, 0, 0.4);
}

.glass-card:hover {
    border-color: rgba(212, 168, 67, 0.4);
    box-shadow: 0 16px 40px -5px rgba(175, 25, 150, 0.2);
}

/* ───── NAVBAR ───── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    background: rgba(10, 2, 14, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 100;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(7, 1, 10, 0.95);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border-bottom-color: rgba(212, 168, 67, 0.2);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    cursor: pointer;
    text-decoration: none;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.brand-divider-vertical {
    width: 1px;
    height: 18px;
    background: rgba(212, 168, 67, 0.5);
}

.nav-partner-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 2px 6px;
    border-radius: 3px;
}

.brand-text-block {
    display: flex;
    flex-direction: column;
}

.nav-title {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.nav-subtitle {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    list-style: none;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 9px 22px !important;
    box-shadow: 0 4px 20px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px var(--primary-glow);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 1, 12, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    padding: var(--space-xl);
}

.nav-mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-xl);
}

.mobile-nav-contact {
    margin-top: var(--space-xl);
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    padding-top: var(--space-lg);
}

.mobile-nav-contact p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-contact .contact-link {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
}

/* ───── HERO SECTION ───── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 110px var(--space-lg) 60px;
    position: relative;
}

.hero-content {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-presenter-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.35);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.star-accent {
    color: var(--gold);
    font-size: 0.85rem;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.4rem, 6.5vw, 4.6rem);
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: var(--space-xs);
    text-shadow: 0 0 40px rgba(175, 25, 150, 0.3);
}

.hero-edition {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.hero-meta-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 168, 67, 0.25);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    color: #ffffff;
    backdrop-filter: blur(12px);
}

.pill-icon {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

/* Countdown */
.countdown-wrapper {
    margin-bottom: var(--space-2xl);
}

.countdown-title {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

.countdown {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: rgba(18, 4, 22, 0.7);
    border: 1px solid var(--border-glass);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-value {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.countdown-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-top: 2px;
}

.countdown-sep {
    font-size: 1.6rem;
    color: rgba(212, 168, 67, 0.4);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ───── BUTTONS & INTERACTION ───── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 13px 26px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    box-shadow: 0 4px 20px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #07010a;
    font-weight: 700;
    box-shadow: 0 4px 25px var(--gold-glow);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px var(--gold-glow);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: 10px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 168, 67, 0.4);
    transform: translateY(-2px);
}

.btn-whatsapp {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: #25D366;
}

.btn-whatsapp-large {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35) !important;
    border-radius: 10px !important;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-small:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-full {
    width: 100%;
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-icon-svg {
    width: 18px;
    height: 18px;
}

/* Scroll indicator placed in-flow below buttons so it never overlaps */
.scroll-indicator {
    position: relative;
    margin-top: var(--space-3xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translate(0, 0); }
    40% { transform: rotate(45deg) translate(4px, 4px); }
    60% { transform: rotate(45deg) translate(2px, 2px); }
}

/* ───── CURATED OVERVIEW ───── */
.curated-overview {
    padding: var(--space-3xl) var(--space-2xl);
    border: 1px solid rgba(212, 168, 67, 0.25);
    background: linear-gradient(135deg, rgba(22, 6, 28, 0.85) 0%, rgba(10, 2, 14, 0.95) 100%);
    margin-bottom: var(--space-4xl);
}

.overview-badge {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.overview-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    margin-bottom: var(--space-md);
}

.overview-body {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    line-height: 1.75;
    margin-bottom: var(--space-2xl);
}

.overview-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-subtle);
}

.metric-box {
    display: flex;
    flex-direction: column;
}

.metric-num {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ───── HIGHLIGHTS GRID ───── */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.highlight-card {
    padding: var(--space-2xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-icon-frame {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(175, 25, 150, 0.25), rgba(212, 168, 67, 0.15));
    border: 1px solid rgba(212, 168, 67, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.card-icon-frame svg {
    width: 26px;
    height: 26px;
    color: var(--gold-light);
}

.highlight-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    color: #ffffff;
}

.highlight-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ───── LUMINARIES GALLERY ───── */
.luminaries-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.luminary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all var(--transition-base);
}

.luminary-card:hover {
    border-color: rgba(212, 168, 67, 0.4);
    background: rgba(212, 168, 67, 0.06);
    transform: translateY(-3px);
}

.luminary-card.gold-border {
    border-color: rgba(212, 168, 67, 0.3);
    background: linear-gradient(135deg, rgba(175, 25, 150, 0.15), rgba(212, 168, 67, 0.1));
}

.luminary-name {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.luminary-role {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 500;
}

/* ───── PRICING HERO ───── */
.pricing-hero {
    max-width: 580px;
    margin: 0 auto;
}

.pricing-card-hero {
    text-align: center;
    padding: var(--space-3xl) var(--space-2xl);
    border: 1px solid rgba(212, 168, 67, 0.35);
    background: linear-gradient(135deg, rgba(28, 8, 35, 0.9) 0%, rgba(12, 2, 16, 0.95) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #07010a;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.pricing-original {
    font-size: 1.3rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: var(--space-xs);
}

.pricing-current {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.pricing-savings {
    color: var(--success);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.pricing-note {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: var(--space-2xl);
}

/* ───── EXECUTIVE CONTACT CARD ───── */
.executive-contact-card {
    border: 1px solid rgba(175, 25, 150, 0.3);
    padding: var(--space-3xl) var(--space-2xl);
    max-width: 840px;
    margin: 0 auto;
}

.contact-card-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.contact-badge {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.contact-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.contact-card-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-xl);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.executive-profile {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.profile-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-avatar svg {
    width: 26px;
    height: 26px;
    color: var(--gold-light);
}

.executive-profile h4 {
    font-size: 1.15rem;
    color: #ffffff;
}

.exec-role {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}

.exec-agency {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-links-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    justify-content: center;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.row-icon {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.row-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.row-val {
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

a.row-val:hover {
    color: var(--gold);
}

.contact-card-actions {
    display: flex;
    justify-content: center;
}

/* ───── REGISTRATION & FORMS ───── */
.register-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.pricing-sidebar {
    position: sticky;
    top: 96px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.price-line.discount {
    color: var(--success);
}

.price-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: var(--space-md) 0;
}

.price-line.total {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.price-final {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--gold);
}

.register-form-container {
    padding: var(--space-2xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--bg-input-focus);
    box-shadow: 0 0 15px rgba(212, 168, 67, 0.2);
}

.form-input.error {
    border-color: var(--error);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.input-with-button {
    display: flex;
    gap: var(--space-xs);
}

.input-with-button .form-input {
    flex: 1;
}

.form-divider {
    display: flex;
    align-items: center;
    margin: var(--space-xl) 0;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-divider::before, .form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

.form-divider span {
    padding: 0 var(--space-md);
}

.form-message {
    display: block;
    font-size: 0.8rem;
    margin-top: 4px;
}

.form-message.success { color: var(--success); }
.form-message.error { color: var(--error); }

/* ───── PAYMENT PAGE ───── */
.payment-layout {
    display: flex;
    justify-content: center;
}

.payment-card {
    max-width: 520px;
    width: 100%;
    text-align: center;
    padding: var(--space-3xl) var(--space-2xl);
}

.payment-amount {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
}

.gold-text {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 800;
}

.qr-container {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-xl);
}

.qr-glow {
    position: absolute;
    inset: -8px;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
}

.qr-image {
    position: relative;
    border: 3px solid rgba(212, 168, 67, 0.4);
    border-radius: var(--radius-md);
    background: #ffffff;
    padding: 8px;
}

.qr-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.file-upload-zone {
    border: 2px dashed var(--border-glass);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--bg-input);
    text-align: center;
}

.file-upload-zone:hover {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.05);
}

.upload-icon-svg {
    width: 36px;
    height: 36px;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.upload-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.screenshot-preview {
    max-height: 180px;
    border-radius: var(--radius-sm);
    margin: 0 auto;
}

/* ───── CONFIRMATION TICKET ───── */
.confirmation-content {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-2xl) 0;
}

.success-animation {
    margin-bottom: var(--space-xl);
}

.checkmark-circle {
    width: 72px;
    height: 72px;
    margin: 0 auto;
}

.checkmark-bg {
    stroke: var(--success);
    stroke-width: 2;
}

.checkmark-check {
    stroke: var(--success);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ticket-card {
    text-align: left;
    border: 1px solid rgba(212, 168, 67, 0.4);
    margin: var(--space-2xl) 0;
    position: relative;
    padding: var(--space-2xl);
}

.ticket-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.ticket-logos {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-logo {
    height: 32px;
    width: auto;
}

.ticket-brand-divider {
    width: 1px;
    height: 20px;
    background: var(--gold);
    opacity: 0.5;
}

.ticket-partner-logo {
    height: 22px;
    width: auto;
    background: #ffffff;
    padding: 2px 6px;
    border-radius: 3px;
}

.ticket-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.ticket-header p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.ticket-divider {
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--border-subtle) 0, var(--border-subtle) 6px, transparent 6px, transparent 12px);
    margin: var(--space-md) 0;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ticket-label {
    color: var(--text-muted);
}

.ticket-value {
    font-weight: 600;
    color: #ffffff;
}

.status-pending { color: var(--warning) !important; }
.status-verified { color: var(--success) !important; }

.ticket-qr-section {
    text-align: center;
    margin-top: var(--space-md);
}

.ticket-qr-label {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    margin-bottom: var(--space-sm);
}

.ticket-qr-container {
    display: flex;
    justify-content: center;
    margin: var(--space-md) 0;
}

.ticket-qr-container canvas {
    border-radius: var(--radius-md);
    border: 3px solid rgba(212, 168, 67, 0.4);
    padding: 8px;
    background: #ffffff;
}

.ticket-qr-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.referral-card {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.referral-link-box {
    display: flex;
    gap: var(--space-xs);
    margin: var(--space-md) 0;
}

.share-buttons {
    display: flex;
    gap: var(--space-sm);
}

.btn-share {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    color: #ffffff;
    transition: all var(--transition-fast);
}

.btn-share.whatsapp { background: #25D366; }
.btn-share.whatsapp:hover { background: #1eb857; }
.btn-share.twitter { background: #1DA1F2; }
.btn-share.twitter:hover { background: #0c8bd9; }

/* ───── ADMIN DASHBOARD ───── */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2xl) 0 var(--space-xl);
}

.admin-login-card {
    max-width: 440px;
    margin: var(--space-4xl) auto;
    text-align: center;
    padding: var(--space-3xl) var(--space-2xl);
}

.admin-login-icon {
    margin-bottom: var(--space-md);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.stat-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.stat-card:nth-child(1)::before { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.stat-card:nth-child(2)::before { background: linear-gradient(90deg, var(--success), #34d399); }
.stat-card:nth-child(3)::before { background: linear-gradient(90deg, var(--warning), #fbbf24); }
.stat-card:nth-child(4)::before { background: linear-gradient(90deg, #a855f7, #06b6d4); }
.stat-card:nth-child(5)::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.stat-value {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
}

.admin-tabs {
    display: flex;
    gap: var(--space-xs);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: var(--space-xl);
    overflow-x: auto;
}

.tab-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    background: none;
    border: none;
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.tab-btn.active {
    color: var(--gold-light);
    font-weight: 600;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.table-controls {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    gap: var(--space-sm);
    margin-left: auto;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.admin-table th {
    background: rgba(175, 25, 150, 0.08);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
    white-space: nowrap;
}

.admin-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    white-space: nowrap;
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
}

.badge-verified { background: var(--success-bg); color: var(--success); }
.badge-pending { background: rgba(245, 158, 11, 0.12); color: var(--warning); }

.action-btns {
    display: flex;
    gap: var(--space-xs);
}

.btn-verify {
    padding: 5px 12px;
    font-size: 0.75rem;
    border: 1px solid var(--success);
    background: transparent;
    color: var(--success);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 600;
}

.btn-verify.verified { background: var(--success); color: #ffffff; }

.btn-delete {
    padding: 5px 12px;
    font-size: 0.75rem;
    border: 1px solid var(--error);
    background: transparent;
    color: var(--error);
    border-radius: var(--radius-full);
    cursor: pointer;
}

.btn-delete:hover { background: var(--error); color: #ffffff; }

/* ───── ATTENDANCE SCANNER ───── */
.scanner-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.scanner-viewport {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
    margin: var(--space-md) auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000000;
}

.scanner-camera {
    width: 100%;
    height: 100%;
}

.scanner-camera video {
    object-fit: cover !important;
}

.scanner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: var(--space-sm);
    color: var(--text-muted);
}

.scanner-frame {
    position: absolute;
    inset: 15%;
    pointer-events: none;
}

.scanner-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--gold);
    border-style: solid;
    border-width: 0;
}

.scanner-corner.tl { top: 0; left: 0; border-top-width: 3px; border-left-width: 3px; }
.scanner-corner.tr { top: 0; right: 0; border-top-width: 3px; border-right-width: 3px; }
.scanner-corner.bl { bottom: 0; left: 0; border-bottom-width: 3px; border-left-width: 3px; }
.scanner-corner.br { bottom: 0; right: 0; border-bottom-width: 3px; border-right-width: 3px; }

.scanner-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 15px var(--gold-glow);
    animation: scanPulse 2.4s ease-in-out infinite;
    opacity: 0;
}

.scanner-active .scanner-line { opacity: 1; }

@keyframes scanPulse {
    0%, 100% { top: 0; }
    50% { top: 100%; }
}

.scanner-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}

.scanner-result-panel {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.recent-checkins-list {
    max-height: 260px;
    overflow-y: auto;
}

.checkin-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.88rem;
}

.checkin-time {
    font-family: monospace;
    color: var(--gold);
    font-size: 0.8rem;
}

.checkin-badge {
    background: var(--success-bg);
    color: var(--success);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
}

/* ───── COUPONS & LEADERBOARD ───── */
.coupon-form-card {
    margin-bottom: var(--space-xl);
}

.coupon-form {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-top: var(--space-md);
}

.coupon-form .form-input {
    flex: 1;
    min-width: 140px;
}

.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-md);
}

.coupon-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.coupon-code {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.coupon-discount-display {
    color: var(--success);
    font-weight: 600;
    font-size: 0.9rem;
}

.coupon-actions {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.referral-leaderboard {
    max-width: 600px;
}

.referral-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.referral-rank {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    width: 32px;
}

.referral-info { flex: 1; }
.referral-name { font-weight: 600; }
.referral-code-text { font-size: 0.8rem; color: var(--text-muted); }
.referral-count { font-weight: 700; color: var(--primary-light); font-size: 1.1rem; }

/* ───── WALL OF FAME ───── */
.names-counter {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    margin: var(--space-lg) 0 var(--space-2xl);
}

.counter-value {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
}

.names-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.name-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    transition: all var(--transition-base);
}

.name-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.name-card-initial {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}

.name-card-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.names-cta {
    text-align: center;
    padding-top: var(--space-xl);
}

.names-cta p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

/* ───── FILM STRIP & FOOTER ───── */
.film-strip {
    height: 14px;
    background-image: radial-gradient(circle, var(--bg-body) 3px, transparent 3px);
    background-size: 16px 14px;
    background-color: rgba(212, 168, 67, 0.25);
    margin-top: var(--space-4xl);
}

.footer {
    background: #050008;
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-branding-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-logo {
    height: 32px;
    width: auto;
}

.footer-divider-dot {
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0.5;
}

.footer-partner-logo {
    height: 24px;
    width: auto;
    background: #ffffff;
    padding: 2px 6px;
    border-radius: 3px;
}

.footer-title {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.footer-sub {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.footer-credits {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.gold-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.gold-link:hover {
    text-decoration: underline;
}

/* ───── TOAST NOTIFICATIONS ───── */
#toast-container {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    background: rgba(18, 5, 24, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    padding: 12px 22px;
    border-radius: var(--radius-md);
    color: #ffffff;
    font-size: 0.88rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(15px);
    transition: all var(--transition-base);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--error); }
.toast.info { border-color: var(--primary); }

/* ───── MODAL ───── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    width: 100%;
}

/* ───── MOBILE NAV & HAMBURGER ANIMATION ───── */
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--gold);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--gold);
}

.nav-mobile-overlay .nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 80%;
    max-width: 280px;
    text-align: center;
}

.nav-mobile-overlay .nav-link:hover,
.nav-mobile-overlay .nav-link.active {
    background: rgba(212, 168, 67, 0.15);
    border-color: var(--gold);
    color: var(--gold-light);
}

/* ───── RESPONSIVENESS & MOBILE-FIRST OPTIMIZATION ───── */
@media (max-width: 1024px) {
    .register-layout {
        grid-template-columns: 1fr;
    }
    .pricing-sidebar {
        position: static;
        margin-bottom: var(--space-xl);
    }
    .scanner-layout {
        grid-template-columns: 1fr;
    }
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 66px;
    }
    .nav-links {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .nav-brand .brand-text-block {
        display: none;
    }
    .brand-lockup {
        padding: 4px 10px;
        gap: 6px;
    }
    .nav-logo {
        height: 24px;
    }
    .nav-partner-logo {
        height: 18px;
    }
    .hero {
        padding: 96px var(--space-md) 48px;
        min-height: auto;
    }
    .hero-title {
        font-size: clamp(2.1rem, 8.5vw, 3.2rem);
        letter-spacing: 1.5px;
    }
    .hero-presenter-badge {
        font-size: 0.68rem;
        letter-spacing: 1.2px;
        padding: 5px 14px;
        width: 100%;
        max-width: 380px;
        justify-content: center;
    }
    .hero-meta-strip {
        flex-direction: column;
        gap: var(--space-xs);
        width: 100%;
    }
    .meta-pill {
        width: 100%;
        justify-content: center;
        padding: 8px 14px;
        font-size: 0.82rem;
    }
    .countdown-wrapper {
        width: 100%;
    }
    .countdown {
        width: 100%;
        max-width: 360px;
        padding: var(--space-sm) var(--space-md);
        gap: var(--space-sm);
        justify-content: center;
    }
    .countdown-item {
        min-width: 48px;
    }
    .countdown-value {
        font-size: 1.6rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 360px;
        justify-content: center;
    }
    .curated-overview {
        padding: var(--space-xl) var(--space-md);
    }
    .overview-metrics-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .highlight-card {
        padding: var(--space-xl) var(--space-md);
    }
    .luminaries-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    .luminary-card {
        padding: var(--space-md) var(--space-sm);
    }
    .luminary-name {
        font-size: 0.92rem;
    }
    .pricing-card-hero {
        padding: var(--space-2xl) var(--space-md);
    }
    .executive-contact-card {
        padding: var(--space-xl) var(--space-md);
    }
    .contact-details-grid {
        padding: var(--space-md);
        gap: var(--space-md);
    }
    .executive-profile {
        flex-direction: column;
        text-align: center;
    }
    .contact-links-box {
        text-align: center;
        align-items: center;
    }
    .contact-row {
        flex-direction: column;
        text-align: center;
        gap: 2px;
    }
    .contact-card-actions .btn {
        width: 100%;
        font-size: 0.85rem;
    }
    .register-form-container {
        padding: var(--space-xl) var(--space-md);
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-input {
        font-size: 16px; /* Prevents auto-zoom in iOS Safari */
    }
    .payment-card {
        padding: var(--space-xl) var(--space-md);
    }
    .ticket-card {
        padding: var(--space-xl) var(--space-md);
    }
    .ticket-header {
        flex-direction: column;
        text-align: center;
    }
    .ticket-row {
        flex-direction: column;
        gap: 2px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .filter-group {
        margin-left: 0;
        width: 100%;
        flex-wrap: wrap;
    }
    .filter-group .form-input,
    .filter-group .btn {
        flex: 1;
        min-width: 120px;
    }
    .admin-header {
        flex-direction: column;
        gap: var(--space-md);
        align-items: flex-start;
    }
    .footer {
        padding: var(--space-2xl) var(--space-md);
    }
    .footer-branding-row {
        flex-direction: column;
        gap: 8px;
    }
    .footer-divider-dot {
        display: none;
    }
}

@media (max-width: 480px) {
    .luminaries-showcase {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .share-buttons {
        flex-direction: column;
    }
    .names-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xs);
    }
    .name-card {
        padding: var(--space-md) var(--space-xs);
    }
    .name-card-name {
        font-size: 0.85rem;
    }
    .coupon-card {
        padding: var(--space-md);
    }
    .referral-item {
        padding: var(--space-sm);
        gap: var(--space-sm);
    }
}
