* {
  box-sizing: border-box;
}

:root {
  --bg: #060606;
  --bg-soft: #0f0f10;
  --card: #131313;
  --card-2: #1a1a1a;
  --text: #f5f5f5;
  --muted: #b6b6b6;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #f5c14b;
  --accent-2: #ffd97a;
  --success: #41d98b;
  --danger: #ff7a7a;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, #111 0%, #060606 45%, #030303 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.center-space {
  text-align: center;
  margin-top: 2.5rem;
}

.top-space {
  margin-top: 2rem;
}

.section-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 24px;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.8);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.logo span {
  color: var(--accent);
}

.logo-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(245, 193, 75, 0.14);
  color: var(--accent);
  font-size: 0.7rem;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  transition: 0.25s;
}

.nav-links a:hover {
  color: var(--text);
}

.btn-nav,
.btn-primary,
.btn-ghost,
.btn-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: 0.25s ease;
  font-weight: 700;
}

.btn-nav,
.btn-primary,
.btn-modal {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  border: none;
}

.btn-nav:hover,
.btn-primary:hover,
.btn-modal:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(245, 193, 75, 0.18);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
}

.nav-mobile-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: #090909;
}

.mobile-menu.open {
  display: flex;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 20px 70px;
  text-align: center;
}

.hero-glow,
.hero-glow2 {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
}

.hero-glow {
  width: 280px;
  height: 280px;
  background: var(--accent);
  top: 40px;
  left: -60px;
}

.hero-glow2 {
  width: 240px;
  height: 240px;
  background: #ffffff;
  top: 160px;
  right: -80px;
}

.hero-eyebrow,
.section-eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(245, 193, 75, 0.22);
  background: rgba(245, 193, 75, 0.08);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0 auto 18px;
  max-width: 950px;
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-stats {
  margin: 42px auto 0;
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  color: var(--muted);
  margin-top: 6px;
}

.price-banner {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto 60px;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(245, 193, 75, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(245, 193, 75, 0.14);
  text-align: center;
}

.price-banner span {
  color: var(--accent);
  font-weight: 700;
}

section {
  padding: 70px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 10px;
  line-height: 1.1;
}

.section-sub {
  color: var(--muted);
  max-width: 700px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.pill.active,
.pill:hover {
  color: #111;
  background: var(--accent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.product-emoji {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(245, 193, 75, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.product-category {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}

.product-title {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.product-desc {
  color: var(--muted);
  font-size: 0.95rem;
  min-height: 72px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.product-actions button,
.product-actions a {
  flex: 1;
}

.mini-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 12px;
  padding: 11px 12px;
  cursor: pointer;
  font-weight: 700;
}

.mini-btn:hover {
  background: rgba(255,255,255,0.04);
}

.buy-btn {
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  border-radius: 12px;
  padding: 11px 12px;
  cursor: pointer;
  font-weight: 800;
}

.how-grid,
.test-grid,
.sell-features,
.footer-grid,
.sell-sim-grid {
  display: grid;
  gap: 18px;
}

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

.how-card,
.test-card,
.sell-feat,
.sell-visual,
.sim-item,
.page-card,
.form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
}

.how-num {
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 8px;
}

.how-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.sell-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.sell-sub {
  margin-bottom: 2rem;
}

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

.feat-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.earn-label-title {
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 20px;
}

.earn-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.earn-main-row {
  padding-top: 18px;
  border-bottom: none;
}

.earn-main-left {
  flex: 1;
}

.earn-label {
  color: var(--muted);
}

.earn-label.strong {
  color: var(--text);
  font-weight: 800;
}

.earn-val {
  font-weight: 800;
  color: var(--text);
}

.earn-val.muted {
  color: var(--danger);
}

.earn-val.good {
  color: var(--success);
}

.earn-val.big {
  font-size: 1.5rem;
}

.earn-progress {
  margin-top: 8px;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.earn-bar {
  width: 85%;
  height: 100%;
  background: linear-gradient(90deg, var(--success), #72efb0);
}

.sell-sim-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.sim-item {
  text-align: center;
}

.sim-item.accent {
  border-color: rgba(245, 193, 75, 0.22);
}

.sim-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent);
}

.sim-label {
  color: var(--muted);
}

.sim-val {
  margin-top: 8px;
  font-weight: 800;
}

.accent-text,
.accent-normal {
  color: var(--accent);
  font-style: normal;
}

.test-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stars {
  color: var(--accent);
  margin-bottom: 12px;
}

.test-text {
  color: var(--muted);
  min-height: 92px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #111;
  font-weight: 800;
}

.avatar-1 {
  background: linear-gradient(135deg, #f5c842, #ff6b35);
}

.avatar-2 {
  background: linear-gradient(135deg, #4a9eff, #3de89a);
}

.avatar-3 {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  margin-bottom: 14px;
}

.faq-q {
  width: 100%;
  background: transparent;
  color: var(--text);
  border: none;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-arrow {
  transition: 0.25s;
}

footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  background: #050505;
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  margin-bottom: 30px;
}

.footer-brand p,
.footer-col a {
  color: var(--muted);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  margin: 0 0 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badge {
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  width: min(640px, 100%);
  background: #101010;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  position: relative;
}

.modal h2 {
  margin-top: 0;
}

.modal-sub {
  color: var(--muted);
  margin-bottom: 20px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.checkout-product {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 18px;
}

.checkout-thumb {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(245, 193, 75, 0.12);
  font-size: 1.6rem;
}

.checkout-info {
  flex: 1;
}

.checkout-info h4 {
  margin: 0 0 4px;
}

.checkout-info p {
  margin: 0;
  color: var(--muted);
}

.checkout-price {
  font-weight: 800;
  color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.form-group input,
.form-group select,
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  background: #0c0c0c;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 14px;
  border-radius: 14px;
  outline: none;
}

.form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.modal-info {
  color: var(--muted);
  margin: 10px 0 18px;
}

.page-hero {
  padding: 80px 20px 30px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}

.page-grid {
  width: min(1100px, calc(100% - 32px));
  margin: 20px auto 80px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
}

.page-card h3,
.form-card h3 {
  margin-top: 0;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.kpi {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.kpi-label {
  color: var(--muted);
}

.kpi-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent);
  margin-top: 8px;
}

.list-clean {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.list-clean li + li {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-btn {
    display: inline-flex;
  }

  .hero-stats,
  .products-grid,
  .how-grid,
  .test-grid,
  .footer-grid,
  .sell-features,
  .sell-sim-grid,
  .kpi-grid,
  .page-grid,
  .form-row,
  .sell-inner {
    grid-template-columns: 1fr;
  }

  .products-header {
    align-items: start;
  }
}