:root {
  --bg: #0b1116;
  --bg-soft: #101923;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f2f6fa;
  --muted: #a3b0bd;
  --accent: #7dd3a6;
  --accent-strong: #5ebd8b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1160px;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(125, 211, 166, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(124, 165, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #0a1015 0%, #0b1116 100%);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

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

section {
  padding: 96px 0;
}

.alt {
  background: rgba(16, 25, 35, 0.75);
  backdrop-filter: blur(18px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 48px);
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 21px;
}

.body-copy {
  max-width: 760px;
  font-size: 18px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn-row-centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #0a2012;
}

.btn-primary:hover {
  background: var(--accent-strong);
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 17, 22, 0.84);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.logo {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

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

.page-hero {
  padding-top: 88px;
  padding-bottom: 72px;
}

.page-hero .lead {
  margin-bottom: 0;
}

.hero {
  padding-top: 84px;
  padding-bottom: 88px;
}

.hero-shell {
  display: grid;
  gap: 34px;
}

.trust-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-chip {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.stats-grid,
.pain-grid,
.benefit-grid,
.services-grid,
.case-grid,
.process-grid,
.replace-grid {
  display: grid;
  gap: 20px;
}

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

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

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

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

.services-grid,
.case-grid,
.replace-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.card,
.stat-card,
.about-card,
.contact-card,
.cta-card,
.offer-layout {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
}

.card,
.stat-card,
.about-card,
.contact-card {
  padding: 30px;
}

.stat-value {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 33px;
  font-weight: 800;
}

.stat-label {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.feature-list,
.result-list,
.replace-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  list-style: none;
}

.feature-list li,
.result-list li,
.replace-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
}

.feature-list li::before,
.result-list li::before,
.replace-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.outcome {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.personal-grid,
.contact-grid,
.offer-grid {
  display: grid;
  gap: 24px;
}

.personal-grid {
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: center;
}

.portrait-wrap {
  padding: 16px;
  border: 1px solid rgba(125, 211, 166, 0.22);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(125, 211, 166, 0.14), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
}

.name-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(125, 211, 166, 0.1);
  color: var(--text);
  font-weight: 700;
}

.personal-copy p + p,
.about-card p + p,
.cta-card p + p {
  margin-top: 14px;
}

.offer-layout {
  padding: 34px;
}

.offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

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

.offer-box h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.price-line {
  margin-top: 22px;
  color: var(--text);
  font-weight: 700;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.case-pill {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.case-label {
  color: var(--text);
  font-weight: 700;
}

.loom-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  word-break: break-all;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.detail-section {
  padding-top: 40px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
}

.detail-stack {
  display: grid;
  gap: 20px;
}

.detail-panel {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
}

.detail-panel h2,
.detail-panel h3 {
  margin-bottom: 14px;
}

.detail-panel p + p {
  margin-top: 12px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(125, 211, 166, 0.14);
  color: var(--accent);
  font-weight: 800;
}

.cta-card {
  padding: 48px 34px;
  text-align: center;
}

.cta-copy {
  margin: 0 auto;
}

.cta-note {
  margin-top: 12px;
  color: var(--text);
  font-weight: 600;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.site-footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--border);
  background: rgba(8, 13, 18, 0.9);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 10px;
}

.footer-copy {
  max-width: 480px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

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

form {
  display: grid;
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(125, 211, 166, 0.7);
}

.form-success {
  display: none;
  padding: 18px 20px;
  border: 1px solid rgba(125, 211, 166, 0.35);
  border-radius: 16px;
  background: rgba(125, 211, 166, 0.08);
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 980px) {
  .nav-inner,
  .nav-links {
    flex-wrap: wrap;
  }

  .nav-inner {
    padding: 14px 0;
  }

  .footer-inner {
    flex-direction: column;
  }

  .stats-grid,
  .pain-grid,
  .benefit-grid,
  .services-grid,
  .case-grid,
  .process-grid,
  .replace-grid,
  .personal-grid,
  .contact-grid,
  .offer-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 80px 0;
  }

  .hero {
    padding-top: 64px;
  }

  .lead,
  .body-copy {
    font-size: 18px;
  }
}
