/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10);
  --shadow-green: 0 12px 28px rgba(22,163,74,0.30);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }

.icon { width: 20px; height: 20px; flex-shrink: 0; }

.text-green { color: var(--green-600); }
.text-center { text-align: center; }
.not-italic { font-style: normal; }

/* ===== Layout ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }

.section { padding: 80px 0; }
.section-white { background: var(--white); }
.section-tint { background: var(--green-50); }
@media (min-width: 768px) { .section { padding: 112px 0; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
  font-family: inherit; font-size: 15px; padding: 12px 24px;
}
.btn .icon { width: 18px; height: 18px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-primary { background: var(--green-600); color: var(--white); box-shadow: var(--shadow-green); }
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); }
.btn-outline { background: var(--white); border-color: var(--green-200); color: var(--green-700); }
.btn-outline:hover { border-color: var(--green-400); background: var(--green-50); }
.btn-white { background: var(--white); color: var(--green-700); box-shadow: var(--shadow-lg); }
.btn-white:hover { background: var(--green-50); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

/* ===== Badges & Pills ===== */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-green { background: var(--green-100); color: var(--green-700); }
.badge .icon { width: 14px; height: 14px; }

.pill {
  display: inline-block; padding: 8px 16px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--green-200);
  font-size: 14px; font-weight: 700; color: var(--green-700);
}
.pill-green { background: var(--green-100); color: var(--green-700); border: none; }

/* ===== Header ===== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all 0.3s ease;
}
#header.scrolled {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05); padding: 8px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.logo { display: flex; align-items: center; gap: 8px; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 18px;
  box-shadow: var(--shadow-green); transition: transform 0.2s;
}
.logo:hover .logo-mark { transform: scale(1.05); }
.logo-text { font-size: 20px; font-weight: 800; color: var(--gray-900); letter-spacing: -0.02em; }
.logo-accent { color: var(--green-600); }
.logo-text-light { color: var(--white); }

.nav-desktop { display: none; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px; border-radius: 999px; font-size: 14px; font-weight: 600;
  color: var(--gray-700); transition: all 0.2s;
}
.nav-link:hover { color: var(--green-700); background: var(--green-50); }
.nav-link-play { color: var(--green-700); font-weight: 700; }

.header-cta { display: none; }

.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px; border: none;
  background: transparent; cursor: pointer; color: var(--gray-800);
}
.menu-toggle .icon { width: 24px; height: 24px; }
.menu-toggle:hover { background: var(--green-50); }

.mobile-menu {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  margin: 0 16px; background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--green-100);
}
.mobile-menu.open { max-height: 520px; margin-top: 8px; }
.mobile-nav { display: flex; flex-direction: column; padding: 8px; }
.mobile-link {
  padding: 12px 16px; border-radius: 12px; font-size: 14px; font-weight: 600;
  color: var(--gray-700); transition: all 0.2s;
}
.mobile-link:hover { color: var(--green-700); background: var(--green-50); }
.mobile-cta { margin: 4px 8px 8px; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .header-cta { display: block; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative; padding: 120px 0 80px; overflow: hidden;
  background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 100%);
}
@media (min-width: 768px) { .hero { padding: 152px 0 112px; } }

.hero-balls { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-ball {
  position: absolute; border-radius: 999px;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(74,222,128,0.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: rgba(21,128,61,0.35);
  animation: floatBall 7s ease-in-out infinite;
}

.hero-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.hero-copy { text-align: center; }
@media (min-width: 1024px) { .hero-copy { text-align: left; } }

.hero-title {
  margin-top: 24px; font-size: 48px; font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--gray-900);
}
@media (min-width: 640px) { .hero-title { font-size: 60px; } }
@media (min-width: 1024px) { .hero-title { font-size: 72px; } }

.hero-sub {
  margin: 24px auto 0; font-size: 18px; color: var(--gray-600); max-width: 560px;
}
@media (min-width: 1024px) { .hero-sub { margin-left: 0; margin-right: 0; } }

.hero-actions {
  margin-top: 32px; display: flex; flex-direction: column; gap: 12px;
  align-items: center;
}
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; justify-content: center; }
}
@media (min-width: 1024px) { .hero-actions { justify-content: flex-start; } }

.hero-features {
  margin-top: 32px; display: flex; flex-wrap: wrap; gap: 8px 24px;
  justify-content: center; font-size: 14px; font-weight: 600; color: var(--gray-600);
}
@media (min-width: 1024px) { .hero-features { justify-content: flex-start; } }
.hero-feature { display: flex; align-items: center; gap: 6px; }
.hero-feature .icon { width: 16px; height: 16px; color: var(--green-600); }

/* Phone mockup */
.hero-phone-wrap { display: flex; justify-content: center; }
.phone-mockup {
  width: 288px; height: 560px; border-radius: 40px; background: var(--gray-900);
  padding: 12px; box-shadow: 0 24px 60px rgba(21,128,61,0.18);
  animation: phoneFloat 5s ease-in-out infinite;
}
.phone-mockup-sm { width: 288px; height: 440px; }
.phone-screen {
  width: 100%; height: 100%; border-radius: 32px;
  background: linear-gradient(180deg, var(--green-50), var(--white));
  overflow: hidden; display: flex; flex-direction: column;
}
.phone-header {
  padding: 24px 20px 12px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--green-100);
  display: flex; align-items: center; justify-content: space-between;
}
.phone-title { font-size: 18px; font-weight: 800; color: var(--gray-900); }
.phone-header .icon { color: var(--green-600); }
.phone-balance {
  margin-top: 12px; display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 12px; background: var(--green-100);
}
.phone-balance .icon { color: var(--green-600); }
.phone-balance-text { font-weight: 700; color: var(--green-800); font-size: 14px; }
.phone-balance-tag { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--green-600); }

.phone-body { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.phone-section-label { font-size: 11px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; }
.phone-game {
  display: flex; align-items: center; gap: 12px; padding: 12px;
  border-radius: 16px; background: var(--white); border: 1px solid var(--green-100); box-shadow: var(--shadow-sm);
}
.phone-game-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.phone-game-icon .icon { color: var(--white); width: 20px; height: 20px; }
.bg-emerald { background: linear-gradient(135deg, var(--green-400), var(--green-600)); }
.bg-teal { background: linear-gradient(135deg, var(--green-400), #14b8a6); }
.bg-lime { background: linear-gradient(135deg, #a3e635, var(--green-600)); }
.phone-game-info { flex: 1; min-width: 0; }
.phone-game-name { font-weight: 700; font-size: 14px; color: var(--gray-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.phone-game-meta { font-size: 12px; color: var(--gray-500); }
.phone-game-play {
  padding: 6px 12px; border-radius: 999px; background: var(--green-600);
  color: var(--white); font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.phone-bonus {
  display: flex; align-items: center; gap: 8px; padding: 12px;
  border-radius: 16px; background: linear-gradient(90deg, var(--green-500), var(--green-600)); color: var(--white);
}
.phone-bonus .icon { color: var(--white); }
.phone-bonus-text { font-weight: 700; font-size: 14px; }
.phone-bonus-amount { margin-left: auto; font-weight: 800; font-size: 14px; }

.phone-tabbar {
  padding: 12px 16px; background: var(--white); border-top: 1px solid var(--green-100);
  display: flex; justify-content: space-around;
}
.phone-tab { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.phone-tab .icon { width: 20px; height: 20px; color: var(--gray-400); }
.phone-tab span { font-size: 10px; font-weight: 700; color: var(--gray-400); }
.phone-tab-active .icon, .phone-tab-active span { color: var(--green-600); }

/* Hero marquee */
.hero-marquee {
  margin-top: 64px; padding: 16px 0; border-top: 1px solid var(--green-100); border-bottom: 1px solid var(--green-100);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 24px;
}
.hm-item { font-size: 14px; font-weight: 700; color: var(--gray-700); }
.hm-sep { color: var(--gray-300); }
.hm-tag { font-size: 14px; font-weight: 600; color: var(--green-700); }

/* ===== Section headers ===== */
.section-eyebrow {
  display: block; font-size: 14px; font-weight: 700; color: var(--green-600);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
}
.section-title { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; color: var(--gray-900); }
@media (min-width: 768px) { .section-title { font-size: 40px; } }
.section-sub {
  margin: 16px auto 0; font-size: 18px; color: var(--gray-600); max-width: 640px;
}

/* ===== About ===== */
.about-body { margin: 32px auto 0; max-width: 720px; }
.about-body p { font-size: 18px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.about-body strong { color: var(--gray-900); }
.about-subtitle { font-size: 20px; font-weight: 700; color: var(--gray-900); margin: 40px auto 16px; text-align: center; }
.about-list {
  max-width: 720px; margin: 0 auto; display: grid; gap: 12px;
}
@media (min-width: 640px) { .about-list { grid-template-columns: 1fr 1fr; } }
.about-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-700); font-size: 14px; line-height: 1.6; }
.about-list .icon { color: var(--green-600); margin-top: 2px; }

.stats-grid {
  margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { text-align: center; padding: 24px; border-radius: 16px; background: var(--green-50); border: 1px solid var(--green-100); }
.stat-value { font-size: 36px; font-weight: 800; color: var(--green-600); }
.stat-label { margin-top: 4px; font-size: 14px; font-weight: 600; color: var(--gray-600); }

/* ===== Steps ===== */
.steps-grid { margin-top: 48px; display: grid; gap: 24px; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  position: relative; padding: 24px; border-radius: 16px;
  background: var(--white); border: 1px solid var(--green-100); box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-num { font-size: 36px; font-weight: 800; color: var(--green-200); }
.step-title { margin-top: 12px; font-weight: 700; color: var(--gray-900); }
.step-desc { margin-top: 8px; font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ===== Games ===== */
.games-grid { margin-top: 48px; display: grid; gap: 24px; }
@media (min-width: 640px) { .games-grid { grid-template-columns: 1fr 1fr; } }
.game-card {
  position: relative; padding: 24px; border-radius: 16px;
  background: var(--white); border: 1px solid var(--green-100); box-shadow: var(--shadow-sm);
  transition: all 0.2s; overflow: hidden;
}
.game-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.game-blob {
  position: absolute; right: -32px; top: -32px; width: 128px; height: 128px;
  border-radius: 999px; opacity: 0.1; transition: opacity 0.2s;
}
.game-card:hover .game-blob { opacity: 0.2; }
.game-blob-emerald { background: linear-gradient(135deg, var(--green-400), var(--green-600)); }
.game-blob-teal { background: linear-gradient(135deg, var(--green-400), #14b8a6); }
.game-blob-lime { background: linear-gradient(135deg, #a3e635, var(--green-600)); }
.game-blob-mint { background: linear-gradient(135deg, #5eead4, var(--green-600)); }
.game-card-inner { position: relative; display: flex; align-items: flex-start; gap: 16px; }
.game-icon-box {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: var(--shadow-green);
}
.game-icon-box .icon { color: var(--white); width: 28px; height: 28px; }
.game-meta-row { display: flex; flex-wrap: items-center; gap: 8px; font-size: 12px; font-weight: 600; align-items: center; }
.game-diff { padding: 4px 10px; border-radius: 999px; background: var(--green-100); color: var(--green-700); }
.game-meta { display: flex; align-items: center; gap: 4px; color: var(--gray-500); }
.game-meta .icon { width: 14px; height: 14px; }
.game-reward { display: flex; align-items: center; gap: 4px; color: var(--green-600); }
.game-reward .icon { width: 14px; height: 14px; }
.game-name { margin-top: 8px; font-size: 20px; font-weight: 800; color: var(--gray-900); }
.game-desc { margin-top: 6px; font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.games-footer-tags {
  margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 24px; font-size: 14px; font-weight: 700; color: var(--gray-600);
}

/* ===== Rewards ===== */
.rewards-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .rewards-grid { grid-template-columns: 1fr 1fr; } }
.rewards-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.rewards-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-700); font-size: 14px; line-height: 1.6; }
.rewards-list .icon { color: var(--green-600); margin-top: 2px; }
.rewards-tags { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.rewards-phone-wrap { display: flex; justify-content: center; }

.rewards-screen { padding: 20px; display: flex; flex-direction: column; height: 100%; }
.rewards-head { display: flex; align-items: center; justify-content: space-between; }
.rewards-title { font-weight: 800; color: var(--gray-900); }
.rewards-head .icon { color: var(--green-600); }
.rewards-balance { margin-top: 24px; text-align: center; }
.rewards-balance-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 80px; height: 80px; border-radius: 999px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  box-shadow: var(--shadow-green);
}
.rewards-balance-icon .icon { color: var(--white); width: 40px; height: 40px; }
.rewards-balance-num { margin-top: 12px; font-size: 30px; font-weight: 800; color: var(--gray-900); }
.rewards-balance-label { font-size: 14px; font-weight: 600; color: var(--gray-500); }
.rewards-items { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.reward-row { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 12px; }
.reward-row-white { background: var(--white); border: 1px solid var(--green-100); }
.reward-row-green { background: linear-gradient(90deg, var(--green-500), var(--green-600)); color: var(--white); }
.reward-row .icon { width: 20px; height: 20px; color: var(--green-600); }
.reward-row-green .icon { color: var(--white); }
.reward-row-info { flex: 1; }
.reward-row-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.reward-row-green .reward-row-name { color: var(--white); }
.reward-row-meta { font-size: 12px; color: var(--gray-500); }
.reward-row-green .reward-row-meta { color: var(--green-100); }
.reward-row-amount { font-size: 14px; font-weight: 800; }

/* ===== Safety ===== */
.safety-list {
  margin: 32px auto 0; max-width: 640px; display: grid; gap: 12px;
}
@media (min-width: 640px) { .safety-list { grid-template-columns: 1fr 1fr; } }
.safety-list li {
  display: flex; align-items: flex-start; gap: 10px; padding: 16px;
  border-radius: 12px; background: var(--green-50); border: 1px solid var(--green-100);
  color: var(--gray-700); font-size: 14px; line-height: 1.6;
}
.safety-list .icon { color: var(--green-600); margin-top: 2px; }
.safety-tags { margin-top: 32px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ===== FAQ ===== */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: 16px; background: var(--white); border: 1px solid var(--green-100);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit; font-weight: 700; color: var(--gray-900); font-size: 15px;
}
@media (min-width: 640px) { .faq-q { font-size: 16px; } }
.faq-chevron { width: 20px; height: 20px; color: var(--green-600); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: grid; grid-template-rows: 0fr; opacity: 0; transition: all 0.3s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; opacity: 1; }
.faq-a-inner { overflow: hidden; }
.faq-a p { padding: 0 20px 16px; font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ===== CTA ===== */
.section-cta {
  position: relative; padding: 80px 0; overflow: hidden;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
}
@media (min-width: 768px) { .section-cta { padding: 112px 0; } }
.cta-blobs { position: absolute; inset: 0; opacity: 0.1; pointer-events: none; }
.cta-blob { position: absolute; border-radius: 999px; background: var(--white); }
.cta-blob-1 { top: 40px; left: 40px; width: 160px; height: 160px; }
.cta-blob-2 { bottom: 40px; right: 80px; width: 224px; height: 224px; }
.cta-blob-3 { top: 50%; left: 33%; width: 128px; height: 128px; }
.cta-title { font-size: 30px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
@media (min-width: 768px) { .cta-title { font-size: 48px; } }
.cta-sub { margin: 16px auto 0; font-size: 18px; color: var(--green-50); max-width: 560px; }
.cta-actions { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
@media (min-width: 640px) { .cta-actions { flex-direction: row; justify-content: center; } }

/* ===== Footer ===== */
.footer { background: var(--gray-900); color: var(--gray-400); }
.footer-grid {
  padding: 56px 24px; max-width: 1120px; margin: 0 auto;
  display: grid; gap: 40px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo { margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.7; }
.footer-heading { color: var(--white); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--green-400); }
.footer-bottom { border-top: 1px solid var(--gray-800); }
.footer-bottom-inner {
  padding: 24px; max-width: 1120px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 12px;
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; } }
.footer-note { display: flex; align-items: center; gap: 6px; }
.footer-note .icon { width: 14px; height: 14px; color: var(--green-500); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.reveal.reveal-visible { opacity: 1; transform: translateY(0); }

/* ===== Keyframes ===== */
@keyframes floatBall {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(8deg); }
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #ffb700;
}

.logo-accent {
  color: #27a508;
}