:root {
  --rose:        #D4196A;
  --rose-light:  #E8377F;
  --rose-dim:    rgba(212, 25, 106, 0.18);
  --rose-glow:   rgba(212, 25, 106, 0.35);
  --bg:          #0D0A0C;
  --bg-card:     #151013;
  --bg-border:   #2B1E26;
  --text:        #F0E8ED;
  --text-muted:  #C0A8B6;
  --tg:          #2AABEE;
  --tg-glow:     rgba(42, 171, 238, 0.35);
  --vk:          #0077FF;
  --max-grad:    linear-gradient(135deg, #7B2FBE 0%, #2A7FFF 100%);
  --max-glow:    rgba(123, 47, 190, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  padding-top: 56px;
}

/* ─── NAV ──────────────────────────────────────────── */
#nav-toggle { display: none; }

.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg-card);
  border-bottom: 1px solid var(--bg-border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 56px;
  max-width: 980px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--rose-light); }

.nav-burger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-burger:hover { background: var(--rose-dim); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--bg-border);
  gap: 0;
}
.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-border);
  transition: color 0.2s;
}
.nav-menu a:last-child { border-bottom: none; }
.nav-menu a:hover { color: var(--rose-light); }

#nav-toggle:checked + .topnav .nav-menu { display: flex; }
#nav-toggle:checked + .topnav .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle:checked + .topnav .nav-burger span:nth-child(2) { opacity: 0; }
#nav-toggle:checked + .topnav .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 42%;
  left: 50%;
  translate: -50% -50%;
  width: min(800px, 120vw);
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center,
    rgba(212, 25, 106, 0.22) 0%,
    rgba(212, 25, 106, 0.07) 40%,
    transparent 68%);
  pointer-events: none;
}

.sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.spark {
  position: absolute;
  bottom: 45%;
  left: 50%;
  width: 3px;
  border-radius: 50%;
  background: var(--rose-light);
  opacity: 0;
  animation: rise var(--dur, 3s) var(--delay, 0s) infinite ease-in;
}
@keyframes rise {
  0%   { opacity: 0; transform: translateX(var(--dx, 0px)) translateY(0)   scale(1);   }
  15%  { opacity: 0.7; }
  80%  { opacity: 0.2; transform: translateX(calc(var(--dx, 0px) * 1.6)) translateY(-160px) scale(0.4); }
  100% { opacity: 0;   transform: translateX(calc(var(--dx, 0px) * 2))   translateY(-220px) scale(0.1); }
}

.logo-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 44px;
  opacity: 0;
  animation: bloom 1.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes bloom {
  from { opacity: 0; transform: scale(0.88) translateY(24px); filter: blur(6px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    filter: blur(0); }
}

.logo-img {
  width: clamp(160px, 28vw, 220px);
  height: auto;
  display: block;
  border-radius: 0;
  filter:
    drop-shadow(0 0 28px var(--rose-glow))
    drop-shadow(0 0 60px rgba(212, 25, 106, 0.2));
}

.headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.22;
  max-width: 640px;
  z-index: 1;
  opacity: 0;
  animation: slideUp 1s 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-light);
}

.sub {
  margin-top: 18px;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  text-align: center;
  max-width: 440px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  z-index: 1;
  opacity: 0;
  animation: slideUp 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btns {
  margin-top: 48px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  opacity: 0;
  animation: slideUp 1s 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 56px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.btn:hover { transform: translateY(-3px); }

.btn-tg {
  background: var(--tg);
  color: #fff;
  box-shadow: 0 6px 24px rgba(42, 171, 238, 0.28);
}
.btn-tg:hover { box-shadow: 0 12px 36px rgba(42, 171, 238, 0.48); }

.btn-max {
  background: var(--max-grad);
  color: #fff;
  border: none;
  box-shadow: 0 6px 24px var(--max-glow);
}
.btn-max:hover { box-shadow: 0 12px 36px rgba(123, 47, 190, 0.5); }

.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn-icon-max { width: 52px; height: auto; flex-shrink: 0; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  animation: slideUp 0.8s 1.2s both;
}
.scroll-cue span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.7); }
  50%       { opacity: 0.8;  transform: scaleY(1); }
}

/* ─── FEATURES ──────────────────────────────────────── */
.features {
  padding: 90px 24px 100px;
  max-width: 980px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  text-align: center;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.25;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
@media (min-width: 720px) {
  .cards-2col { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 22px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-dim), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover { border-color: rgba(212, 25, 106, 0.3); transform: translateY(-5px); }
.card:hover::after { opacity: 1; }

.card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  font-style: italic;
  color: var(--rose);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
}
.card-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 20px;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.card-text {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── TOPICS ────────────────────────────────────────── */
.topics {
  padding: 80px 24px 90px;
  max-width: 980px;
  margin: 0 auto;
}
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.topic-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.25s;
}
.topic-card:hover {
  border-color: rgba(212, 25, 106, 0.3);
  transform: translateY(-3px);
}
.topic-emoji {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.topic-body {}
.topic-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.topic-desc {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── PRICING ───────────────────────────────────────── */
.pricing {
  padding: 80px 24px 90px;
  background: var(--bg-card);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}
.pricing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--bg-border);
  border-radius: 22px;
  padding: 36px 28px;
  text-align: left;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--rose);
  box-shadow: 0 0 0 1px var(--rose-dim), 0 8px 40px rgba(212, 25, 106, 0.12);
}
.pricing-badge {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pricing-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--rose-light);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}
.pricing-desc {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
}

/* ─── CANNOT HELP ───────────────────────────────────── */
.cannot {
  padding: 80px 24px 90px;
  max-width: 720px;
  margin: 0 auto;
}
.cannot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 44px;
}
.cannot-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 14px;
  padding: 20px 24px;
}
.cannot-x {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 25, 106, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 1px;
}
.cannot-text {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
}
.cannot-text strong {
  color: var(--text);
  font-weight: 600;
}

/* ─── SUPERVISION ───────────────────────────────────── */
.supervision {
  padding: 70px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}
.supervision-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.supervision-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.supervision-text {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
}
.supervision-text strong {
  color: var(--text);
  font-weight: 600;
}

/* ─── QUOTE ─────────────────────────────────────────── */
.quote-section {
  padding: 80px 24px;
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  background: var(--bg-card);
}
.quote-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--rose);
  opacity: 0.35;
  display: block;
  margin-bottom: 24px;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
}
.quote-text strong {
  font-style: normal;
  font-weight: 700;
  color: var(--rose-light);
}

/* ─── EXPERT ────────────────────────────────────────── */
.expert {
  padding: 90px 24px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.expert-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 28px;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}
.expert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
.expert-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 28px;
}
.expert-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.expert-desc {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 0;
}

/* ─── SPECIALIST FORM ───────────────────────────────── */
.spec-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  text-align: left;
}
.spec-input,
.spec-textarea {
  background: var(--bg);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  width: 100%;
  transition: border-color 0.25s;
  outline: none;
}
.spec-input::placeholder,
.spec-textarea::placeholder { color: var(--text-muted); }
.spec-input:focus,
.spec-textarea:focus { border-color: var(--rose); }
.spec-textarea { resize: vertical; min-height: 90px; }
.spec-submit {
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 56px;
  padding: 15px 32px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 24px var(--rose-glow);
}
.spec-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 36px var(--rose-glow); }
.spec-or {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.spec-or-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--bg-border);
  color: var(--text-muted);
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
}
.spec-or-icon:hover { transform: translateY(-2px); }
.spec-or-icon.tg { border-color: rgba(42,171,238,0.4); color: var(--tg); }
.spec-or-icon.tg:hover { border-color: var(--tg); }
.spec-or-icon.max { border-color: rgba(123,47,190,0.4); color: #a06be0; }
.spec-or-icon.max:hover { border-color: #7B2FBE; color: #c49de0; }

/* ─── FINAL CTA ─────────────────────────────────────── */
.final {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  bottom: -80px; left: 50%;
  translate: -50% 0;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(212, 25, 106, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.final-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.final-title em { font-style: italic; font-weight: 400; color: var(--rose-light); }
.final-sub {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 44px;
}
.final .btns { margin-top: 0; opacity: 1; animation: none; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--bg-border);
  background: var(--bg-card);
}
.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 32px 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 40px;
}
.footer-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-col p,
.footer-col a,
.footer-col li {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 720px) {
  .footer-col-sections ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
  }
}
.footer-col a {
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--rose-light); }
.footer-col strong { color: var(--text); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid var(--bg-border);
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
}
.footer-links { display: flex; gap: 22px; }
.footer-links a {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--rose-light); }
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 36px 24px 20px; }
  .footer-bottom { justify-content: center; text-align: center; padding: 16px 24px; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

/* ─── COLLAPSIBLE (details/summary) ──────────────────── */
.collapse { margin-top: 0; text-align: center; }
.collapse .cards { text-align: left; }
.collapse > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 8px;
  padding: 12px 22px;
  border: 1.5px solid var(--bg-border);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.collapse > summary::-webkit-details-marker { display: none; }
.collapse > summary:hover {
  border-color: var(--rose-light);
  color: var(--rose-light);
  background: var(--rose-dim);
}
.collapse > summary .collapse-chevron {
  display: inline-block;
  transition: transform 0.25s ease;
}
.collapse[open] > summary .collapse-chevron { transform: rotate(180deg); }
.collapse > summary .collapse-label-open { display: inline; }
.collapse > summary .collapse-label-close { display: none; }
.collapse[open] > summary .collapse-label-open { display: none; }
.collapse[open] > summary .collapse-label-close { display: inline; }
.collapse-wrap { text-align: center; margin-bottom: 8px; }
.collapse[open] .cards { margin-top: 24px; }

/* ─── SUBPAGE EXTRAS ─────────────────────────────────── */
.subpage-hero {
  padding: 60px 24px 40px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.subpage-breadcrumbs {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.subpage-breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.subpage-breadcrumbs a:hover { color: var(--rose-light); }
.subpage-breadcrumbs span { color: var(--rose-light); margin: 0 8px; }
.subpage-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 18px;
}
.subpage-h1 em { font-style: italic; font-weight: 400; color: var(--rose-light); }
.subpage-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}
.subpage-lead strong { color: var(--text); }

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 24px 60px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}
.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 44px 0 16px;
  color: var(--text);
}
.prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--text);
}
.prose p { margin-bottom: 16px; color: var(--text-muted); }
.prose p strong { color: var(--text); font-weight: 600; }
.prose ul, .prose ol {
  margin: 0 0 20px 22px;
  color: var(--text-muted);
}
.prose li { margin-bottom: 8px; line-height: 1.7; }
.prose li strong { color: var(--text); font-weight: 600; }
.prose code {
  color: var(--rose-light);
  background: var(--bg-card);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.92em;
}
.prose blockquote {
  border-left: 3px solid var(--rose);
  padding: 4px 0 4px 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text);
}

.related {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 24px;
  border-top: 1px solid var(--bg-border);
}
.related-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.related-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 16px;
  padding: 20px 22px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.related-card:hover {
  border-color: var(--rose);
  transform: translateY(-3px);
}
.related-card-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 6px;
}
.related-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.related-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.subpage-cta {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 24px 70px;
  text-align: center;
}
.subpage-cta .btns { margin-top: 24px; opacity: 1; animation: none; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 600px) {
  .btns { flex-direction: column; align-items: center; }
  .btn  { width: 260px; justify-content: center; }
  .pricing-cards { grid-template-columns: 1fr; }
  .expert-card { padding: 36px 24px; }
}

/* Attribution: conclusive-action notice under bot CTAs (attr.js) */
.sx-consent-note {
  margin: 28px auto 0;
  max-width: 460px;
  padding: 0 16px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.85;
}
.sx-consent-note a {
  color: var(--rose-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  white-space: nowrap;
}
.sx-consent-note a:hover { color: #ff6fa8; }

/* Cookie consent banner (injected by attr.js) */
.sx-cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 9999;
  margin: 0 auto;
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding: 16px 20px;
  background: rgba(21, 16, 19, 0.97);
  border: 1px solid var(--rose-glow);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  animation: sx-cookie-in 0.35s ease-out;
}
@keyframes sx-cookie-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.sx-cookie-text {
  flex: 1 1 300px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text);
}
.sx-cookie-text a { color: var(--rose-light); text-decoration: none; }
.sx-cookie-text a:hover { text-decoration: underline; }
.sx-cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.sx-cookie-btn {
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.05s, border-color 0.2s, color 0.2s;
}
.sx-cookie-btn:active { transform: translateY(1px); }
.sx-cookie-accept { background: var(--rose); color: #fff; }
.sx-cookie-accept:hover { background: var(--rose-light); }
.sx-cookie-decline { background: transparent; color: var(--text-muted); border: 1px solid var(--bg-border); }
.sx-cookie-decline:hover { color: var(--text); border-color: var(--text-muted); }
@media (max-width: 520px) {
  .sx-cookie-banner { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; padding: 14px 16px; }
  .sx-cookie-text { flex: 0 0 auto; font-size: 13px; }
  .sx-cookie-actions { justify-content: center; }
  .sx-cookie-btn { flex: 1 1 0; padding: 11px 0; }
}

/* Subsystem C anti-FOUC (defense-in-depth; the authoritative copy is inline in <head>). */
.sx-dyn [data-sx-slot]{visibility:hidden}
