:root {
  --bg-main: #fff7f2;
  --bg-tinted: #fff0e6;
  --bg-card: #ffffff;
  --bg-dark: #2b213a;
  --accent: #ff6b81;
  --accent-soft: #ffd6dd;
  --accent-secondary: #7c4dff;
  --accent-gold: #ffc857;
  --text-main: #2b213a;
  --text-muted: #7a7187;
  --border-soft: #e8d9cf;
  --shadow-soft: 0 18px 45px rgba(33, 18, 10, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
  --transition-main: 0.24s ease-out;
  --container-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffe1f0 0, #fff7f2 38%, #ffffff 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(255, 247, 242, 0.92), rgba(255, 247, 242, 0.85));
  border-bottom: 1px solid rgba(232, 217, 207, 0.7);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.logo__mark {
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.logo__text {
  font-size: 18px;
  text-transform: lowercase;
}

.nav {
  display: none;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav__link {
  position: relative;
  padding: 4px 0;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  transition: width var(--transition-fast);
}

.nav__link:hover {
  color: var(--text-main);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--accent {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 107, 129, 0.35);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 18px rgba(255, 153, 171, 0.15);
}

.nav__link--accent::after {
  display: none;
}

.nav__link--accent:hover {
  background: #fff;
}

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 36px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(232, 217, 207, 0.9);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  gap: 4px;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.burger span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.burger:hover {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(40, 26, 16, 0.12);
  transform: translateY(-1px);
}

.burger--active span:nth-child(1) {
  transform: translateY(3px) rotate(40deg);
}

.burger--active span:nth-child(2) {
  opacity: 0;
}

.burger--active span:nth-child(3) {
  transform: translateY(-3px) rotate(-40deg);
}

.hero {
  padding: 32px 0 40px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr);
  gap: 32px;
  align-items: center;
}

.hero__content {
  max-width: 620px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 214, 221, 0.55);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 107, 129, 0.2);
}

.hero__title {
  font-size: clamp(28px, 5.2vw, 40px);
  line-height: 1.1;
  margin: 0 0 14px;
}

.hero__highlight {
  position: relative;
  display: inline-block;
  padding: 0 4px;
}

.hero__highlight::before {
  content: "";
  position: absolute;
  inset: 60% -6px -4px;
  background: linear-gradient(90deg, var(--accent-soft), #ffeab3);
  border-radius: 999px;
  z-index: -1;
}

.hero__subtitle {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 15px;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--text-main);
}

.hero__bullets li::before {
  content: "✶";
  margin-right: 8px;
  color: var(--accent-secondary);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--transition-main), transform var(--transition-fast), box-shadow var(--transition-main), color var(--transition-main);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #ff93a5);
  color: #fff;
  box-shadow: 0 14px 36px rgba(255, 107, 129, 0.34);
}

.btn--primary:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 18px 42px rgba(255, 107, 129, 0.48);
}

.btn--ghost {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(233, 205, 195, 0.9);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-main);
}

.btn--ghost:hover {
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(51, 29, 15, 0.2);
  transform: translateY(-1px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

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

.hero__badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(43, 33, 58, 0.94);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__badge-number {
  font-weight: 700;
  font-size: 16px;
}

.hero__badge-text {
  font-size: 11px;
  opacity: 0.9;
}

.hero__visual {
  display: none;
}

.hero__cake-card {
  position: relative;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  padding: 26px 22px 22px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.9) 0, rgba(255, 240, 230, 0.95) 55%, #ffd9eb 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero__cake-glow {
  position: absolute;
  inset: 20% -40%;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.9) 0, rgba(255, 214, 221, 0.4) 40%, transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

.hero__cake {
  position: relative;
  margin: 10px auto 22px;
  width: 170px;
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: float 4.6s ease-in-out infinite;
}

.hero__cake-layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 60px 60px 20px 20px;
  box-shadow: 0 16px 30px rgba(194, 146, 126, 0.35);
}

.hero__cake-layer--bottom {
  bottom: 0;
  width: 160px;
  height: 60px;
  background: linear-gradient(180deg, #ffe0c2, #f8cba3);
}

.hero__cake-layer--middle {
  bottom: 44px;
  width: 135px;
  height: 50px;
  background: linear-gradient(180deg, #ffbdd4, #ff8fa9);
}

.hero__cake-layer--top {
  bottom: 82px;
  width: 100px;
  height: 42px;
  background: linear-gradient(180deg, #fff3d0, #ffd27c);
}

.hero__cake-deco {
  position: absolute;
  bottom: 100px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #ff6b81);
  box-shadow: 0 8px 14px rgba(255, 107, 129, 0.5);
}

.hero__cake-deco--left {
  left: 38px;
}

.hero__cake-deco--right {
  right: 38px;
}

.hero__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__sparkles span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #fff, var(--accent-secondary));
  opacity: 0.9;
  animation: sparkle 2.4s ease-in-out infinite;
}

.hero__sparkles span:nth-child(1) {
  top: 0;
  left: 15%;
}

.hero__sparkles span:nth-child(2) {
  top: 12%;
  right: 16%;
  animation-delay: 0.4s;
}

.hero__sparkles span:nth-child(3) {
  top: 22%;
  left: 45%;
  animation-delay: 0.8s;
}

.hero__note {
  position: relative;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  color: var(--text-muted);
}

.hero__note::before {
  content: "✉";
  margin-right: 8px;
}

.section {
  padding: 40px 0;
}

.section--tinted {
  background: linear-gradient(180deg, rgba(255, 240, 230, 0.68), rgba(255, 247, 242, 0.95));
}

.section--last {
  padding-bottom: 60px;
}

.section__header {
  text-align: center;
  margin-bottom: 22px;
}

.section__header--left {
  text-align: left;
}

.section__title {
  font-size: 22px;
  margin: 0 0 8px;
}

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

.cards {
  display: grid;
  gap: 16px;
}

.card {
  position: relative;
  padding: 18px 18px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid rgba(232, 217, 207, 0.9);
  box-shadow: 0 18px 38px rgba(38, 16, 8, 0.08);
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-main), border-color var(--transition-fast);
}

.card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top right, rgba(255, 209, 224, 0.5), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-main);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 139, 164, 0.7);
  box-shadow: 0 24px 50px rgba(38, 16, 8, 0.14);
}

.card:hover::after {
  opacity: 1;
}

.card__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 214, 221, 0.8);
  color: var(--accent);
  margin-bottom: 10px;
}

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

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

.card__list {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-main);
}

.card--accent {
  background: radial-gradient(circle at top left, #ffe4f0 0, #fff7f2 45%, #ffffff 100%);
  border-color: rgba(255, 107, 129, 0.75);
}

.pricing {
  display: grid;
  gap: 20px;
}

.pricing__table {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(232, 217, 207, 0.9);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  font-size: 14px;
}

.pricing__row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.4fr;
  padding: 10px 14px;
  gap: 12px;
  align-items: center;
}

.pricing__row:nth-child(odd) {
  background: rgba(255, 247, 242, 0.9);
}

.pricing__row--head {
  background: var(--bg-dark);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}

.pricing__side {
  padding: 16px 16px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #2b213a, #473064);
  color: #fff;
  box-shadow: 0 18px 40px rgba(9, 3, 27, 0.45);
}

.pricing__title {
  margin: 0 0 8px;
  font-size: 17px;
}

.pricing__list {
  margin: 0 0 10px;
  padding-left: 18px;
  font-size: 13px;
}

.pricing__note {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.steps {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(232, 217, 207, 0.9);
}

.step__number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(255, 107, 129, 0.45);
}

.step__title {
  margin: 0 0 4px;
  font-size: 15px;
}

.step__text {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.guarantee {
  padding: 16px 16px 16px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(171, 143, 132, 0.9);
  background: rgba(255, 254, 252, 0.9);
}

.guarantee__title {
  margin: 0 0 6px;
  font-size: 15px;
}

.guarantee__list {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.order {
  display: grid;
  gap: 22px;
}

.order__bullets {
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-main);
}

.order__reviews {
  padding: 14px 14px 12px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #2b213a, #50346b);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.order__reviews::before {
  content: "“";
  position: absolute;
  top: -32px;
  right: 16px;
  font-size: 90px;
  color: rgba(255, 255, 255, 0.16);
}

.order__quote {
  margin: 0 0 6px;
  font-size: 13px;
}

.order__author {
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
}

.order__form-wrapper {
  padding: 18px 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(232, 217, 207, 0.95);
  box-shadow: 0 22px 48px rgba(36, 11, 4, 0.16);
}

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

.form__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__row--split {
  gap: 10px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form__label {
  font-size: 13px;
  color: var(--text-main);
}

.form input[type="text"],
.form input[type="tel"],
.form input[type="date"],
.form select,
.form textarea {
  width: 100%;
  padding: 9px 11px;
  border-radius: 12px;
  border: 1px solid rgba(207, 187, 176, 0.9);
  background: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-family: inherit;
  color: var(--text-main);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(122, 113, 135, 0.6);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: rgba(255, 107, 129, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 107, 129, 0.6), 0 10px 24px rgba(255, 107, 129, 0.25);
  background: #ffffff;
  transform: translateY(-0.5px);
}

.form__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.form__checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 6px;
  border: 1px solid rgba(207, 187, 176, 0.9);
  appearance: none;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
  transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.form__checkbox input[type="checkbox"]::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 4px;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4 8.2L11 1' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.form__checkbox input[type="checkbox"]:checked {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(104, 63, 198, 0.4);
  transform: translateY(-0.5px);
}

.form__checkbox input[type="checkbox"]:checked::after {
  opacity: 1;
}

.form__error {
  min-height: 14px;
  font-size: 11px;
  color: #d02e47;
}

.form__hint {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--text-muted);
}

.form__success {
  margin-top: 8px;
  font-size: 13px;
  color: #1c7c3c;
}

.footer {
  border-top: 1px solid rgba(232, 217, 207, 0.9);
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 0 16px;
}

.footer__inner {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  display: grid;
  gap: 4px;
}

.footer__brand {
  margin: 0;
  font-weight: 600;
  color: var(--text-main);
}

.footer__meta {
  margin: 0;
}

.footer__contacts {
  margin: 0;
}

.footer__contacts a {
  color: var(--accent-secondary);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(0.6);
    opacity: 0.6;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (min-width: 720px) {
  .hero {
    padding: 46px 0 52px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
  }

  .hero__visual {
    display: block;
  }

  .section {
    padding: 52px 0;
  }

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

  .pricing {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  }

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

  .order {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    align-items: flex-start;
  }

  .order__form-wrapper {
    margin-left: auto;
  }

  .form__row--split {
    flex-direction: row;
  }
}

@media (min-width: 960px) {
  .header__inner {
    padding: 12px 0;
  }

  .nav {
    display: flex;
  }

  .burger {
    display: none;
  }
}

@media (max-width: 959.98px) {
  .nav {
    position: fixed;
    inset: 56px 16px auto 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(23, 7, 2, 0.28);
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform-origin: top center;
    transform: scaleY(0.7) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-main), transform var(--transition-main);
  }

  .nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1) translateY(0);
  }

  .nav__link {
    padding: 8px 10px;
    border-radius: 999px;
  }

  .nav__link::after {
    display: none;
  }

  .nav__link--accent {
    margin-top: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #ff93a5);
    color: #fff;
    border: none;
    box-shadow: 0 14px 32px rgba(255, 107, 129, 0.4);
  }
}
