
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #100308;
  color: #fdf5f7;
  line-height: 1.6;
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(16, 3, 8, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #ffd6e0;
}

.badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffb6c8;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff1744, #b00020);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(255, 23, 68, 0.45);
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(255, 23, 68, 0.6);
  filter: brightness(1.05);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 224, 0.35);
  background: rgba(16, 3, 8, 0.8);
  color: #ffd6e0;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  margin-left: 0.75rem;
}

.btn-secondary:hover {
  background: rgba(255, 214, 224, 0.08);
  border-color: rgba(255, 214, 224, 0.7);
  color: #fff;
}

.hero {
  padding: 3.5rem 1.25rem 3rem;
  background:
    radial-gradient(circle at top left, rgba(255, 23, 68, 0.35), transparent 55%),
    radial-gradient(circle at bottom right, rgba(236, 64, 122, 0.25), transparent 55%),
    linear-gradient(145deg, #1a050b, #050008);
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffb6c8;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.15rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-title span {
  color: #ff5177;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 32rem;
  color: #f7d9e2;
  margin-bottom: 1.4rem;
}

.hero-price {
  font-size: 0.95rem;
  color: #ffd6e0;
  margin-bottom: 1.25rem;
}

.hero-price strong {
  font-size: 1.2rem;
  color: #ff8a9a;
}

.hero-bullets {
  font-size: 0.9rem;
  color: #ffd6e0;
  margin-bottom: 1.8rem;
}

.hero-bullets li {
  margin-bottom: 0.15rem;
}

.hero-cta-note {
  font-size: 0.78rem;
  color: #f9c4d1;
  margin-top: 0.6rem;
}

.hero-right {
  position: relative;
}

.hero-card {
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(255, 214, 224, 0.18), transparent 55%), #1b050b;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 214, 224, 0.4);
}

.hero-card img {
  width: 100%;
  height: auto;
}

.hero-card-bottom {
  padding: 1.1rem 1.2rem 1.25rem;
}

.hero-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-card-text {
  font-size: 0.85rem;
  color: #ffd6e0;
}

.hero-floating {
  position: absolute;
  right: -0.35rem;
  bottom: -1.2rem;
  background: #2a0610;
  border-radius: 18px;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 214, 224, 0.4);
  font-size: 0.78rem;
  color: #ffdde8;
  max-width: 12rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
}

.section {
  padding: 3rem 1.25rem 2.75rem;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #ffb6c8;
  margin-bottom: 1.8rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.card-soft {
  background: radial-gradient(circle at top, rgba(255, 23, 68, 0.18), transparent 60%), #1a050b;
  border-radius: 18px;
  border: 1px solid rgba(255, 214, 224, 0.25);
  padding: 1.3rem 1.2rem 1.1rem;
  font-size: 0.9rem;
}

.card-soft h3 {
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.card-soft p {
  color: #ffd6e0;
}

.highlight {
  color: #ff8a9a;
  font-weight: 600;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  position: relative;
  padding: 1.2rem 1.1rem 1.05rem;
  border-radius: 16px;
  background: #16040a;
  border: 1px solid rgba(255, 182, 200, 0.28);
  font-size: 0.9rem;
}

.step-number {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 224, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
  color: #ffd6e0;
}

.step strong {
  display: block;
  margin-bottom: 0.3rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
}

.gallery-main {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 214, 224, 0.45);
}

.gallery-side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.gallery-side img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 214, 224, 0.45);
}

.faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 214, 224, 0.16);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.faq-answer {
  font-size: 0.88rem;
  color: #ffd6e0;
}

.footer {
  border-top: 1px solid rgba(255, 214, 224, 0.16);
  padding: 1.5rem 1.25rem 2rem;
  background: #050006;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: #b38a97;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer a {
  color: #ff8a9a;
}

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

  .hero {
    padding-top: 2.5rem;
  }

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

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

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

@media (max-width: 520px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .btn-secondary {
    margin-left: 0.4rem;
  }

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