/* =========================================================
   Spice Rank — adult-niche SEO & links
   styles.css
   ========================================================= */

:root {
  /* palette — deep charcoal "afterdark" with a warm rose-gold glow */
  --bg:          #0c0a0d;
  --bg-soft:     #131016;
  --bg-card:     #17131b;
  --bg-elev:     #1d1822;
  --line:        rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --text:        #f3eef2;
  --muted:       #a79caa;
  --faint:       #6f6678;

  /* the "lustre" glow */
  --accent:      #e7a05a;   /* warm amber/rose-gold */
  --accent-2:    #d2557a;   /* dusk rose */
  --accent-soft: rgba(231, 160, 90, 0.14);

  --radius:      16px;
  --radius-sm:   11px;
  --maxw:        1140px;

  --shadow:      0 24px 60px -24px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 0 1px rgba(231, 160, 90, 0.18), 0 20px 60px -20px rgba(210, 85, 122, 0.35);

  --font-sans:   "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif:  "Fraunces", Georgia, "Times New Roman", serif;
}

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

* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; padding: 0; }

button { font: inherit; cursor: pointer; }

::selection { background: var(--accent-2); color: #fff; }

/* ----------------------------------------------------------
   layout helpers
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: clamp(64px, 10vw, 120px) 0; position: relative; }
.section--alt { background: var(--bg-soft); border-block: 1px solid var(--line); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }

h2 { font-size: clamp(1.8rem, 4vw, 2.85rem); }

.section__head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 56px); }
.section__lede { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* ambient background glows */
.glow {
  position: fixed;
  z-index: 0;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  pointer-events: none;
}
.glow--one { top: -18vw; right: -14vw; background: radial-gradient(circle, rgba(210,85,122,0.42), transparent 65%); }
.glow--two { bottom: -22vw; left: -16vw; background: radial-gradient(circle, rgba(231,160,90,0.30), transparent 65%); }

main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ----------------------------------------------------------
   buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary {
  color: #1a0f14;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(231,160,90,0.4), 0 24px 50px -16px rgba(210,85,122,0.6); }

.btn--ghost {
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border-color: var(--line-strong);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--accent); color: #fff; transform: translateY(-2px); }

.btn--sm { padding: 9px 18px; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* ----------------------------------------------------------
   header / nav
   ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(12, 10, 13, 0.55);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(12, 10, 13, 0.86);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; }
.brand__mark {
  width: 32px; height: 32px;
  background: url(../images/icon.png) center / contain no-repeat;
  flex: none;
}
.brand__word { letter-spacing: 0.01em; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 0.95rem; color: var(--muted); font-weight: 500; transition: color 0.2s ease; }
.nav__links a:hover { color: var(--text); }
.nav__links .btn { color: var(--text); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* services dropdown */
.nav__item--has-menu { position: relative; }
.nav__menu-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 0;
  font: inherit; font-size: 0.95rem; font-weight: 500;
  color: var(--muted); cursor: pointer;
  transition: color 0.2s ease;
}
.nav__menu-btn:hover,
.nav__item--has-menu:hover .nav__menu-btn,
.nav__item--has-menu.is-open .nav__menu-btn { color: var(--text); }
.nav__caret { font-size: 0.6rem; transition: transform 0.25s ease; }
.nav__item--has-menu.is-open .nav__caret { transform: rotate(180deg); }

.nav__menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 230px;
  margin-top: 14px;
  background: rgba(20, 16, 24, 0.98);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 60;
}
.nav__item--has-menu.is-open .nav__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}
.nav__menu a:hover { background: var(--accent-soft); color: var(--text); }

/* ----------------------------------------------------------
   hero
   ---------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(56px, 9vw, 104px);
  padding-bottom: clamp(48px, 8vw, 88px);
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  margin-bottom: 22px;
}
.shine {
  background: linear-gradient(105deg, var(--accent) 10%, var(--accent-2) 55%, var(--accent) 90%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 220% center; } }

.hero__sub { color: var(--muted); font-size: 1.12rem; max-width: 560px; margin-bottom: 30px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  color: var(--faint);
  font-size: 0.92rem;
}
.hero__trust strong { color: var(--text); font-weight: 600; }
.hero__trust li { display: inline-flex; gap: 7px; }

/* hero card */
.hero__card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 80% -10%, var(--accent-soft), transparent 60%);
  pointer-events: none;
}
.hero__card-label { color: var(--faint); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; }
.hero__card-title { font-size: 1.55rem; margin: 6px 0 4px; }
.hero__card-price { font-family: var(--font-serif); font-size: 2.4rem; color: var(--accent); margin-bottom: 20px; }
.hero__card-price span { font-family: var(--font-sans); font-size: 0.95rem; color: var(--faint); font-weight: 500; margin-right: 6px; }
.hero__card-list { display: grid; gap: 11px; margin-bottom: 24px; }
.hero__card-list li { position: relative; padding-left: 26px; color: var(--muted); font-size: 0.96rem; }
.hero__card-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  color: var(--accent); font-weight: 700;
}

/* ----------------------------------------------------------
   niche strip
   ---------------------------------------------------------- */
.strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  justify-content: center;
  padding-block: 8px 28px;
}
.strip span {
  font-size: 0.86rem;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  padding: 7px 15px;
  border-radius: 999px;
  white-space: nowrap;
}

/* "niches accepted" band on service pages */
.niches { padding-block: clamp(32px, 5vw, 52px); text-align: center; }
.niches__head { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-bottom: 22px; }
.niches .strip { padding-bottom: 0; }

/* ----------------------------------------------------------
   services
   ---------------------------------------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.svc:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.svc .btn { margin-top: auto; } /* pin CTA to the bottom so cards line up */

.svc--feature {
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-card));
  border-color: rgba(231,160,90,0.28);
}
.svc--feature:hover { box-shadow: var(--shadow-glow); }

.svc__badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #1a0f14;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 5px 11px; border-radius: 999px;
}
.svc h3 { font-size: 1.45rem; margin-bottom: 8px; padding-right: 90px; }
.svc__price { font-family: var(--font-serif); font-size: 1.9rem; color: var(--text); margin-bottom: 14px; }
.svc__price span:first-child { font-family: var(--font-sans); font-size: 0.9rem; color: var(--faint); font-weight: 500; margin-right: 6px; }
.svc__unit { font-family: var(--font-sans); font-size: 0.9rem; color: var(--faint); font-weight: 500; }
.svc__desc { color: var(--muted); font-size: 0.98rem; margin-bottom: 20px; }
.svc__list { display: grid; gap: 10px; margin-bottom: 26px; }
.svc__list li { position: relative; padding-left: 24px; color: var(--muted); font-size: 0.94rem; }
.svc__list li::before {
  content: ""; position: absolute; left: 2px; top: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

/* ----------------------------------------------------------
   steps
   ---------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}
.step__num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--accent);
  border: 1px solid rgba(231,160,90,0.35);
  width: 42px; height: 42px; line-height: 40px; text-align: center;
  border-radius: 50%;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.94rem; }

/* ----------------------------------------------------------
   why
   ---------------------------------------------------------- */
.why {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
.why__text > p { color: var(--muted); margin-bottom: 16px; font-size: 1.04rem; }
.why__points { display: grid; gap: 18px; margin-top: 30px; }
.why__points li { display: flex; gap: 14px; }
.why__icon {
  flex: none;
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
}
.why__points strong { color: var(--text); }
.why__points div { color: var(--muted); font-size: 0.98rem; }

.why__signoff {
  position: sticky;
  top: 96px;
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.signoff__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 1.6rem; color: #1a0f14;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-bottom: 20px;
  box-shadow: 0 0 22px rgba(231,160,90,0.5);
}
.why__signoff blockquote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 16px;
}
.signoff__name { color: var(--faint); font-size: 0.9rem; margin-bottom: 22px; }

/* ----------------------------------------------------------
   stats
   ---------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: clamp(40px, 6vw, 64px);
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--accent);
  line-height: 1;
}
.stat__label { color: var(--muted); font-size: 0.92rem; margin-top: 8px; display: block; }

/* ----------------------------------------------------------
   faq
   ---------------------------------------------------------- */
.faq { display: grid; gap: 12px; max-width: 820px; }
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  transition: border-color 0.2s ease;
}
.faq__item[open] { border-color: var(--line-strong); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.25s ease;
  flex: none;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding-bottom: 20px; font-size: 0.98rem; max-width: 70ch; }

/* ----------------------------------------------------------
   contact
   ---------------------------------------------------------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
.contact__copy > p { color: var(--muted); font-size: 1.06rem; margin-bottom: 26px; max-width: 460px; }

/* form-less contact: centered block with side-by-side channel buttons */
.contact__solo { max-width: 660px; margin-inline: auto; text-align: center; }
.contact__solo .contact__lead { color: var(--muted); font-size: 1.06rem; margin-top: 14px; }
.contact__solo .contact__channels {
  max-width: 460px;
  margin: 30px auto 0;
  text-align: left;
}

.contact__channels { display: grid; gap: 12px; }
.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.channel:hover { border-color: var(--accent); transform: translateX(3px); }
.channel__icon {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.2rem;
}
.channel strong { display: block; font-size: 1rem; }
.channel em { font-style: normal; color: var(--muted); font-size: 0.9rem; }

/* form */
.contact__form {
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.field select { appearance: none; cursor: pointer; }
.field input::placeholder,
.field textarea::placeholder { color: var(--faint); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form__note { margin-top: 12px; font-size: 0.85rem; color: var(--faint); text-align: center; }
.form__note.is-error { color: var(--accent-2); }
.form__note.is-ok { color: var(--accent); }

/* ----------------------------------------------------------
   order modal
   ---------------------------------------------------------- */
body.no-scroll { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal[hidden] { display: none; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 8, 0.74);
  backdrop-filter: blur(6px);
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-card));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-glow);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.modal__close:hover { color: var(--text); border-color: var(--accent); background: var(--accent-soft); }
.modal__title { font-size: 1.7rem; margin: 4px 0 10px; padding-right: 30px; }
.modal__desc { color: var(--muted); font-size: 0.98rem; }
.modal__channels { display: grid; gap: 10px; margin-top: 22px; }
.modal__note { margin-top: 16px; font-size: 0.84rem; color: var(--faint); text-align: center; }

/* ----------------------------------------------------------
   legal pages (terms / privacy)
   ---------------------------------------------------------- */
.legal { max-width: 800px; }
.legal__updated { color: var(--faint); font-size: 0.9rem; margin-top: 14px; }

.legal__note {
  background: var(--accent-soft);
  border: 1px solid rgba(231, 160, 90, 0.3);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 0 0 36px;
}
.legal__note p { color: var(--text); font-size: 0.95rem; margin: 0; }

.legal h2 {
  font-size: 1.4rem;
  margin: 40px 0 12px;
  scroll-margin-top: 90px;
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.08rem; margin: 24px 0 8px; }
.legal p { color: var(--muted); margin-bottom: 14px; }
.legal ul { display: grid; gap: 9px; margin: 0 0 16px; }
.legal li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}
.legal li::before {
  content: ""; position: absolute; left: 2px; top: 10px;
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.legal a { color: var(--accent); }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--text); }

/* footer legal links */
.footer__legal a { color: var(--muted); transition: color 0.2s ease; }
.footer__legal a:hover { color: var(--accent); }

/* ----------------------------------------------------------
   package / pricing page
   ---------------------------------------------------------- */
.crumb { font-size: 0.85rem; color: var(--faint); margin-bottom: 22px; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--accent); }
.crumb span { margin-inline: 8px; opacity: 0.5; }

.pkg-hero { padding-top: clamp(26px, 4vw, 46px); padding-bottom: clamp(16px, 2.5vw, 26px); }
.pkg-hero__title { font-size: clamp(2.1rem, 4.6vw, 3.3rem); max-width: 22ch; margin-bottom: 16px; }
.pkg-hero__sub { color: var(--muted); font-size: 1.08rem; max-width: 820px; }
.pkg-hero__sub em { color: var(--text); font-style: normal; }
.pkg-hero__meta {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin-top: 20px; color: var(--faint); font-size: 0.9rem;
}

/* tiers grid */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.tier:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }

.tier--featured {
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-card));
  border-color: rgba(231,160,90,0.4);
  box-shadow: var(--shadow-glow);
  z-index: 2;
}
.tier--featured:hover { box-shadow: 0 0 0 1px rgba(231,160,90,0.5), 0 30px 70px -22px rgba(210,85,122,0.55); }
.tier--max { border-color: rgba(210,85,122,0.32); }

.tier__ribbon {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #1a0f14;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 6px 16px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(210,85,122,0.6);
}
.tier__ribbon--max { background: linear-gradient(135deg, var(--accent-2), #8e3bff); color: #fff; }

.tier__head { text-align: center; padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.tier__label {
  display: inline-block; font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 10px;
}
.tier__name { font-size: 1.5rem; margin-bottom: 12px; }
.tier__price { font-family: var(--font-serif); font-size: 3rem; line-height: 1; color: var(--text); }
.tier__price span { font-size: 1.4rem; color: var(--accent); vertical-align: top; margin-right: 2px; }
.tier__tagline { color: var(--muted); font-size: 0.92rem; margin-top: 12px; }

/* feature list grows to fill, pushing the CTA to the bottom of every card */
.tier__body { order: 1; flex-grow: 1; }
.tier__cta {
  order: 2;
  margin-top: 24px;
  color: #1a0f14;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.tier__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(231, 160, 90, 0.4), 0 24px 50px -16px rgba(210, 85, 122, 0.6);
}

/* feature groups */
.tier__group + .tier__group { margin-top: 20px; }
.group__title {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--faint); font-weight: 700; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px dashed var(--line);
}
.tier__list { display: grid; gap: 9px; }
.tier__list li { position: relative; padding-left: 24px; color: var(--muted); font-size: 0.93rem; }
.tier__list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  color: var(--accent); font-weight: 700;
}

/* bonuses block */
.tier__bonuses {
  background: var(--accent-soft);
  border: 1px solid rgba(231,160,90,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 22px;
}
.bonuses__title {
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 12px;
}
.tier__bonuses .tier__list li { color: var(--text); }
.tier__bonuses .tier__list li::before { content: "★"; }

.tiers__foot { text-align: center; color: var(--muted); margin-top: 34px; font-size: 0.98rem; }
.tiers__foot a { color: var(--accent); font-weight: 600; }
.tiers__foot a:hover { text-decoration: underline; }

/* reassurance strip */
.assure { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.assure__item {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px;
}
.assure__icon { color: var(--accent); font-size: 1.3rem; display: block; margin-bottom: 12px; }
.assure__item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.assure__item p { color: var(--muted); font-size: 0.95rem; }

/* ----------------------------------------------------------
   404 page
   ---------------------------------------------------------- */
.notfound {
  min-height: 68vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 0;
}
.notfound__code {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(5rem, 18vw, 11rem);
  line-height: 1;
  background: linear-gradient(105deg, var(--accent) 10%, var(--accent-2) 60%, var(--accent) 95%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s linear infinite;
}
.notfound h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 10px 0 14px; }
.notfound p { color: var(--muted); max-width: 460px; margin: 0 auto 30px; font-size: 1.05rem; }
.notfound__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ----------------------------------------------------------
   footer
   ---------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding-block: 48px 36px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__brand .brand__word { font-family: var(--font-serif); font-size: 1.3rem; }
.footer__brand .brand__mark { display: inline-block; }
.footer__brand p { color: var(--faint); font-size: 0.92rem; max-width: 280px; margin-top: 4px; }
.footer__title {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.footer__nav { display: flex; flex-direction: column; gap: 11px; }
.footer__nav a { color: var(--muted); font-size: 0.95rem; transition: color 0.2s ease; }
.footer__nav a:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 18px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.85rem;
}
.footer__bottom p { margin: 0; }

/* ----------------------------------------------------------
   reveal-on-scroll
   ---------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ----------------------------------------------------------
   responsive
   ---------------------------------------------------------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero__card { max-width: 460px; }
  .why { grid-template-columns: 1fr; }
  .why__signoff { position: static; max-width: 460px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .contact__inner { grid-template-columns: 1fr; }

  .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .tier--featured { order: -1; }
  .assure { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.9);
    padding: 12px 22px 20px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links li { width: 100%; }
  .nav__links > li > a { display: block; padding: 12px 0; }
  .nav__links .btn {
    margin-top: 12px;
    display: flex;
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  /* services dropdown becomes an inline accordion on mobile */
  .nav__item--has-menu { width: 100%; }
  .nav__menu-btn { width: 100%; justify-content: space-between; padding: 10px 0; font-weight: 500; }
  .nav__menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    min-width: 0;
    margin-top: 0;
    padding: 0 0 4px 12px;
    background: none;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }
  .nav__item--has-menu.is-open .nav__menu { transform: none; max-height: 200px; }
  .nav__menu a { padding: 9px 0; }

  .services { grid-template-columns: 1fr; }
  .svc--feature { grid-row: auto; }
  .svc h3 { padding-right: 0; }

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
