:root {
  --bg-deep: #08130f;
  --bg-panel: #0c2016;
  --bg-panel-2: #0f281c;
  --bg-panel-3: #133524;
  --green-bright: #14a142;
  --green-soft: #1d6f3f;
  --gold: #d4ab54;
  --gold-soft: #e7c879;
  --text-main: #f5f0e7;
  --text-soft: #ddd0b1;
  --text-muted: #b4ad98;
  --line: rgba(212, 171, 84, 0.24);
  --line-soft: rgba(255, 255, 255, 0.08);
  --panel-shadow: 0 28px 70px rgba(0, 0, 0, 0.33);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1240px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Manrope', sans-serif;
  color: var(--text-main);
  background: var(--bg-deep);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #06100c 0%, #091710 35%, #08130f 100%);
  z-index: -2;
}

img {
  display: block;
  max-width: 100%;
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 9% 10%, rgba(20, 161, 66, 0.26), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(231, 200, 121, 0.12), transparent 24%),
    radial-gradient(circle at 78% 76%, rgba(20, 161, 66, 0.14), transparent 18%);
}

.topbar {
  position: relative;
  z-index: 5;
  padding: 24px 0 18px;
  border-bottom: 1px solid rgba(212, 171, 84, 0.12);
  background: linear-gradient(180deg, rgba(7, 17, 13, 0.92), rgba(8, 19, 15, 0.68));
}

.topbar-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.brand-lockup {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  line-height: 0.82;
  letter-spacing: -0.08em;
  color: #fff;
}

.brand-top {
  font-size: clamp(3rem, 4vw, 4.6rem);
  font-weight: 900;
}

.brand-bottom {
  margin-top: -0.2rem;
  padding-left: 0.22rem;
  font-size: clamp(1.8rem, 2vw, 2.55rem);
  font-weight: 800;
}

.brand-copy {
  max-width: 18rem;
  margin: 0;
  padding-top: 0.35rem;
  padding-left: 22px;
  border-left: 1px solid rgba(212, 171, 84, 0.18);
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.45;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 20px;
  background: rgba(13, 34, 24, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--panel-shadow);
}

.phone-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 171, 84, 0.34);
  color: var(--gold-soft);
  font-size: 1.15rem;
}

.phone-chip strong,
.phone-chip small {
  display: block;
}

.phone-chip strong {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.phone-chip small {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-quick,
.button-primary,
.button-cta {
  background: linear-gradient(180deg, #1bae45 0%, #17883d 100%);
  color: #fff;
  box-shadow: 0 20px 40px rgba(20, 161, 66, 0.22);
}

.button-secondary {
  color: var(--text-main);
  border-color: rgba(212, 171, 84, 0.34);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.button-quick {
  min-width: 220px;
}

.button-primary {
  width: min(100%, 560px);
  margin-top: 18px;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-section,
.section {
  position: relative;
  border-top: 1px solid rgba(212, 171, 84, 0.08);
}

.hero-section {
  padding: 28px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
}

.hero-copy {
  padding: 28px 0 34px;
}

.hero-title,
.section-title,
.panel-title {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.hero-title {
  max-width: 48rem;
  font-size: clamp(3.05rem, 4.6vw, 5.8rem);
  line-height: 1.02;
}

.hero-title span,
.hero-title strong {
  display: block;
}

.hero-title span {
  margin-top: 10px;
  color: #ffffff;
}

.hero-title strong {
  margin-top: 8px;
  color: var(--green-bright);
}

.hero-text,
.hero-note,
.about-lead p,
.feature-box p,
.ingredient-card p,
.composition-note,
.usage-step p,
.storage-list,
.reason-list,
.review-card p,
.quality-copy,
.delivery-step p,
.delivery-trust span,
.final-cta-copy p,
.site-disclaimer {
  color: var(--text-soft);
  line-height: 1.65;
}

.hero-text {
  max-width: 41rem;
  margin: 22px 0 0;
  font-size: 1.22rem;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li,
.feature-box,
.about-lead,
.usage-step,
.delivery-step,
.review-card,
.panel,
.problem-center {
  background: linear-gradient(180deg, rgba(16, 39, 28, 0.92), rgba(12, 28, 20, 0.92));
  border: 1px solid rgba(212, 171, 84, 0.16);
  box-shadow: var(--panel-shadow);
}

.hero-benefits li {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 82px;
  padding: 14px 12px;
  border-radius: 18px;
}

.mini-icon,
.feature-icon,
.usage-number,
.ingredient-mark,
.delivery-step span {
  display: inline-grid;
  place-items: center;
  flex: none;
}

.mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 171, 84, 0.32);
  color: var(--gold-soft);
  font-size: 0.95rem;
}

.hero-benefits span:last-child {
  color: #efe7d8;
  font-size: 0.94rem;
  line-height: 1.4;
}

.hero-note {
  position: relative;
  margin: 14px 0 0;
  padding-left: 24px;
  font-size: 0.98rem;
}

.hero-note::before {
  content: '🔒';
  position: absolute;
  top: 0;
  left: 0;
}

.hero-scene {
  position: relative;
  min-height: 760px;
}

.hero-scene-glow {
  position: absolute;
  inset: 8% 9% 10% 7%;
  border-radius: 36px;
  background:
    radial-gradient(circle at 68% 15%, rgba(20, 161, 66, 0.28), transparent 24%),
    radial-gradient(circle at 60% 42%, rgba(231, 200, 121, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(10, 34, 23, 0.8), rgba(5, 13, 10, 0.96));
  border: 1px solid rgba(212, 171, 84, 0.14);
}

.hero-product-frame {
  position: absolute;
  inset: 7% 4% 4% 6%;
  margin: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 28px;
}

.hero-product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  transform: scale(1.62);
  filter: saturate(0.95) contrast(1.04);
}

.hero-badge {
  position: absolute;
  top: 94px;
  right: 4px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  padding: 26px;
  border-radius: 50%;
  border: 2px solid rgba(212, 171, 84, 0.7);
  background: radial-gradient(circle at 40% 30%, rgba(41, 62, 45, 0.94), rgba(8, 19, 15, 0.95));
  color: var(--gold-soft);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.03em;
}

.hero-ingredient {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.86;
}

.hero-ingredient-honey {
  right: 24px;
  bottom: 112px;
  width: 110px;
  height: 126px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 216, 127, 0.7), transparent 22%),
    linear-gradient(180deg, #8f4f10 0%, #d88c2f 44%, #6a3410 100%);
  clip-path: polygon(14% 0%, 86% 0%, 100% 18%, 100% 82%, 86% 100%, 14% 100%, 0% 82%, 0% 18%);
  box-shadow: 0 0 40px rgba(214, 146, 52, 0.25);
}

.hero-ingredient-root {
  right: 110px;
  bottom: 56px;
  width: 188px;
  height: 84px;
}

.hero-ingredient-root::before,
.hero-ingredient-root::after {
  content: '';
  position: absolute;
  inset: auto;
  width: 94px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d5b37d 0%, #7d5420 100%);
  box-shadow: inset 0 0 0 1px rgba(98, 61, 18, 0.32);
}

.hero-ingredient-root::before {
  bottom: 16px;
  right: 24px;
  transform: rotate(-17deg);
}

.hero-ingredient-root::after {
  bottom: 0;
  right: 0;
  transform: rotate(12deg);
}

.hero-ingredient-leaf {
  right: 28px;
  bottom: 154px;
  width: 92px;
  height: 92px;
}

.hero-ingredient-leaf::before,
.hero-ingredient-leaf::after {
  content: '';
  position: absolute;
  width: 34px;
  height: 58px;
  border-radius: 34px 34px 6px 34px;
  background: linear-gradient(180deg, #3d9b49 0%, #174721 100%);
}

.hero-ingredient-leaf::before {
  top: 10px;
  left: 12px;
  transform: rotate(28deg);
}

.hero-ingredient-leaf::after {
  top: 18px;
  right: 12px;
  transform: rotate(-18deg);
}

.section {
  padding: 34px 0;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.08;
}

.section-title-center {
  text-align: center;
}

.section-title-dark {
  color: #231c11;
}

.problem-board {
  display: grid;
  grid-template-columns: 1fr 290px 1fr;
  gap: 20px;
  margin-top: 24px;
  align-items: stretch;
}

.problem-column,
.problem-center {
  border-radius: 26px;
}

.problem-column {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: 26px 24px 0;
  overflow: hidden;
}

.problem-column h3 {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-main);
  line-height: 1.62;
}

.check-list li + li {
  margin-top: 12px;
}

.check-list li::before {
  content: '◌';
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-soft);
  font-size: 1.05rem;
}

.problem-portrait {
  position: relative;
  margin: auto -24px 0;
  height: 282px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 171, 84, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(20, 34, 27, 0.08), rgba(8, 19, 15, 0.96));
}

.problem-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 28, 20, 0.06) 32%, rgba(12, 28, 20, 0.82) 100%);
}

.problem-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) brightness(0.96);
}

.portrait-male img {
  transform: scale(1.02);
  object-position: center 18%;
}

.portrait-female img {
  transform: scale(1.04);
  object-position: center 16%;
}

.problem-center {
  align-self: center;
  padding: 24px 20px;
  text-align: center;
}

.problem-center-visual {
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  margin: 0 auto 18px;
  border-radius: 34px;
  border: 2px solid rgba(212, 171, 84, 0.66);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 68%, rgba(222, 162, 83, 0.34), transparent 34%),
    linear-gradient(180deg, rgba(15, 45, 29, 0.96), rgba(8, 19, 15, 0.96));
}

.problem-center-pack {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  width: 120px;
  height: 170px;
  padding: 20px 14px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, #2bae54 0%, #16863c 18%, #166f36 82%, #0f4f26 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 24px 40px rgba(0, 0, 0, 0.3);
}

.problem-center-pack::before,
.problem-center-pack::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.problem-center-pack::before {
  top: 8px;
}

.problem-center-pack::after {
  bottom: 8px;
}

.problem-pack-copy,
.problem-pack-dose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-pack-brand {
  margin: 10px 0;
  color: #fff4dd;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.94;
  text-transform: uppercase;
}

.problem-center p {
  margin: 0;
  color: var(--text-main);
  line-height: 1.45;
  font-size: 1.08rem;
}

.problem-center strong {
  color: var(--gold-soft);
  text-transform: uppercase;
}

.section-about {
  padding-top: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.about-lead,
.feature-box {
  min-height: 100%;
  border-radius: 22px;
  padding: 18px;
}

.about-lead-image {
  position: relative;
  margin: 0 0 16px;
  height: 188px;
  overflow: hidden;
  border-radius: 18px;
}

.about-lead-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.58);
}

.about-lead-image-format {
  background:
    radial-gradient(circle at 14% 28%, rgba(212, 171, 84, 0.18), transparent 28%),
    rgba(7, 17, 13, 0.72);
}

.about-lead-image-format img {
  object-position: 32% 71%;
  transform: scale(1.24);
  filter: saturate(0.94) contrast(1.02);
}

.about-lead-image-format::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 12, 0.04), rgba(6, 16, 12, 0.46));
}

.format-notes {
  position: absolute;
  inset: auto 14px 14px 14px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.format-note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 17, 13, 0.72);
  color: #fff7ea;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.about-lead p,
.feature-box p {
  margin: 0;
  font-size: 0.98rem;
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 50%;
  border: 1px solid rgba(212, 171, 84, 0.35);
  color: var(--gold-soft);
  font-size: 1.2rem;
}

.feature-box h3 {
  margin: 0 0 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.25;
}

.composition-section {
  background: linear-gradient(180deg, #f2ece0 0%, #ecdfcb 100%);
}

.composition-shell {
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
}

.ingredient-column {
  display: grid;
  gap: 16px;
}

.ingredient-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(94, 69, 32, 0.16);
  box-shadow: 0 16px 40px rgba(71, 49, 18, 0.08);
}

.ingredient-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f0d88d 0%, #d2ab53 100%);
  color: #3c2a0f;
  font-size: 1.4rem;
  box-shadow: inset 0 0 0 1px rgba(60, 42, 15, 0.08);
}

.ingredient-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ingredient-mark-honey {
  background: linear-gradient(180deg, #f7dea2 0%, #d3a84f 100%);
}

.ingredient-mark-ginseng {
  background: linear-gradient(180deg, #d8f0be 0%, #8ab75d 100%);
}

.ingredient-mark-galangal {
  background: linear-gradient(180deg, #f0d7b2 0%, #ba8b4c 100%);
}

.ingredient-mark-fructose {
  background: linear-gradient(180deg, #f7ebbe 0%, #dcbc62 100%);
}

.ingredient-mark-ginger {
  background: linear-gradient(180deg, #f0d3a3 0%, #c98c4b 100%);
}

.ingredient-card h3 {
  margin: 2px 0 8px;
  color: #2e2415;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.ingredient-card p {
  margin: 0;
  color: #6c5a41;
  font-size: 0.96rem;
}

.composition-core {
  position: relative;
  min-height: 472px;
  display: grid;
  place-items: center;
}

.composition-product {
  position: relative;
  z-index: 1;
  width: 266px;
  height: 398px;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 88%, rgba(230, 170, 88, 0.32), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 238, 224, 0.9));
  box-shadow: 0 26px 50px rgba(80, 55, 24, 0.14);
}

.composition-aura {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(232, 183, 88, 0.54), transparent 42%),
    radial-gradient(circle at center, rgba(44, 147, 68, 0.18), transparent 66%);
  filter: blur(4px);
}

.composition-sachet {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  width: 156px;
  height: 330px;
  padding: 26px 16px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, #34ba5c 0%, #17863f 18%, #166e37 82%, #0e5026 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 32px 46px rgba(28, 98, 48, 0.22);
}

.composition-sachet::before,
.composition-sachet::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  height: 14px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.1));
}

.composition-sachet::before {
  top: 10px;
}

.composition-sachet::after {
  bottom: 10px;
}

.composition-sachet-copy,
.composition-sachet-dose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fef8eb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.composition-sachet-brand {
  margin: 16px 0;
  color: #fff6e1;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.88;
  text-align: center;
  text-transform: uppercase;
}

.composition-note {
  max-width: 960px;
  margin: 24px auto 0;
  padding: 16px 22px;
  border-radius: 18px;
  border: 1px solid rgba(94, 69, 32, 0.18);
  background: rgba(255, 255, 255, 0.76);
  color: #56472f;
  text-align: center;
}

.usage-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.usage-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 22px 20px;
  border-radius: 24px;
}

.usage-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 100%);
  color: #2f210d;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.usage-step h3 {
  margin: 2px 0 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.usage-step p {
  margin: 0;
  font-size: 0.97rem;
}

.split-panels {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 18px;
}

.split-panels-bottom {
  grid-template-columns: 1.1fr 0.9fr;
}

.panel {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 24px;
}

.panel-title {
  font-size: 1.9rem;
  line-height: 1.06;
}

.panel-title-small {
  font-size: 1.55rem;
}

.storage-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.storage-list,
.reason-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.storage-list li,
.reason-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-main);
  line-height: 1.55;
}

.storage-list li + li,
.reason-list li + li {
  margin-top: 14px;
}

.storage-list li::before,
.reason-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-soft);
}

.storage-list li::before {
  content: '▸';
}

.reason-list li::before {
  content: '✓';
}

.storage-list strong {
  color: var(--gold-soft);
}

.storage-visual,
.final-cta-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  background: rgba(6, 16, 12, 0.9);
}

.storage-visual {
  min-height: 310px;
}

.storage-visual img,
.final-cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storage-visual img {
  object-position: center 56%;
  transform: scale(1.52);
}

.leaf-decor {
  position: absolute;
  right: 24px;
  bottom: 16px;
  width: 150px;
  height: 160px;
  opacity: 0.76;
}

.leaf-decor span {
  position: absolute;
  width: 48px;
  height: 90px;
  border-radius: 999px 999px 16px 999px;
  background: linear-gradient(180deg, #2b8d41 0%, #15431f 100%);
  box-shadow: inset 0 0 0 1px rgba(199, 233, 172, 0.12);
}

.leaf-decor span:nth-child(1) {
  top: 8px;
  left: 54px;
  transform: rotate(14deg);
}

.leaf-decor span:nth-child(2) {
  bottom: 22px;
  left: 14px;
  transform: rotate(-28deg);
}

.leaf-decor span:nth-child(3) {
  bottom: 0;
  right: 12px;
  transform: rotate(32deg);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.review-card {
  margin: 0;
  padding: 18px 16px 16px;
  border-radius: 18px;
}

.review-card p {
  position: relative;
  margin: 0;
  padding-top: 16px;
  font-size: 0.97rem;
}

.review-card p::before {
  content: '❝';
  position: absolute;
  top: -6px;
  left: 0;
  color: var(--gold-soft);
  font-size: 1.6rem;
}

.review-card cite {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-style: normal;
  font-weight: 700;
}

.quality-marks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.quality-mark {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(212, 171, 84, 0.42);
  color: #f0ede7;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.quality-mark-text {
  font-size: 2.05rem;
  letter-spacing: -0.05em;
}

.quality-copy {
  margin: 20px 0 0;
  text-align: center;
  font-size: 1rem;
}

.order-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.5fr;
  gap: 18px;
}

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.delivery-step {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 171, 84, 0.14);
}

.delivery-step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(212, 171, 84, 0.18);
  color: var(--gold-soft);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
}

.delivery-step p {
  margin: 12px 0 0;
  font-size: 0.95rem;
}

.delivery-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.delivery-trust div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(212, 171, 84, 0.16);
  background: rgba(7, 17, 13, 0.56);
}

.delivery-trust strong,
.delivery-trust span {
  display: block;
}

.delivery-trust strong {
  color: var(--gold-soft);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.delivery-trust span {
  margin-top: 6px;
}

.panel-final-cta {
  display: flex;
  flex-direction: column;
}

.final-cta-copy p {
  margin: 12px 0 18px;
  font-size: 1.02rem;
}

.promo-chip {
  position: absolute;
  top: 24px;
  right: 24px;
  max-width: 132px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 171, 84, 0.32);
  background: radial-gradient(circle at 30% 30%, rgba(214, 184, 94, 0.28), rgba(33, 45, 27, 0.92));
  color: var(--gold-soft);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  text-align: center;
}

.final-cta-visual {
  height: 270px;
  margin-top: auto;
}

.final-cta-visual img {
  object-position: center 58%;
  transform: scale(1.3);
}

.panel-wildberries {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #1d1323 0%, #2b1635 100%);
}

.wildberries-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #8f2bd9 0%, #d43796 100%);
  color: #fff;
  box-shadow: 0 22px 40px rgba(198, 58, 146, 0.28);
}

.wildberries-button span,
.wildberries-button strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wildberries-button span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  text-transform: uppercase;
}

.wildberries-button strong {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1rem;
}

.site-disclaimer {
  max-width: 960px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 0.95rem;
}

.official-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.official-kicker {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.official-item {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(212, 171, 84, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.official-item span,
.official-item strong {
  display: block;
}

.official-item span {
  color: var(--text-muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.official-item strong {
  margin-top: 7px;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.45;
}

.official-item-inline strong {
  font-size: 1.08rem;
}

.panel-official .button-secondary {
  margin-top: 18px;
  width: 100%;
}

.instagram-copy {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.social-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.social-link-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(212, 171, 84, 0.16);
  background:
    radial-gradient(circle at top left, rgba(212, 171, 84, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.03);
}

.social-link-card:hover,
.social-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 171, 84, 0.3);
}

.social-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(212, 171, 84, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-soft);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.social-copy {
  display: grid;
  gap: 4px;
}

.social-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-copy strong {
  color: var(--text-main);
  font-size: 1.08rem;
  line-height: 1.35;
}

.social-copy small {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-footer {
  position: relative;
  padding: 0 0 34px;
  border-top: 1px solid rgba(212, 171, 84, 0.12);
  background:
    radial-gradient(circle at top left, rgba(212, 171, 84, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(8, 19, 15, 0.96), rgba(5, 12, 10, 1));
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.86fr 0.74fr 1.4fr;
  gap: 18px;
  padding-top: 26px;
}

.footer-brand-panel,
.footer-social-panel,
.footer-official-panel {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(212, 171, 84, 0.14);
  background: linear-gradient(180deg, rgba(16, 39, 28, 0.9), rgba(10, 24, 18, 0.94));
  box-shadow: var(--panel-shadow);
}

.footer-intro {
  margin: 12px 0 18px;
  color: var(--text-soft);
  line-height: 1.65;
}

.footer-brand-panel .button-secondary {
  width: 100%;
}

.footer-social-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.footer-social-links a {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(212, 171, 84, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  line-height: 1.45;
}

.footer-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 0;
}

.footer-details div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(212, 171, 84, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.footer-details dt {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-details dd {
  margin: 8px 0 0;
  color: var(--text-main);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.footer-bottom .site-disclaimer {
  margin: 0;
  max-width: none;
  text-align: left;
}

.policy-link {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(212, 171, 84, 0.22);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
}

.policy-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(20, 161, 66, 0.18), transparent 24%),
    linear-gradient(180deg, #06100c 0%, #091710 35%, #08130f 100%);
}

.policy-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 0 72px;
}

.policy-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(212, 171, 84, 0.18);
  background: linear-gradient(180deg, rgba(16, 39, 28, 0.92), rgba(12, 28, 20, 0.92));
  box-shadow: var(--panel-shadow);
}

.policy-card + .policy-card {
  margin-top: 16px;
}

.policy-card p,
.policy-card li {
  color: var(--text-soft);
  line-height: 1.7;
}

.policy-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

@media (max-width: 1120px) {
  .hero-grid,
  .problem-board,
  .composition-shell,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .hero-scene {
    min-height: 620px;
  }

  .hero-badge {
    top: 28px;
    right: 24px;
  }

  .problem-center {
    max-width: 420px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-lead {
    grid-column: 1 / -1;
  }

  .split-panels,
  .split-panels-bottom,
  .official-grid {
    grid-template-columns: 1fr;
  }

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

  .panel-wildberries {
    min-height: 220px;
  }
}

@media (max-width: 960px) {
  .topbar-inner,
  .brand-lockup,
  .topbar-actions,
  .storage-layout,
  .delivery-trust {
    flex-direction: column;
  }

  .topbar-actions,
  .storage-layout {
    display: flex;
    width: 100%;
  }

  .phone-chip,
  .button-quick {
    width: 100%;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-copy {
    padding-top: 16px;
  }

  .hero-benefits,
  .usage-steps,
  .quality-marks,
  .review-grid,
  .delivery-steps,
  .official-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .composition-shell,
  .storage-layout,
  .delivery-trust {
    gap: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-details {
    grid-template-columns: 1fr;
  }

  .composition-core {
    min-height: 360px;
  }

  .composition-product {
    width: 230px;
    height: 330px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 26px, 100vw - 26px);
  }

  .topbar {
    padding-top: 18px;
  }

  .brand-copy {
    padding-left: 0;
    border-left: 0;
    max-width: none;
  }

  .hero-title {
    font-size: 2.45rem;
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .hero-benefits,
  .usage-steps,
  .review-grid,
  .quality-marks,
  .delivery-steps,
  .delivery-trust,
  .about-grid,
  .official-list {
    grid-template-columns: 1fr;
  }

  .hero-scene {
    min-height: 460px;
  }

  .hero-badge {
    width: 104px;
    height: 104px;
    padding: 16px;
    font-size: 0.92rem;
  }

  .section,
  .hero-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .problem-column {
    min-height: auto;
  }

  .problem-portrait {
    height: 220px;
  }

  .composition-product {
    width: 210px;
    height: 300px;
  }

  .composition-sachet {
    width: 138px;
    height: 260px;
  }

  .panel,
  .about-lead,
  .feature-box,
  .usage-step,
  .problem-column,
  .problem-center {
    padding-left: 18px;
    padding-right: 18px;
  }

  .panel-title {
    font-size: 1.55rem;
  }

  .wildberries-button span {
    font-size: 0.96rem;
  }

  .format-notes {
    inset: auto 10px 10px 10px;
  }

  .format-note {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
  }
}
