/* GO LOTTRY — shared design system (multi-page site) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:      #e7f950;
  --brand-dim:  rgba(231,249,80,0.12);
  --brand-glow: rgba(231,249,80,0.25);
  --bg:         #0e1117;
  --bg2:        #161b27;
  --bg3:        #1e2535;
  --border:     rgba(255,255,255,0.07);
  --text:       #f0f4f8;
  --muted:      rgba(255,255,255,0.45);
  --ink:        #222831;
  --good:       #4ade80;
  --warn:       #fbbf24;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
.accent { color: var(--brand); }

/* ── Layout helpers ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 1.5rem; }
.section-tight { padding: 3rem 1.5rem; }
@media (max-width: 640px) { .section { padding: 3.5rem 1.25rem; } }

.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--brand);
  margin-bottom: 0.9rem;
}
h1, h2, h3 { font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
p { color: var(--muted); line-height: 1.65; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head p { font-size: 1.02rem; }

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 64px;
  background: rgba(14,17,23,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo {
  width: 34px; height: 34px; border-radius: 10px; overflow: hidden;
  background: #222831; flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(231,249,80,0.3), 0 0 12px rgba(231,249,80,0.15);
}
.nav-logo img { width: 100%; height: 100%; object-fit: contain; }
.nav-brand-text {
  font-size: 13px; font-weight: 900; font-style: italic;
  text-transform: uppercase; letter-spacing: -0.01em; color: var(--text);
  white-space: nowrap;
}
.nav-brand-text span { color: var(--brand); }

.nav-links { display: none; align-items: center; gap: 1.75rem; margin: 0 auto; }
.nav-links a {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { color: var(--brand); }
@media (min-width: 980px) { .nav-links { display: flex; } }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 4px;
  background: transparent; border: 1px solid var(--border); color: var(--muted);
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 8px; height: 34px; padding: 0 10px; cursor: pointer;
}
.lang-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.18); }
.lang-menu {
  position: absolute; top: 42px; right: 0; min-width: 130px;
  background: var(--bg2); border: 1px solid var(--border); border-radius: 10px;
  padding: 6px; display: none; flex-direction: column; gap: 2px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.lang-menu.open { display: flex; }
.lang-menu button {
  background: none; border: none; text-align: left; color: var(--muted);
  font-size: 12.5px; font-weight: 600; padding: 8px 10px; border-radius: 6px; cursor: pointer;
}
.lang-menu button:hover { background: var(--bg3); color: var(--text); }
.lang-menu button.active { color: var(--brand); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 18px; height: 38px;
  background: var(--brand); color: var(--ink);
  border-radius: 10px; font-size: 11px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none; transition: opacity 0.2s, transform 0.15s; white-space: nowrap;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.nav-burger {
  display: flex; flex-direction: column; gap: 4px; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.nav-burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }
@media (min-width: 980px) { .nav-burger { display: none; } }

.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background: var(--bg2); border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 1rem 1.5rem 1.5rem; gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.75rem 0.25rem; color: var(--text); text-decoration: none;
  font-weight: 700; font-size: 14px; border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-of-type { border-bottom: none; }
@media (min-width: 980px) { .mobile-nav { display: none !important; } }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 26px; border-radius: 12px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none; transition: transform 0.15s, opacity 0.2s, background 0.2s;
  border: none; cursor: pointer;
}
.btn-brand { background: var(--brand); color: var(--ink); }
.btn-brand:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.actions { display: flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center; }

/* ── Page hero (non-home) ── */
.page-hero {
  padding: 130px 1.5rem 3.5rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 640px; height: 400px;
  background: radial-gradient(ellipse, rgba(231,249,80,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); max-width: 900px; margin: 0 auto; text-wrap: balance; position: relative; z-index: 1; }
.page-hero .sub { max-width: 640px; margin: 1rem auto 0; font-size: 1.05rem; position: relative; z-index: 1; }
.crumb { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.crumb .accent { color: var(--brand); }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--brand-dim); border: 1px solid rgba(231,249,80,0.25);
  font-size: 12px; font-weight: 700; color: var(--brand);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 8px var(--brand-glow); }

/* ── Stats bar ── */
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4,1fr); } }
.stat { text-align: center; padding: 1.5rem 0.5rem; border: 1px solid var(--border); border-radius: 14px; background: var(--bg2); }
.stat b { display: block; font-size: 1.9rem; font-weight: 900; color: var(--brand); }
.stat span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

/* ── Cards / grids ── */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2,1fr); }
@media (min-width: 680px) { .grid-2 { grid-template-columns: repeat(2,1fr); } .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3,1fr); } .grid-4 { grid-template-columns: repeat(4,1fr); } }

.card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 16px;
  padding: 1.75rem; transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(231,249,80,0.25); transform: translateY(-3px); }
.card .icon {
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--brand-dim); font-size: 22px; margin-bottom: 1rem;
}
.card h3 { font-size: 1.05rem; }
.card p { font-size: 0.92rem; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
.tag { font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--bg3); color: var(--muted); border: 1px solid var(--border); }

/* Role cards */
.role-card { text-align: center; }
.role-emoji { font-size: 2rem; margin-bottom: 0.6rem; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 1.5rem; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3,1fr); } }
.step { position: relative; padding: 1.75rem 1.5rem 1.5rem; border: 1px solid var(--border); border-radius: 16px; background: var(--bg2); }
.step-num {
  width: 34px; height: 34px; border-radius: 10px; background: var(--brand); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 15px;
  margin-bottom: 1rem;
}

/* Split section (image/content 2-col feel without images) */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split.reverse .split-visual { order: -1; }
@media (min-width: 900px) { .split.reverse .split-visual { order: 2; } }

.panel {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; padding: 2rem;
}
.panel-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.panel-list li { display: flex; gap: 10px; font-size: 0.95rem; color: var(--text); align-items: flex-start; }
.panel-list li::before { content: '✓'; color: var(--brand); font-weight: 900; flex-shrink: 0; }

/* Currency / payment chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.chip {
  display: flex; align-items: center; gap: 8px; padding: 10px 18px;
  background: var(--bg2); border: 1px solid var(--border); border-radius: 999px;
  font-size: 13px; font-weight: 700;
}
.chip img { height: 20px; width: auto; }

/* Payment logo row */
.pay-row { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: center; }
.pay-row img { height: 30px; width: auto; background: #fff; border-radius: 6px; padding: 4px 8px; }

/* ── Pricing ── */
.price-card { display: flex; flex-direction: column; gap: 1.25rem; }
.price-card.featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), 0 20px 50px rgba(231,249,80,0.08); }
.price-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.price-tag { font-size: 10px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); background: var(--brand); padding: 4px 10px; border-radius: 999px; }
.price-amount { font-size: 2.4rem; font-weight: 900; }
.price-amount small { font-size: 0.9rem; font-weight: 700; color: var(--muted); }
.price-line { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 0.6rem 0; border-bottom: 1px dashed var(--border); }
.price-line:last-child { border-bottom: none; }
.price-line b { color: var(--text); }
.price-line span:first-child { color: var(--muted); }

/* ── FAQ accordion ── */
.faq-cat { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); margin: 2.25rem 0 1rem; }
.faq-cat:first-child { margin-top: 0; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; margin-bottom: 0.75rem; background: var(--bg2); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; color: var(--text);
  font-size: 0.98rem; font-weight: 700; padding: 1.1rem 1.3rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .plus { color: var(--brand); font-size: 1.3rem; font-weight: 400; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a p { padding: 0 1.3rem 1.2rem; font-size: 0.92rem; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── CTA band ── */
.cta-band {
  text-align: center; padding: 4.5rem 1.5rem; border-radius: 28px;
  background: linear-gradient(160deg, var(--bg2), var(--bg3));
  border: 1px solid var(--border); margin: 0 1.5rem;
}
.cta-band h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }

/* ── Contact channels ── */
.contact-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; }
.contact-card .icon { width: 56px; height: 56px; font-size: 26px; }

/* ── Footer ── */
footer { border-top: 1px solid var(--border); padding: 3.5rem 1.5rem 2rem; background: var(--bg2); }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 0.9rem; text-decoration: none; }
.footer-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 13px; color: var(--text); text-decoration: none; margin-bottom: 0.65rem; opacity: 0.85; }
.footer-col a:hover { color: var(--brand); opacity: 1; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted);
}
.footer-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-badge { font-size: 10.5px; padding: 4px 10px; border: 1px solid var(--border); border-radius: 999px; }

/* ── WhatsApp float ── */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  font-size: 26px; text-decoration: none; box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ── Misc ── */
.divider { height: 1px; background: var(--border); margin: 3rem 0; }
.hidden { display: none !important; }
.center { text-align: center; }
