:root {
  --primary: #e22e8a;
  --primary-dark: #b81f6f;
  --secondary: #f7d4e6;
  --accent: #7ac943;
  --accent-soft: #ecf9e2;
  --text: #33333d;
  --muted: #6a6a78;
  --bg: #fff9fc;
  --card: #ffffff;
  --line: #f0d9e4;
  --shadow: 0 14px 40px rgba(214, 58, 139, 0.12);
  --radius: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffafb 0%, #fff7fb 22%, #fff 100%);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 78px 0; }
.section-soft { background: linear-gradient(180deg, #fff8fb 0%, #fffdfd 100%); }
.grid { display: grid; gap: 24px; }
.two-col { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.hero { padding: 48px 0 64px; }
.sticky-bar {
  position: sticky; top: 0; z-index: 70;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff;
  font-size: 14px;
  letter-spacing: .02em;
  text-align: center;
  padding: 10px 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.top-note { font-weight: 600; }
.header {
  position: sticky; top: 38px; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,46,138,.12);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 82px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.menu { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.menu a { font-size: 14px; font-weight: 600; color: var(--muted); }
.menu a:hover { color: var(--primary); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 24px; border-radius: 999px; font-weight: 800; font-size: 15px;
  border: none; cursor: pointer; transition: .25s ease; text-align: center;
}
.btn-primary {
  color: #fff; background: linear-gradient(135deg, var(--primary), #ff65a6);
  box-shadow: 0 16px 32px rgba(226,46,138,.24);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(226,46,138,.30); }
.btn-outline {
  background: #fff; color: var(--primary); border: 1px solid rgba(226,46,138,.25);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px;
  background: var(--secondary); color: var(--primary-dark); border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
}
.hero-card {
  background: rgba(255,255,255,.75); border: 1px solid rgba(226,46,138,.15); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow);
}
.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15; margin: 18px 0 14px;
}
.hero p { color: var(--muted); font-size: 17px; margin: 0 0 18px; }
.rating-row, .mini-points, .assurance {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.badge, .mini-point {
  padding: 10px 14px; background: #fff; border-radius: 999px;
  border: 1px solid rgba(226,46,138,.15); color: var(--text);
  font-size: 14px; box-shadow: 0 8px 18px rgba(226,46,138,.06);
}
.hero-visual {
  position: relative; min-height: 520px; display: grid; place-items: center;
  background: radial-gradient(circle at top right, rgba(226,46,138,.12), transparent 30%),
              radial-gradient(circle at bottom left, rgba(122,201,67,.18), transparent 32%),
              linear-gradient(180deg, #fff, #fff7fb);
  border: 1px solid rgba(226,46,138,.14);
  border-radius: 34px; box-shadow: var(--shadow); overflow: hidden; padding: 32px;
}
.hero-visual::before, .hero-visual::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(12px); z-index: 0;
}
.hero-visual::before { width: 190px; height: 190px; background: rgba(226,46,138,.12); top: -20px; right: -20px; }
.hero-visual::after { width: 180px; height: 180px; background: rgba(122,201,67,.15); bottom: -25px; left: -20px; }
.hero-visual img { position: relative; z-index: 2; max-height: 400px; object-fit: contain; }
.price-chip {
  position: absolute; z-index: 3; background: #fff; border-radius: 18px; padding: 16px 18px;
  box-shadow: var(--shadow); border: 1px solid rgba(226,46,138,.14);
}
.price-chip.top { top: 32px; left: 24px; max-width: 240px; }
.price-chip.bottom { bottom: 24px; right: 24px; max-width: 230px; }
.price-chip strong { display: block; color: var(--primary-dark); font-size: 20px; }
.price-chip span { color: var(--muted); font-size: 14px; }
.section-title { text-align: center; max-width: 780px; margin: 0 auto 18px; }
.section-title h2 { font-size: clamp(1.8rem, 2.5vw, 2.6rem); margin: 0 0 10px; line-height: 1.18; }
.section-title p { margin: 0; color: var(--muted); font-size: 17px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-5 { grid-template-columns: repeat(5, 1fr); }
.card {
  background: var(--card); border: 1px solid rgba(226,46,138,.12);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
}
.card h3, .card h4 { margin-top: 10px; margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; }
.icon-box {
  width: 54px; height: 54px; border-radius: 16px; display: inline-grid; place-items: center;
  background: linear-gradient(135deg, #fff1f7, #fdfdfd); border: 1px solid rgba(226,46,138,.14);
}
.highlight-grid { grid-template-columns: repeat(5, 1fr); }
.highlight-card {
  background: linear-gradient(180deg, #fff, #fff8fb); text-align: center; padding: 24px 14px;
  border: 1px solid rgba(226,46,138,.12); border-radius: 24px; box-shadow: var(--shadow);
}
.highlight-card img { width: 58px; margin: 0 auto 12px; }
.highlight-card h4 { margin: 8px 0 6px; font-size: 18px; }
.highlight-card p { margin: 0; color: var(--muted); font-size: 14px; }
.flag-list {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px;
}
.flag-item {
  background: #fff; border: 1px solid rgba(226,46,138,.12); border-radius: 999px;
  padding: 10px 14px; font-size: 15px; box-shadow: 0 8px 18px rgba(226,46,138,.06);
}
.center-cta { text-align: center; margin-top: 30px; }
.info-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 28px;
}
.strip-box {
  background: #fff; border: 1px solid rgba(226,46,138,.12); border-radius: 20px; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow);
}
.strip-box strong { display: block; }
.two-col-card { grid-template-columns: 1fr 1fr; align-items: stretch; }
.image-panel, .text-panel {
  border-radius: 28px; background: #fff; border: 1px solid rgba(226,46,138,.12); box-shadow: var(--shadow);
}
.image-panel { padding: 24px; display: grid; place-items: center; min-height: 100%; }
.image-panel img { max-height: 360px; }
.text-panel { padding: 28px 30px; }
.text-panel h3 { margin-top: 0; font-size: 28px; line-height: 1.2; }
.text-panel p { color: var(--muted); }
.ingredient-grid { grid-template-columns: repeat(3, 1fr); }
.ingredient-item {
  background: linear-gradient(180deg, #fff, #fff9fc);
  border: 1px solid rgba(226,46,138,.12); border-radius: 22px; padding: 22px; box-shadow: var(--shadow);
}
.ingredient-item h4 { margin: 0 0 8px; font-size: 20px; }
.ingredient-item p { margin: 0; color: var(--muted); font-size: 15px; }
.steps { grid-template-columns: repeat(3, 1fr); }
.step-card { position: relative; padding-top: 62px; }
.step-no {
  position: absolute; top: 18px; left: 18px; width: 42px; height: 42px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #ff80b6); color: #fff; display: grid; place-items: center; font-weight: 800;
}
.pros-cons { grid-template-columns: 1fr 1fr; }
.list-box ul { padding-left: 18px; margin: 0; color: var(--muted); }
.list-box li { margin-bottom: 10px; }
.testimonial-grid { grid-template-columns: repeat(2, 1fr); }
.quote-card {
  background: #fff; border: 1px solid rgba(226,46,138,.12); border-radius: 24px; padding: 26px;
  box-shadow: var(--shadow);
}
.quote-card p { color: var(--text); font-size: 16px; margin: 0 0 16px; }
.quote-card strong { display: block; }
.quote-card span { color: var(--muted); font-size: 14px; }
.data-box {
  background: linear-gradient(135deg, #fff6fb, #f5fff0); border: 1px solid rgba(122,201,67,.26);
  border-radius: 30px; padding: 28px; display: grid; grid-template-columns: 160px 1fr; gap: 20px;
  align-items: center; box-shadow: var(--shadow);
}
.avatar {
  width: 120px; height: 120px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #b4e37d); color: #fff; font-size: 42px; font-weight: 800;
  margin: 0 auto;
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 22px; }
.stat-card {
  background: #fff; border: 1px solid rgba(226,46,138,.12); border-radius: 22px; padding: 18px; text-align: center; box-shadow: var(--shadow);
}
.stat-card strong { display: block; color: var(--primary-dark); font-size: 28px; line-height: 1.1; margin-bottom: 6px; }
.price-table { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price-card {
  position: relative; background: #fff; border: 1px solid rgba(226,46,138,.12); border-radius: 30px; padding: 26px;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.price-card.best { border: 2px solid var(--primary); transform: translateY(-6px); }
.ribbon {
  position: absolute; top: 16px; right: 16px; background: linear-gradient(135deg, var(--accent), #9de05c);
  color: #1d3b0f; font-size: 12px; font-weight: 800; padding: 7px 12px; border-radius: 999px;
}
.price-card img { height: 188px; object-fit: contain; margin: 0 auto 10px; }
.price-card h3 { text-align: center; margin: 8px 0 10px; font-size: 24px; }
.price-list { list-style: none; padding: 0; margin: 18px 0; color: var(--muted); }
.price-list li { padding: 7px 0; border-bottom: 1px dashed rgba(226,46,138,.14); }
.old-price { color: #a08ca0; text-decoration: line-through; font-weight: 700; }
.new-price { color: var(--primary-dark); font-size: 34px; font-weight: 800; }
.package-sub { color: var(--muted); font-size: 14px; text-align: center; }
.faq-grid { max-width: 920px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid rgba(226,46,138,.12); border-radius: 20px; padding: 20px 22px; box-shadow: var(--shadow);
}
.faq-item h3 { margin: 0 0 8px; font-size: 19px; }
.faq-item p { margin: 0; color: var(--muted); }
.footer {
  background: linear-gradient(180deg, #fff6fb 0%, #ffe8f4 100%); border-top: 1px solid rgba(226,46,138,.12);
  padding: 48px 0 32px; margin-top: 26px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; gap: 24px; }
.footer p, .footer li { color: var(--muted); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer .brand img { height: 44px; }
.footer-bottom {
  margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(226,46,138,.14); color: var(--muted); font-size: 14px;
}
.disclaimer-box {
  background: #fff; border: 1px solid rgba(226,46,138,.12); border-radius: 22px; padding: 20px 22px; color: var(--muted);
  box-shadow: var(--shadow); font-size: 14px;
}
.floating-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 95; display: none;
  background: linear-gradient(135deg, var(--primary), #ff65a6); color: #fff; padding: 14px 16px; border-radius: 18px;
  box-shadow: 0 18px 36px rgba(226,46,138,.28); font-weight: 800; text-align: center;
}
.mobile-menu-btn { display: none; border: 1px solid rgba(226,46,138,.2); background: #fff; border-radius: 14px; padding: 10px 12px; }
.hidden-mobile { display: inline-flex; }
@media (max-width: 1060px) {
  .two-col, .two-col-card, .data-box, .price-table, .cards-4, .highlight-grid, .ingredient-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .cards-3, .steps, .pros-cons, .testimonial-grid, .stats-row, .info-strip { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 460px; }
}
@media (max-width: 760px) {
  .header { top: 42px; }
  .nav { min-height: 74px; }
  .menu {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 10px);
    background: #fff; border: 1px solid rgba(226,46,138,.16); border-radius: 18px; padding: 16px;
    box-shadow: var(--shadow); display: none; flex-direction: column; align-items: flex-start;
  }
  .menu.open { display: flex; }
  .mobile-menu-btn { display: inline-flex; }
  .hidden-mobile { display: none; }
  .two-col, .cards-3, .cards-4, .cards-5, .highlight-grid, .ingredient-grid, .steps, .pros-cons,
  .testimonial-grid, .stats-row, .price-table, .two-col-card, .data-box, .footer-grid, .info-strip { grid-template-columns: 1fr; }
  .hero { padding: 32px 0 52px; }
  .hero-visual { min-height: 380px; padding: 24px; }
  .hero-visual img { max-height: 280px; }
  .price-chip { position: static; margin-top: 10px; max-width: 100%; }
  .floating-cta { display: block; }
  .section { padding: 62px 0; }
  .strip-box { align-items: flex-start; }
}
