:root {
      --bg: #0f1115;
      --panel: #171a21;
      --panel-2: #1f2430;
      --text: #f5f7fa;
      --muted: #b7bec9;
      --line: #2d3442;
      --accent: #d7b46a;
      --accent-dark: #b99245;
      --white: #ffffff;
      --max: 1180px;
      --radius: 18px;
      --shadow: 0 18px 40px rgba(0,0,0,.25);
    }* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #0e1014 0%, #12161d 100%);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(12,14,18,.82);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

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

.brand {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .4px;
}

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

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

.nav-links a {
  color: var(--muted);
  font-weight: 700;
  font-size: .96rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 800;
  transition: .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

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

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

.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,.12);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
}

.hero {
  padding: 78px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
}

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

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 10ch;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

.point {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 14px;
  border-radius: 14px;
  color: var(--muted);
  font-size: .95rem;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-card-content {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.hero-card-title {
  font-weight: 800;
  font-size: 1.1rem;
}

.section {
  padding: 34px 0 70px;
}

.section-head {
  max-width: 72ch;
  margin-bottom: 26px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card h3 { font-size: 1.18rem; }
.card p { color: var(--muted); margin: 0 0 14px; }
.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.highlight {
  border-color: rgba(215,180,106,.45);
  background: linear-gradient(180deg, rgba(215,180,106,.10), rgba(255,255,255,.02));
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.compare {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.badge {
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  white-space: nowrap;
}

.badge.before {
  background: rgba(210,74,74,.18);
  color: #ffb5b5;
}

.badge.after {
  background: rgba(72,177,109,.18);
  color: #b9ffd0;
}

.compare img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.compare p {
  margin: 0;
  padding: 14px 18px 18px;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: var(--accent);
  color: #111;
  margin-bottom: 14px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.about-box, .contact-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.about-box p, .contact-box p, .contact-box li { color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.contact-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.cta-strip {
  margin-top: 26px;
  background: linear-gradient(135deg, rgba(215,180,106,.18), rgba(255,255,255,.04));
  border: 1px solid rgba(215,180,106,.35);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 28px 0 42px;
  color: var(--muted);
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.small { font-size: .92rem; }

@media (max-width: 980px) {
  .hero-grid,
  .cards,
  .before-after-grid,
  .process,
  .about,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .nav-links {
    gap: 12px;
  }

  h1 { max-width: none; }

  .cta-strip {
    align-items: flex-start;
  }
}