* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

:root {
  --bg: #000000;
  --bg-soft: #0a0a0a;
  --card: #111111;
  --card-2: #171717;
  --text: #ffffff;
  --text-soft: #b8b8b8;
  --text-muted: #8a8a8a;
  --accent: #ff9c2e;
  --accent-hover: #ffad4f;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  --nav-h: 76px;
}

html,
body {
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top right, rgba(255, 156, 46, 0.08), transparent 28%),
    radial-gradient(circle at left center, rgba(255, 156, 46, 0.04), transparent 32%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* HERO */
.hero {
  text-align: center;
  padding: calc(var(--nav-h) + 45px) 20px 70px;
  border-bottom: 1px solid var(--border);
}

.hero img {
  width: min(420px, 88vw);
  max-width: 100%;
  display: block;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 20px;
  color: var(--text-soft);
  margin-top: 8px;
}

/* CONTACT SECTION */
.contact-section {
  padding: 70px 20px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h2 {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.contact-section p {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 36px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.buttons a {
  min-width: 180px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.buttons a.email {
  background: var(--accent);
  color: #000;
  box-shadow: 0 10px 24px rgba(255, 156, 46, 0.18);
}

.buttons a.telegram {
  background: #111;
  color: var(--accent);
  border: 1px solid rgba(255, 156, 46, 0.28);
}

.buttons a:hover {
  transform: translateY(-2px);
}

.buttons a.email:hover {
  background: var(--accent-hover);
}

.buttons a.telegram:hover {
  background: #181818;
}

/* FAQ */
.faq {
  max-width: 950px;
  margin: 80px auto;
  text-align: center;
  padding: 0 20px;
}

.faq h3 {
  font-size: clamp(28px, 4.5vw, 42px);
  margin-bottom: 30px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-item {
  margin-bottom: 22px;
  background: var(--card);
  padding: 24px 26px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: left;
}

.faq-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text);
}

.faq-item p {
  font-size: 16px;
  color: var(--text-soft);
}

/* OPTIONAL desktop nav support if not already in style.css */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions .signin-btn.secondary-btn {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.nav-actions .signin-btn.secondary-btn:hover {
  border-color: rgba(255, 156, 46, 0.35);
  color: var(--accent);
  background: rgba(255, 156, 46, 0.05);
}

.nav-actions .signup-btn {
  background: var(--accent);
  color: #000;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(255, 156, 46, 0.2);
  text-decoration: none;
}

.nav-actions .signup-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* OPTIONAL drawer button centering if not already in style.css */
.drawer-login,
.drawer-signup {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    padding: calc(var(--nav-h) + 30px) 20px 50px;
  }

  .hero p {
    font-size: 17px;
  }

  .contact-section {
    padding-top: 50px;
  }

  .contact-section p {
    font-size: 16px;
  }

  .buttons {
    gap: 14px;
  }

  .buttons a {
    width: 100%;
    max-width: 320px;
  }

  .faq {
    margin: 60px auto;
  }

  .faq-item {
    padding: 20px;
    border-radius: 16px;
  }

  .faq-item h4 {
    font-size: 18px;
  }

  .faq-item p {
    font-size: 15px;
  }
}