/* =========================================
   DESIGN TOKENS
   ========================================= */
:root {
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;

  /* Brand Primary — #7825F3 */
  --blue-50: #f3eeff;
  --blue-100: #e4d5fd;
  --blue-600: #7825F3;
  --blue-700: #6118d4;
  --indigo-500: #7825F3;
  --indigo-600: #6118d4;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* =========================================
   RESET
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================
   LAYOUT
   ========================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  padding: .35rem 1rem;
  margin-bottom: 1.25rem;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; color: var(--gray-900); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; color: var(--gray-900); }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; color: var(--gray-900); }

.text-lead { font-size: 1.2rem; color: var(--gray-500); font-weight: 400; line-height: 1.75; }
.text-body { font-size: 1rem; color: var(--gray-500); line-height: 1.75; }
.text-center { text-align: center; }

.blue { color: var(--blue-600); } /* #7825F3 */

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 0 0 1px var(--blue-700), var(--shadow-md);
}
.btn-primary:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(120,37,243,.35), var(--shadow-lg); }

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover { background: var(--gray-50); border-color: var(--gray-300); }

.btn-white {
  background: #fff;
  color: var(--blue-600);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(120,37,243,.2), var(--shadow-lg); }

.btn-lg { padding: 1.125rem 2.5rem; font-size: 1.125rem; border-radius: var(--radius-sm); }

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--gray-900);
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-600);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: color .15s;
}
.nav-links a:hover { color: var(--gray-900); }

.nav-actions { display: flex; align-items: center; gap: .75rem; }

/* =========================================
   HERO
   ========================================= */
.hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.hero h1 { max-width: 820px; }
.hero .text-lead { max-width: 680px; margin: 0 auto; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}

.hero-screenshot {
  width: 100%;
  max-width: 1040px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--gray-200);
  margin-top: 1rem;
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
  padding: 1.5rem 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--gray-700);
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg { stroke: var(--blue-600); }

/* =========================================
   SECTION HEADER
   ========================================= */
.section-header {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--gray-500); font-size: 1.1rem; }

/* =========================================
   FEATURE CARDS GRID
   ========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: box-shadow .25s, transform .25s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.feature-icon svg { stroke: var(--blue-600); }

.feature-card h3 { margin-bottom: .625rem; font-size: 1.125rem; }
.feature-card p { color: var(--gray-500); font-size: .9375rem; line-height: 1.7; margin: 0; }

/* =========================================
   SPLIT ROWS (alternating)
   ========================================= */
.split-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.split-row.reverse { flex-direction: row-reverse; }

.split-text { flex: 1; }
.split-media { flex: 1; }

.split-text h2 { margin-bottom: 1rem; }
.split-text p { color: var(--gray-500); margin-bottom: 1.25rem; font-size: 1rem; }
.split-text p:last-of-type { margin-bottom: 0; }

.split-screenshot {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--gray-200);
}

/* Checklist */
.checklist { margin-top: 1.5rem; }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--gray-700);
  font-size: .9375rem;
  font-weight: 500;
  margin-bottom: .75rem;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg { stroke: var(--blue-600); }

/* =========================================
   STATS STRIP
   ========================================= */
.stats-strip {
  background: var(--blue-600);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: .5rem;
}

.stat-label {
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}

/* =========================================
   GAME VARIANTS
   ========================================= */
.variants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.variant-pill {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all .2s;
}

.variant-pill:hover {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px var(--blue-50);
}

.variant-pill svg { margin: 0 auto .75rem; stroke: var(--blue-600); }
.variant-pill h4 { font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.variant-pill p { font-size: .875rem; color: var(--gray-500); margin: 0; }

/* =========================================
   SECURITY SECTION
   ========================================= */
.security-wrap {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.security-content { flex: 1; }
.security-image { flex: 1; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); }

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--blue-600);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid transparent;
}

.faq-item[open] p {
  border-top-color: var(--gray-100);
  padding-top: 1.25rem;
}

/* =========================================
   CTA BAND
   ========================================= */
.cta-band {
  background: linear-gradient(135deg, #7825F3 0%, #4f18c4 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 600px; margin: 1rem auto 2.5rem; font-size: 1.125rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--gray-900);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { color: #fff; }
.footer-brand p { color: var(--gray-300); font-size: .9375rem; margin-top: 1rem; line-height: 1.7; }

.footer-col h4 { font-size: .875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-300); margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: .75rem; }
.footer-col ul li a { color: var(--gray-500); font-size: .9375rem; transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .875rem;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: 1rem;
}

/* =========================================
   FLOATING CONTACT BUTTONS
   ========================================= */
.floating-contact {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: var(--shadow-xl);
}

.float-btn.whatsapp {
  background-color: #25D366;
}

.float-btn.telegram {
  background-color: #0088cc;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .variants-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .split-row, .split-row.reverse, .security-wrap { flex-direction: column; gap: 2.5rem; }
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-inner { gap: 1.5rem; }
  .variants-grid { grid-template-columns: 1fr 1fr; }
}
