:root {
  --color-pink: #E32D91;
  --color-pink-dark: #7A1F4A;
  --color-pink-mid: #c1246f;
  --color-pink-light: #F06FB4;
  --color-pink-pale: #fdeef6;
  --color-cream: #faf7f9;
  --color-gold: #f4b942;
  --color-gold-pale: #fff6e6;
  --color-charcoal: #2a2233;
  --color-gray: #6a6472;
  --color-gray-light: #ece7ef;
  --color-white: #ffffff;
  --shadow-card: 0 2px 8px rgba(42, 34, 51, 0.08);
  --shadow-card-hover: 0 8px 24px rgba(122, 31, 74, 0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
}

a { color: var(--color-pink); text-decoration: none; }
a:hover { color: var(--color-pink-dark); text-decoration: underline; }

p { margin-bottom: 1rem; }

code {
  font-family: 'Courier New', Courier, monospace;
  background: var(--color-gray-light);
  padding: 0.15em 0.45em;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--color-pink-dark);
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.container.narrow { max-width: 760px; }

/* ── Header ───────────────────────────────────────────── */
.header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-gray-light);
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-content { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--color-charcoal); }
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem;
}
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.02rem; }
.logo-text small { display: block; font-size: 0.68rem; font-weight: 500; color: var(--color-gray); letter-spacing: 0.02em; }
.nav-cta { display: flex; gap: 1.4rem; align-items: center; }
.nav-link { color: var(--color-gray); font-weight: 500; font-size: 0.94rem; font-family: 'Montserrat', sans-serif; }
.nav-link:hover { color: var(--color-pink); text-decoration: none; }

@media (max-width: 760px) {
  .logo-text small { display: none; }
  .nav-link { display: none; }
  .nav-cta .btn { padding: 0.55rem 1rem; font-size: 0.85rem; }
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 0.85rem 1.8rem; border-radius: 9px;
  text-decoration: none; font-weight: 700; font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; letter-spacing: 0.01em; transition: all 0.15s ease;
  text-align: center; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--color-pink); color: #fff; }
.btn-primary:hover { background: var(--color-pink-mid); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--color-pink-dark); border-color: var(--color-pink-light); }
.btn-ghost:hover { background: var(--color-pink-pale); color: var(--color-pink-dark); text-decoration: none; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.02rem; }
.btn-block { display: block; width: 100%; }

/* ── Sections ─────────────────────────────────────────── */
section { padding: 4.5rem 0; }
.section-tag {
  display: inline-block; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-pink); margin-bottom: 0.75rem;
}
.section-title { font-size: 2rem; margin-bottom: 0.75rem; }
.section-sub { color: var(--color-gray); font-size: 1.08rem; max-width: 640px; }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  background: radial-gradient(1200px 500px at 50% -10%, var(--color-pink-pale) 0%, var(--color-cream) 60%);
  padding: 4.5rem 0 4rem;
  text-align: center;
}
.hero h1 { font-size: 3rem; letter-spacing: -0.02em; margin-bottom: 1rem; }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 1.25rem; color: var(--color-gray); max-width: 660px; margin: 0 auto 2rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-meta { font-size: 0.9rem; color: var(--color-gray); font-family: 'Montserrat', sans-serif; }
.hero-meta strong { color: var(--color-pink-dark); }
@media (max-width: 640px) { .hero h1 { font-size: 2.1rem; } .hero-sub { font-size: 1.08rem; } }

/* ── Differentiator strip ─────────────────────────────── */
.strip { background: var(--color-charcoal); color: #fff; padding: 2.5rem 0; text-align: center; }
.strip h2 { color: #fff; font-size: 1.5rem; max-width: 820px; margin: 0 auto 0.5rem; }
.strip p { color: #d8cfe0; max-width: 720px; margin: 0 auto; }
.strip .grad { color: var(--color-pink-light); }

/* ── Cards / grids ────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--color-white); border: 1px solid var(--color-gray-light);
  border-radius: 14px; padding: 1.6rem; box-shadow: var(--shadow-card); transition: all 0.15s ease;
}
.card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.card .ico { font-size: 1.6rem; margin-bottom: 0.6rem; }
.card h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.card p { color: var(--color-gray); font-size: 0.95rem; margin-bottom: 0; }

/* ── Steps ────────────────────────────────────────────── */
.steps { counter-reset: step; display: grid; gap: 1.25rem; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; background: var(--color-white); border: 1px solid var(--color-gray-light); border-radius: 14px; padding: 1.4rem 1.6rem; }
.step-num {
  counter-increment: step; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-pink-pale); color: var(--color-pink-dark);
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.step-num::before { content: counter(step); }
.step h3 { font-size: 1.08rem; margin-bottom: 0.25rem; }
.step p { color: var(--color-gray); font-size: 0.95rem; margin-bottom: 0; }

/* ── Pricing ──────────────────────────────────────────── */
.price-card {
  max-width: 460px; margin: 0 auto; background: var(--color-white);
  border: 2px solid var(--color-pink); border-radius: 18px; padding: 2.4rem 2rem;
  box-shadow: var(--shadow-card-hover); text-align: center;
}
.price-badge { display: inline-block; background: var(--color-pink); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 999px; margin-bottom: 1rem; }
.price-amount { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 3rem; color: var(--color-charcoal); line-height: 1; }
.price-amount small { font-size: 1rem; color: var(--color-gray); font-weight: 600; }
.price-tag { color: var(--color-gray); margin-bottom: 1.4rem; }
.price-list { list-style: none; text-align: left; margin: 1.4rem 0; }
.price-list li { padding: 0.5rem 0 0.5rem 1.9rem; position: relative; font-size: 0.96rem; border-bottom: 1px solid var(--color-gray-light); }
.price-list li:last-child { border-bottom: none; }
.price-list li::before { content: "✓"; position: absolute; left: 0; top: 0.5rem; color: var(--color-pink); font-weight: 800; }
.price-foot { font-size: 0.82rem; color: var(--color-gray); margin-top: 1rem; margin-bottom: 0; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { background: var(--color-white); border: 1px solid var(--color-gray-light); border-radius: 12px; padding: 1.1rem 1.4rem; margin-bottom: 0.9rem; }
.faq summary { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--color-pink); font-weight: 800; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--color-gray); font-size: 0.95rem; margin: 0.8rem 0 0; }

/* ── Founders ─────────────────────────────────────────── */
.founder { display: flex; gap: 1.1rem; align-items: flex-start; }
.founder-mark { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; background: var(--color-pink-pale); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.founder h3 { font-size: 1.08rem; margin-bottom: 0.15rem; }
.founder .role { color: var(--color-gray); font-size: 0.94rem; margin-bottom: 0.4rem; }

/* ── Footer ───────────────────────────────────────────── */
.footer { background: var(--color-charcoal); color: #cfc6d8; padding: 3rem 0 2rem; }
.footer a { color: #f0d8e6; }
.footer a:hover { color: #fff; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.footer-links { display: flex; gap: 1.5rem; font-family: 'Montserrat', sans-serif; font-size: 0.92rem; }
.footer-fine { margin-top: 2rem; font-size: 0.82rem; color: #9a90a6; }
