:root {
  --bg: #f5f3f4;
  --surface: #ffffff;
  --surface-soft: #fbf9fa;
  --text: #1f1f23;
  --muted: #5f636d;
  --line: #e6e2e5;
  --brand: #c21f68;
  --brand-dark: #90174d;
  --brand-soft: #fbe9f1;
  --success: #1e8a57;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 14px 40px rgba(34, 30, 33, 0.08);
  --shadow-strong: 0 26px 70px rgba(27, 22, 27, 0.14);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #fcebf3 0%, transparent 35%),
    radial-gradient(circle at bottom left, #f0ecef 0%, transparent 40%),
    var(--bg);
  line-height: 1.6;
}

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

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

a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.15;
  color: var(--text);
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
}

section {
  padding: 5.2rem 0;
}

.container {
  width: min(100% - 2.4rem, var(--container));
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.section-subtitle {
  width: min(100%, 700px);
  margin-bottom: 2rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(194, 31, 104, 0.08);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.topbar.scrolled {
  box-shadow: 0 10px 32px rgba(20, 20, 24, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
}

.brand-logo {
  width: auto;
  height: 44px;
  max-width: 230px;
  object-fit: contain;
}

.brand-title {
  line-height: 1.1;
  font-size: 1rem;
}

.brand-title span {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  font-weight: 600;
  color: #2f3138;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.16rem;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: var(--text);
}

.mobile-toggle i {
  font-size: 1.2rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #d62c79);
  color: #fff;
  box-shadow: 0 14px 30px rgba(194, 31, 104, 0.22);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid rgba(194, 31, 104, 0.2);
}

.hero {
  padding-top: 7rem;
  position: relative;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.hero p {
  width: min(100%, 58ch);
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.25rem 0 2rem;
}

.pill {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(194, 31, 104, 0.2);
  color: var(--brand-dark);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  padding: 1.2rem;
  border-radius: var(--radius-lg);
}

.hero-card img {
  border-radius: 20px;
  border: 1px solid var(--line);
}

.hero-card-blend {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.hero-card-blend img {
  border: 0;
  border-radius: 0;
  width: 122%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  max-width: none;
  transform: translateX(-3%);
  filter: drop-shadow(0 26px 34px rgba(194, 31, 104, 0.22));
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.1rem;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.card h3,
.card h4 {
  margin-bottom: 0.5rem;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-frame-blend {
  border: 0;
  box-shadow: none;
  background: radial-gradient(circle at 30% 20%, #f6e9f0 0%, #f3eff2 55%, transparent 100%);
}

.media-frame img.image-contain {
  object-fit: contain;
  padding: 0.8rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.step {
  position: relative;
  padding: 1rem 1rem 1rem 3.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.pricing {
  background: linear-gradient(180deg, #fff 0%, #fbf7fa 100%);
}

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

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.price-card.featured {
  border-color: rgba(194, 31, 104, 0.38);
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(194, 31, 104, 0.14);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.72rem;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-weight: 700;
}

.price {
  font-size: 2.1rem;
  color: var(--brand-dark);
  font-weight: 800;
}

.price small {
  font-size: 0.95rem;
  color: var(--muted);
}

.list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: grid;
  gap: 0.48rem;
}

.list li {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  color: #333744;
}

.list i {
  color: var(--brand);
  font-size: 0.82rem;
}

.slider-shell {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.swiper {
  padding: 1.3rem;
}

.review {
  min-height: 255px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.review-stars {
  color: #f4a31f;
}

.review-author {
  border-top: 1px dashed var(--line);
  padding-top: 0.9rem;
  color: #384052;
  font-weight: 700;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 1rem 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.faq-question i {
  color: var(--brand-dark);
}

.faq-answer {
  padding: 0 1.1rem 1rem;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-band {
  background: linear-gradient(130deg, #2a272d 0%, #19181b 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.cta-band p {
  color: #e5dfe5;
}

.cta-band a:visited {
  color: inherit;
}

.contact-wrap {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1fr 1fr;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

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

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.9rem;
  color: #3f4452;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d6d2d7;
  border-radius: 10px;
  padding: 0.72rem 0.84rem;
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(194, 31, 104, 0.28);
  border-color: rgba(194, 31, 104, 0.55);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.notice {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: none;
}

.notice.error {
  display: block;
  background: #fff0f0;
  border: 1px solid #e8bcbc;
  color: #983838;
}

.notice.success {
  display: block;
  background: #effaf3;
  border: 1px solid #a7d7ba;
  color: #1f6b42;
}

.footer {
  margin-top: 4rem;
  background: #161419;
  color: #f2edf2;
  padding: 3.5rem 0 1rem;
}

.footer p,
.footer a {
  color: #dbd4dc;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer .brand-title span {
  color: #b5aeb7;
}

.footer .brand-logo {
  display: none;
}

.copyright {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(19, 18, 21, 0.78);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  width: min(90vw, 360px);
  height: 100%;
  background: #fff;
  margin-left: auto;
  padding: 1.2rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.mobile-menu.open .mobile-panel {
  transform: translateX(0);
}

.mobile-panel nav {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0;
}

.mobile-panel a {
  padding: 0.6rem;
  border-radius: 10px;
  font-weight: 700;
}

.mobile-panel a.active,
.mobile-panel a:hover {
  background: var(--brand-soft);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 620px;
}

th,
td {
  text-align: left;
  padding: 0.9rem;
  border-bottom: 1px solid #efedf0;
}

th {
  background: #f9f6f8;
}

.page-hero {
  padding: 6.4rem 0 3.4rem;
}

.page-hero p {
  max-width: 70ch;
}

.small {
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-grid,
  .split,
  .price-grid,
  .contact-wrap,
  .footer-grid,
  .cta-band,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5.5rem;
  }

  .price-card.featured {
    transform: none;
  }
}

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

  .container {
    width: min(100% - 1.4rem, var(--container));
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand-logo {
    height: 36px;
    max-width: 190px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.2vw, 2.8rem);
  }

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