/* ─── RESET & VARIABLES ───────────────────────────────────── */
:root {
    --brand:      #E30613;
    --brand-dark: #b3000f;
    --brand-rgb:  227, 6, 19;
    --gold:       #C9A84C;
    --gold-light: #e8d48a;
    --white:      #FFFFFF;
    --bg:         #F9F7F5;
    --text:       #1e1e1e;
    --muted:      #888;
    --border:     #e8e0e0;
    --transition: 0.28s ease;
    --radius:     3px;

    /* ── Hero vertical offset ──────────────────────────────────
       Positive  = push content DOWN from center
       Negative  = push content UP from center
       Unit: vh for desktop, svh for mobile (safe-viewport-height)
       ──────────────────────────────────────────────────────── */
    --hero-pos-desktop: 75%;
    --hero-pos-mobile:  60%;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: 'Onest', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: clip;
    max-width: 100%;
    line-height: 1.65;
    font-size: 16px;
}

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

h1, h2, h3, h4 { font-family: 'Onest', sans-serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; }

/* ─── SCROLL ANIMATION ────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── CONTAINER ───────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ─── SECTION HEADER ──────────────────────────────────────── */
.section-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
    margin-bottom: 10px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: var(--text);
    font-weight: 700;
}
.section-head {
    margin-bottom: 40px;
}

/* ─── DELIVERY STRIP ──────────────────────────────────────── */
.delivery-strip {
    background: var(--brand);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    max-width: 100%;
}
.delivery-link { color: #fff; opacity: 0.85; border-bottom: 1px solid rgba(255,255,255,0.35); }
.delivery-link:hover { opacity: 1; }

/* ─── NAVBAR ──────────────────────────────────────────────── */
.navbar {
    position: sticky; top: 0; z-index: 500;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 64px;
    width: 100%;
    max-width: 100%;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
}
.logo { cursor: pointer; }
.logo img { height: 44px; width: auto; transition: opacity var(--transition); }
.logo:hover img { opacity: 0.7; }

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    flex-shrink: 0;
}
.nav-links  { display: flex; gap: 32px; }

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(158, 48, 77, 0.08);
    border: 1px solid rgba(158, 48, 77, 0.14);
}
.lang-btn {
    border: none;
    background: transparent;
    color: var(--text-muted, #666);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    padding: 7px 11px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn:hover { color: var(--brand, #9E304D); }
.lang-btn.active {
    background: var(--brand, #9E304D);
    color: #fff;
}
.nav-links a {
    font-size: 0.78rem; letter-spacing: 0.5px;
    font-weight: 700; text-transform: uppercase;
    color: var(--muted); position: relative; padding-bottom: 3px;
    transition: color var(--transition);
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--brand);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--brand); }
.nav-links a:hover::after { width: 100%; }

/* ── Store button — desktop nav ───────────────────────────── */
.nav-store-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 24px;
    background: var(--brand);
    color: #fff !important;
    border-radius: 0;
    font-size: 0.78rem !important; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    white-space: nowrap; line-height: 1;
    transition: background var(--transition) !important;
}
.nav-store-btn::after { display: none !important; }
.nav-store-btn:hover  { background: var(--brand-dark) !important; color: #fff !important; transform: none !important; }
.nav-store-btn i { font-size: 0.9rem; line-height: 1; }

/* ── Store button — mobile panel ──────────────────────────── */
.mobile-store-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 24px; margin: 0 24px 24px;
    background: var(--brand);
    color: #fff !important;
    border-radius: 0;
    font-size: 0.82rem; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase;
    transition: background var(--transition);
}
.mobile-store-btn:hover { color: #fff !important; background: var(--brand-dark) !important; }
.mobile-store-btn i { font-size: 1rem; }

/* hamburger */
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 22px; height: 2px; margin: 5px 0; background: var(--text); transition: all 0.3s; }
.hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-panel {
    position: fixed; top: 0; right: -100%; width: 75%; max-width: 340px; height: 100vh;
    background: var(--white); border-left: 1px solid var(--border);
    display: flex; flex-direction: column; justify-content: center;
    align-items: center; gap: 36px;
    transition: right 0.38s cubic-bezier(0.77,0,0.175,1); z-index: 600;
    padding-top: 60px;
}
.mobile-nav-panel.active { right: 0; }
.close-menu-btn {
    position: absolute; top: 22px; right: 22px;
    font-size: 1.4rem; color: var(--muted); cursor: pointer;
    transition: color var(--transition), transform var(--transition);
}
.close-menu-btn:hover { color: var(--brand); transform: rotate(90deg); }
.mobile-nav-panel a { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; color: var(--text); }
.mobile-nav-panel a:hover { color: var(--brand); }

/* ─── HERO ────────────────────────────────────────────────── */
.promo-hero {
    /* Grow with viewport width on ultrawide screens (2500×1093 source) */
    min-height: max(88vh, calc(100vw * 1093 / 2500));
    height: auto;
    width: 100%;
    max-width: 100%;
    background: #f9f7f5 url('ASSETS/banner.png') no-repeat center center;
    background-size: cover;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 80px 24px;
    position: relative; overflow: hidden;
}
.promo-hero::before {
    content: none;
}
.hero-inner {
    position: absolute; z-index: 2;
    top: var(--hero-pos-desktop); left: 50%;
    transform: translate(-50%, -50%);
    max-width: 680px; width: calc(100% - 48px);
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
    font-weight: 700; color: var(--gold);
    border: 1px solid rgba(201,168,76,0.35);
    padding: 6px 20px; margin-bottom: 30px;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
    font-size: 1rem; color: rgba(255, 255, 255, 0.9);
    margin-bottom: 44px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.hero-divider {
    width: 40px; height: 1px;
    margin: 0 auto 40px;
}

/* Primary button */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 44px;
    background: var(--brand);
    color: #fff; border: none;
    font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    cursor: pointer; position: relative; overflow: hidden;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    font-family: 'Onest', sans-serif;
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.12);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(158,48,77,0.35); }
.btn-primary i { transition: transform 0.3s ease; }
.btn-primary:hover i { transform: rotate(15deg); }

/* Ghost button */
.btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 40px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    cursor: pointer; transition: all var(--transition);
    font-family: 'Onest', sans-serif;
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

.hero-legal { margin-top: 22px; font-size: 0.72rem; color: rgba(255,255,255); letter-spacing: 0.5px; }

.cd-label {
    font-size: 0.62rem; letter-spacing: 3.5px; text-transform: uppercase;
    color: #fff; font-weight: 600; margin-bottom: 14px !important;
}

/* ─── GUIDELINES ──────────────────────────────────────────── */
.guidelines-section { background: var(--bg); padding: 100px 0; }

.steps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.step-card {
    background: var(--white);
    padding: 44px 32px;
    border: 1px solid var(--border);
    transition: border-color var(--transition), transform var(--transition);
    position: relative;
}
.step-card::after {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--brand);
    transform: scaleY(0); transform-origin: bottom;
    transition: transform 0.3s ease;
}
.step-card:hover { border-color: rgba(158,48,77,0.4); transform: translateY(-4px); }
.step-card:hover::after { transform: scaleY(1); }

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700;
    color: rgba(158,48,77,0.28);
    line-height: 1; margin-bottom: 18px;
    display: block;
    transition: color var(--transition);
}
.step-card:hover .step-num { color: rgba(158,48,77,0.55); }
.step-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-card p  { font-size: 0.9rem; color: #4a4a4a; line-height: 1.75; }

/* ─── PRIZES SECTION ──────────────────────────────────────── */
.prizes-section { background: var(--white); padding: 100px 0; }

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border: 1px solid var(--border);
}
.prize-card {
    background: var(--white);
    padding: 36px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background var(--transition);
    cursor: default;
}
.prize-card:last-child { border-right: none; }
.prize-card:hover { background: var(--bg); }
.prize-card img { height: 110px; object-fit: contain; margin: 0 auto 18px; }
.prize-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.4; }
.prize-type-tag { font-size: 0.7rem; color: var(--muted); margin-top: 6px; letter-spacing: 1px; text-transform: uppercase; }

/* Hover lift + border reveal + image zoom */
.prize-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    overflow: hidden;
}
.prize-card:not(.discount-card):hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 36px rgba(158,48,77,0.14);
    border-color: var(--brand) !important;
    background: #fdf5f7 !important;
}
.prize-card img {
    transition: transform 0.38s cubic-bezier(0.25,1,0.5,1);
}
.prize-card:hover img { transform: scale(1.1) translateY(-4px); }

/* discount prize variant */
.prize-card.discount-card {
    background: var(--text);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.prize-card.discount-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.35);
}
.discount-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem; font-weight: 900;
    color: var(--gold); line-height: 1;
    transition: transform 0.3s ease;
}
.discount-card:hover .discount-number { transform: scale(1.1); }
.discount-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; }

/* ─── CONDITIONS ──────────────────────────────────────────── */
.conditions-section { background: var(--bg); padding: 100px 0; }
.conditions-inner { max-width: 760px; }
.conditions-list li {
    display: flex; gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem; color: var(--text); line-height: 1.65;
}
.conditions-list li:last-child { border-bottom: none; }
.conditions-list li i { color: var(--brand); flex-shrink: 0; margin-top: 3px; font-size: 0.8rem; }

/* ─── CTA ─────────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    padding: 100px 20px; text-align: center;
}
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--white); margin-bottom: 14px;
}
.cta-section p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 40px; }
.btn-cta-white {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 44px;
    background: var(--white); color: var(--brand);
    border: none; font-size: 0.82rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px;
    cursor: pointer; transition: all var(--transition);
    font-family: 'Onest', sans-serif;
}
.btn-cta-white:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.18); }
.btn-cta-white i { transition: transform 0.3s ease; }
.btn-cta-white:hover i { transform: rotate(20deg); }

/* ─── BOT MODAL ───────────────────────────────────────────── */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
    z-index: 2000; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal-box {
    background: var(--white); width: 90%; max-width: 460px;
    padding: 48px 40px; position: relative;
    border: 1px solid var(--border);
    transform: translateY(16px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34,1.4,0.64,1);
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }

.modal-close-btn {
    position: absolute; top: 18px; right: 18px;
    background: none; border: none; font-size: 1.1rem; color: var(--muted);
    cursor: pointer; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    transition: color var(--transition);
}
.modal-close-btn:hover { color: var(--brand); }

.modal-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; color: var(--text); margin-bottom: 8px;
}
.modal-box .modal-sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 30px; line-height: 1.6; }

.bot-options { display: flex; flex-direction: column; gap: 10px; }
.bot-btn {
    display: flex; align-items: center; gap: 14px;
    padding: 15px 18px;
    border: 1px solid var(--border); background: var(--bg);
    font-size: 0.9rem; font-weight: 600; color: var(--text);
    cursor: pointer; text-decoration: none;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.bot-btn:hover { background: var(--white); }
.bot-btn i { font-size: 1.4rem; flex-shrink: 0; }
.bot-btn-label strong { display: block; font-size: 0.9rem; }
.bot-btn-label small { font-size: 0.75rem; color: var(--muted); font-weight: 400; }
.bot-btn .bot-arrow { margin-left: auto; color: var(--muted); font-size: 0.75rem; }

.bot-btn.telegram:hover  { border-color: #229ED9; color: #229ED9; }
.bot-btn.telegram i      { color: #229ED9; }
.bot-btn.whatsapp:hover  { border-color: #25D366; color: #25D366; }
.bot-btn.whatsapp i      { color: #25D366; }
.bot-btn.web-form:hover  { border-color: var(--brand); color: var(--brand); }
.bot-btn.web-form i      { color: var(--brand); }

.modal-legal { font-size: 0.72rem; color: var(--muted); margin-top: 18px; line-height: 1.6; }

/* ─── FOOTER — original brand gradient ────────────────────── */
footer {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: rgba(255,255,255,0.82);
    padding: 72px 0 24px;
    font-size: 0.88rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.8fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { height: 52px; width: auto; margin-bottom: 20px; display: block; }
.footer-brand-text { line-height: 1.8; max-width: 280px; opacity: 0.8; }

.footer-col-title {
    font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.5); font-weight: 700; margin-bottom: 20px;
    position: relative; display: inline-block;
}
.footer-col-title::after {
    content: ''; display: block; width: 30px; height: 1px;
    background: rgba(255,255,255,0.25); margin-top: 8px;
}
.footer-link {
    display: block; color: rgba(255,255,255,0.65); margin-bottom: 11px;
    transition: color var(--transition), padding-left var(--transition);
}
.footer-link:hover { color: var(--white); padding-left: 4px; }

.contact-row {
    display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
    color: rgba(255,255,255,0.65); transition: color var(--transition), transform var(--transition);
}
.contact-row:hover { color: var(--white); transform: translateX(6px); }
.contact-row--static { cursor: default; max-width: 260px; line-height: 1.65; margin-bottom: 0; }
.contact-row--static:hover { color: rgba(255,255,255,0.65); transform: none; }
.contact-row i { width: 16px; text-align: center; font-size: 0.85rem; flex-shrink: 0; }

.footer-contact-col .contact-row:not(.contact-row--static) { margin-bottom: 0; }
.footer-address-title {
    margin-top: 28px;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 24px; color: rgba(255,255,255, 0.65); font-size: 0.78rem;
    text-align: center;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1200px) {
    /* 5-col prize grid → 3 cols */
    .prizes-grid[style*="repeat(5"] { grid-template-columns: repeat(3,1fr) !important; }
}
@media (max-width: 1024px) {
    .steps-grid  { grid-template-columns: repeat(2, 1fr); gap: 1px; }
    .prizes-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .prize-card  { border-bottom: 1px solid var(--border); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .navbar { padding: 0 18px; }
    .nav-links { display: none; }
    .navbar-actions { gap: 10px; }
    .hamburger { display: block; }
    .steps-grid  { grid-template-columns: 1fr; }
    .prizes-grid { grid-template-columns: repeat(2,1fr) !important; }
    .prize-card  { border-right: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .modal-box   { padding: 36px 24px; }
    .hero-title  { font-size: 2.2rem; }
}
@media (max-width: 480px) {
    .prizes-grid { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════
   APRIORI REWARDS — Landing page component styles
   ═══════════════════════════════════════════════════════════ */

/* ── Navbar logo (650×280 source) ───────────────────────── */
.navbar .logo img {
    height: 40px;
    width: auto;
    max-width: 94px;   /* 40 × (650/280) ≈ 93px */
    object-fit: contain;
}
.footer-logo {
    height: 56px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

/* ── Hero countdown block ───────────────────────────────── */
.hero-countdown {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 18px 32px;
    margin-bottom: 36px;
    backdrop-filter: blur(4px);
}
.c-unit { text-align: center; min-width: 58px; }
.c-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem; font-weight: 900;
    color: #fff; line-height: 1; display: block;
}
.c-lbl {
    font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.45); display: block; margin-top: 4px;
}
.c-sep {
    font-size: 1.6rem; font-weight: 900;
    color: rgba(255,255,255,0.25); line-height: 1;
    padding: 0 4px; margin-bottom: 12px; flex-shrink: 0;
}

/* ── Prize tiers (cosmeplant vertical stack) ────────────── */
.prize-tiers { background: #fff; padding: 0; }
.prize-tiers-header { padding: 56px 20px 32px; text-align: center; }

.prize-tier {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    border-top: 1px solid #f0f0f0;
}
.prize-tier.reversed .tier-visual { order: 2; }
.prize-tier.reversed .tier-text   { order: 1; }

.tier-visual {
    background: #fafafa;
    display: flex; align-items: center; justify-content: center;
    padding: 60px 40px; position: relative; overflow: hidden;
}
.tier-visual.red-bg  { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); }
.tier-visual.dark-bg { background: #1a1a1a; }
.tier-visual.deep-bg { background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
/* ── Per-tier background images — swap the URL on each to change individually ── */
.tier-visual.tier-bg--grand {
    background: #fff url('ASSETS/cappadocia.png') no-repeat center center / cover;
}
.tier-visual.tier-bg--monthly {
    background: #fff url('ASSETS/raybands.png') no-repeat center center / cover;
}
.tier-visual.tier-bg--weekly {
    background: #fff url('ASSETS/gadgets.png') no-repeat center center / cover;
}
.tier-visual.tier-bg--daily {
    background: #fff url('ASSETS/sets.png') no-repeat center center / cover;
}
.tier-visual.deep-bg::before {
    content: none;
}

/* CAN product images */
.tier-cans {
    display: flex; align-items: flex-end; justify-content: center;
}
.tier-cans img {
    height: 170px; width: auto; object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,0.18));
    transition: transform 0.4s ease; flex-shrink: 0;
}
.tier-cans img:nth-child(n+2) { margin-left: -28px; }
.tier-cans img:nth-child(2)   { transform: translateY(-14px); }
.tier-cans img:nth-child(3)   { transform: translateY(-6px); }
.tier-visual:hover .tier-cans img:nth-child(1) { transform: translateX(-6px) rotate(-3deg); }
.tier-visual:hover .tier-cans img:nth-child(2) { transform: translateY(-20px) scale(1.05); }
.tier-visual:hover .tier-cans img:nth-child(3) { transform: translateX(6px) rotate(3deg) translateY(-6px); }

/* Weekly icon row */
.tier-icons-row {
    display: flex; gap: 28px; align-items: flex-end; justify-content: center;
}
.tier-icon-col { text-align: center; color: #fff; }
.tier-icon-col i {
    font-size: 2.6rem; display: block; margin-bottom: 8px;
    opacity: 0.9; transition: transform 0.3s;
}
.tier-visual:hover .tier-icon-col i { transform: translateY(-6px); }
.tier-icon-col small {
    font-size: 0.6rem; letter-spacing: 2.5px; opacity: 0.55;
    text-transform: uppercase; display: block;
}

/* Grand prize visual */
.grand-prize-center {
    text-align: center; color: #fff; position: relative; z-index: 2;
}
.grand-prize-center .gp-emoji {
    font-size: 5rem; display: block; margin-bottom: 12px;
    filter: drop-shadow(0 6px 24px rgba(201,168,76,0.5));
    transition: transform 0.4s;
}
.tier-visual:hover .grand-prize-center .gp-emoji { transform: scale(1.1) translateY(-6px); }
.grand-prize-center .gp-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700; line-height: 1.2;
}
.grand-prize-center .gp-sub {
    font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
    color: rgba(201,168,76,0.7); margin-top: 8px; display: block;
}

/* Tier text column */
.tier-text {
    padding: 60px 64px;
    display: flex; flex-direction: column; justify-content: center;
}
.tier-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(var(--brand-rgb), 0.08);
    color: var(--brand);
    font-size: 0.65rem; font-weight: 800;
    letter-spacing: 3px; text-transform: uppercase;
    padding: 6px 14px; margin-bottom: 20px; width: fit-content;
}
.tier-badge.gold-badge { background: rgba(160,122,32,0.08); color: #a07a20; }
.tier-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    color: #1e1e1e; font-weight: 700; line-height: 1.2; margin-bottom: 16px;
}
.tier-desc {
    font-size: 0.95rem; color: #555; line-height: 1.85;
    margin-bottom: 22px; max-width: 480px;
}
.tier-items {
    list-style: none; padding: 0; margin: 0 0 22px;
    display: flex; flex-direction: column; gap: 8px;
}
.tier-items li {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.9rem; color: #333;
    padding: 10px 14px; background: #fafafa;
    border-left: 3px solid var(--brand);
}
.tier-items li i { color: var(--brand); font-size: 0.82rem; flex-shrink: 0; }
.tier-count {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 700;
    color: var(--brand); letter-spacing: 1px; text-transform: uppercase;
}
.tier-count.gold-count { color: #a07a20; }

/* ── Rules & PDF section ────────────────────────────────── */
.rules-section { background: #fafafa; padding: 56px 0; }
.rules-grid {
    display: grid; grid-template-columns: 1fr 400px;
    gap: 60px; align-items: center;
}
.rules-grid .faq-grid { max-width: none; }
.rules-pdf-col {
    display: flex; align-items: center; justify-content: center;
    align-self: center; height: 100%;
}
.rules-pdf-col .pdf-card {
    width: 100%; max-width: 400px;
}
#how .rules-steps-grid,
#faq .faq-grid { counter-reset: faq-step-num; }
#how .rules-steps-grid .faq-q::before,
#faq .faq-grid .faq-q::before {
    counter-increment: faq-step-num;
    content: counter(faq-step-num);
    width: 38px; height: 38px; min-width: 38px;
    background: var(--brand); color: #fff;
    border-radius: 50%;
    font-size: 0.82rem; font-weight: 800;
    line-height: 38px; text-align: center;
    flex-shrink: 0;
}
#how .rules-steps-grid .faq-a,
#faq .faq-grid .faq-a {
    padding-left: 54px;
}
.rules-steps { display: flex; flex-direction: column; }
.rule-step {
    display: flex; gap: 20px;
    padding: 22px 0; border-bottom: 1px solid #ebebeb;
}
.rule-step:last-child { border-bottom: none; }
.rule-step-num {
    width: 38px; height: 38px; background: var(--brand); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; font-weight: 800; flex-shrink: 0; margin-top: 2px;
}
.rule-step-content h4 { font-size: 0.92rem; font-weight: 700; color: #1e1e1e; margin-bottom: 4px; }
.rule-step-content p  { font-size: 0.875rem; color: #666; line-height: 1.75; }
.pdf-card {
    background: #fff; border: 1px solid #eee;
    padding: 40px 36px; text-align: center;
    position: sticky; top: 90px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.pdf-icon { font-size: 3rem; color: var(--brand); margin-bottom: 16px; display: block; }
.pdf-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; color: #1e1e1e; margin-bottom: 10px;
}
.pdf-card p { font-size: 0.85rem; color: #777; line-height: 1.75; margin-bottom: 28px; }
.btn-pdf {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; background: var(--brand); color: #fff;
    font-size: 0.78rem; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    font-family: 'Onest', sans-serif;
}
.btn-pdf:hover { background: var(--brand-dark); transform: translateY(-2px); }

/* ── Inline registration form ───────────────────────────── */
.register-section {
    background: url('ASSETS/cappadocia.png') no-repeat center center;
    background-size: cover;
    padding: 56px 0; position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.register-section::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0.64);
}
.register-section .container {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center;
}
.reg-section-head { text-align: center; margin-bottom: 48px; }
.reg-section-head .section-label { color: rgba(255,255,255,0.55); }
.reg-section-head .section-title { color: #fff; }
.reg-section-head p {
    color: rgba(255,255,255,0.5); font-size: 0.95rem;
    margin-top: 12px; max-width: 500px;
}
.reg-form-wrap {
    width: 100%; max-width: 560px; background: #fff; overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.38);
}
.reg-form-wrap::before {
    content: ''; display: block; height: 4px;
    background: linear-gradient(90deg, var(--brand) 0%, #ff6b6b 100%);
}
.reg-form-inner { padding: 44px 40px; }
.reg-keep-receipt-notice {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; margin-bottom: 28px;
    background: #fff8f8;
    border: 1px solid rgba(227, 6, 19, 0.12);
    border-left: 3px solid var(--brand);
}
.reg-keep-receipt-ico,
.faq-ticket-ico {
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(14%) sepia(99%) saturate(7452%) hue-rotate(353deg) brightness(95%) contrast(113%);
}
.reg-keep-receipt-ico {
    width: 22px; height: 22px;
    flex-shrink: 0;
}
.reg-keep-receipt-notice p {
    font-size: 0.84rem; font-weight: 600; color: var(--brand);
    line-height: 1.5; margin: 0;
}
.form-group { margin-bottom: 24px; }
.form-label {
    display: block; font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px;
    color: #1e1e1e; margin-bottom: 10px;
}
.form-input {
    width: 100%; padding: 14px;
    border: 1.5px solid #e8e0e0; border-radius: 3px;
    font-size: 1rem; font-family: 'Onest', sans-serif;
    color: #1e1e1e; background: #fff; outline: none;
    transition: border-color 0.25s;
}
.form-input:focus { border-color: var(--brand); }
.form-input.valid   { border-color: #2ecc71; }
.form-input.invalid { border-color: #e74c3c; }
.form-input::placeholder { color: #bbb; }
.phone-row {
    display: flex; align-items: stretch;
    border: 1.5px solid #e8e0e0; border-radius: 3px;
    transition: border-color 0.25s; background: #fff;
}
.phone-row:focus-within { border-color: var(--brand); }
.phone-row.valid   { border-color: #2ecc71; }
.phone-row.invalid { border-color: #e74c3c; }
.phone-prefix {
    display: flex; align-items: center; padding: 0 14px;
    background: #F9F7F5; border-right: 1.5px solid #e8e0e0;
    font-size: 0.95rem; font-weight: 700; color: #1e1e1e;
    border-radius: 3px 0 0 3px; white-space: nowrap; user-select: none;
}
.phone-input {
    flex: 1; border: none; outline: none; padding: 14px;
    font-size: 1rem; font-family: 'Onest', sans-serif;
    color: #1e1e1e; letter-spacing: 1px; background: transparent; min-width: 0;
}
.phone-input::placeholder { color: #bbb; letter-spacing: 0; }
.phone-preview { font-size: 0.78rem; color: #888; margin-top: 6px; min-height: 18px; }
.phone-preview.valid { color: #27ae60; }
.form-hint { font-size: 0.75rem; color: #888; margin-top: 5px; min-height: 16px; }
.form-hint.success { color: #27ae60; }
.form-hint.error   { color: #e74c3c; }
.upload-zone {
    border: 2px dashed #e8e0e0; border-radius: 4px;
    min-height: 130px; position: relative; cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.upload-zone:hover, .upload-zone.drag-over { border-color: var(--brand); background: #fff5f5; }
.upload-zone.has-image { border-style: solid; border-color: #27ae60; }
.upload-zone.processing { opacity: 0.65; pointer-events: none; }
.upload-placeholder {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; padding: 24px 20px; text-align: center; pointer-events: none;
}
.upload-icon { font-size: 2rem; color: #aaa; }
.upload-text { font-size: 0.88rem; font-weight: 600; color: #333; }
.upload-sub  { font-size: 0.72rem; color: #aaa; }
.upload-preview { display: none; width: 100%; position: relative; }
.upload-preview img {
    width: 100%; max-height: 200px; object-fit: contain;
    display: block; background: #f0f0f0;
}
.remove-photo {
    position: absolute; top: 8px; right: 8px;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(0,0,0,0.5); color: #fff;
    border: none; cursor: pointer; font-size: 0.8rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.remove-photo:hover { background: #e74c3c; }
.multi-ticket-toggle {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; background: #fafafa;
    border: 1px solid #eee; cursor: pointer; margin-bottom: 0;
    transition: background 0.2s, border-color 0.2s; user-select: none;
}
.multi-ticket-toggle:hover { background: #fff5f5; border-color: rgba(var(--brand-rgb), 0.35); }
.multi-ticket-toggle input[type="checkbox"] {
    width: 17px; height: 17px; cursor: pointer;
    accent-color: var(--brand); flex-shrink: 0;
}
.mtl-text { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 600; color: #333; }
.mtl-hint { font-size: 0.73rem; color: #aaa; margin-left: auto; white-space: nowrap; }
.extra-uploads {
    display: flex; flex-direction: column; gap: 12px;
    background: #fafafa; border: 1px solid #eee; border-top: none;
    overflow: hidden;
    max-height: 0; opacity: 0; padding: 0 20px; margin-bottom: 0;
    transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1),
                opacity 0.32s ease,
                padding 0.32s ease,
                margin-bottom 0.28s ease;
}
.extra-uploads.visible {
    max-height: 1000px; opacity: 1;
    padding: 16px 20px; margin-bottom: 8px;
}
.extra-only-hint {
    font-size: 0.76rem; color: var(--brand); font-weight: 700;
    padding: 6px 0 2px; display: none;
}
.extra-uploads.extra-only-mode .extra-only-hint { display: block; }
.extra-uploads-title {
    font-size: 0.72rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--brand); display: flex; align-items: center; gap: 7px;
}
.multi-file-drop {
    border: 2px dashed #e0e0e0; border-radius: 4px;
    padding: 22px 16px; text-align: center; cursor: pointer;
    transition: border-color 0.25s, background 0.25s; background: #fff;
}
.multi-file-drop:hover { border-color: var(--brand); background: #fff5f5; }
.multi-file-drop i { font-size: 1.6rem; color: #ccc; display: block; margin-bottom: 8px; }
.multi-file-drop p { font-size: 0.85rem; color: #555; font-weight: 600; }
.multi-file-drop small { font-size: 0.72rem; color: #aaa; }
.extra-files-list { display: flex; flex-direction: column; gap: 6px; }
.extra-file-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 12px; background: #fff;
    border: 1px solid #eee; font-size: 0.82rem; color: #333;
}
.extra-file-item i   { color: var(--brand); flex-shrink: 0; }
.extra-file-item .fname { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.extra-file-item .fsize { color: #aaa; font-size: 0.72rem; flex-shrink: 0; }
.extra-file-item .fremove {
    background: none; border: none; cursor: pointer;
    color: #ccc; font-size: 0.85rem; padding: 2px 4px;
    transition: color 0.2s; flex-shrink: 0;
}
.extra-file-item .fremove:hover { color: #e74c3c; }
.files-counter { font-size: 0.72rem; color: #888; text-align: right; }
.files-counter.at-limit { color: #e74c3c; font-weight: 700; }
.btn-reg-submit {
    width: 100%; padding: 15px; background: var(--brand); color: #fff; border: none;
    font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    cursor: pointer; border-radius: 3px; margin-top: 28px;
    transition: background 0.25s, transform 0.2s, opacity 0.2s;
    font-family: 'Onest', sans-serif;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-reg-submit:hover:not(:disabled) { background: var(--brand-dark); transform: translateY(-1px); }
.btn-reg-submit:disabled { opacity: 0.42; cursor: not-allowed; }
/* ── Form states ── */
.reg-states-grid { overflow: hidden; }
.reg-states-grid > .reg-state { display: none; opacity: 0; }

/* Non-form states: flex so the card is centred in the pinned height */
.reg-states-grid > .reg-state.active {
    display: flex; align-items: center; justify-content: center; min-height: 100%;
}
/* Form state: normal block flow */
#state-form.active { display: block; min-height: 0; }

.reg-states-grid > .reg-state.active.state-visible {
    animation: fadeState 0.32s ease forwards;
}
@keyframes fadeState {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.state-card {
    margin: 36px 40px; padding: 40px 36px;
    text-align: center; background: #fafafa; border: 1px solid #ebebeb;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.state-card--success { border-top: 3px solid #27ae60; }
.state-card--error   { border-top: 3px solid #e74c3c; }
.state-card--loading { border-top: 3px solid var(--brand); }
.state-card--ended   { border-top: 3px solid var(--gold); }
.state-card--ended .big-icon { color: var(--gold); }
.state-ended-sub { font-size: 0.82rem !important; opacity: 0.7; margin-top: 4px !important; }

/* ── Promo state notice banner ───────────────────────────── */
.promo-state-notice {
    width: 100%; max-width: 560px;
    margin: 0 auto 28px;
}
.promo-state-notice .psn-inner {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 18px;
    border-left: 3px solid transparent;
    background: transparent;
}
.promo-state-notice .psn-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.promo-state-notice .psn-text {
    display: flex; flex-direction: column; gap: 3px;
}
.promo-state-notice .psn-text strong { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; }
.promo-state-notice .psn-text span   { font-size: 0.80rem; line-height: 1.6; }
.promo-state-notice .psn-text em     { font-style: normal; font-weight: 700; }
.promo-state--ended .psn-inner {
    border-left-color: var(--muted);
    color: #fff;
}
.promo-state--ended .psn-icon        { color: rgba(255,255,255,0.5); }
.promo-state--ended .psn-text span   { color: rgba(255,255,255,0.6); }
.state-card .big-icon   { font-size: 2.8rem; margin-bottom: 10px; }
.state-card--success .big-icon { color: #27ae60; }
.state-card--error   .big-icon { color: #e74c3c; }
.state-card--loading .fa-spin  { font-size: 2.4rem; color: var(--brand); margin-bottom: 12px; }
.state-card h2 { font-family:'Playfair Display',serif; font-size:1.5rem; color:#1e1e1e; margin-bottom:8px; }
.state-card p  { color:#888; font-size:0.88rem; line-height:1.7; margin-bottom:4px; }
.confirmed-number { color: var(--brand); font-weight: 700; }
.btn-submit-another {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 18px; padding: 11px 24px;
    border: 1.5px solid var(--brand); background: transparent; color: var(--brand);
    font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    cursor: pointer; font-family: 'Onest', sans-serif;
    transition: background 0.22s, color 0.22s; border-radius: 3px;
}
.btn-submit-another:hover { background: var(--brand); color: #fff; }
@media (max-width: 480px) {
    .state-card { margin: 24px 20px; padding: 32px 22px; }
}

/* ── Animated primary upload zone collapse ─────────────── */
.upload-zone-wrap {
    overflow: hidden;
    max-height: 320px; opacity: 1;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
                opacity 0.3s ease,
                margin-bottom 0.32s ease;
    margin-bottom: 24px;
}
.upload-zone-wrap > .form-group { margin-bottom: 0; }
.upload-zone-wrap.collapsed {
    max-height: 0; opacity: 0;
    pointer-events: none; margin-bottom: 0;
}
.btn-retry {
    padding: 12px 36px; background: var(--brand); color: #fff; border: none;
    font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    cursor: pointer; border-radius: 3px; font-family: 'Onest', sans-serif;
    transition: background 0.25s;
}
.btn-retry:hover { background: var(--brand-dark); }

/* ── FAQ section ────────────────────────────────────────── */
.faq-section { background: #fff; padding: 56px 0; }
.faq-grid { max-width: 760px; }
.faq-item { border-bottom: 1px solid #ebebeb; }
.faq-item:first-child { border-top: 1px solid #ebebeb; }
.faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; cursor: pointer; gap: 16px; user-select: none;
}
.faq-q h4 { font-size: 0.95rem; font-weight: 700; color: #1e1e1e; line-height: 1.45; flex: 1; }
.faq-q .faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: #fafafa; border: 1px solid #eee;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.75rem; color: #888;
    transition: background 0.22s, color 0.22s, transform 0.3s, border-color 0.22s;
}
.faq-item.open .faq-icon {
    background: var(--brand); color: #fff;
    border-color: var(--brand); transform: rotate(45deg);
}
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0,1,0,1), padding 0.3s;
}
.faq-item.open .faq-a {
    max-height: 500px;
    transition: max-height 0.5s ease-in-out, padding 0.3s;
    padding-bottom: 20px;
}
.faq-a p { font-size: 0.9rem; color: #555; line-height: 1.85; }

/* ── Back-to-top button ─────────────────────────────────── */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--brand); color: #fff;
    border: none; cursor: pointer; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(var(--brand-rgb), 0.35);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    transform: translateY(10px);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover   { background: var(--brand-dark); transform: translateY(-3px); }

/* ── Apriori responsive overrides ──────────────────────── */
@media (max-width: 960px) {
    .prize-tier { grid-template-columns: 1fr; min-height: auto; }
    .prize-tier.reversed .tier-visual { order: 0; }
    .prize-tier.reversed .tier-text   { order: 1; }
    .tier-visual { min-height: 280px; }
    .tier-text   { padding: 40px 32px; }
    .rules-grid  { grid-template-columns: 1fr; }
    .pdf-card    { position: static; }
}
@media (max-width: 600px) {
    .c-num { font-size: 1.6rem; }
    .hero-countdown { padding: 14px 20px; }
    .c-unit { min-width: 44px; }
    .tier-cans img { height: 120px; }
    .reg-form-inner { padding: 32px 22px; }
    .mtl-hint { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATION VARIANTS
   ═══════════════════════════════════════════════════════════ */
.reveal-left {
    opacity: 0; transform: translateX(-36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
    opacity: 0; transform: translateX(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale {
    opacity: 0; transform: scale(0.93);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
    opacity: 1; transform: none;
}
/* Stagger helpers */
.reveal-d1 { transition-delay: 0.1s !important; }
.reveal-d2 { transition-delay: 0.2s !important; }
.reveal-d3 { transition-delay: 0.3s !important; }
.reveal-d4 { transition-delay: 0.4s !important; }
.reveal-d5 { transition-delay: 0.5s !important; }

/* Hero content always visible — no page-load animation */
.hero-inner > * { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   PRIZES CTA
   ═══════════════════════════════════════════════════════════ */
.prizes-cta-wrap {
    display: flex;
    justify-content: center;
    padding: 32px 20px 8px;
    background: #fff;
}
.prizes-cta {
    display: inline-block;
    padding: 14px 44px;
    background: var(--brand);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
}
.prizes-cta:hover { background: var(--brand-dark); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════
   SECTION SCROLL HINTS
   ═══════════════════════════════════════════════════════════ */
.section-next {
    display: flex; flex-direction: column; align-items: center;
    padding: 18px 20px 22px; gap: 8px; cursor: pointer;
    user-select: none; background: #fff;
}
.section-next-label {
    font-size: 0.6rem; letter-spacing: 3.5px; text-transform: uppercase;
    color: #bbb; font-weight: 700;
    transition: color 0.3s;
}
.section-next:hover .section-next-label { color: var(--brand); }
.section-next-arrow {
    width: 36px; height: 36px;
    border: 1.5px solid #e8e8e8;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #bbb; font-size: 0.8rem;
    animation: snh-bounce 2.4s ease-in-out infinite;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.section-next:hover .section-next-arrow {
    background: var(--brand); color: #fff;
    border-color: var(--brand); animation-play-state: paused;
}
@keyframes snh-bounce {
    0%, 50%, 100% { transform: translateY(0); }
    75%           { transform: translateY(7px); }
}
/* On colored-bg sections (placed inside them) */
.section-next--on-dark { background: transparent; }
.section-next--on-dark .section-next-label { color: rgba(255,255,255,0.35); }
.section-next--on-dark:hover .section-next-label { color: rgba(255,255,255,0.8); }
.section-next--on-dark .section-next-arrow { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.4); }
.section-next--on-dark:hover .section-next-arrow { background: rgba(255,255,255,0.15); color:#fff; border-color:rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════════════════════
   ICOS IMAGE HELPERS
   ═══════════════════════════════════════════════════════════ */
/* Icons in tier-items list — brand red */
.tier-ico {
    width: 19px; height: 19px; object-fit: contain; flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%)
            saturate(6500%) hue-rotate(354deg);
}
/* Icons in colored tier-visual panels */
.tier-visual-ico {
    width: 58px; height: 58px; object-fit: contain;
    filter: brightness(0) invert(1);
    display: block; margin: 0 auto 8px;
    transition: transform 0.35s ease;
}
.tier-visual:hover .tier-visual-ico { transform: translateY(-7px); }
/* Grand prize trophy */
.gp-trophy-ico {
    width: 90px; height: 90px; object-fit: contain;
    filter: brightness(0) invert(1);
    display: block; margin: 0 auto 14px;
    transition: transform 0.45s ease;
}
.tier-visual:hover .gp-trophy-ico { transform: scale(1.08) translateY(-8px); }
/* Upload zone icon */
.upload-ico {
    width: 38px; height: 38px; object-fit: contain;
    opacity: 0.35; display: block; margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   FAQ TWO-COLUMN LAYOUT + KEEP TICKET SIDEBAR
   ═══════════════════════════════════════════════════════════ */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px; align-items: start;
}
.faq-layout .faq-grid { max-width: none; }

.faq-keep-ticket {
    position: sticky; top: 90px;
    background: #fafafa; border: 1px solid #eee;
    padding: 40px 28px; text-align: center;
}
.faq-ticket-ico {
    width: 68px; height: 68px;
    display: block; margin: 0 auto 22px;
}
.faq-keep-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700; color: #1e1e1e;
    line-height: 1.1; margin-bottom: 14px;
}
.faq-keep-title span { color: var(--brand); }
.faq-keep-sub {
    font-size: 0.875rem; color: #666; line-height: 1.78;
}

/* ═══════════════════════════════════════════════════════════
   CONSENT CHECKBOX
   ═══════════════════════════════════════════════════════════ */
.consent-wrap { margin-top: 20px; margin-bottom: 0; }
.consent-label {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 16px; background: #fafafa; border: 1px solid #eee;
    cursor: pointer; transition: background 0.2s, border-color 0.2s;
    border-radius: 3px;
}
.consent-label:hover { background: #fff5f5; border-color: rgba(var(--brand-rgb),0.3); }
.consent-label input[type="checkbox"] {
    width: 17px; height: 17px; cursor: pointer;
    accent-color: var(--brand); flex-shrink: 0; margin-top: 2px;
}
.consent-text { font-size: 0.8rem; color: #444; line-height: 1.65; }
.consent-link {
    color: var(--brand); font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(var(--brand-rgb), 0.35);
    cursor: pointer;
    transition: text-decoration-color 0.2s;
}
.consent-link:hover { text-decoration-color: var(--brand); }

/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE STYLES
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .faq-layout { grid-template-columns: 1fr 260px; gap: 40px; }
    .faq-keep-title { font-size: 1.7rem; }
}

@media (max-width: 900px) {
    .faq-layout { grid-template-columns: 1fr; gap: 0; }
    /* Sidebar appears after accordion in natural DOM order */
    .faq-keep-ticket { position: static; margin-top: 36px; margin-bottom: 0; padding: 32px 24px; }
}

@media (max-width: 768px) {
    /* Delivery strip */
    .delivery-strip { font-size: 0.68rem; padding: 9px 16px; letter-spacing: 1px; }

    /* Navbar */
    .navbar { height: 56px; padding: 0 14px; }
    .logo img { height: 34px !important; max-width: 80px !important; }
    .navbar-actions .lang-switch {
        padding: 2px;
        gap: 2px;
    }
    .navbar-actions .lang-btn {
        font-size: 0.65rem;
        padding: 6px 9px;
    }
    .hamburger { padding: 4px 0 4px 2px; }

    /* Hero — 1:2 mobile banner (ASSETS/mobile_banner.png) */
    .promo-hero {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 32px 16px;
        align-items: center;
        aspect-ratio: 1 / 2;
        min-height: 0;
        height: auto;
        overflow: hidden;
        background-image: url('ASSETS/mobile_banner.png');
        background-color: #f9f7f5;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
    }
    .hero-inner {
        left: 16px;
        right: 16px;
        width: auto;
        max-width: none;
        transform: translateY(-50%);
        text-align: center;
        top: var(--hero-pos-mobile);
    }
    .hero-countdown {
        display: grid; grid-template-columns: repeat(4,1fr);
        gap: 0; padding: 14px 16px; width: 100%;
        max-width: 340px; margin: 0 auto 32px;
    }
    .c-sep { display: none; }
    .c-unit { min-width: unset; text-align: center; }
    .c-num { font-size: 1.7rem; }
    .c-lbl { font-size: 0.55rem; }
    .hero-sub { font-size: 0.88rem; margin: 0 auto 32px; text-align: center; max-width: 100%; }
    .hero-inner > div .btn-primary { width: auto; justify-content: center; }
    .hero-legal { font-size: 0.68rem; text-align: center; }

    /* Prize tiers */
    .prize-tiers-header { padding: 48px 20px 32px; }
    .prize-tier { grid-template-columns: 1fr; min-height: auto; }
    .prize-tier.reversed .tier-visual { order: 0; }
    .prize-tier.reversed .tier-text { order: 1; }
    .tier-visual { min-height: 200px; padding: 32px 24px; }
    .tier-text { padding: 28px 22px; }
    .tier-title { font-size: 1.45rem !important; }
    .tier-desc { font-size: 0.9rem; }
    .tier-items li { font-size: 0.85rem; padding: 9px 12px; }
    .tier-cans img { height: 110px; }
    .tier-icons-row { gap: 24px; }
    .tier-icon-col small { font-size: 0.58rem; }
    .tier-visual-ico { width: 52px; height: 52px; }
    .gp-trophy-ico { width: 76px; height: 76px; }
    .gp-name { font-size: 1.6rem; }

    /* Rules section */
    .rules-section { padding: 44px 0; }
    .rules-grid { grid-template-columns: 1fr; gap: 36px; }
    .rules-pdf-col { width: 100%; }
    .rules-pdf-col .pdf-card { max-width: 100%; }
    .pdf-card { position: static; padding: 28px 24px; }
    #how .rules-steps-grid .faq-q::before,
    #faq .faq-grid .faq-q::before {
        width: 34px; height: 34px; min-width: 34px;
        line-height: 34px; font-size: 0.78rem;
    }
    #how .rules-steps-grid .faq-a,
    #faq .faq-grid .faq-a { padding-left: 50px; }

    /* Registration form */
    .register-section { padding: 44px 0; }
    .reg-section-head { margin-bottom: 28px; }
    .reg-section-head .section-title { font-size: 1.8rem !important; }
    .reg-form-wrap { max-width: 100%; }
    .reg-form-inner { padding: 28px 20px; }
    .form-label { font-size: 0.72rem; }
    .form-input { font-size: 1rem; }
    .phone-input { font-size: 1rem; }
    .multi-ticket-toggle { padding: 12px 14px; }
    .mtl-hint { display: none; }
    .extra-uploads.visible { padding: 12px 14px; }
    .btn-reg-submit { font-size: 0.82rem; padding: 15px; letter-spacing: 1.5px; }
    .consent-label { padding: 12px 14px; }
    .consent-text { font-size: 0.77rem; }

    /* FAQ */
    .faq-section { padding: 44px 0; }
    .faq-layout { gap: 0; }
    .faq-ticket-ico { width: 52px; height: 52px; }
    .faq-keep-title { font-size: 1.55rem; line-height: 1.2; }
    .faq-keep-sub { font-size: 0.84rem; line-height: 1.7; }
    .faq-q h4 { font-size: 0.88rem; }
    .faq-a p { font-size: 0.85rem; }

    /* Prizes CTA */
    .prizes-cta-wrap { padding: 24px 20px 8px; }
    .prizes-cta { display: block; text-align: center; }

    /* Section hints */
    .section-next { padding: 20px 20px 28px; }
    .section-next-label { font-size: 0.56rem; letter-spacing: 2.5px; }
    .section-next-arrow { width: 32px; height: 32px; font-size: 0.72rem; }

    /* Footer */
    footer { padding: 48px 0 20px; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
    .footer-logo { height: 42px !important; }
    .footer-brand-text { max-width: 100%; }

    /* Back to top */
    .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: 0.82rem; }

    /* Modal */
    .modal-box { padding: 32px 20px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(1.4rem,8vw,1.75rem) !important; }
    .c-num { font-size: 1.45rem; }
    .hero-countdown { max-width: 100%; }
    .btn-primary { padding: 13px 24px; letter-spacing: 1.5px; }
    .prize-tiers-header { padding: 40px 18px 24px; }
    .prize-tiers-header .section-title { font-size: clamp(1.55rem,6vw,2rem) !important; }
    .tier-visual { min-height: 180px; padding: 28px 18px; }
    .tier-cans img { height: 90px; }
    .tier-cans img:nth-child(n+2) { margin-left: -20px; }
    .tier-icons-row { gap: 16px; }
    .tier-visual-ico { width: 42px; height: 42px; }
    .tier-text { padding: 24px 18px; }
    .tier-title { font-size: 1.3rem !important; }
    .tier-items li { padding: 8px 10px; font-size: 0.82rem; }
    .faq-keep-title { font-size: 1.4rem; }
    .faq-keep-ticket { padding: 28px 20px; }
    .container { padding: 0 16px; }
    .section-head { margin-bottom: 32px; }
    .section-title { font-size: clamp(1.6rem,7vw,2.2rem) !important; }
    .prizes-cta-wrap { padding: 20px 16px 8px; }
    .reg-form-inner { padding: 24px 18px; }
    .btn-reg-submit { padding: 14px; }
}

@media (max-width: 360px) {
    .hero-title { font-size: 1.3rem !important; }
    .c-num { font-size: 1.2rem; }
    .c-lbl { font-size: 0.5rem; }
    .c-unit { min-width: 0; }
    .hero-countdown { padding: 12px 12px; }
    .tier-cans img { height: 80px; }
    .tier-icons-row { gap: 12px; }
    .tier-visual-ico { width: 36px; height: 36px; }
    .reg-form-inner { padding: 20px 14px; }
    .container { padding: 0 14px; }
}
