:root {
  --bg-0: #0a1414;
  --bg-1: #0f1d1b;
  --bg-2: #152625;
  --card: #132220;
  --card-soft: #172c29;
  --line: #24433f;
  --text: #eef7f3;
  --muted: #a8c3bc;
  --accent: #b4d246;
  --accent-strong: #c9eb4f;
  --danger: #bb5a4a;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, #183432 0%, rgba(24, 52, 50, 0) 42%),
    radial-gradient(circle at 88% 14%, #2b3f1d 0%, rgba(43, 63, 29, 0) 32%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 44%, var(--bg-2));
  font-family: "Manrope", "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

a {
  color: inherit;
}

.shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 20px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(10, 20, 20, 0.74);
  border-bottom: 1px solid rgba(180, 210, 70, 0.14);
}

.topbar-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(180, 210, 70, 0.12);
  border: 1px solid rgba(180, 210, 70, 0.24);
  padding: 4px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  padding: 12px 18px;
  transition: 0.2s ease;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  color: #11170a;
  background: var(--accent);
  box-shadow: 0 10px 28px rgba(180, 210, 70, 0.26);
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  border-color: rgba(180, 210, 70, 0.4);
  background: rgba(180, 210, 70, 0.08);
}

.hero {
  margin-top: 24px;
  border: 1px solid rgba(180, 210, 70, 0.23);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(28, 52, 48, 0.9), rgba(15, 29, 27, 0.95)),
    radial-gradient(circle at 100% 0%, rgba(180, 210, 70, 0.17), rgba(180, 210, 70, 0));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  padding: 36px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(180, 210, 70, 0.13);
  color: var(--accent);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1.08;
  max-width: 760px;
}

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

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-side {
  background: rgba(7, 15, 15, 0.42);
  border: 1px solid rgba(180, 210, 70, 0.2);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.hero-side h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--accent);
}

.hero-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-stat .cell {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(180, 210, 70, 0.14);
}

.hero-stat .value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.hero-stat .label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.section {
  margin-top: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card), #10201e);
  box-shadow: var(--shadow);
  padding: 28px;
}

.section h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.section p.lead {
  margin: 0;
  color: var(--muted);
  max-width: 920px;
  line-height: 1.6;
}

.cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(180, 210, 70, 0.18);
  border-radius: 16px;
  padding: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.timeline {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.step {
  border-radius: 14px;
  border: 1px solid rgba(180, 210, 70, 0.15);
  background: var(--card-soft);
  padding: 14px;
}

.step .idx {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(180, 210, 70, 0.18);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 8px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.plans {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.plan {
  border-radius: 16px;
  border: 1px solid rgba(180, 210, 70, 0.2);
  background: linear-gradient(180deg, #172926, #11211f);
  padding: 18px;
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.plan.popular {
  border-color: rgba(180, 210, 70, 0.5);
  box-shadow: 0 14px 28px rgba(180, 210, 70, 0.15);
}

.plan .tag-mini {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #10211c;
  background: var(--accent);
  border-radius: 999px;
  padding: 4px 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan h3 {
  margin: 0;
  font-size: 1.08rem;
}

.plan .price {
  margin-top: 8px;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
}

.plan .price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.plan ul {
  margin: 12px 0 0;
  padding-left: 16px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
  flex: 1;
}

.plan .btn {
  margin-top: 14px;
  width: 100%;
}

.faq {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

details {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(180, 210, 70, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
}

summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.cta {
  margin-top: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(180, 210, 70, 0.25);
  background:
    radial-gradient(circle at 0% 100%, rgba(180, 210, 70, 0.16), transparent 45%),
    linear-gradient(160deg, #172c29, #12211f);
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.9vw, 2rem);
  line-height: 1.2;
  max-width: 700px;
}

.cta p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 700px;
}

footer {
  margin: 26px 0 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(180, 210, 70, 0.15);
  padding-top: 16px;
}

.danger-note {
  margin-top: 12px;
  border: 1px solid rgba(187, 90, 74, 0.45);
  background: rgba(187, 90, 74, 0.1);
  color: #f0c8bf;
  border-radius: 12px;
  padding: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    padding: 14px;
  }

  .topbar-inner {
    padding: 12px 14px;
  }

  .nav {
    gap: 12px;
  }

  .section,
  .hero-grid,
  .cta {
    padding: 18px;
  }
}
