/* NexAnvoy beauty landing — plain CSS, no build step */
:root {
  --purple: #6c2bd9;
  --purple-dark: #5521b5;
  --purple-light: #ede9fe;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg-soft: #f9fafb;
  --max: 72rem;
  --header-h: 4rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--purple); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: var(--header-h);
}

.logo {
  order: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.logo img { width: 2rem; height: 2rem; }

.header-actions {
  order: 2;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-check { order: 3; position: absolute; opacity: 0; pointer-events: none; }

.nav-open {
  order: 3;
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  border-radius: 0.5rem;
}

.site-nav {
  order: 4;
  display: none;
  width: 100%;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0;
  color: #374151;
}

.nav-check:checked ~ .site-nav { display: block; }

.nav-open:hover { background: var(--bg-soft); }

.langs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.langs .active { color: var(--purple); font-weight: 500; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: var(--purple);
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.btn:hover { background: var(--purple-dark); color: #fff; }

.btn-header { display: none; }

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 36rem;
}

.hero-lead {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 36rem;
}

.hero-image { display: none; justify-content: center; }
.hero-image img { max-width: 28rem; }

/* Niches */
.niches {
  background: var(--bg-soft);
  padding: 2.5rem 0;
}

.niches .section-head { margin-bottom: 1.5rem; }

.niche-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.niche-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
}

.niche-item svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--purple);
}

.niche-item span { font-weight: 500; }

/* Sections */
.section { padding: 3rem 0; }
.section--soft { background: var(--bg-soft); }

.section-head {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.steps {
  display: grid;
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 1rem;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 999px;
}

.step h3 { margin: 0 0 0.5rem; font-size: 1.25rem; }
.step p { margin: 0; color: var(--muted); }

/* Pricing */
.pricing-wrap { max-width: 32rem; margin: 0 auto; text-align: center; }

.price-card {
  margin-top: 2rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
  text-align: left;
}

.price-card h3 { margin: 0 0 0.5rem; font-size: 1.5rem; }

.price-amount {
  text-align: center;
  margin: 1.5rem 0;
}

.price-amount strong {
  font-size: 3rem;
  font-weight: 800;
}

.price-amount span { color: var(--muted); }

.price-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check {
  flex-shrink: 0;
  color: #10b981;
  font-weight: 700;
}

.price-card .btn { width: 100%; }

/* FAQ — native details, no JS */
.faq { max-width: 48rem; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.25rem;
  color: var(--muted);
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  background: var(--bg-soft);
  padding: 3rem 0;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 800;
}

.cta-band p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-copy {
  margin: 1.5rem 0 0;
  font-size: 0.75rem;
  text-align: center;
  color: #9ca3af;
}

/* Desktop */
@media (min-width: 640px) {
  .btn-header { display: inline-flex; }
  .niche-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer-row { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1024px) {
  .nav-open { display: none; }
  .header-actions { order: 3; margin-left: 0; }
  .site-nav {
    display: block;
    order: 2;
    flex: 1;
    width: auto;
    margin-left: 2rem;
  }
  .site-nav ul {
    flex-direction: row;
    gap: 2rem;
    padding: 0;
  }
  .site-nav a { padding: 0; }
  .nav-mobile-only { display: none; }
  .hero-grid { grid-template-columns: 7fr 5fr; gap: 2rem; }
  .hero-image { display: flex; }
  .section { padding: 5rem 0; }
}

@media (min-width: 1024px) {
  .header-row { flex-wrap: nowrap; }
}
