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

:root {
  --bg:      #0e0618;
  --bg2:     #160a24;
  --bg3:     #1d0f30;
  --card:    rgba(255,255,255,0.05);
  --card-h:  rgba(255,255,255,0.09);
  --border:  rgba(255,255,255,0.08);
  --purple:  #9333ea;
  --magenta: #e879f9;
  --orange:  #f97316;
  --text:    #f0edf8;
  --muted:   #9d8fbf;
  --rainbow: linear-gradient(90deg,#e63946,#f4a261,#e9c46a,#2dc653,#457b9d,#8338ec,#e63946);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }

/* ─── UTILS ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--magenta); margin-bottom: 10px; }
.section-title { font-family: 'Poppins', sans-serif; font-size: clamp(26px,4vw,42px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 14px; }
.section-desc { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 580px; }
.gradient-text { background: linear-gradient(90deg,#f97316,#e879f9,#8338ec); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 12px; font-weight: 700; font-size: 15px; text-decoration: none; transition: all .22s; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: linear-gradient(135deg,var(--purple),var(--magenta)); color: #fff; box-shadow: 0 8px 28px rgba(147,51,234,.38); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(147,51,234,.52); }
.btn-secondary { background: var(--card); border: 1px solid var(--border); color: #fff; backdrop-filter: blur(10px); }
.btn-secondary:hover { background: var(--card-h); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1.5px solid rgba(232,121,249,.45); color: var(--magenta); }
.btn-outline:hover { background: rgba(232,121,249,.1); transform: translateY(-2px); }

/* ─── RAINBOW LINE ─── */
.rainbow-line { height: 4px; background: var(--rainbow); background-size: 200% auto; animation: rShift 4s linear infinite; }
@keyframes rShift { to { background-position: 200% center; } }

/* ─── NAV ─── */
nav { position: sticky; top: 0; z-index: 200; background: rgba(14,6,24,.93); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; height: 66px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark { height: 44px; width: auto; flex-shrink: 0; display: block; }
.logo-text strong { display: block; font-family: 'Poppins',sans-serif; font-size: 17px; font-weight: 800; color: #fff; line-height: 1.1; }
.logo-text span { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { padding: 7px 13px; border-radius: 8px; color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: all .18s; }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.07); }
.nav-links .nav-cta { background: linear-gradient(135deg,var(--purple),var(--magenta)); color: #fff !important; padding: 8px 17px; }
.nav-links .nav-cta:hover { opacity: .88; background: linear-gradient(135deg,var(--purple),var(--magenta)); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 23px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .28s; }
.mobile-nav { display: none; flex-direction: column; background: rgba(14,6,24,.98); border-top: 1px solid var(--border); padding: 12px 24px 22px; gap: 2px; }
.mobile-nav a { padding: 11px 0; color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.04); transition: color .18s; }
.mobile-nav a:hover { color: #fff; }
.mobile-nav .m-cta { margin-top: 10px; background: linear-gradient(135deg,var(--purple),var(--magenta)); color: #fff !important; border-radius: 10px; text-align: center; border-bottom: none !important; padding: 12px 0; }
@media(max-width:780px){ .nav-links{display:none;} .hamburger{display:block;} .mobile-nav.open{display:flex;} }

/* ─── HERO ─── */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 55% at 50% 0%,rgba(147,51,234,.42) 0%,transparent 68%), radial-gradient(ellipse 55% 45% at 85% 85%,rgba(249,115,22,.22) 0%,transparent 58%), radial-gradient(ellipse 45% 40% at 10% 65%,rgba(232,121,249,.18) 0%,transparent 55%), var(--bg); }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .3; animation: float 9s ease-in-out infinite; pointer-events: none; }
.orb1 { width: 420px; height: 420px; background: #9333ea; top: -120px; left: -120px; }
.orb2 { width: 320px; height: 320px; background: #f97316; bottom: -90px; right: -60px; animation-delay: 3.5s; }
.orb3 { width: 260px; height: 260px; background: #e879f9; top: 45%; left: 58%; animation-delay: 6s; }
@keyframes float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-28px) scale(1.04)} }
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px); border-radius: 999px; padding: 6px 18px; font-size: 13px; font-weight: 500; color: var(--magenta); margin-bottom: 26px; letter-spacing: .4px; }
.hero h1 { font-family: 'Poppins',sans-serif; font-size: clamp(36px,7vw,74px); font-weight: 900; line-height: 1.04; color: #fff; margin-bottom: 8px; }
.hero-sub { font-size: clamp(15px,2.2vw,19px); color: var(--muted); margin: 0 auto 38px; line-height: 1.7; max-width: 560px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--muted); font-size: 11px; letter-spacing: 1.2px; }
.hero-scroll .arrow { width: 18px; height: 18px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); animation: bounce 1.6s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(5px)} }

/* ─── STATS ─── */
.stats { background: linear-gradient(135deg,rgba(147,51,234,.14),rgba(249,115,22,.09)); border-top: 1px solid rgba(147,51,234,.2); border-bottom: 1px solid rgba(147,51,234,.2); padding: 44px 24px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 32px; text-align: center; }
.stat-num { font-family: 'Poppins',sans-serif; font-size: 40px; font-weight: 900; background: linear-gradient(90deg,var(--orange),var(--magenta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ─── CARDS GRID ─── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(285px,1fr)); gap: 18px; margin-top: 48px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 26px; text-decoration: none; color: var(--text); transition: all .22s; display: flex; align-items: flex-start; gap: 16px; }
.card:hover { background: var(--card-h); border-color: rgba(147,51,234,.4); transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,.3); }
.card-icon { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.ic-purple{background:rgba(147,51,234,.18);} .ic-orange{background:rgba(249,115,22,.18);} .ic-pink{background:rgba(232,121,249,.18);} .ic-blue{background:rgba(59,130,246,.18);} .ic-green{background:rgba(34,197,94,.18);} .ic-red{background:rgba(239,68,68,.18);}
.card-body h3 { font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.card-body p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.card-arrow { color: var(--muted); font-size: 17px; align-self: center; margin-left: auto; flex-shrink: 0; transition: transform .18s; }
.card:hover .card-arrow { transform: translateX(4px); color: var(--magenta); }

/* ─── EVENT CARDS ─── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(295px,1fr)); gap: 22px; margin-top: 48px; }
.event-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all .22s; }
.event-card:hover { transform: translateY(-5px); box-shadow: 0 22px 52px rgba(0,0,0,.38); border-color: rgba(147,51,234,.32); }
.event-stripe { height: 6px; }
.event-body { padding: 24px; }
.event-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 4px 10px; border-radius: 6px; margin-bottom: 13px; }
.event-body h3 { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 9px; line-height: 1.3; }
.event-body p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.event-meta { display: flex; flex-direction: column; gap: 7px; }
.event-meta span { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.event-meta strong { color: var(--text); }
.ev-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* ─── TWO COL ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media(max-width:900px){ .two-col{ gap: 40px; } }
@media(max-width:768px){ .two-col{ grid-template-columns:1fr; gap:32px; } }

/* ─── BENEFIT LIST ─── */
.benefit-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 15px; }
.benefit-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 15px; color: var(--muted); line-height: 1.5; }
.check { width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(135deg,var(--purple),var(--magenta)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; color: #fff; margin-top: 1px; }

/* ─── CTA BOX ─── */
.cta-box { background: linear-gradient(135deg,rgba(147,51,234,.22),rgba(232,121,249,.12)); border: 1px solid rgba(147,51,234,.32); border-radius: 24px; padding: 38px 34px; text-align: center; }
.cta-box h3 { font-family: 'Poppins',sans-serif; font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-box p { font-size: 14px; color: var(--muted); margin-bottom: 26px; line-height: 1.65; }
.badge-pill { display: inline-block; font-size: 12px; font-weight: 600; color: var(--magenta); background: rgba(232,121,249,.1); border: 1px solid rgba(232,121,249,.22); border-radius: 8px; padding: 5px 13px; margin-bottom: 16px; }

/* ─── CONTACT ─── */
.contact-info { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.c-item { display: flex; gap: 15px; align-items: flex-start; }
.c-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(147,51,234,.14); border: 1px solid rgba(147,51,234,.22); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.c-item h4 { font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.c-item p, .c-item a { font-size: 13.5px; color: var(--muted); text-decoration: none; line-height: 1.65; display: block; }
.c-item a:hover { color: var(--magenta); }
.contact-form { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
@media(max-width:560px){ .form-row{grid-template-columns:1fr;} }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.field input, .field textarea, .field select { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 11px 15px; color: #fff; font-family: inherit; font-size: 14px; outline: none; transition: border-color .18s; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--purple); }
.field textarea { resize: vertical; min-height: 115px; }
.field select option { background: #1a0a2e; }

/* ─── INSTAGRAM GRID ─── */
.insta-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(175px,1fr)); gap: 10px; margin-top: 36px; }
.insta-item { aspect-ratio: 1; border-radius: 14px; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 7px; color: var(--muted); font-size: 12.5px; transition: all .2s; overflow: hidden; position: relative; }
.insta-item:hover { border-color: rgba(232,121,249,.35); background: var(--card-h); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero { padding: 80px 24px 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 0%,rgba(147,51,234,.35) 0%,transparent 65%), var(--bg); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Poppins',sans-serif; font-size: clamp(30px,5vw,54px); font-weight: 900; color: #fff; margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ─── SECTION PADDING ─── */
.sec { padding: 88px 24px; }
.sec-alt { background: var(--bg2); }
.sec-alt2 { background: var(--bg3); }

/* ─── FOOTER ─── */
footer { background: #070310; border-top: 1px solid var(--border); padding: 64px 24px 28px; }
.footer-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
@media(max-width:900px){ .footer-grid{grid-template-columns:1fr 1fr;} }
@media(max-width:520px){ .footer-grid{grid-template-columns:1fr;} }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.72; margin-top: 13px; max-width: 270px; }
.social-row { display: flex; gap: 9px; margin-top: 18px; }
.social-btn { width: 38px; height: 38px; border-radius: 10px; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 15px; transition: all .2s; }
.social-btn:hover { background: rgba(147,51,234,.28); border-color: rgba(147,51,234,.45); }
.sponsor-note { display: flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 12px; color: var(--muted); }
.sponsor-note strong { color: var(--text); }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .18s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { max-width: 1160px; margin: 0 auto; padding-top: 26px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ─── INSTAGRAM FEED ─── */
.ig-feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
.ig-post { position: relative; overflow: hidden; border-radius: 14px; display: block; aspect-ratio: 1; background: rgba(255,255,255,.05); }
.ig-post img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.ig-post:hover img { transform: scale(1.06); }
.ig-caption { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(0,0,0,.75) 0%,transparent 60%); display: flex; align-items: flex-end; padding: 12px; opacity: 0; transition: opacity .25s; }
.ig-caption span { color: #fff; font-size: 12px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ig-post:hover .ig-caption { opacity: 1; }
.ig-video-badge { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,.55); border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #fff; }
.ig-loading { grid-column: 1/-1; text-align: center; color: rgba(255,255,255,.4); padding: 40px; font-size: 14px; }
@media(max-width:640px){ .ig-feed-grid{ grid-template-columns: repeat(3,1fr); gap:6px; } }
@media(max-width:380px){ .ig-feed-grid{ grid-template-columns: repeat(2,1fr); } }

/* ─── JOIN WIZARD ─── */
.join-wizard { max-width: 740px; margin: 0 auto; }

/* Progress steps */
.wizard-progress { display: flex; align-items: center; margin-bottom: 52px; }
.wiz-step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.wiz-dot { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.07); border: 2px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; color: var(--muted); transition: all .3s; }
.wiz-step.active .wiz-dot { background: var(--purple); border-color: var(--purple); color: #fff; box-shadow: 0 0 22px rgba(147,51,234,.55); }
.wiz-step.done .wiz-dot { background: #10b981; border-color: #10b981; color: #fff; }
.wiz-step span { font-size: 12px; color: var(--muted); text-align: center; white-space: nowrap; }
.wiz-step.active span, .wiz-step.done span { color: #fff; }
.wiz-line { flex: 1; height: 2px; background: rgba(255,255,255,.1); margin: 0 10px 22px; transition: background .3s; }
.wiz-line.done { background: #10b981; }

/* Panels */
.wiz-panel { display: none; animation: wizIn .35s ease; }
.wiz-panel.active { display: block; }
@keyframes wizIn { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }
.wiz-panel h3 { font-family: 'Poppins',sans-serif; font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.wiz-panel > p { color: var(--muted); margin-bottom: 32px; font-size: 15px; }

/* Membership cards */
.membership-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 32px; }
.mem-card { cursor: pointer; }
.mem-card input[type="radio"] { display: none; }
.mem-card-inner { border: 2px solid rgba(255,255,255,.1); border-radius: 18px; padding: 28px 16px 22px; text-align: center; transition: all .22s; background: rgba(255,255,255,.03); position: relative; }
.mem-card:hover .mem-card-inner { border-color: var(--purple); background: rgba(147,51,234,.07); }
.mem-card input:checked + .mem-card-inner { border-color: var(--purple); background: rgba(147,51,234,.18); box-shadow: 0 0 32px rgba(147,51,234,.35); }
.mem-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,var(--purple),var(--magenta)); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 14px; border-radius: 20px; white-space: nowrap; }
.mem-price { font-family: 'Poppins',sans-serif; font-size: 2.6rem; font-weight: 900; background: linear-gradient(135deg,var(--purple),var(--magenta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; margin-bottom: 4px; }
.mem-label { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.mem-note { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* Form groups */
.wiz-form-grid { display: flex; flex-direction: column; gap: 16px; }
.wiz-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wiz-row3 { display: grid; grid-template-columns: 120px 1fr 140px; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label { font-size: 12.5px; font-weight: 600; color: var(--muted); letter-spacing: .3px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 11px; padding: 13px 16px; color: #fff; font-size: 15px; font-family: inherit;
  transition: border-color .2s, box-shadow .2s; outline: none; box-sizing: border-box;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--purple); box-shadow: 0 0 0 3px rgba(147,51,234,.22);
}
.fg input.invalid { border-color: #ef4444 !important; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.25); }
.fg select { appearance: none; cursor: pointer; }
.fg select option { background: #1a0a2e; }
.fg textarea { resize: vertical; min-height: 84px; }

/* Payment options */
.payment-opts { display: flex; flex-direction: column; gap: 11px; margin-top: 8px; }
.pay-opt { cursor: pointer; }
.pay-opt input[type="radio"] { display: none; }
.pay-opt-inner { display: flex; align-items: center; gap: 16px; padding: 15px 18px; border: 1.5px solid rgba(255,255,255,.1); border-radius: 13px; background: rgba(255,255,255,.03); transition: all .2s; }
.pay-opt:hover .pay-opt-inner { border-color: var(--purple); }
.pay-opt input:checked + .pay-opt-inner { border-color: var(--purple); background: rgba(147,51,234,.13); box-shadow: 0 0 18px rgba(147,51,234,.2); }
.pay-icon { font-size: 1.7rem; flex-shrink: 0; }
.pay-opt strong { display: block; font-size: 15px; margin-bottom: 2px; color: #fff; }
.pay-opt small { color: var(--muted); font-size: 13px; }

/* SEPA block */
.sepa-block { background: rgba(147,51,234,.08); border: 1px solid rgba(147,51,234,.28); border-radius: 13px; padding: 20px; margin-top: 10px; animation: wizIn .3s ease; }

/* Toggle switch */
.tog-wrap { display: flex; align-items: center; gap: 12px; cursor: pointer; padding: 14px 18px; border: 1.5px solid rgba(255,255,255,.1); border-radius: 13px; transition: border-color .2s; }
.tog-wrap:hover { border-color: rgba(147,51,234,.4); }
.tog-wrap input { display: none; }
.tog-track { width: 44px; height: 24px; background: rgba(255,255,255,.15); border-radius: 12px; position: relative; transition: background .2s; flex-shrink: 0; }
.tog-track::after { content: ''; position: absolute; width: 18px; height: 18px; background: #fff; border-radius: 50%; top: 3px; left: 3px; transition: left .2s; }
.tog-wrap input:checked + .tog-track { background: var(--purple); }
.tog-wrap input:checked + .tog-track::after { left: 23px; }
.tog-label { font-size: 14px; color: rgba(255,255,255,.8); }

/* Checkbox consent */
.consent-label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.6; padding: 14px 0; }
.consent-label input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--purple); margin-top: 2px; }
.consent-label a { color: var(--magenta); text-decoration: none; }
.consent-label a:hover { text-decoration: underline; }

/* Wizard nav */
.wiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); gap: 12px; }

/* Success */
.wiz-success { text-align: center; padding: 64px 20px; }
.wiz-success-icon { font-size: 4rem; margin-bottom: 24px; display: block; animation: popIn .5s cubic-bezier(.175,.885,.32,1.275); }
@keyframes popIn { from { transform:scale(0); } to { transform:scale(1); } }
.wiz-success h3 { font-family: 'Poppins',sans-serif; font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.wiz-success p { color: var(--muted); font-size: 16px; max-width: 400px; margin: 0 auto 32px; line-height: 1.7; }

/* Error banner */
.wiz-error { display: none; background: rgba(239,68,68,.14); border: 1px solid rgba(239,68,68,.35); border-radius: 13px; padding: 16px 20px; margin-top: 16px; color: #fca5a5; font-size: 14px; line-height: 1.6; }
.wiz-error a { color: var(--magenta); }

/* Responsive wizard */
@media(max-width:640px){
  .membership-cards { grid-template-columns: 1fr; gap: 12px; }
  .wiz-row2 { grid-template-columns: 1fr; }
  .wiz-row3 { grid-template-columns: 1fr 1fr; }
  .wiz-row3 .wiz-col-full { grid-column: 1/-1; }
  .wizard-progress .wiz-step span { display: none; }
  .wiz-dot { width: 36px; height: 36px; font-size: 13px; }
  .wiz-nav { flex-direction: column-reverse; }
  .wiz-nav .btn { width: 100%; justify-content: center; }
  .mem-price { font-size: 2rem; }
}

/* ─── RESPONSIVE ─── */

/* Tablet (≤1024px) */
@media(max-width:1024px){
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .cards-grid { grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); }
}

/* Mobile (≤768px) */
@media(max-width:768px){
  .page-hero { padding: 60px 20px 50px; }
  .events-grid { grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); }
}

/* Mobile (≤640px) */
@media(max-width:640px){
  .container { padding: 0 16px; }
  .sec { padding: 52px 16px; }
  .sec-alt, .sec-alt2 { padding: 52px 16px; }
  .hero { padding: 52px 16px 72px; min-height: 78vh; }
  .page-hero { padding: 50px 16px 42px; }
  .page-hero p { font-size: 15px; }

  /* Hero buttons: stack & stretch */
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-btns .btn { justify-content: center; }

  /* Bigger touch targets for all buttons */
  .btn { min-height: 50px; padding: 13px 20px; font-size: 15px; }

  /* Stats: 2-column */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-num { font-size: 32px; }

  /* Cards: single column */
  .cards-grid { grid-template-columns: 1fr; gap: 11px; }
  .card { padding: 20px; gap: 13px; }

  /* Events: single column, landscape images */
  .events-grid { grid-template-columns: 1fr; gap: 16px; }
  .event-card img { aspect-ratio: 16 / 9 !important; }
  .event-body { padding: 18px; }

  /* Section text full-width */
  .section-desc { max-width: 100%; }

  /* Instagram grid: 2 columns */
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* CTA box */
  .cta-box { padding: 26px 20px; }
  .cta-box h3 { font-size: 21px; }

  /* CTA banner in index */
  .cta-banner { padding: 38px 20px !important; }

  /* Form row single column */
  .form-row { grid-template-columns: 1fr; }

  /* Benefit list smaller gap */
  .benefit-list { gap: 12px; }
  .benefit-list li { font-size: 14px; }

  /* Footer bottom: stacked */
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
}

/* Footer layout: ≤900px → 2-col, ≤520px → 1-col */
@media(max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:520px){ .footer-grid{ grid-template-columns:1fr; } }

/* Very small phones (≤390px) */
@media(max-width:390px){
  .stat-num { font-size: 26px; }
  .nav-inner { padding: 0 12px; }
  .hero h1 { font-size: 30px; }
  .insta-grid { gap: 6px; }
  .section-title { font-size: 23px; }
}
