:root {
  --bg: #f3f4ef;
  --bg-alt: #ece7dd;
  --ink: #16171c;
  --muted: #5b5e67;
  --line: #d6d0c4;
  --accent: #d74f37;
  --accent-dark: #a93b2a;
  --card: #fffdf9;
  --teal: #1f6f78;
  --shadow: 0 12px 40px rgba(22, 23, 28, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 10% 0%, #fff8ea 0%, var(--bg) 42%, #ebe8e0 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.1rem, 4.8vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
}

h3 {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
}

p,
li,
summary {
  line-height: 1.6;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(860px, 92vw);
}

.section {
  padding: 5.5rem 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, #f3f4ef 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 1.2rem;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

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

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

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: color-mix(in srgb, #fff 80%, transparent);
}

.btn-ghost:hover {
  background: #fff;
}

.btn-small {
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  background: var(--teal);
  color: #fff;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--teal);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-copy .lead {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.4rem 0;
}

.hero-points {
  padding-left: 1.2rem;
  margin: 0;
}

.hero-card {
  background: linear-gradient(145deg, #fff9ed 0%, #fff 52%, #f6f8f1 100%);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-bottom: 0.4rem;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.chip-grid span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.44rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.problem {
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-alt) 80%, transparent), transparent);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.problem-grid article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.15rem;
}

.section-head {
  margin-bottom: 1.8rem;
}

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

.level-card,
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.25rem;
}

.level-card .tag {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--teal);
}

.level-card ul,
.price-card ul {
  padding-left: 1.1rem;
}

.deliverable {
  font-weight: 700;
  color: var(--accent-dark);
}

.featured {
  border-width: 2px;
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  transform: translateY(-6px);
}

.price {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0.2rem 0;
}

.sub {
  color: var(--muted);
}

.bundle {
  margin-top: 1.2rem;
  background: #fff;
  border: 1px dashed color-mix(in srgb, var(--teal) 55%, var(--line));
  border-radius: 18px;
  padding: 1rem 1.2rem;
}

.guarantee-list {
  display: grid;
  gap: 0.9rem;
}

.guarantee-list article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.2rem;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin-bottom: 0.1rem;
  color: var(--muted);
}

.cta-wrap {
  background: linear-gradient(130deg, #f9efe2 0%, #fff 45%, #edf6f6 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

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

  .featured {
    transform: none;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .section {
    padding: 4.4rem 0;
  }

  .topbar-inner {
    min-height: 62px;
  }

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