:root {
  --bg: #070708;
  --text: #ffffff;
  --muted: #b9bcc6;
  --muted-strong: #d6d7db;
  --gold: #ffd166;
  --orange-border: rgba(255, 106, 0, 0.18);
  --orange-bg: rgba(255, 106, 0, 0.08);
  --orange-text: #ffb780;
  --panel-border: rgba(255, 255, 255, 0.10);
  --panel-bg: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.03));
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.22);
  --shadow-orange: 0 18px 50px rgba(255, 106, 0, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 106, 0, 0.10), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 209, 102, 0.06), transparent 16%),
    linear-gradient(180deg, #0b0b0d 0%, #070708 100%);
}

img {
  display: block;
  max-width: 100%;
}

.page {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 22px;
}

.container.narrow {
  max-width: 940px;
}

.hero,
.gesiel-section,
.stores-section,
.benefits-section,
.security-section,
.final-cta-section {
  padding: 22px 0;
}

.hero {
  padding-top: 36px;
  padding-bottom: 24px;
}

.hero-container,
.centered {
  text-align: center;
}

.hero-container {
  max-width: 860px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--orange-border);
  background: var(--orange-bg);
  color: var(--orange-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.logo {
  width: 136px;
  margin: 18px auto 18px;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(255, 106, 0, 0.14);
}

.project-tag {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
}

h1 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 40px;
}

h2 {
  margin-top: 14px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.gesiel-title {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 18px auto 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 18px;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #059669);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.18);
}

.btn-telegram {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.18);
}

.micro-trust,
.social-proof,
.section-text,
.disclaimer {
  color: var(--muted);
}

.micro-trust {
  margin: 14px auto 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.8;
  color: #d9d9de;
}

.social-proof {
  margin: 16px auto 0;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.8;
}

.social-proof strong {
  color: var(--gold);
}

.panel {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  background: var(--panel-bg);
  box-shadow: var(--shadow-soft), var(--shadow-orange);
  padding: 24px 20px;
}

.gesiel-card {
  display: grid;
  gap: 20px;
  align-items: center;
}

.gesiel-photo-wrap {
  display: flex;
  justify-content: center;
}

.gesiel-photo {
  width: 100%;
  max-width: 360px;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.gesiel-content {
  text-align: center;
}

.gesiel-content p,
.section-text,
.disclaimer {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.8;
}

.gesiel-note {
  color: var(--muted-strong);
  font-weight: 600;
}

.stores-intro {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.store-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  border-radius: 20px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.store-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.store-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.store-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--muted-strong);
  text-align: center;
}

.benefits-grid,
.security-columns {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.03));
  box-shadow: var(--shadow-soft), var(--shadow-orange);
  text-align: left;
}

.benefit-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 106, 0, 0.10);
  font-size: 18px;
}

.benefit-card h3,
.security-item h3 {
  margin: 0;
  color: var(--muted-strong);
}

.benefit-card h3 {
  font-size: 17px;
}

.benefit-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.security-item {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
}

.security-item h3 {
  font-size: 18px;
}

.security-item ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 56px;
  }

  .logo {
    width: 160px;
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 40px;
  }

  .gesiel-title {
    font-size: 32px;
  }

  .subtitle {
    font-size: 19px;
  }

  .cta-group {
    flex-direction: row;
    justify-content: center;
  }

  .btn {
    min-width: 250px;
  }

  .gesiel-card {
    grid-template-columns: 380px 1fr;
    gap: 28px;
    padding: 30px;
  }

  .gesiel-content {
    text-align: left;
  }

  .stores-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .benefits-grid,
  .security-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel {
    padding: 34px 30px;
  }
}