


:root {
  --cc-bg: #ffffff;
  --cc-text: #2e1065;
  --cc-text-secondary: #5b21b6;
  --cc-border: rgba(124, 58, 237, 0.16);
  --cc-primary: #7c3aed;
  --cc-primary-hover: #6d28d9;
  --cc-secondary: #faf5ff;
  --cc-secondary-hover: #f3e8ff;
  --cc-secondary-border: #ddd6fe;
  --cc-toggle-bg: #ddd6fe;
  --cc-toggle-active: #7c3aed;
  --cc-overlay: rgba(28, 11, 61, 0.62);
  --cc-shadow: 0 -6px 28px rgba(46, 16, 101, 0.18);
  --cc-radius: 18px;
  --cc-radius-sm: 999px;
  --cc-transition: 0.3s ease;
}


.SectionDivider {
  position: relative;
  height: 0;
}
.SectionDivider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--bg-secondary);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 2px 2px 4px rgba(46, 16, 101, 0.08);
}
.SectionDivider--onWhite::after {
  background: var(--bg-primary);
}
.SectionDivider--onTint::after {
  background: var(--bg-tertiary);
}


.Card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 240px;
  color: #fff;
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  transform-origin: center;
}
.Card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(46, 16, 101, 0.4);
  z-index: 10;
}
.Card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(145deg, #4c1d95 0%, #7c3aed 55%, #a78bfa 100%);
}
.Card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 18% 24%,
      rgba(255, 255, 255, 0.34) 0,
      rgba(255, 255, 255, 0) 42%
    ),
    radial-gradient(
      circle at 82% 78%,
      rgba(255, 255, 255, 0.22) 0,
      rgba(255, 255, 255, 0) 38%
    ),
    repeating-linear-gradient(
      118deg,
      rgba(255, 255, 255, 0.09) 0 2px,
      rgba(255, 255, 255, 0) 2px 26px
    );
}
.Card--tone2 .Card-media {
  background: linear-gradient(145deg, #2e1065 0%, #6d28d9 60%, #8b5cf6 100%);
}
.Card--tone3 .Card-media {
  background: linear-gradient(145deg, #5b21b6 0%, #7c3aed 45%, #c4b5fd 100%);
}
.Card--tone4 .Card-media {
  background: linear-gradient(145deg, #3b0764 0%, #5b21b6 58%, #a78bfa 100%);
}
.Card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 11, 61, 0.78), transparent);
}
.Card-body {
  position: relative;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 240px;
  z-index: 2;
}
.Card-index {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1;
  opacity: 0.55;
  margin-bottom: 12px;
}
.Card-title {
  color: #fff;
  font-size: clamp(18px, 1.7vw, 22px);
  margin-bottom: 10px;
}
.Card-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fluid-font-sm);
  line-height: 1.6;
  margin: 0;
}


.PriceTag {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  background: var(--bg-tertiary);
}
.PriceTag-now {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.PriceTag-old {
  font-size: var(--fluid-font-sm);
  color: var(--text-muted);
  text-decoration: line-through;
}
.PriceTag-save {
  font-size: var(--fluid-font-xs);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-inverse);
  background: var(--accent);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
}


.Fact {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 150px;
  padding: 20px 22px;
  border-left: 3px solid var(--accent);
  background: var(--bg-primary);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}
.Fact-value {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
}
.Fact-label {
  display: block;
  margin-top: 6px;
  font-size: var(--fluid-font-xs);
  letter-spacing: 0.6px;
  color: var(--text-muted);
}


.Ingredient {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--bg-primary);
  border: 1px solid var(--frost-line);
  border-radius: var(--radius-card);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.Ingredient:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 34px rgba(46, 16, 101, 0.12);
}
.Ingredient-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: var(--accent);
}
.Ingredient-name {
  margin-bottom: 6px;
}
.Ingredient-role {
  margin: 0;
  font-size: var(--fluid-font-sm);
  color: var(--text-secondary);
}


.Spec {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--frost-line);
  font-size: var(--fluid-font-sm);
}
.Spec:last-child {
  border-bottom: none;
}
.Spec-key {
  color: var(--text-muted);
}
.Spec-value {
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}


.Step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  padding: 30px 26px;
  background: var(--bg-primary);
  border-radius: var(--radius-card);
  border-top: 4px solid var(--accent);
  box-shadow: 0 10px 30px rgba(46, 16, 101, 0.07);
}
.Step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.Step-title {
  margin-bottom: 8px;
}
.Step-text {
  margin: 0;
  font-size: var(--fluid-font-sm);
  color: var(--text-secondary);
}


.Promise {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  display: flex;
  gap: 16px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-card);
  border: 1px solid var(--frost-line);
}
.Promise-mark {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin-top: 4px;
  color: var(--accent);
}
.Promise-title {
  margin-bottom: 6px;
}
.Promise-text {
  margin: 0;
  font-size: var(--fluid-font-sm);
  color: var(--text-secondary);
}


.Form-group {
  margin-bottom: 20px;
}
.Form-label {
  display: block;
  margin-bottom: 8px;
  font-size: var(--fluid-font-sm);
  font-weight: 600;
  color: var(--text-secondary);
}
.Form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  font-size: var(--fluid-font-xs);
  line-height: 1.6;
  color: var(--text-secondary);
}
.Form-consent input {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--accent);
}
.Form-error {
  margin: 0 0 20px;
  padding: 14px 20px;
  border-radius: var(--radius-card);
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: var(--fluid-font-sm);
}
.Form-note {
  margin: 18px 0 0;
  font-size: var(--fluid-font-xs);
  color: var(--text-muted);
}
.Form-success {
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--bg-tertiary);
  border: 1px solid var(--frost-line);
}
.Form-success h3 {
  margin-bottom: 10px;
}
.Form-success p {
  margin-bottom: 0;
  font-size: var(--fluid-font-sm);
}


.Flow {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: flowstep;
}
.Flow-item {
  position: relative;
  padding-left: 46px;
  margin-bottom: 22px;
  font-size: var(--fluid-font-sm);
  line-height: 1.6;
}
.Flow-item:last-child {
  margin-bottom: 0;
}
.Flow-item::before {
  counter-increment: flowstep;
  content: counter(flowstep);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink-inverse);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.FaqCard {
  background: #fff;
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 4px 14px rgba(46, 16, 101, 0.07);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.FaqCard:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 34px rgba(46, 16, 101, 0.14);
}
.FaqCard-question {
  margin-bottom: 10px;
  font-size: clamp(16px, 1.4vw, 19px);
}
.FaqCard-answer {
  margin: 0;
  font-size: var(--fluid-font-sm);
  color: var(--text-secondary);
}


.Chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--frost-line);
  font-size: var(--fluid-font-xs);
  font-weight: 600;
  color: var(--text-secondary);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.Chip:hover {
  transform: scale(1.04);
  background: #fff;
}
.Chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
