:root {
  --orange: #ff7400;
  --orange-dark: #e75f00;
  --orange-soft: #fff2e7;
  --black: #111111;
  --muted: #666a73;
  --line: #eceef2;
  --soft: #f7f8fa;
  --white: #ffffff;
  --success: #16803d;
  --danger: #c62828;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(26, 31, 44, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.section {
  padding: 84px 0;
}

.soft {
  background: var(--soft);
}

.announcement {
  padding: 10px 16px;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #ff6200, #ff9200);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  padding-top: 62px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 136, 0, .16), transparent 31%),
    radial-gradient(circle at 5% 60%, rgba(255, 210, 150, .24), transparent 28%),
    #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.badge {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--orange-soft);
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.hero h1 span {
  color: var(--orange);
}

.hero-text {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 19px;
}

.price-box {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.old-price {
  color: #8b8f98;
  text-decoration: line-through;
  font-size: 17px;
}

.new-price {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.1;
}

.discount {
  padding: 9px 12px;
  border-radius: 12px;
  color: #fff;
  background: #e92f2f;
  font-weight: 900;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-benefits div {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.btn {
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  border-radius: 15px;
  font-weight: 800;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff6200, #ff9400);
  box-shadow: 0 14px 28px rgba(255, 116, 0, .24);
}

.btn-secondary {
  color: var(--orange-dark);
  background: var(--orange-soft);
}

.full {
  width: 100%;
}

.small-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gift-sticker {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 11px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #e92f2f, #ff6c3b);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  font-weight: 900;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.thumb {
  width: 78px;
  height: 78px;
  padding: 3px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #fff;
}

.thumb.active {
  border-color: var(--orange);
}

.thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.gift-copy h2,
.order-info h2 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.section-heading p,
.gift-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(17,17,17,.04);
}

.feature-icon {
  font-size: 34px;
}

.feature-card h3 {
  margin: 14px 0 8px;
  font-size: 19px;
}

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

.gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.gift-image {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gift-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-size: 13px;
}

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

.step {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.step > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}

.step h3 {
  margin: 18px 0 8px;
}

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

.order-section {
  background: linear-gradient(135deg, #1b1c20, #292c33);
}

.order-card {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 50px;
  align-items: center;
}

.order-info {
  color: #fff;
}

.light {
  color: #ffb973;
}

.order-price {
  display: flex;
  flex-direction: column;
  margin: 28px 0;
}

.order-price s {
  color: rgba(255,255,255,.55);
  font-size: 18px;
}

.order-price strong {
  font-size: clamp(38px, 5vw, 58px);
}

.order-points {
  display: grid;
  gap: 9px;
  color: rgba(255,255,255,.82);
}

.order-form {
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.order-form h3 {
  margin: 0 0 22px;
  font-size: 27px;
}

.order-form label {
  display: block;
  margin: 15px 0 7px;
  font-size: 14px;
  font-weight: 800;
}

.order-form input {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  border: 1px solid #dfe2e8;
  border-radius: 13px;
  outline: none;
  background: #fbfbfc;
}

.order-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,116,0,.12);
}

.order-form .btn {
  margin-top: 18px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.form-message {
  min-height: 22px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.form-message.error {
  color: var(--danger);
}

.form-message.success {
  color: var(--success);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

footer {
  padding: 26px 0 100px;
  background: #101114;
  color: rgba(255,255,255,.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner strong {
  color: #fff;
}

.sticky-bar {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: none;
  width: min(620px, calc(100% - 20px));
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 17px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 19px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 45px rgba(0,0,0,.18);
}

.sticky-bar small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.sticky-bar strong {
  white-space: nowrap;
}

.sticky-bar .btn {
  min-height: 47px;
  padding: 12px 18px;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.show {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 10, 13, .64);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.modal-card h2 {
  margin: 12px 0 8px;
}

.modal-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  font-size: 34px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .hero-grid,
  .gift-grid,
  .order-card {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    text-align: center;
  }

  .badge,
  .hero-benefits {
    margin-left: auto;
    margin-right: auto;
  }

  .price-box {
    justify-content: center;
  }

  .hero-media {
    max-width: 650px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 16px;
  }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .step {
    padding: 22px;
  }

  .gift-grid {
    gap: 34px;
  }

  .order-form {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .sticky-bar {
    display: flex;
  }

  .hero-copy > .btn {
    width: 100%;
  }
}
