:root {
  --plum: #2c164f;
  --violet: #7a4fc3;
  --lavender: #f3edf9;
  --gold: #c79a3b;
  --gold-soft: #f7ead0;
  --navy: #13233f;
  --ink: #1f2430;
  --muted: #687083;
  --white: #fff;
  --line: #e8e0ef;
  --shadow: 0 24px 70px rgba(44, 22, 79, 0.14);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #fbf7ff 42%, #fff 100%);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  max-width: 100%;
}
.nbc-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 224, 239, 0.8);
}
.nbc-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--plum);
}
.nbc-brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.nbc-brand small {
  display: block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.nbc-brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--plum), var(--violet));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.nbc-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nbc-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 14px;
}
.nbc-nav a:hover,
.nbc-nav .is-active {
  background: var(--lavender);
  color: var(--plum);
}
.nbc-menu {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--plum);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 8vw, 112px) clamp(20px, 5vw, 70px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}
.eyebrow:before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
h1,
h2,
h3 {
  color: var(--plum);
  line-height: 1.1;
  margin: 0;
}
h1 {
  font-size: clamp(42px, 7vw, 82px);
  letter-spacing: -0.06em;
}
h2 {
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.04em;
}
h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
}
p {
  margin: 0;
  color: var(--muted);
}
.lead {
  font-size: clamp(18px, 2vw, 22px);
  margin-top: 22px;
  color: #4d5365;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--plum), var(--violet));
  color: #fff;
  box-shadow: 0 12px 30px rgba(122, 79, 195, 0.3);
}
.btn-secondary {
  background: #fff;
  color: var(--plum);
  border-color: var(--line);
}
.hero-card {
  position: relative;
  min-height: 520px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 20% 15%, #fff 0 9%, transparent 10%),
    linear-gradient(145deg, #fff, var(--lavender) 45%, #efe0c3);
  box-shadow: var(--shadow);
  padding: 34px;
  display: flex;
  align-items: flex-end;
}
.product-orbit {
  position: absolute;
  inset: 40px 36px 120px;
  border: 1px solid rgba(199, 154, 59, 0.35);
  border-radius: 36px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.24)
  );
}
.jar {
  position: absolute;
  border-radius: 34px;
  background: linear-gradient(145deg, #fff, #eadff5);
  box-shadow: 0 30px 60px rgba(44, 22, 79, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.85);
}
.jar:before {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  top: -20px;
  height: 36px;
  border-radius: 14px 14px 7px 7px;
  background: linear-gradient(135deg, var(--gold), #efd59e);
}
.jar-large {
  width: 190px;
  height: 230px;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
}
.jar-small {
  width: 126px;
  height: 156px;
  right: 6%;
  top: 18%;
  transform: rotate(8deg);
}
.hero-note {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(44, 22, 79, 0.12);
}
.section {
  padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 70px);
}
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head p {
  max-width: 580px;
}
.grid {
  display: grid;
  gap: 22px;
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 44px rgba(44, 22, 79, 0.06);
}
.card.gold {
  background: linear-gradient(145deg, #fff, var(--gold-soft));
  border-color: #ead5aa;
}
.card.dark {
  background: linear-gradient(145deg, var(--plum), var(--navy));
  color: #fff;
}
.card.dark h2,
.card.dark h3,
.card.dark p {
  color: #fff;
}
.price {
  font-size: 36px;
  font-weight: 900;
  color: var(--plum);
  margin: 12px 0;
}
.list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.list li {
  position: relative;
  padding-left: 22px;
  color: #4d5365;
}
.list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding-left: 74px;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: var(--plum);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.quote {
  font-size: 18px;
  color: #3d4354;
}
.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}
.stars span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f0dba5);
}
.page-hero {
  padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 70px);
  background: linear-gradient(135deg, #fff, var(--lavender));
  border-bottom: 1px solid var(--line);
}
.page-hero .section-inner {
  display: grid;
  gap: 20px;
  max-width: 980px;
}
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form {
  display: grid;
  gap: 16px;
}
.form label {
  display: grid;
  gap: 7px;
  color: var(--plum);
  font-weight: 800;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.form textarea {
  min-height: 136px;
  resize: vertical;
}
.fine {
  font-size: 13px;
  color: var(--muted);
}
.nbc-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.7fr;
  gap: 28px;
  padding: 48px clamp(20px, 5vw, 70px);
  background: var(--navy);
  color: #dce4f7;
}
.nbc-footer h2 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
}
.nbc-footer p,
.nbc-footer a {
  color: #dce4f7;
}
.nbc-footer a {
  display: block;
  margin: 8px 0;
}
.nbc-brand-footer {
  margin-bottom: 16px;
  color: #fff;
}
.nbc-cookie {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.nbc-cookie.is-visible {
  display: flex;
}
.nbc-cookie p {
  font-size: 14px;
}
.nbc-cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nbc-cookie button {
  border: 0;
  border-radius: 999px;
  background: var(--plum);
  color: #fff;
  padding: 11px 18px;
  font-weight: 800;
  cursor: pointer;
}
.nbc-cookie a {
  color: var(--plum);
  font-weight: 800;
}
.legal {
  max-width: 900px;
}
.legal h2 {
  font-size: 28px;
  margin: 30px 0 12px;
}
.legal p,
.legal li {
  color: #4d5365;
}
.legal ul {
  padding-left: 22px;
}
.band {
  background: linear-gradient(135deg, var(--plum), var(--violet));
  color: #fff;
}
.band h2,
.band p {
  color: #fff;
}
.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}
.table th,
.table td {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table th {
  color: var(--plum);
  background: var(--lavender);
}
@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .contact-box,
  .nbc-footer {
    grid-template-columns: 1fr;
  }
  .section-head {
    display: grid;
  }
  .hero-card {
    min-height: 420px;
  }
  .nbc-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .nbc-nav.is-open {
    display: flex;
  }
  .nbc-menu {
    display: inline-flex;
  }
  .nbc-nav a {
    padding: 13px 16px;
  }
}
@media (max-width: 620px) {
  h1 {
    font-size: 42px;
  }
  .hero,
  .section,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-card {
    min-height: 360px;
    padding: 22px;
    border-radius: 30px;
  }
  .jar-large {
    width: 150px;
    height: 190px;
  }
  .jar-small {
    width: 98px;
    height: 126px;
  }
  .product-orbit {
    inset: 30px 24px 100px;
  }
  .actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .nbc-cookie {
    display: none;
  }
  .nbc-cookie.is-visible {
    display: grid;
  }
  .nbc-cookie-actions {
    justify-content: space-between;
  }
  .card {
    padding: 22px;
  }
  .nbc-header {
    padding: 14px 16px;
  }
  .nbc-brand strong {
    font-size: 16px;
  }
}
