/* Base */
:root {
  --bg: #fff7fb;
  --panel: #ffffff;
  --panel-2: #fff1f7;
  --text: #2b0a1f;
  --muted: rgba(43, 10, 31, 0.72);
  --accent: #ec4899;
  --accent-2: #f472b6;
  --danger: #e11d48;
  --border: rgba(236, 72, 153, 0.18);
  --shadow: 0 16px 36px rgba(236, 72, 153, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% 0%, rgba(236, 72, 153, 0.22), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(244, 114, 182, 0.16), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid rgba(236, 72, 153, 0.35);
  border-radius: 10px;
  color: var(--text);
  z-index: 10;
}

.skip-link:focus {
  left: 14px;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.98), rgba(244, 114, 182, 0.65));
  border: 1px solid rgba(236, 72, 153, 0.25);
  font-weight: 800;
}

.brand__name {
  font-weight: 800;
  font-size: 14px;
}

.brand__tag {
  font-size: 12px;
  color: var(--muted);
}

.header-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.header-badge__label {
  font-size: 12px;
  color: var(--muted);
}

.header-badge__value {
  font-weight: 900;
  letter-spacing: 0.2px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 96px 0 24px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(180deg, rgba(255, 247, 251, 0.72), rgba(255, 247, 251, 0.82)),
    url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
}

.hero-copy {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 20px;
}

.hero-title {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 10px;
  letter-spacing: -0.2px;
}

.hero-subtitle {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 14.5px;
}

.hero-points {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}

.hero-points li {
  margin: 8px 0;
  color: rgba(43, 10, 31, 0.86);
}

.hero-cta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-cta__small {
  font-size: 12px;
  color: var(--muted);
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.media-card {
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 247, 0.72));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-card__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.08), rgba(244, 114, 182, 0.02));
}

.media-card__meta {
  padding: 14px 16px 16px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(236, 72, 153, 0.14);
}

.meta-row:first-child {
  border-top: none;
  padding-top: 0;
}

.meta-label {
  color: var(--muted);
  font-size: 13px;
}

.meta-value {
  font-weight: 800;
  font-size: 13px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row__item {
  flex: 1 1 180px;
  font-size: 12.5px;
  color: rgba(43, 10, 31, 0.74);
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 30px 0;
}

.section-title {
  margin: 0 0 12px;
  font-size: 22px;
}

.section-lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.grid-3 {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  border-radius: var(--radius);
  padding: 16px 16px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
}

.feature-card__title {
  margin: 0 0 8px;
  font-size: 16px;
}

.feature-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.testimonials .testimonial {
  border-radius: var(--radius);
  padding: 16px 16px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
}

.testimonial__stars {
  color: rgba(236, 72, 153, 0.95);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.testimonial__text {
  margin: 0 0 12px;
  color: rgba(43, 10, 31, 0.78);
  font-size: 14px;
}

.testimonial__name {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
}

.section-order {
  padding-top: 12px;
}

.order-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.order-form-wrap {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 16px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row-2 {
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
}

.form-row-2 .field {
  flex: 1;
}

.field__label {
  font-size: 13px;
  color: rgba(236, 72, 153, 0.9);
  font-weight: 650;
}

.field__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(236, 72, 153, 0.18);
  border-radius: 12px;
  padding: 11px 12px;
  color: var(--text);
  outline: none;
}

.field__input:focus {
  border-color: rgba(236, 72, 153, 0.65);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.16);
}

.field__textarea {
  resize: vertical;
}

.price-box {
  flex: 1;
  border-radius: 14px;
  border: 1px solid rgba(236, 72, 153, 0.16);
  background: rgba(255, 255, 255, 0.78);
  padding: 12px 12px 10px;
}

.price-box__line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  color: rgba(43, 10, 31, 0.78);
  font-size: 13px;
  border-top: 1px solid rgba(236, 72, 153, 0.12);
}

.price-box__line:first-child {
  border-top: none;
}

.price-box__line strong {
  color: rgba(43, 10, 31, 0.96);
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: start;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(236, 72, 153, 0.16);
  background: rgba(255, 255, 255, 0.82);
}

.checkbox input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.checkbox span {
  color: rgba(43, 10, 31, 0.78);
  font-size: 13px;
}

.privacy-link {
  margin-left: 8px;
  color: rgba(236, 72, 153, 0.95);
  text-decoration: underline;
}

.form-row-actions {
  gap: 10px;
}

.btn {
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  text-decoration: none;
  transition: transform 0.05s ease-in-out, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(236, 72, 153, 0.34);
}

.btn:active {
  transform: translateY(0);
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.96), rgba(244, 114, 182, 0.55));
  border-color: rgba(236, 72, 153, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(236, 72, 153, 0.16);
}

.form-hint {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
}

.order-side .side-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 16px;
  position: sticky;
  top: 90px;
}

.side-card__title {
  margin: 0 0 10px;
  font-size: 16px;
}

.summary-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(43, 10, 31, 0.78);
}

.summary-line.total {
  padding-top: 10px;
  border-top: 1px solid rgba(236, 72, 153, 0.14);
  color: rgba(43, 10, 31, 0.98);
}

.side-divider {
  height: 1px;
  background: rgba(236, 72, 153, 0.14);
  margin: 14px 0;
}

.side-note {
  color: var(--muted);
  font-size: 13px;
}

.thankyou {
  margin-top: 18px;
}

.thankyou-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(236, 72, 153, 0.35);
  box-shadow: var(--shadow);
  padding: 18px;
}

.thankyou-title {
  margin: 0 0 8px;
  font-size: 20px;
}

.thankyou-text {
  margin: 0 0 14px;
  color: var(--muted);
}

.thankyou-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 14px;
  align-items: start;
}

.summary-block-title {
  font-weight: 900;
  margin-bottom: 8px;
}

.summary-block {
  border-radius: 14px;
  border: 1px solid rgba(236, 72, 153, 0.16);
  background: rgba(255, 255, 255, 0.82);
  padding: 12px;
  color: rgba(43, 10, 31, 0.88);
  font-size: 13px;
  white-space: pre-wrap;
}

.thankyou-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fineprint {
  margin: 14px 0 0;
  color: rgba(43, 10, 31, 0.62);
  font-size: 12.5px;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.footer-title {
  font-weight: 900;
}

.footer-text {
  color: var(--muted);
  font-size: 13px;
}

.footer-right {
  display: flex;
  gap: 14px;
}

.footer-link {
  color: rgba(236, 72, 153, 0.95);
  text-decoration: underline;
  font-weight: 700;
  font-size: 13px;
}

/* Privacy */
.privacy-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--border);
  box-shadow: 0 -14px 30px rgba(236, 72, 153, 0.12);
}

.cookie-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__p {
  margin: 8px 0 0;
  color: rgba(43, 10, 31, 0.75);
  font-size: 13px;
}

.cookie-banner__link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 800;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-action {
  min-width: 130px;
}

/* Contacts */
.section-contacts {
  padding-top: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.contact-left {
  min-width: 0;
}

.contact-cards {
  margin-top: 12px;
}

/* Organic article block */
.section-organic {
  padding-top: 6px;
}

.organic-shell {
  border-radius: 30px;
  padding: 20px;
  background:
    radial-gradient(700px 260px at 0% 0%, rgba(236, 72, 153, 0.12), transparent 60%),
    radial-gradient(700px 260px at 100% 100%, rgba(244, 114, 182, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(236, 72, 153, 0.2);
  box-shadow: 0 18px 40px rgba(236, 72, 153, 0.12);
}

.organic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.organic-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 16px;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(236, 72, 153, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.1);
  padding: 12px;
}

.organic-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(236, 72, 153, 0.16);
  background: #fff;
}

.organic-card__body {
  min-width: 0;
}

.organic-card__title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.organic-card__text {
  margin: 0;
  color: rgba(43, 10, 31, 0.8);
  font-size: 14px;
}

/* Callback notice: ~1/3 screen */
.callback-notice {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: min(33vw, 520px);
  min-width: 300px;
  z-index: 45;
  border-radius: var(--radius);
  border: 1px solid rgba(236, 72, 153, 0.34);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.24);
  padding: 16px 16px 14px;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, transform 280ms ease, visibility 280ms ease;
}

.callback-notice.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
}

.callback-notice__title {
  font-size: 18px;
  font-weight: 900;
  color: rgba(43, 10, 31, 0.98);
  margin-bottom: 8px;
}

.callback-notice__text {
  font-size: 14px;
  color: rgba(43, 10, 31, 0.8);
}

/* Responsive */
@media (max-width: 980px) {
  .hero {
    min-height: 100svh;
    padding-top: 84px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-action {
    min-width: 0;
    width: 100%;
  }

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

  .organic-shell {
    border-radius: 22px;
    padding: 14px;
  }
  .organic-card {
    grid-template-columns: 1fr;
  }
  .organic-card__img {
    height: 230px;
  }

  .callback-notice {
    right: 12px;
    left: 12px;
    bottom: 12px;
    min-width: 0;
    width: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
  .order-grid {
    grid-template-columns: 1fr;
  }
  .side-card {
    position: relative !important;
    top: auto !important;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .thankyou-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    flex-direction: column;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

