:root {
  --dark: #061318;
  --dark-soft: #0d2229;
  --green: #26f2a6;
  --blue: #38bdf8;
  --text: #eafbf5;
  --muted: #9bb7b0;
  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.13);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top right, rgba(38,242,166,.16), transparent 34%),
    linear-gradient(180deg, #061318, #081c22);
  color: var(--text);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1180px;
  margin: auto;
  padding: 0 20px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6,19,24,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo span {
  display: block;
  color: var(--green);
  font-size: 1.7rem;
  font-weight: 900;
}

.logo small {
  color: var(--muted);
  font-size: .75rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.nav-menu a:hover {
  color: var(--green);
}

.btn-nav,
.btn-primary,
.btn-outline,
.btn-white {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-weight: 900;
}

.btn-nav,
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #031014;
  padding: 13px 20px;
}

.btn-outline {
  border: 1px solid var(--border);
  padding: 13px 20px;
}

.btn-white {
  background: #fff;
  color: #061318;
  padding: 14px 22px;
}

.full {
  width: 100%;
  text-align: center;
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 46px;
  align-items: center;
}

.badge,
.section-title span,
.cta-box span {
  display: inline-block;
  color: var(--green);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .7px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  margin: 18px 0 22px;
}

.hero p {
  color: var(--muted);
  max-width: 720px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.trust-row div {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}

.trust-row strong {
  display: block;
  color: var(--green);
}

.trust-row span {
  color: var(--muted);
  font-size: .9rem;
}

.hero-card {
  background: var(--card);
  border: 1px solid rgba(38,242,166,.32);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 35px 90px rgba(0,0,0,.32);
}

.map-icon {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #031014;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 22px;
}

.hero-card h3 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-bottom: 28px;
}

.hero-card li {
  color: var(--muted);
  padding-left: 24px;
  position: relative;
}

.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.section.alt {
  background: rgba(255,255,255,.025);
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin: 12px 0 14px;
}

.section-title p {
  color: var(--muted);
}

.problem-grid,
.pillars-grid,
.process-grid,
.pricing-grid {
  display: grid;
  gap: 22px;
}

.problem-grid,
.pillars-grid,
.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: auto;
}

.info-card,
.pillar-card,
.step-card,
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
}

.info-card h3,
.pillar-card h3,
.step-card h3,
.price-card h3 {
  color: var(--green);
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.info-card p,
.pillar-card p,
.step-card p,
.plan-desc,
.price-card li {
  color: var(--muted);
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(38,242,166,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.step-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #031014;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(38,242,166,.45);
  background: linear-gradient(180deg, rgba(38,242,166,.12), rgba(255,255,255,.05));
  box-shadow: 0 28px 80px rgba(38,242,166,.12);
}

.popular {
  position: absolute;
  top: -15px;
  right: 24px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #031014;
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 900;
  font-size: .78rem;
}

.price {
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--green);
  font-size: 2rem;
  font-weight: 900;
}

.price span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 400;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.price-card li {
  padding-left: 24px;
  position: relative;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.comparison {
  padding: 75px 20px;
  border-top: 1px solid var(--border);
}

.table-wrap {
  overflow-x: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

th:first-child,
td:first-child {
  text-align: left;
}

th {
  color: var(--green);
}

td {
  color: var(--muted);
}

.cta-section {
  padding: 80px 0;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(38,242,166,.16), rgba(56,189,248,.12));
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 44px;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin: 12px 0;
}

.cta-box p {
  color: var(--muted);
}

.footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer h3 {
  color: var(--green);
  font-size: 1.7rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 18px 0;
}

.footer-links a:hover {
  color: var(--green);
}

@media (max-width: 950px) {
  .hero-grid,
  .problem-grid,
  .pillars-grid,
  .process-grid,
  .pricing-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    gap: 14px;
    padding: 18px 0;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }
}