/* ═══════════════════════════════════════
   GLOBAL & VARIABLES
   ═══════════════════════════════════════ */
:root {
    /* Colors */
    --brand: #D43E27;
    --brand-light: #FCE8E5;
    --brand-dark: #A62F1C;
    --brand-gradient: linear-gradient(135deg, #D43E27, #F57C3A);
    --bg-main: #FFFFFF;
    --bg-alt: #F9FAFB;
    --text-main: #111827;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --border-color: #E5E7EB;

    /* Styling */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.12);
    
    /* Layout */
    --max-width: 1200px;
    --container-padding: 5%;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* Typography elements */
.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
nav {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: var(--max-width);
    z-index: 100;
    transition: all 0.3s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

nav.scrolled .nav-inner {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.logo_left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo_left img {
    height: 36px;
    width: auto;
}

.nav-logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--brand);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--text-main);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--brand);
    transform: translateY(-2px);
}

.mobile-cta-item {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    padding: 12rem var(--container-padding) 6rem;
    text-align: center;
    overflow: hidden;
}

.hero-mesh {
    position: absolute;
    top: -20%;
    left: -10%;
    right: -10%;
    height: 140%;
    background: 
        radial-gradient(circle at 15% 50%, rgba(212, 62, 39, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(245, 124, 58, 0.08) 0%, transparent 50%);
    filter: blur(60px);
    z-index: -1;
    animation: meshFlow 10s ease-in-out infinite alternate;
}

@keyframes meshFlow {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(3deg); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 62, 39, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 62, 39, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 62, 39, 0); }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-desc {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 62, 39, 0.2);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-light);
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.trust-avatars {
    display: flex;
}

.trust-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-left: -12px;
}
.trust-av:first-child {
    margin-left: 0;
}

.trust-info {
    text-align: left;
}

.trust-stars {
    color: #F59E0B;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.trust-stars span {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
}
.trust-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}


.hero-cards {
    position: relative;
    max-width: var(--max-width);
    margin: 4rem auto 0;
    height: 200px;
}

.h-card {
    position: absolute;
    background: white;
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite alternate;
    text-align: left;
}

.h-card-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-card-title {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-main);
}

.h-card-sub {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.h-card-1 { top: 0; left: 5%; animation-delay: 0s; }
.h-card-2 { bottom: 0; left: 20%; animation-delay: -2s; }
.h-card-3 { top: 20px; right: 5%; animation-delay: -4s; }
.h-card-4 { bottom: 10px; right: 25%; animation-delay: -1s; }

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
}

/* ═══════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════ */
.marquee-strip {
    background: var(--brand);
    color: white;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    transform: rotate(-2deg) scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(212, 62, 39, 0.2);
}

.marquee-track {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.marquee-track span {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   STATS
   ═══════════════════════════════════════ */
.stats-section {
    padding: 6rem var(--container-padding);
    max-width: var(--max-width);
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.stat-card {
    text-align: center;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--border-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 500;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════
   BENTO GRID FEATURES
   ═══════════════════════════════════════ */
.features-section {
    padding: 6rem var(--container-padding);
    background: var(--bg-alt);
}

.bento {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.5rem;
}

.bento-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.bento-icon {
    font-size: 2rem;
    width: 64px;
    height: 64px;
    background: var(--bg-alt);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.bento-lg {
    grid-column: span 2;
    background: var(--text-main);
    color: white;
}
.bento-lg h3 { color: white; }
.bento-lg p { color: var(--text-light); }
.bento-lg .bento-icon { background: rgba(255,255,255,0.1); }

.bento-glow {
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: var(--brand);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.bento-accent {
    background: var(--brand-light);
    border-color: rgba(212, 62, 39, 0.2);
}
.bento-accent .bento-icon {
    background: white;
    color: var(--brand);
}

/* ═══════════════════════════════════════
   SMART INVITE
   ═══════════════════════════════════════ */
.invite-section {
    padding: 8rem var(--container-padding);
    background: white;
}

.invite-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.invite-steps {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.inv-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.inv-num {
    width: 40px;
    height: 40px;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.inv-step h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.inv-step p {
    color: var(--text-muted);
}

.invite-right {
    position: relative;
}

.invite-mockup {
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
}

.mockup-card {
    background: linear-gradient(135deg, #FFF, #FEF2F2);
    border: 1px solid rgba(212, 62, 39, 0.1);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.mockup-ornament {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mockup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
}
.mockup-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.mockup-name {
    display: inline-block;
    background: white;
    border: 1px dashed var(--brand);
    color: var(--brand);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.mockup-body {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.mockup-date {
    font-size: 0.875rem;
    font-weight: 500;
}

.mockup-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.mockup-float {
    position: absolute;
    background: var(--text-main);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite alternate;
}
.mockup-f1 { top: 2rem; right: -1rem; animation-delay: 0s; }
.mockup-f2 { bottom: 4rem; left: -1rem; animation-delay: -2s; }

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.how-section {
    padding: 6rem var(--container-padding);
    background: var(--bg-alt);
}

.how-timeline {
    max-width: 1000px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.how-step {
    position: relative;
    text-align: center;
}

.how-num {
    width: 32px;
    height: 32px;
    background: var(--text-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.how-step:hover .how-num {
    background: var(--brand);
}

.how-connector {
    position: absolute;
    top: 16px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}
.how-step:hover .how-connector {
    background: var(--brand-light);
}


.how-icon-wrap {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.how-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

/* ═══════════════════════════════════════
   POST TYPES
   ═══════════════════════════════════════ */
.post-section {
    padding: 6rem var(--container-padding);
    background: white;
    overflow: hidden;
}

.post-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 5%;
    margin: 0 -5%;
    scrollbar-width: none; /* Firefox */
}

.post-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.post-card {
    min-width: 250px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.post-card:hover {
    background: white;
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.post-card-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.post-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.post-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════
   FESTIVALS
   ═══════════════════════════════════════ */
.festivals-section {
    padding: 6rem var(--container-padding);
    background: var(--bg-alt);
}

.festivals-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.festival-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.festival-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 62, 39, 0.2);
}

.festival-emoji {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.festival-info {
    flex: 1;
}

.festival-name {
    font-weight: 600;
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}

.festival-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.festival-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.festival-countdown, .festival-badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.festival-countdown {
    background: var(--bg-alt);
    color: var(--text-muted);
}

.festival-countdown.soon {
    background: rgba(245, 124, 58, 0.1);
    color: #d97706;
}

.festival-countdown.today {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    animation: pulse 2s infinite;
}

.festival-badge {
    background: var(--brand-light);
    color: var(--brand);
}

/* ═══════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════ */
.reviews-section {
    padding: 6rem var(--container-padding);
    background: white;
}

.reviews-carousel {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.reviews-window {
    overflow: hidden;
    flex: 1;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
}

.review-stars {
    color: #F59E0B;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.review-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.review-role {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.review-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    color: var(--text-main);
}

.review-arrow:hover {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: var(--brand);
    width: 24px;
}


/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-section {
    padding: 6rem var(--container-padding);
    background: var(--bg-alt);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.0625rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: var(--brand);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-question {
    color: var(--brand);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--brand);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
}


/* ═══════════════════════════════════════
   CTA
   ═══════════════════════════════════════ */
.cta-section {
    padding: 8rem var(--container-padding);
    position: relative;
    display: flex;
    justify-content: center;
    background: white;
}

.cta-bg {
    position: absolute;
    inset: 1rem 1rem 0;
    background: var(--brand-gradient);
    border-radius: var(--radius-xl);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--brand);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.btn-white-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
    background: var(--bg-alt);
    padding: 6rem var(--container-padding) 2rem;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 1.5rem 0;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    color: var(--brand);
    border-color: var(--brand);
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--brand);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}


/* ═══════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-card:nth-child(2)::after { display: none; }
    
    .invite-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav { top: 0; width: 100%; }
    .nav-inner { border-radius: 0; border: none; border-bottom: 1px solid var(--border-color); }
    
    .desktop-cta, .nav-links { display: none; }
    .menu-toggle { display: block; }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
    }
    
    .mobile-cta-item { display: block; margin-top: 1rem; }
    .nav-cta.mobile-cta { justify-content: center; }

    .hero { padding-top: 8rem; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    
    .hero-cards { display: none; }
    
    .bento { grid-template-columns: 1fr; }
    .bento-lg { grid-column: span 1; }
    
    .stats-grid { grid-template-columns: 1fr; padding: 2rem; }
    .stat-card::after { display: none; }
    
    .how-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .how-connector {
        top: 100%;
        left: 16px;
        width: 2px;
        height: 3rem;
    }
    .how-step { text-align: left; display: flex; gap: 1.5rem; }
    .how-num { margin: 0; flex-shrink: 0; }
    .how-content { margin-top: -5px; }
    .how-icon-wrap { margin-bottom: 0.5rem; }
    
    .review-card { flex: 0 0 100%; }
    .review-arrow { display: none; }
    .reviews-window { overflow-x: auto; scroll-snap-type: x mandatory; }
    .review-card { scroll-snap-align: center; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ═══════════════════════════════════════
   PREMIUM MOTION & ANIMATION SYSTEM
   ═══════════════════════════════════════ */

/* 1. Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--brand-gradient);
    z-index: 9999;
    box-shadow: 0 0 8px rgba(212, 62, 39, 0.5);
    transition: width 0.1s ease-out;
}

/* 2. Page Load Animations (Hero Section) */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    opacity: 0;
    animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge { animation-delay: 0.15s; }
.hero h1 { animation-delay: 0.3s; }
.hero-desc { animation-delay: 0.45s; }
.hero-actions { animation-delay: 0.6s; }
.hero-trust { animation-delay: 0.75s; }

/* 3. Hero Cards Entrance & Floating Choreography */
@keyframes cardEntrance1 {
    0% { opacity: 0; transform: translate(-80px, 40px) rotate(-15deg) scale(0.85); }
    100% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); }
}
@keyframes cardEntrance2 {
    0% { opacity: 0; transform: translate(-60px, 60px) rotate(-10deg) scale(0.85); }
    100% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); }
}
@keyframes cardEntrance3 {
    0% { opacity: 0; transform: translate(80px, 40px) rotate(15deg) scale(0.85); }
    100% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); }
}
@keyframes cardEntrance4 {
    0% { opacity: 0; transform: translate(60px, 60px) rotate(10deg) scale(0.85); }
    100% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); }
}

.h-card {
    will-change: transform, opacity;
}
.h-card-1 { animation: cardEntrance1 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both, float 6s ease-in-out 2s infinite alternate; }
.h-card-2 { animation: cardEntrance2 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both, float 6s ease-in-out 2.2s infinite alternate; }
.h-card-3 { animation: cardEntrance3 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both, float 6s ease-in-out 2.4s infinite alternate; }
.h-card-4 { animation: cardEntrance4 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both, float 6s ease-in-out 2.6s infinite alternate; }

/* 4. Scroll Reveal Framework */
.reveal {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up {
    transform: translateY(40px);
}

.reveal-fade-left {
    transform: translateX(-50px);
}

.reveal-fade-right {
    transform: translateX(50px);
}

.reveal-scale-up {
    transform: scale(0.93);
}

/* Revealed Active State */
.reveal.reveal-active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* 5. Spotlight Hover Effect (Bento Grid) */
.bento-card {
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(212, 62, 39, 0.07), transparent 75%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card > * {
    position: relative;
    z-index: 2;
}

/* 6. Primary Button Sweep Shine & Glow */
.btn-primary, .btn-glow, .btn-white {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    pointer-events: none;
}

.btn-white::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 62, 39, 0.15), transparent);
    transform: skewX(-25deg);
    pointer-events: none;
}

.btn-primary:hover::after, .btn-glow:hover::after, .btn-white:hover::after {
    animation: shine 0.85s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.btn-glow {
    box-shadow: 0 0 0 0 rgba(212, 62, 39, 0.4);
    animation: pulseGlow 2.5s infinite;
}

@keyframes shine {
    100% {
        left: 160%;
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 62, 39, 0.4);
    }
    70% {
        box-shadow: 0 0 15px 12px rgba(212, 62, 39, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 62, 39, 0);
    }
}

/* 7. Hover Micro-interactions & Speeds */
.nav-links a {
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.logo_left img {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo_left:hover img {
    transform: rotate(8deg) scale(1.1);
}

.festival-emoji,
.post-card-emoji {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.festival-card:hover .festival-emoji,
.post-card:hover .post-card-emoji {
    transform: scale(1.18) rotate(8deg);
}

/* 8. Override Reveal transform for Hover States */
.bento-card.reveal-active:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.post-card.reveal-active:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: white;
    border-color: var(--brand);
}

.festival-card.reveal-active:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 62, 39, 0.2);
}

.stat-card.reveal-active:hover {
    transform: translateY(-5px);
}

.faq-item.reveal-active {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.invite-mockup {
    transform-style: preserve-3d;
    will-change: transform;
}