/* =============================================
   WalkWing Landing Page — style.css
   Color palette extracted from design images:
   - Dark bg:      #0A0C10 / #0F1117
   - Card bg:      #13161E / #1A1E2A
   - Green accent: #4ADE80 / #22C55E
   - Lime/bright:  #A3E635
   - Blue accent:  #60A5FA
   - Text primary: #F0F4FF
   - Text muted:   #8892A4
   ============================================= */

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

:root {
  --bg:           #0A0C10;
  --bg-card:      #13161E;
  --bg-card2:     #1A1E2A;
  --green:        #4ADE80;
  --green-dark:   #22C55E;
  --green-glow:   rgba(74, 222, 128, 0.18);
  --lime:         #A3E635;
  --blue:         #60A5FA;
  --purple:       #A78BFA;
  --text:         #F0F4FF;
  --text-muted:   #8892A4;
  --text-dim:     #4A5568;
  --border:       rgba(255,255,255,0.07);
  --border-green: rgba(74, 222, 128, 0.25);
  --radius-sm:    8px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --transition:   0.25s cubic-bezier(.4,0,.2,1);
}

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

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

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

/* ── Logo image ── */
.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-img--footer {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.logo-text--footer {
  opacity: 0.85;
}

/* ── Language switcher ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.lang-btn.active, .lang-btn:hover {
  color: var(--green);
}
.lang-sep { color: var(--text-dim); font-size: 0.75rem; }
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
}

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--green) 0%, var(--lime) 60%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #0A0C10;
  box-shadow: 0 4px 24px var(--green-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74, 222, 128, 0.35);
}
.btn-secondary {
  background: var(--bg-card2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  color: var(--text);
  border-color: var(--border-green);
}
.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

/* ── Section common ── */
.section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  background: rgba(74, 222, 128, 0.1);
  color: var(--green);
  border: 1px solid var(--border-green);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
}
.logo-icon { font-size: 1.4rem; }
.logo-text { color: var(--text); }
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
/* nav-cta removed — replaced by nav-right */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: rgba(10, 12, 16, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 12px 4px;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 8px; text-align: center; }
.mobile-menu a:hover { color: var(--text); }
.mobile-menu.open { display: flex; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,222,128,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(96,165,250,0.08) 0%, transparent 70%);
  bottom: 0; left: -100px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 560px; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid var(--border-green);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-mockup {
  position: relative;
  width: 300px;
}
.phone-frame {
  background: #141C27;
  border-radius: 42px;
  border: 6px solid #1e2733;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.03);
  padding: 10px;
  position: relative;
  overflow: hidden;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 16px;
  background: #141C27;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.phone-screen {
  background: #070B11;
  border-radius: 28px;
  overflow: hidden;
  height: 580px;
  display: flex;
  flex-direction: column;
  padding: 0;
}

/* ════════════════════════════════
   App UI inside phone (v2 — new design)
   ════════════════════════════════ */

/* Header */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px 10px;
  flex-shrink: 0;
}
.app-header-left { display: flex; align-items: center; gap: 8px; }
.app-header-right { display: flex; align-items: center; gap: 6px; }

.app-menu-btn {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: #141C27;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.app-avatar-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(74,222,128,0.15);
  border: 1.5px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.app-avatar-logo {
  width: 22px; height: 22px;
  object-fit: contain;
}
.app-icon-btn {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: #141C27;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  color: var(--text-muted);
  flex-shrink: 0;
}
.app-icon-btn--notif { position: relative; }
.app-notif-red-dot {
  position: absolute;
  top: 5px; right: 5px;
  width: 7px; height: 7px;
  background: #EF4444;
  border-radius: 50%;
  border: 1.5px solid #070B11;
}
.app-badge-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--green);
  color: #070B11;
  font-size: 0.5rem;
  font-weight: 700;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid #070B11;
}

/* Scrollable content area */
.app-scroll-area {
  flex: 1;
  overflow-y: auto;
  padding: 0 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: none;
}
.app-scroll-area::-webkit-scrollbar { display: none; }

/* Main card */
.app-main-card {
  background: #141C27;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.app-steps-label {
  font-size: 0.62rem;
  color: #8B98A7;
  font-weight: 500;
  margin-bottom: 5px;
}
.app-steps-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}
.app-steps-current {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.app-steps-goal {
  font-size: 0.85rem;
  color: #8B98A7;
  font-weight: 600;
}
.app-progress-bg {
  width: 100%;
  height: 6px;
  background: #1A2432;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5px;
}
.app-progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(74,222,128,0.45);
}
.app-steps-left {
  font-size: 0.6rem;
  color: #8B98A7;
  margin-bottom: 12px;
}

/* Claim box */
.app-claim-box {
  background: #1A2432;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 14px;
}
.app-claim-title {
  font-size: 0.58rem;
  color: #8B98A7;
  font-weight: 500;
  margin-bottom: 3px;
}
.app-claim-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.app-claim-amount {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green);
}
.app-claim-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.app-claim-logo {
  width: 34px; height: 34px;
  object-fit: contain;
  border-radius: 50%;
}
.app-btn-primary {
  width: 100%;
  background: var(--green);
  color: #070B11;
  border: none;
  padding: 9px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 6px;
  cursor: pointer;
  font-family: 'Google Sans', system-ui, sans-serif;
}
.app-btn-secondary {
  width: 100%;
  background: transparent;
  color: #8B98A7;
  border: 1px solid #2A3645;
  padding: 8px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Google Sans', system-ui, sans-serif;
  display: flex; justify-content: center; align-items: center; gap: 4px;
}

/* Stats grid */
.app-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 8px;
  margin-top: 4px;
}
.app-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 4px;
}
.app-stat-center { align-items: center; text-align: center; }
.app-stat-title { font-size: 0.5rem; color: #8B98A7; font-weight: 600; line-height: 1.35; }
.app-stat-val { font-size: 0.82rem; font-weight: 800; color: var(--text); }
.app-stat-unit { font-size: 0.58rem; color: #8B98A7; font-weight: 600; }

/* Campaigns section */
.app-campaigns-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-campaigns-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
}
.app-campaigns-link {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--green);
}
.app-campaign-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.app-campaign-scroll::-webkit-scrollbar { display: none; }
.app-campaign-card {
  min-width: 150px;
  height: 90px;
  border-radius: 14px;
  background: #141C27;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}
.app-camp-badge {
  background: var(--green);
  color: #070B11;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.55rem;
  font-weight: 700;
  align-self: flex-end;
}
.app-camp-badge--event {
  background: #FF0066;
  color: #fff;
}
.app-camp-name {
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Bottom nav */
.app-bottomnav {
  display: flex;
  justify-content: space-around;
  background: #070B11;
  border-top: 1px solid #2A3645;
  padding: 8px 0 10px;
  flex-shrink: 0;
}
.app-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #8B98A7;
  cursor: pointer;
}
.app-nav-icon { width: 20px; height: 20px; display: block; }
.app-nav-item span { font-size: 0.46rem; font-weight: 600; }
.app-nav-active { color: var(--green); }
.app-nav-active .app-nav-icon { stroke: var(--green); }

.phone-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 100px;
  background: radial-gradient(ellipse, rgba(74,222,128,0.2) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite;
  min-width: 210px;
}
.float-top { top: 60px; right: -60px; animation-delay: 0s; }
.float-bottom { bottom: 60px; left: -60px; animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-icon { font-size: 1.5rem; }
.fc-title { font-size: 0.8rem; font-weight: 700; color: var(--text); }
.fc-sub { font-size: 0.7rem; color: var(--text-muted); }

/* Scroll hint */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 32px;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.4; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  background: rgba(255,255,255,0.015);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-logo {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: default;
}
.trust-logo:hover { color: var(--text-muted); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  flex: 1;
  max-width: 320px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(74,222,128,0.08);
}
.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.step-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.step-connector {
  display: flex;
  align-items: center;
  padding: 0 4px;
  margin-top: 70px;
}
.connector-arrow {
  font-size: 1.4rem;
  color: var(--green);
  opacity: 0.6;
}

/* ============================================
   FEATURES
   ============================================ */
.features { background: rgba(255,255,255,0.01); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.feature-card:hover {
  border-color: var(--border-green);
  box-shadow: 0 8px 32px rgba(74,222,128,0.09);
  transform: translateY(-4px);
}
/* Square icon box */
.feat-icon-box {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: rgba(74, 222, 128, 0.07);
  border: 1.5px solid var(--border-green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--green);
  transition: var(--transition);
}
.feature-card:hover .feat-icon-box {
  background: rgba(74, 222, 128, 0.13);
  box-shadow: 0 0 20px rgba(74,222,128,0.12);
}
.feat-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }
.feature-tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}
.ftag {
  background: rgba(74, 222, 128, 0.07);
  border: 1px solid var(--border-green);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ============================================
   REWARDS
   ============================================ */
.rewards { background: none; }
.rewards-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.rewards-content { max-width: 500px; }
.reward-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}
.reward-opt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: var(--transition);
}
.reward-opt:hover {
  border-color: var(--border-green);
  transform: translateX(4px);
}
.reward-opt-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(74, 222, 128, 0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.reward-opt h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.reward-opt p { font-size: 0.82rem; color: var(--text-muted); }

/* Coin display */
.coin-display { display: flex; flex-direction: column; gap: 16px; }
.coin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 0 60px rgba(74,222,128,0.08);
}
.coin-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.coin-card-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.coin-card-icon { font-size: 1.5rem; }
.coin-card-amount { font-size: 2.8rem; font-weight: 900; color: var(--green); line-height: 1; }
.coin-card-usd { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; margin-bottom: 20px; }
.coin-progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}
.coin-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--lime));
  border-radius: 100px;
  transition: width 1.5s ease;
}
.coin-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-dim);
}
.earn-rate-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.earn-rate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.earn-rate-item strong { color: var(--green); font-weight: 700; }

/* ============================================
   COMMUNITY
   ============================================ */
.community { background: rgba(255,255,255,0.01); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-green);
  transform: translateY(-3px);
}
.tc-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(74,222,128,0.06), var(--bg-card));
  border-color: var(--border-green);
}
.stars { color: var(--green); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.tc-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}
.tc-featured .tc-quote { font-size: 1rem; color: var(--text); }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #0A0C10;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.tc-name { font-size: 0.88rem; font-weight: 700; }
.tc-meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

.community-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.cs-item { text-align: center; }
.cs-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  background: linear-gradient(135deg, var(--text), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.cs-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

/* ============================================
   DOWNLOAD CTA
   ============================================ */
.download {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.download-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(74,222,128,0.1) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.download-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-xl);
  padding: 60px;
  box-shadow: 0 0 80px rgba(74,222,128,0.06);
}
.download-content { max-width: 580px; }
.download-content .section-title { margin-bottom: 16px; }
.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 16px;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 22px;
  transition: var(--transition);
}
.store-btn:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(74,222,128,0.15);
}
.store-sub { display: block; font-size: 0.7rem; color: var(--text-muted); }
.store-name { display: block; font-size: 1rem; font-weight: 700; color: var(--text); }
.download-note {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.download-note a { color: var(--green); font-weight: 600; }
.download-note a:hover { text-decoration: underline; }

/* QR box */
.qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.qr-grid {
  width: 140px; height: 140px;
  background: var(--text);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.qr-pattern {
  width: 120px; height: 120px;
  background:
    repeating-linear-gradient(
      0deg,
      #0A0C10 0px,
      #0A0C10 8px,
      transparent 8px,
      transparent 16px
    ),
    repeating-linear-gradient(
      90deg,
      #0A0C10 0px,
      #0A0C10 8px,
      transparent 8px,
      transparent 16px
    );
  background-color: white;
}
.qr-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
/* Minimal footer layout */
.footer-minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 32px;
  flex-wrap: wrap;
}
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
/* Social media icons row */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.footer-social-icon {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--border-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: var(--transition);
  background: rgba(74,222,128,0.04);
  text-decoration: none;
  flex-shrink: 0;
}
.footer-social-icon:hover {
  background: rgba(74,222,128,0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74,222,128,0.15);
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}
.footer-nav a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================
   EVENTS SLIDER
   ============================================ */
.events { background: none; }
.events-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.events-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  flex: 1;
}
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,222,128,0.08);
}
.event-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.event-emoji { font-size: 3.5rem; }
.event-date-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  color: var(--text);
}
.event-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.event-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.etag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.etag-live    { background: rgba(74,222,128,0.15); color: var(--green); border-color: var(--border-green); }
.etag-upcoming{ background: rgba(96,165,250,0.12); color: var(--blue); border-color: rgba(96,165,250,0.3); }
.etag-partner { background: rgba(167,139,250,0.12); color: var(--purple); border-color: rgba(167,139,250,0.3); }
.event-body h3 { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.event-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.event-meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-dim);
  flex-wrap: wrap;
}
.event-body .btn { align-self: flex-start; margin-top: 4px; padding: 8px 18px; font-size: 0.82rem; }

.slider-arrow {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.slider-arrow:hover { border-color: var(--green); color: var(--green); }
.slider-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}
.slider-dot {
  width: 8px; height: 8px;
  background: var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--green);
  width: 20px;
  border-radius: 4px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing { background: rgba(255,255,255,0.01); }
.billing-toggle {
  display: flex;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 48px;
}
.billing-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 100px;
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.billing-btn.active {
  background: var(--green);
  color: #0A0C10;
}
.billing-btn:not(.active):hover { color: var(--text); }
.save-badge {
  background: rgba(74,222,128,0.15);
  color: var(--green);
  border: 1px solid var(--border-green);
  border-radius: 100px;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 6px;
  letter-spacing: 0.03em;
}
.save-badge-hot {
  background: rgba(251,146,60,0.15);
  color: #fb923c;
  border-color: rgba(251,146,60,0.35);
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 840px;
  margin: 0 auto 40px;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}
.plan-card:hover { border-color: var(--border-green); transform: translateY(-3px); }
.plan-pro {
  border-color: var(--border-green);
  background: linear-gradient(160deg, rgba(74,222,128,0.05) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 60px rgba(74,222,128,0.08);
}
.plan-popular-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--green), var(--lime));
  color: #0A0C10;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.plan-header { display: flex; align-items: center; gap: 14px; }
.plan-icon { font-size: 2rem; }
.plan-name { font-size: 1.3rem; font-weight: 800; }
.plan-tagline { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.plan-price-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.price-currency { font-size: 1.3rem; font-weight: 700; color: var(--text-muted); }
.price-amount { font-size: 3.2rem; font-weight: 900; color: var(--text); line-height: 1; transition: all 0.3s ease; }
.plan-pro .price-amount { color: var(--green); }
.price-period { font-size: 0.85rem; color: var(--text-muted); margin-left: 2px; }
.price-billing-note { font-size: 0.75rem; color: var(--text-dim); margin-top: 6px; }
.price-billing-note--pro { color: var(--text-muted); }
.plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li { font-size: 0.85rem; display: flex; gap: 8px; align-items: flex-start; }
.pf-yes { color: var(--text); }
.pf-yes::first-letter { color: var(--green); font-weight: 700; }
.pf-no { color: var(--text-dim); }
.pf-no::first-letter { color: var(--text-dim); }
.btn-full { width: 100%; justify-content: center; padding: 14px; }
.plan-trial-note { font-size: 0.72rem; color: var(--text-dim); text-align: center; }

.compare-toggle-wrap { text-align: center; margin-top: 8px; }
.compare-toggle {
  background: none;
  border: none;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.compare-toggle:hover { background: rgba(74,222,128,0.07); }
.compare-table-wrap { margin-top: 24px; overflow-x: auto; }
.compare-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.compare-table th, .compare-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.compare-table th { font-weight: 700; color: var(--text); background: var(--bg-card); }
.compare-table td:first-child { text-align: left; color: var(--text-muted); }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.th-pro, .td-pro { color: var(--green); font-weight: 700; }

/* ============================================
   FAQ
   ============================================ */
.faq { background: none; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-col { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: var(--transition);
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--green);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding-bottom: 20px;
}
.faq-item.open .faq-a { display: block; }
.faq-a p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   ANIMATIONS — fade/slide in on scroll
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
  .hero-content { max-width: 100%; }
  .hero-visual { justify-content: flex-start; }
  .float-top { right: 0; top: 20px; }
  .float-bottom { left: 0; bottom: 20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .rewards-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .tc-featured { grid-column: span 2; }
  .community-stats { grid-template-columns: repeat(2, 1fr); }
  .download-inner { grid-template-columns: 1fr; gap: 40px; }
  .download-qr { display: none; }
  .event-card { flex: 0 0 calc(50% - 10px); }
  .plans-grid { max-width: 100%; }
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding-top: 24px; }
  .hero-title { font-size: 2.4rem; }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .steps-grid { flex-direction: column; gap: 16px; align-items: stretch; }
  .step-card { max-width: none; }
  .step-connector { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tc-featured { grid-column: span 1; }
  .community-stats { grid-template-columns: repeat(2, 1fr); padding: 24px; gap: 16px; }
  .footer-minimal { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-logo-wrap { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-nav { gap: 16px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .download-inner { padding: 36px 24px; }
  .trust-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .event-card { flex: 0 0 calc(100% - 0px); }
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; }
  .billing-toggle { flex-direction: column; border-radius: var(--radius-lg); width: 100%; max-width: 300px; }
  .faq-grid { grid-template-columns: 1fr; }
  .events-slider-wrap { gap: 8px; }
  .slider-arrow { width: 32px; height: 32px; font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .download-buttons { flex-direction: column; }
  .store-btn { justify-content: center; }
  .footer-nav { gap: 12px; }
  .plans-grid { max-width: 100%; }
}

/* ══════════════════════════════════════════
   EVENT BANNER (Single Event)
══════════════════════════════════════════ */
.event-banner {
  display: block;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(74,222,128,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.event-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(74,222,128,0.15);
  border-color: rgba(74,222,128,0.5);
}
.event-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #020f06 0%, #041a10 40%, #061f0e 60%, #0a0c10 100%);
  z-index: 0;
}
/* animated particles */
.eb-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  z-index: 1;
  animation: ebFloat 8s ease-in-out infinite;
}
.eb-p1 { width: 300px; height: 300px; background: var(--green); top: -80px; right: 10%; animation-delay: 0s; }
.eb-p2 { width: 200px; height: 200px; background: var(--lime); bottom: -60px; right: 30%; animation-delay: 2s; }
.eb-p3 { width: 150px; height: 150px; background: var(--green); top: 20%; left: 5%; animation-delay: 4s; }
.eb-p4 { width: 100px; height: 100px; background: var(--lime); bottom: 10%; left: 20%; animation-delay: 6s; }
@keyframes ebFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -15px) scale(1.05); }
  66% { transform: translate(-10px, 10px) scale(0.95); }
}

.event-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 56px;
}
.event-banner-left { flex: 1; }
.event-banner-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.eb-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.eb-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #4ADE80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eb-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 24px;
}
.eb-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.eb-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 600;
}
.eb-meta-item svg { stroke: var(--green); flex-shrink: 0; }

/* Countdown */
.eb-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,222,128,0.07);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
}
.eb-count-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 52px;
}
.eb-count-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.eb-count-label {
  font-size: 0.62rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.eb-count-sep {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(74,222,128,0.4);
  line-height: 1;
  margin-bottom: 18px;
}
.eb-until {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}
.eb-cta {
  margin-top: 4px;
}
.eb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #0A0C10;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}
.event-banner:hover .eb-cta-btn {
  background: var(--lime);
  transform: scale(1.04);
}

/* ══════════════════════════════════════════
   CONTACT / INQUIRY FORM
══════════════════════════════════════════ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(74,222,128,0.1);
  border: 1px solid var(--border-green);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.contact-info-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; margin-bottom: 2px; }
.contact-info-val { font-size: 0.95rem; color: var(--text); font-weight: 600; }
.contact-event-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(74,222,128,0.06);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 8px;
}
.contact-event-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-event-title { font-size: 0.9rem; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.contact-event-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.form-input {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,222,128,0.12);
}
.form-input::placeholder { color: var(--text-dim); }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-card2); color: var(--text); }
.form-textarea { resize: vertical; min-height: 110px; }
.contact-submit {
  width: 100%;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.contact-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(74,222,128,0.08);
  border: 1px solid var(--border-green);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .event-banner-inner { flex-direction: column; padding: 36px 28px; gap: 32px; }
  .eb-title { font-size: 1.9rem; }
  .event-banner-right { width: 100%; align-items: flex-start; }
  .eb-countdown { width: 100%; justify-content: center; }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .event-banner-inner { padding: 28px 20px; }
  .eb-title { font-size: 1.5rem; }
  .eb-count-num { font-size: 1.5rem; }
  .contact-form { padding: 24px 20px; }
}

/* ════════════════════════════════════════════════
   GOOGLE SANS FONT OVERRIDE
   ════════════════════════════════════════════════ */
:lang(th) body,
[lang="th"] body {
  font-family: 'Google Sans', system-ui, sans-serif;
}

/* ════════════════════════════════════════════════
   EVENT BANNER — NEW LAYOUT (image box + content)
   ════════════════════════════════════════════════ */
.event-banner-inner {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 32px 36px;
  position: relative;
  z-index: 1;
}

/* Square image placeholder box */
.eb-image-box {
  flex-shrink: 0;
  width: 260px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 2px dashed rgba(74, 222, 128, 0.35);
  background: rgba(74, 222, 128, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.eb-image-hint {
  color: rgba(74, 222, 128, 0.3);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
}
/* เมื่อใส่รูปจริง ให้ใช้ <img> แทน hint */
.eb-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* Content wrapper (right side) */
.eb-content {
  flex: 1;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.eb-content .event-banner-left {
  flex: 1;
}
.eb-content .event-banner-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 180px;
}

/* ════════════════════════════════════════════════
   CONTACT — LINE LINK STYLE
   ════════════════════════════════════════════════ */
.contact-line-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.contact-line-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* ════════════════════════════════════════════════
   DOWNLOAD — GOOGLE PLAY COMING SOON BUBBLE
   ════════════════════════════════════════════════ */
.store-btn-wrap {
  position: relative;
  display: inline-flex;
}
.store-coming-bubble {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #0A0C10;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(74,222,128,0.35);
}
.store-coming-bubble::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--green);
}
.store-btn--disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

/* ════════════════════════════════════════════════
   EVENT BANNER RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .eb-image-box { width: 200px; }
}
@media (max-width: 768px) {
  .event-banner-inner { flex-direction: column; padding: 24px 20px; gap: 20px; }
  .eb-image-box { width: 100%; aspect-ratio: 16 / 9; }
  .eb-content { flex-direction: column; }
  .eb-content .event-banner-right { align-items: flex-start; min-width: unset; }
}
