/* ── Reset & Base ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #FFF8F5;
  --bg2: #EFEEFF;
  --gold: #8F87F1;
  --gold-lt: #7B70E0;
  --cream: #1A2A44;
  --muted: #7C8089;
  --line: rgba(143, 135, 241, .2);
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Jost', sans-serif;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Lenis: коректний скрол і якорі на iOS / мобільних */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 17.5px;
  line-height: 1.85;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

/* ── Grain overlay ──────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: .05;
  pointer-events: none;
  z-index: 9997;
}

/* ── ENERGY PARTICLES ──────────────────────────── */
#energy-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

/* ── Typography ─────────────────────────────────── */
.display {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
}

.display-xl {
  font-size: clamp(3.2rem, 9vw, 9rem);
}

.display-lg {
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
}

.display-md {
  font-size: clamp(1.8rem, 3.5vw, 3.4rem);
}

.display-sm {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
}

.label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold {
  color: var(--gold);
}

.italic {
  font-style: italic;
}

.muted {
  color: var(--muted);
}

/* ── Layout ─────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 22px;
  }
}

/* ── HR divider ─────────────────────────────────── */
.divider {
  width: 0;
  height: 1px;
  background: var(--line);
  margin: 100px 0;
}

/* ── Scroll word reveal ─────────────────────────── */
.reveal-word .word {
  overflow: hidden;
  display: inline-block;
}

.reveal-word .word span {
  display: inline-block;
  transform: translateY(110%);
}

.reveal-char .char {
  display: inline-block;
  transform: translateY(110%);
  overflow: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: normal;
}

nav::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 248, 245, .96) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--cream);
  text-decoration: none;
}

.nav-cta {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 10px 22px;
  transition: background .3s, color .3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn-primary,
.btn-buy,
.nav-cta,
.form-btn {
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-buy::before,
.nav-cta::before,
.form-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shimmer 5s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  30% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.nav-links {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color .3s, opacity .3s;
  opacity: 1;
}

.nav-links a:hover {
  color: var(--gold);
  opacity: 1;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
}

/* ── BURGER NAV ──────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: transform .4s, opacity .3s, background .3s;
}

@media (max-width: 768px) {
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }
}

/* ── MOBILE OVERLAY ──────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  min-height: 100dvh;
  background: rgba(255, 248, 245, .98);
  backdrop-filter: blur(15px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  padding: 92px 40px 60px;
  box-sizing: border-box;
}

.mobile-nav-links {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-bottom: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-links a {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  text-align: center;
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 3.8svh, 2.2rem);
  color: var(--cream);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  padding: 0;
  line-height: 1.05;
}

.mobile-overlay-footer {
  display: flex;
  gap: 24px;
  opacity: 0;
  transform: translateY(10px);
  flex-shrink: 0;
}

.mobile-overlay-footer a {
  font-size: .9rem;
  letter-spacing: .1em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
}

/* burger open state */
.nav-burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 10vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(143, 135, 241, .18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(143, 135, 241, .12) 0%, transparent 60%),
    var(--bg);
}

.hero-vertical-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
  transform-origin: top;
  transform: scaleY(0);
}

.hero-number {
  position: absolute;
  top: 50%;
  right: 44px;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 20vw;
  font-weight: 700;
  color: rgba(143, 135, 241, .09);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.05em;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  margin-bottom: 32px;
}

.hero-title {
  margin-bottom: 40px;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 52px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 18px 44px;
  text-decoration: none;
  transition: background .3s, transform .2s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .12);
  transform: translateX(-100%);
  transition: transform .4s;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(143, 135, 241, .25);
}

.hero-price-hint {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--muted);
}

.hero-price-hint strong {
  color: var(--gold-lt);
  font-weight: 700;
  font-size: 1.3rem;
}

/* ── SECTION BASE ────────────────────────────────── */
section {
  position: relative;
  scroll-margin-top: var(--nav-h, 80px);
}

.section-inner {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  #hero {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .section-inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* ── PROBLEM SECTION ─────────────────────────────── */
#problem {
  background: var(--bg2);
  color: var(--cream);
  position: relative;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

.problem-left {
  padding-right: 80px;
  border-right: 1px solid var(--line);
}

@media (max-width: 900px) {
  .problem-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}

.problem-right {
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 900px) {
  .problem-right {
    padding-left: 0;
  }
}

.problem-lead {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 32px;
  font-style: italic;
}

.problem-body {
  color: var(--cream);
  margin-bottom: 40px;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: .95rem;
  color: var(--cream);
  line-height: 1.65;
}

.pain-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-footer {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.problem-footer p {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.45;
}

.accent-wrapper {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  color: var(--gold);
  font-style: italic;
}

.accent-line {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 18px;
  overflow: visible;
  pointer-events: none;
}

/* ── ABOUT ───────────────────────────────────────── */
#about {
  background: var(--bg);
}

#about .section-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

@media (max-width: 900px) {
  #about .section-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

.about-visual {
  position: relative;
}

.about-photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(143, 135, 241, .1) 0%, rgba(143, 135, 241, .12) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  padding: 40px;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.about-badge span:first-child {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--bg);
  line-height: 1;
}

.about-badge span:last-child {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(8, 8, 14, .7);
  text-align: center;
  padding: 0 10px;
}

.about-text .label {
  margin-bottom: 24px;
}

.about-text h2 {
  margin-bottom: 28px;
}

.about-text p {
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-creds {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .88rem;
  color: var(--cream);
}

.cred-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── COURSE FORMAT ───────────────────────────────── */
#format {
  background: var(--bg);
}

.format-header {
  margin-bottom: 60px;
  max-width: 640px;
}

.format-header h2 {
  margin-bottom: 20px;
}

.format-header p {
  color: var(--cream);
}

.format-bento {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .format-bento {
    grid-template-columns: 1fr;
  }
}

.bento-card {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  padding: 40px 48px;
}

@media (max-width: 500px) {
  .bento-card {
    padding: 32px 28px;
  }
}

.bento-main {
  background: #8F87F1;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 48px;
}

.bento-main .label {
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
  margin-bottom: 24px;
}

.bento-main-num {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 260px;
  font-weight: 700;
  color: rgba(255, 255, 255, .05);
  line-height: 1;
  pointer-events: none;
}

.bento-main h3 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.bento-card.bento-main p {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  line-height: 1.6;
  max-width: 380px;
  position: relative;
  z-index: 1;
}

.bento-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 1px;
  background: var(--line);
}

.bento-top {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-num {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #8F87F1;
  line-height: 1;
  margin-bottom: 12px;
}

.bento-card h4 {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.bento-card p {
  font-size: .9rem;
  color: var(--cream);
}

.bento-bottom-left,
.bento-bottom-right {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}

@media (max-width: 600px) {

  .bento-bottom-left,
  .bento-bottom-right {
    padding: 32px 28px;
  }

  .bento-main-num {
    opacity: 0.1;
    font-size: 200px;
  }
}

/* ── RESULTS ─────────────────────────────────────── */
#results {
  background: var(--bg2);
}

.results-header {
  margin-bottom: 80px;
}

.results-header .label {
  margin-bottom: 24px;
}

.results-lead {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 700px;
}

.results-lead em {
  color: var(--gold);
  font-style: italic;
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.result-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  opacity: 0;
  transform: translateX(-30px);
}

.result-item:first-child {
  border-top: 1px solid var(--line);
}

.result-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(143, 135, 241, .3);
  line-height: 1;
  padding-top: 4px;
}

.result-text h4 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.result-text p {
  font-size: .9rem;
  color: var(--cream);
  line-height: 1.7;
}

/* ── QUOTE / CTA MIDDLE ──────────────────────────── */
#quote-cta {
  background:
    radial-gradient(ellipse 100% 60% at 50% 50%, rgba(143, 135, 241, .14) 0%, transparent 70%),
    var(--bg2);
  text-align: center;
  overflow: hidden;
}

#quote-cta .section-inner {
  padding-top: 140px;
  padding-bottom: 140px;
}

.big-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3.2vw, 3rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.45;
  max-width: 820px;
  margin: 0 auto 20px;
  color: var(--cream);
}

.big-quote-attr {
  font-size: .85rem;
  letter-spacing: .15em;
  color: var(--muted);
  margin-bottom: 60px;
}

.ornament {
  font-family: var(--ff-display);
  font-size: 5rem;
  color: rgba(143, 135, 241, .18);
  line-height: 1;
  margin-bottom: 24px;
}

/* ── PRICING ─────────────────────────────────────── */
#pricing {
  background: var(--bg);
}

.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

@media (max-width: 900px) {
  .pricing-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.pricing-left h2 {
  margin-bottom: 24px;
}

.pricing-left p {
  color: var(--cream);
  margin-bottom: 32px;
  line-height: 1.85;
}

.pricing-value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}

.pricing-value-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .92rem;
  color: var(--cream);
}

.pricing-value-list li::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.pricing-card {
  scroll-margin-top: var(--nav-h, 80px);
  background: rgba(143, 135, 241, 0.04);
  border: 1px solid rgba(143, 135, 241, 0.15);
  backdrop-filter: blur(8px);
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.pricing-card:hover {
  border-color: rgba(143, 135, 241, 0.3);
  transform: translateY(-5px);
}

@media (max-width: 600px) {
  .pricing-card {
    padding: 40px 28px;
  }
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pricing-card .label {
  margin-bottom: 20px;
}

.price-tag {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 8px;
}

.price-tag sup {
  font-size: .35em;
  vertical-align: top;
  margin-top: .5em;
  color: var(--gold);
}

.price-daily {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 40px;
}

.price-daily strong {
  color: var(--gold-lt);
  font-weight: 700;
}

.btn-buy {
  display: block;
  width: 100%;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 22px 44px;
  text-decoration: none;
  text-align: center;
  transition: background .3s, transform .2s, box-shadow .3s;
  margin-bottom: 20px;
}

.btn-buy:hover {
  background: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(143, 135, 241, .25);
}

.price-note {
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

/* ── BONUS ───────────────────────────────────────── */
#bonus {
  background: var(--bg2);
}

.bonus-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}

@media (max-width: 900px) {
  .bonus-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.bonus-tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 8px 20px;
  margin-bottom: 28px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(143, 135, 241, 0.3);
  position: relative;
  overflow: hidden;
}

.bonus-tag::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  animation: tagShimmer 4s infinite;
}

@keyframes tagShimmer {
  0% { left: -60%; }
  20% { left: 120%; }
  100% { left: 120%; }
}

.bonus-text h2 {
  margin-bottom: 24px;
}

.bonus-text p {
  color: var(--cream);
  margin-bottom: 20px;
}

.bonus-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.bonus-items li {
  display: flex;
  gap: 16px;
  font-size: .92rem;
  color: var(--cream);
  line-height: 1.6;
}

.bonus-items li::before {
  content: '◆';
  color: var(--gold);
  flex-shrink: 0;
  font-size: .7rem;
  margin-top: 4px;
}

.bonus-card {
  background: linear-gradient(135deg, rgba(143, 135, 241, .1) 0%, rgba(143, 135, 241, .08) 100%);
  border: 1px solid rgba(143, 135, 241, .2);
  padding: 52px 44px;
  text-align: center;
  position: relative;
}

.bonus-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: .6;
}

.bonus-card h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold-lt);
  margin-bottom: 16px;
  line-height: 1.3;
}

.bonus-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CLOSING CTA ─────────────────────────────────── */
#closing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 10% 50%, rgba(143, 135, 241, .10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(143, 135, 241, .08) 0%, transparent 55%),
    var(--bg);
}

#closing .section-inner {
  padding-top: 140px;
  padding-bottom: 100px;
}

.closing-deco-branch {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  opacity: .1;
  color: var(--gold);
  pointer-events: none;
}

.closing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.closing-pre {
  margin-bottom: 16px;
}

.closing-title {
  margin-bottom: 28px;
}

.closing-body {
  max-width: 480px;
  margin: 0 0 48px;
  color: var(--cream);
  font-size: .97rem;
  line-height: 1.85;
}

.closing-right {
  position: relative;
}

.closing-final-quote {
  position: relative;
  margin: 0;
  padding: 48px 48px 44px;
  background: var(--bg2);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
}

.closing-quote-mark {
  display: block;
  font-family: var(--ff-display);
  font-size: 6rem;
  line-height: .7;
  color: var(--gold);
  opacity: .35;
  margin-bottom: 16px;
  font-style: normal;
}

.closing-final-quote cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .15em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
  padding: 40px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: .8rem;
  color: rgba(122, 110, 98, .5);
}

/* ── LAWS STRUCTURE ─────────────────────────────── */
#laws {
  background: var(--bg2);
}

.laws-header {
  text-align: center;
  margin-bottom: 72px;
}

.laws-header .label {
  margin-bottom: 20px;
}

.laws-header h2 {
  margin-bottom: 16px;
}

.laws-header p {
  color: var(--muted);
  font-size: .95rem;
  max-width: 480px;
  margin: 0 auto;
}

.laws-pyramid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.law-level {
  opacity: 0;
  transform: translateY(30px);
}

.law-level-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.law-level-header::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .06;
}

.level-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.level-name {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: .04em;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.level-question {
  font-family: var(--ff-body);
  font-size: .8rem;
  letter-spacing: .12em;
  opacity: .7;
  margin-left: auto;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

@media (max-width: 560px) {
  .level-question {
    display: none;
  }

  .law-pills {
    gap: 8px;
  }

  .law-pill {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .law-plus {
    padding: 0 4px;
  }
}

.law-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 22px 0;
  flex-wrap: wrap;
  row-gap: 12px;
}

.law-pill {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  padding: 8px 22px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: rgba(143, 135, 241, .06);
  color: var(--cream);
  white-space: nowrap;
  cursor: help;
  transition: background .3s, transform .2s, border-color .3s;
}

.law-pill:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.law-tooltip {
  position: fixed;
  background: var(--cream);
  color: var(--bg);
  padding: 12px 18px;
  border-radius: 4px;
  font-size: .85rem;
  max-width: 240px;
  z-index: 1002;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  font-family: var(--ff-body);
  line-height: 1.5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.law-plus {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--gold);
  padding: 0 12px;
  opacity: .6;
}

.law-arrow {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  color: var(--gold);
  font-size: 1.4rem;
  opacity: .7;
}

.laws-footer-note {
  margin-top: 40px;
  text-align: center;
  padding: 20px 32px;
  border: 1px solid var(--line);
  border-radius: 2px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(143, 135, 241, .05);
}

.laws-footer-note p {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-lt);
}

/* Level colour fills */
.level-1 .law-level-header {
  background: #3B4B6B;
  color: #EFEEFF;
}

.level-1 .level-question {
  color: rgba(232, 240, 230, .65);
}

.level-2 .law-level-header {
  background: #7B70E0;
  color: #EFEEFF;
}

.level-2 .level-question {
  color: rgba(236, 242, 234, .65);
}

.level-3 .law-level-header {
  background: #3B4B6B;
  color: #EFEEFF;
}

.level-3 .level-question {
  color: rgba(230, 240, 236, .65);
}

.level-4 .law-level-header {
  background: #2a3655;
  color: #EFEEFF;
}

.level-4 .level-question {
  color: rgba(226, 236, 232, .65);
}

/* ── SVG DECORATIONS ────────────────────────────── */
.svg-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.hero-deco-circle {
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 55vw);
  opacity: .13;
  color: var(--gold);
}

.hero-deco-branch {
  left: 40px;
  bottom: 120px;
  width: 120px;
  opacity: .18;
  color: var(--gold);
}

.about-deco {
  right: -30px;
  top: 60px;
  width: 180px;
  opacity: .1;
  color: var(--gold);
}

.laws-deco {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  opacity: .08;
  color: var(--gold-lt);
}

.quote-deco-left {
  left: 0;
  top: 50%;
  transform: translateY(-60%);
  width: min(300px, 28vw);
  opacity: .07;
  color: var(--gold);
}

.quote-deco-right {
  right: 0;
  bottom: 20%;
  width: min(260px, 24vw);
  opacity: .07;
  color: var(--gold);
  transform: scaleX(-1);
}

.section-deco-dots {
  top: 40px;
  right: 40px;
  opacity: .18;
  color: var(--gold);
}

/* ── TESTIMONIALS ────────────────────────────────── */
#testimonials {
  background: var(--bg);
}

.testimonials-header {
  margin-bottom: 64px;
}

.testimonials-header .label {
  margin-bottom: 20px;
}

.testimonials-header h2 {
  margin-bottom: 0;
}

.reviews-masonry {
  columns: 3;
  column-gap: 20px;
}

/* ── SECTION TRANSITIONS ───────────────────────── */
.section-divider-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  color: inherit;
  fill: currentColor;
  transform: rotate(180deg);
  z-index: 5;
}

.section-divider-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  color: inherit;
  fill: currentColor;
  z-index: 5;
}

.review-card {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(24px);
  transition: transform .3s, box-shadow .3s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(143, 135, 241, .15);
}

.review-card img {
  display: block;
  width: 100%;
  height: auto;
}

.review-card-caption {
  padding: 14px 16px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  font-family: var(--ff-display);
  font-size: .95rem;
  font-style: italic;
  color: var(--muted);
}

.reviews-count-row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.review-stat {
  text-align: center;
}

.review-stat-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  display: block;
}

.review-stat-label {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

.reviews-count-quote {
  flex: 1;
  min-width: 260px;
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .reviews-masonry {
    columns: 2;
  }
}

/* ── Responsive Adaptation ───────────────────── */
@media (max-width: 1024px) {
  .display-xl {
    font-size: 5rem;
  }

  .display-lg {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
  }

  .container {
    padding: 0 24px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .display-xl {
    font-size: 4rem;
    line-height: 1.08;
  }

  .display-lg {
    font-size: 2.8rem;
  }

  .display-md {
    font-size: 2.2rem;
  }

  #hero {
    min-height: auto;
    justify-content: flex-start;
    padding-bottom: 80px;
  }

  .hero-content {
    text-align: center;
    padding-top: 100px;
    position: relative;
    z-index: 2;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero-number,
  .hero-deco-branch,
  .nav-links,
  .hero-vertical-line,
  .hero-deco-circle {
    display: none !important;
  }

  .nav-burger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
  }

  .problem-left,
  .problem-right {
    text-align: left;
  }

  .problem-left {
    padding-bottom: 36px;
    margin-bottom: 36px;
  }

  .about-visual {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .about-badges {
    bottom: -20px;
    right: 20px;
  }

  .law-level-header {
    padding: 20px;
  }

  .level-name {
    font-size: 1.3rem;
  }

  .format-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bento-main {
    grid-column: span 1;
    padding: 48px 32px;
  }

  .result-item {
    position: relative;
    grid-template-columns: 1fr;
    text-align: left;
    padding: 32px 0;
    padding-right: 52px;
    gap: 6px;
  }

  .result-num {
    position: absolute;
    top: 28px;
    right: 0;
    font-size: 3.5rem;
    opacity: .1;
    color: var(--gold-lt);
  }

  .reviews-count-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    gap: 28px 0;
  }

  .review-stat {
    flex: 0 0 33.333%;
    min-width: 0;
    box-sizing: border-box;
  }

  .review-stat-num {
    font-size: 2.6rem;
  }

  .reviews-count-quote {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    padding: 60px 24px;
  }

  /* ── MOBILE REVIEWS SLIDER ─────────────────── */
  .reviews-masonry {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding: 0 24px 48px 24px !important;
    margin-left: -24px !important;
    margin-right: -24px !important;
    width: calc(100% + 48px) !important;
  }

  .reviews-masonry::-webkit-scrollbar {
    display: none !important;
  }

  .review-card {
    flex: 0 0 72vw !important;
    max-width: 320px !important;
    width: auto !important;
    height: auto !important;
    scroll-snap-align: center !important;
    margin-bottom: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: block !important;
  }

  .review-card img {
    width: 100% !important;
    height: auto !important;
    object-fit: unset !important;
  }


  /* about: shorter photo on full-width mobile */
  .about-photo-frame {
    aspect-ratio: 3 / 2;
    max-height: 320px;
  }

  .about-badge {
    bottom: 12px;
    right: 12px;
    width: 88px;
    height: 88px;
  }

  .about-badge span:first-child {
    font-size: 1.4rem;
  }

  /* decorative dots: no value on small screen */
  .section-deco-dots {
    display: none;
  }

  .pain-list {
    text-align: left;
    display: flex;
    width: 100%;
  }

  .laws-footer-note p {
    font-size: 0.92rem;
  }

  .laws-footer-note p svg:last-child {
    display: none;
  }

  .section-divider-bottom {
    display: none;
  }

  section+section {
    border-top: 1px solid var(--line);
  }

  /* quote-cta: reduce heavy padding */
  #quote-cta .section-inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .ornament {
    font-size: 3.5rem;
  }

  /* closing: reduce heavy padding */
  #closing .section-inner {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .closing-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .closing-body {
    max-width: 100%;
  }

  .closing-deco-branch {
    display: none;
  }

  .closing-final-quote {
    padding: 36px 32px;
  }

  /* bonus card: reduce padding */
  .bonus-card {
    padding: 40px 28px;
  }

  /* faq: smaller tap targets still comfortable */
  .faq-question {
    padding: 22px 0;
    font-size: 1.1rem;
  }

  /* hero sub: ensure full width */
  .hero-sub {
    max-width: 100%;
  }

  /* laws: fill width */
  .laws-pyramid {
    max-width: 100%;
  }

  .pricing-left {
    text-align: left;
  }

  .pricing-value-list {
    display: inline-flex;
    flex-direction: column;
    text-align: left;
  }

  /* format: bento heading text-align */
  .bento-main {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .display-xl {
    font-size: 3.2rem;
    line-height: 1.06;
  }

  .display-lg {
    font-size: 2rem;
  }

  .display-md {
    font-size: 1.75rem;
  }

  .section-inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero-content {
    padding-top: 90px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 16px 28px;
  }

  .closing-final-quote {
    font-size: 1rem;
    padding: 28px 24px;
  }

  .law-level-header {
    padding: 16px;
    gap: 12px;
  }

  .level-name {
    font-size: 1.15rem;
  }

  .about-photo-frame {
    max-height: 260px;
  }

  .faq-question span {
    font-size: .9rem;
  }

  .big-quote {
    font-size: 1.3rem;
  }
}

@media (max-width: 360px) {
  .display-xl {
    font-size: 2.7rem;
  }

  .container {
    padding: 0 16px;
  }

  .bento-main {
    padding: 36px 20px;
  }
}

/* ── FAQ SECTION ─────────────────────────────────── */
#faq {
  background: var(--bg);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-question {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--cream);
  transition: color .3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-icon span {
  position: absolute;
  background: var(--gold);
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon span:nth-child(1) {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  margin-top: -0.75px;
}

.faq-icon span:nth-child(2) {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  margin-left: -0.75px;
}

.faq-item.is-active .faq-icon span:nth-child(2) {
  transform: rotate(90deg);
}

.faq-item.is-active .faq-icon span:nth-child(1) {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s ease, opacity .5s ease, padding .5s ease;
  color: var(--cream);
  font-size: .95rem;
  line-height: 1.8;
}

.faq-item.is-active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 32px;
}

/* ── MODAL FORM ─────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 26, 18, .4);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg);
  width: min(500px, 90vw);
  padding: 56px 48px;
  position: relative;
  border: 1px solid var(--line);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.is-active .modal-card {
  transform: translateY(0);
}

@media (max-width: 500px) {
  .modal-card {
    padding: 40px 24px;
  }
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}

.modal-title {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--cream);
}

.modal-sub {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input {
  background: rgba(143, 135, 241, 0.05);
  border: 1px solid var(--line);
  padding: 14px 18px;
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--cream);
  outline: none;
  transition: border-color .3s;
}

.form-group input:focus {
  border-color: var(--gold);
}

.form-btn {
  margin-top: 12px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 18px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
}

.form-btn:hover {
  background: var(--gold-lt);
}

/* ── RESULTS CARDS ─────────────────────────────── */
.results-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  margin-top: 60px;
  align-items: start; /* This ensures cards don't stretch to fill the grid row height */
}

@media (max-width: 960px) {
  .results-cards {
    grid-template-columns: 1fr;
  }
  .result-card.card-large,
  .result-card.card-medium {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.result-card {
  background: #FFF8F5;
  border: 1px solid var(--line);
  padding: 40px 36px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}

.result-card.card-large {
  grid-column: span 1;
  grid-row: span 2;
  align-self: center; /* Vertically center the card within its two-row span */
  background: #ffffff; /* White background for the main card to make it stand out */
}

.result-card.card-medium {
  grid-column: span 1;
  grid-row: span 1;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(143, 135, 241, .12);
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.result-card:hover::before {
  opacity: 1;
}

.result-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.result-card-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.result-card-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0;
}

.result-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.result-card-list li {
  font-size: .88rem;
  color: var(--cream);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}

.result-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .7;
}

/* ── Utility Classes ────────────────────────────── */
@media (min-width: 961px) {
  .mobile-only { display: none !important; }
}

@media (max-width: 960px) {
  .desktop-only { display: none !important; }
}