:root {
  --bg: #f6f4f1;
  --bg-alt: #fffefb;
  --ink: #141313;
  --muted: #5d5a57;
  --accent: #7ad94b;
  --accent-dark: #5fb13a;
  --teal: #1f4ea3;
  --gold: #e06aa0;
  --shadow: 0 28px 60px rgba(20, 19, 19, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 15%, #f8e5ef 0%, transparent 45%),
    radial-gradient(circle at 85% 5%, #d9f5c9 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, #d7e6ff 0%, transparent 45%),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 10;
}

.nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 92px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg-alt);
  font-size: 0.9rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-button {
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid rgba(20, 19, 19, 0.2);
  background: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.cart-button span {
  background: var(--accent);
  color: #121212;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 6px;
}

main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 32px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  padding: 40px 0 60px;
}

.page-hero {
  padding: 40px 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--teal);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
}

.hero-subtitle {
  max-width: 520px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #121212;
  box-shadow: 0 14px 30px rgba(122, 217, 75, 0.3);
}

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

.button.ghost {
  border-color: var(--ink);
  background: transparent;
}

.hero-proof {
  margin-top: 32px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.metric {
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
}

.label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.logo-mark {
  width: 120px;
  height: auto;
  position: absolute;
  top: -10px;
  right: -10px;
  opacity: 0.3;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -40% 40% auto auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(31, 107, 99, 0.12);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  background: var(--teal);
  color: #f5f8ff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.price {
  font-size: 1.3rem;
  font-weight: 600;
}

.checklist {
  padding-left: 18px;
  color: var(--muted);
}

.trust {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 60px;
  box-shadow: var(--shadow);
}

.trust-grid,
.program-grid,
.product-grid,
.method-steps,
.testimonial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.section-cta {
  margin-top: 24px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.filter-button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(20, 19, 19, 0.2);
  background: #ffffff;
  cursor: pointer;
  font-weight: 500;
}

.filter-button.active {
  background: var(--accent);
  border-color: var(--accent);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(380px, 90vw);
  background: #ffffff;
  box-shadow: -20px 0 40px rgba(20, 19, 19, 0.15);
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-close {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.cart-items {
  display: grid;
  gap: 16px;
  overflow-y: auto;
  flex: 1;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(20, 19, 19, 0.08);
  padding-bottom: 12px;
}

.cart-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(20, 19, 19, 0.2);
  background: #ffffff;
  cursor: pointer;
}

.cart-price {
  font-weight: 600;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.section-header {
  margin-bottom: 24px;
}

.program-card,
.product-card,
.method-steps > div {
  background: #fffdf8;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(28, 27, 25, 0.08);
}

.tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: rgba(224, 106, 160, 0.18);
  border-radius: 999px;
  font-size: 0.8rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.product-card .pill {
  background: rgba(31, 78, 163, 0.12);
  color: var(--teal);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  display: inline-block;
}

.product-card .price {
  font-size: 1.1rem;
}

.product-card button {
  margin-top: auto;
}

.method {
  margin: 70px 0;
}

.testimonials blockquote {
  background: #fffdf8;
  padding: 22px;
  border-radius: 20px;
  border-left: 4px solid var(--gold);
  margin: 0;
}

.testimonials cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
}

.cta {
  margin: 70px 0;
}

.cta-card {
  background: linear-gradient(120deg, #1f4ea3, #7ad94b);
  color: #0f1115;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-card .button.primary {
  background: #f0b6d3;
  color: #2b2016;
}

.footer {
  background: var(--ink);
  color: #fdfaf4;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 40px 32px 60px;
  margin-top: 60px;
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 30px 0 60px;
}

.detail-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 20px 0 40px;
}

.detail-card {
  background: #fffdf8;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(28, 27, 25, 0.08);
}

.contact-card {
  background: #fffdf8;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(28, 27, 25, 0.08);
}

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

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

  .hero {
    padding-top: 20px;
  }
}
