:root {
  --bg-soft: #f7eff8;
  --text: #181325;
  --muted: #696277;
  --primary: #c637f2;
  --primary-2: #7f26ff;
  --deep: #1b0738;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(17, 9, 32, 0.08);
  --header-bar-height: 124px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

section[id] {
  scroll-margin-top: calc(var(--header-bar-height) + 16px);
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--bg-soft);
  line-height: 1.5;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  clip-path: none;
  white-space: normal;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(127, 38, 255, 0.35);
  text-decoration: none;
}

.skip-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(24, 19, 37, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-bar-height);
  padding: 10px 0;
  gap: 16px;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
  cursor: pointer;
  border-radius: 10px;
  z-index: 60;
}

.nav-burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #2d2640;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-cluster {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.brand-logo {
  height: auto;
  width: auto;
  max-height: 105px;
  max-width: min(440px, 48vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  display: block;
}

.brand-text {
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #e91ec8 0%, #b026ff 45%, #5c1faa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  :root {
    --header-bar-height: 108px;
  }

  .brand-logo {
    max-height: 88px;
    max-width: min(380px, 52vw);
  }

  .nav-wrap {
    padding: 8px 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-bar-height: 100px;
  }

  .brand-logo {
    max-height: 80px;
    max-width: min(340px, 56vw);
  }
}

@media (max-width: 680px) {
  :root {
    --header-bar-height: 92px;
  }

  .brand-logo {
    max-height: 72px;
    max-width: min(280px, 62vw);
  }

  .nav-wrap {
    padding: 8px 0;
  }

  .brand-text {
    font-size: 1.08rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-bar-height: 80px;
  }

  .brand-logo {
    max-height: 60px;
    max-width: min(220px, 68vw);
  }

  .nav-wrap {
    padding: 6px 0;
  }

  .brand-text {
    font-size: 0.98rem;
    white-space: normal;
    max-width: 38vw;
    line-height: 1.2;
  }
}

@media (max-width: 380px) {
  :root {
    --header-bar-height: 72px;
  }

  .brand-logo {
    max-height: 52px;
    max-width: min(180px, 72vw);
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #4a4458;
  font-weight: 400;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--text);
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 26px;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(127, 38, 255, 0.25);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.92rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(127, 38, 255, 0.4);
  color: var(--primary-2);
  box-shadow: none;
}

.btn.btn-get-started {
  color: #fff;
  box-shadow: 0 10px 28px rgba(180, 60, 220, 0.35);
}

.btn-call-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  color: #fff !important;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  box-shadow: 0 8px 22px rgba(127, 38, 255, 0.35);
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-call-footer:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(127, 38, 255, 0.4);
}

.page-card .btn-call-footer {
  margin-top: 12px;
}

.hero {
  position: relative;
  padding: 56px 0 72px;
  background: #faf8fc;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-bg-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.93) 0%,
    rgba(255, 255, 255, 0.78) 42%,
    rgba(255, 255, 255, 0.35) 68%,
    rgba(247, 239, 252, 0.45) 100%
  );
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
  border-radius: 50%;
  filter: blur(72px);
}

.hero::before {
  width: min(480px, 90vw);
  height: min(480px, 90vw);
  top: -140px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 105, 180, 0.22) 0%, rgba(255, 180, 220, 0.08) 45%, transparent 70%);
}

.hero::after {
  width: min(420px, 85vw);
  height: min(420px, 85vw);
  bottom: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(150, 90, 255, 0.18) 0%, rgba(200, 160, 255, 0.08) 50%, transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  color: #e91ec8;
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin: 10px 0 14px;
}

.hero-title {
  color: #111111;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-title-gradient {
  display: inline-block;
  margin-top: 0.06em;
  background: linear-gradient(90deg, #ff2db3 0%, #c026ff 50%, #6b2dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtext {
  color: var(--muted);
  max-width: 62ch;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  align-items: start;
}

.floating-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border-radius: 16px;
  padding: 18px 18px 18px 16px;
  box-shadow: 0 14px 40px rgba(24, 19, 37, 0.1);
}

.floating-card--lower {
  grid-column: 1;
  margin-top: 48px;
}

.floating-card--raise {
  grid-column: 2;
  margin-top: 0;
}

.floating-card-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
}

.floating-card-icon--check {
  background: rgba(46, 204, 113, 0.15);
  color: #27ae60;
}

.floating-card-icon--sparkle {
  background: rgba(255, 152, 0, 0.16);
  color: #f57c00;
  font-size: 1.1rem;
}

.floating-card-body {
  min-width: 0;
}

.card-title {
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text);
  font-size: 0.98rem;
}

.card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.stats {
  padding: 16px 0 46px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card h3 {
  margin: 0;
  color: var(--primary-2);
  font-size: 1.45rem;
}

.stat-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.features,
.testimonials {
  padding: 68px 0;
}

h2 {
  font-size: clamp(1.55rem, 3.6vw, 2.2rem);
  margin: 0 0 8px;
}

.section-subtitle {
  color: var(--muted);
  margin-top: 0;
}

.feature-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-2));
}

.feature-card h3 {
  margin: 0 0 8px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.why-love {
  background: var(--deep);
  color: #fff;
  padding: 62px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.why-love p {
  color: rgba(255, 255, 255, 0.75);
}

.pill-list {
  display: grid;
  gap: 12px;
}

.pill-list article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
}

.booking {
  padding: 70px 0;
}

.booking-wrap {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.booking-form {
  padding: 30px;
  display: grid;
  gap: 14px;
  align-content: center;
  background: #ffffff;
}

.booking-form p {
  margin: 0 0 8px;
  color: var(--muted);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid #e4dfea;
  font-family: inherit;
  font-size: 0.95rem;
  background: #ffffff;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #8c8499;
  opacity: 1;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: rgba(192, 38, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(192, 38, 255, 0.12);
}

.booking-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23696277' d='M1 1.5L6 6l5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 48px;
  cursor: pointer;
}

.booking-form textarea {
  border-radius: 22px;
  min-height: 130px;
  resize: vertical;
  line-height: 1.5;
}

.booking-image-field {
  display: grid;
  gap: 10px;
}

.booking-image-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.booking-form input[type="file"] {
  padding: 12px 18px;
  border-radius: 22px;
  cursor: pointer;
}

.booking-image-preview {
  display: none;
  gap: 10px;
  justify-items: start;
}

.booking-image-preview:not([hidden]) {
  display: grid;
}

.booking-image-preview img {
  max-width: 100%;
  max-height: 200px;
  border-radius: 16px;
  border: 1px solid #e4dfea;
  object-fit: contain;
  background: #faf8fc;
}

.booking-image-remove {
  border: 1px solid #e4dfea;
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.booking-image-remove:hover {
  border-color: rgba(192, 38, 255, 0.45);
}

.booking-form button {
  margin-top: 6px;
}

.testimonial-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  color: var(--muted);
  box-shadow: var(--shadow);
}

.testimonial span {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-weight: 600;
}

.how-it-works {
  padding: 52px 0 64px;
  position: relative;
}

.section-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 34px;
}

.section-intro .eyebrow {
  margin-bottom: 8px;
}

.section-intro h2 {
  margin-bottom: 10px;
}

.section-intro .section-subtitle {
  margin-bottom: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 18px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(24, 19, 37, 0.06);
}

.step-num {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(127, 38, 255, 0.25);
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.03rem;
  color: var(--text);
}

.step-card p {
  margin: 0;
  font-size: 0.91rem;
  color: var(--muted);
  line-height: 1.5;
}

.faq-home {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, #ffffff 0%, #f9f5fc 55%, var(--bg-soft) 100%);
  border-top: 1px solid rgba(24, 19, 37, 0.06);
}

.home-faq-list {
  max-width: 720px;
  margin: 8px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(24, 19, 37, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.home-faq-item summary {
  padding: 18px 52px 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  font-size: 0.98rem;
  list-style: none;
  position: relative;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(233, 30, 200, 0.12), rgba(127, 38, 255, 0.14));
  display: grid;
  place-items: center;
  color: var(--primary-2);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
}

.home-faq-item[open] summary::after {
  content: "−";
}

.home-faq-body {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.home-faq-body a {
  color: var(--primary-2);
  font-weight: 600;
}

.home-faq-body a:hover {
  color: var(--primary);
}

.faq-home-foot {
  text-align: center;
  margin: 28px 0 0;
  font-size: 0.94rem;
  color: var(--muted);
}

.faq-home-foot a {
  color: var(--primary-2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: #14072a;
  color: rgba(255, 255, 255, 0.86);
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 20px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-top: 0;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 8px;
}

.site-footer a.btn-call-footer {
  margin-bottom: 0;
}

.copyright {
  margin: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 16px 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  z-index: 80;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .hero-grid,
  .why-grid,
  .booking-wrap {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-image img {
    min-height: 300px;
  }
}

@media (max-width: 680px) {
  .nav-burger {
    display: flex;
  }

  .nav-cluster {
    position: fixed;
    top: var(--header-bar-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 20px;
    background: #ffffff;
    border-bottom: 1px solid rgba(24, 19, 37, 0.08);
    box-shadow: 0 16px 32px rgba(17, 9, 32, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s;
    z-index: 55;
  }

  .nav-toggle:checked ~ .nav-cluster {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle:checked + .nav-burger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-burger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-burger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 20px;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(24, 19, 37, 0.06);
  }

  .nav-cluster .btn-get-started,
  .nav-cluster .btn-call-nav {
    margin: 10px 20px 0;
    text-align: center;
    justify-content: center;
  }

  .nav-cluster .btn-call-nav:first-of-type {
    margin-top: 16px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .floating-card--lower,
  .floating-card--raise {
    grid-column: auto;
    margin-top: 0;
  }

  .floating-card--lower {
    margin-top: 8px;
  }

  .feature-grid,
  .testimonial-grid,
  .footer-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .booking-form {
    padding: 24px 18px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
}

/* Inner pages (Help Center, Privacy, Terms) */
.page-shell {
  padding: 40px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 100% -10%, rgba(255, 120, 200, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at -5% 40%, rgba(140, 90, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.page-shell-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  width: min(760px, 92%);
}

.page-hero-text {
  text-align: center;
  margin-bottom: 28px;
}

.page-hero-text .eyebrow {
  margin-bottom: 8px;
}

.page-title {
  margin: 0;
  font-size: clamp(1.85rem, 4.5vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
}

.page-title-accent {
  background: linear-gradient(90deg, #ff2db3 0%, #c026ff 55%, #6b2dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 54ch;
  margin-inline: auto;
}

.page-card {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(22px, 4vw, 36px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(24, 19, 37, 0.06);
}

.page-card + .page-card {
  margin-top: 18px;
}

.page-card h2 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  color: var(--primary-2);
  font-weight: 700;
}

.page-card h3 {
  margin: 20px 0 8px;
  font-size: 1rem;
  color: var(--text);
}

.page-card p,
.page-card li {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.96rem;
}

.page-card ul {
  margin: 0 0 12px;
  padding-left: 1.25rem;
}

.page-card li {
  margin-bottom: 8px;
}

.page-card a {
  color: var(--primary-2);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-card a:hover {
  color: var(--primary);
}

.help-quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.help-quick-links a {
  display: block;
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(233, 30, 200, 0.06), rgba(127, 38, 255, 0.06));
  border: 1px solid rgba(127, 38, 255, 0.15);
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.help-quick-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(127, 38, 255, 0.12);
  color: var(--primary-2);
}

.faq-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(24, 19, 37, 0.07);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item:first-child {
  padding-top: 4px;
}

.faq-q {
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  font-size: 0.98rem;
}

.faq-a {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.page-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(24, 19, 37, 0.08);
  font-size: 0.88rem;
  color: var(--muted);
}
