/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:          #080808;
  --s1:          #111111;
  --s2:          #181818;
  --s3:          #222222;
  --gold:        #c9a96e;
  --gold-dim:    rgba(201,169,110,.15);
  --gold-glow:   rgba(201,169,110,.08);
  --text:        #f0ebe3;
  --text-dim:    #6e6861;
  --text-mid:    #a09890;
  --border:      rgba(201,169,110,.12);
  --radius:      4px;
  --r-card:      8px;

  --dur-fast:    150ms;
  --dur-mid:     320ms;
  --dur-slow:    600ms;
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.4,0,.2,1);

  --font-display: 'Spectral', Georgia, serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, .95rem + .25vw, 1.0625rem);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.t-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.t-label {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-body-lg { font-size: clamp(1.05rem, 1rem + .25vw, 1.2rem); line-height: 1.7; }

/* ─── LAYOUT ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}
.section { padding: clamp(5rem, 10vw, 9rem) 0; }

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

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--dur-mid) var(--ease-in-out),
              border-color var(--dur-mid) var(--ease-in-out);
}
.nav.scrolled {
  background: rgba(8,8,8,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
  letter-spacing: -.01em;
  color: var(--text);
}
.nav__logo span { color: var(--gold); font-weight: 300; font-style: normal; }
.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  font-size: .85rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: color var(--dur-fast);
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: .5rem 1.25rem;
  border-radius: var(--radius);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nav__cta:hover { background: var(--gold); color: var(--bg); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: transform var(--dur-mid), opacity var(--dur-mid); }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,169,110,.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,169,110,.04) 0%, transparent 55%);
  pointer-events: none;
}
.hero__grid-line {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero__headline {
  font-size: clamp(3rem, 2rem + 3.5vw, 5.5rem);
  margin-bottom: 1.75rem;
  color: var(--text);
}
.hero__headline em {
  color: var(--gold);
  font-style: italic;
}
.hero__sub {
  font-size: clamp(1rem, .9rem + .5vw, 1.15rem);
  color: var(--text-mid);
  max-width: 42ch;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: .78rem;
  color: var(--text-dim);
  margin-top: .25rem;
  letter-spacing: .04em;
}
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__card-stack {
  position: relative;
  width: 320px;
  height: 380px;
}
.hero__card {
  position: absolute;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  width: 260px;
  transition: transform var(--dur-slow) var(--ease-out);
}
.hero__card:nth-child(1) { top: 0; right: 0; transform: rotate(5deg); z-index: 1; }
.hero__card:nth-child(2) { top: 40px; right: 20px; transform: rotate(2deg); z-index: 2; }
.hero__card:nth-child(3) { top: 80px; right: 40px; transform: rotate(0deg); z-index: 3; background: var(--s2); }
.hero__card-icon {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.hero__card-title { font-size: .9rem; font-weight: 500; margin-bottom: .25rem; }
.hero__card-sub { font-size: .75rem; color: var(--text-dim); }
.hero__card-bar {
  margin-top: 1rem;
  height: 4px;
  background: var(--s3);
  border-radius: 2px;
  overflow: hidden;
}
.hero__card-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #e8c887);
  border-radius: 2px;
  animation: barFill 2.5s var(--ease-out) 1s both;
}
@keyframes barFill { from { width: 0 } to { width: 78% } }
.hero__card-bar-fill.w90 { animation-name: barFill90; }
@keyframes barFill90 { from { width: 0 } to { width: 90% } }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  font-size: .9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.05);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.btn:hover::after { opacity: 1; }
.btn--primary {
  background: var(--gold);
  color: #0a0802;
  font-weight: 600;
}
.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(201,169,110,.35);
  transform: translateY(-1px);
}
.btn--ghost {
  color: var(--text-mid);
  border: 1px solid var(--border);
}
.btn--ghost:hover { color: var(--text); border-color: rgba(201,169,110,.35); }

/* ─── SECTION HEADER ─────────────────────────────────── */
.section-header { margin-bottom: clamp(3rem, 5vw, 5rem); }
.section-header--center { text-align: center; }
.section-header--center .section-header__desc { margin-left: auto; margin-right: auto; }
.section-header__label { margin-bottom: .75rem; }
.section-header__title {
  font-size: clamp(2.25rem, 1.75rem + 2vw, 3.75rem);
  margin-bottom: 1rem;
}
.section-header__desc {
  color: var(--text-mid);
  max-width: 52ch;
  line-height: 1.7;
}

/* ─── SERVICES ───────────────────────────────────────── */
.services { background: var(--bg); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
}
.service-card {
  background: var(--s1);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background var(--dur-mid);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), var(--gold-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-mid);
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--s2); }
.service-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .875rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.service-card__icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  transition: transform var(--dur-mid) var(--ease-out);
}
.service-card:hover .service-card__icon { transform: scale(1.08); }
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: .75rem;
}
.service-card__desc { color: var(--text-dim); font-size: .9rem; line-height: 1.65; margin-bottom: 1.5rem; }
.service-card__tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: .25rem .65rem;
  border-radius: 2px;
  background: var(--s3);
  color: var(--text-mid);
  border: 1px solid transparent;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.service-card:hover .tag { border-color: var(--gold-dim); color: var(--text); }
.service-card__link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .04em;
  transition: opacity var(--dur-fast);
}
.service-card__link:hover { opacity: .7; }

/* ─── PROCESS ────────────────────────────────────────── */
.process { background: var(--s1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.process-step { position: relative; }
.process-step__dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.process-step__num {
  position: absolute;
  top: -6px; right: -6px;
  width: 20px; height: 20px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.process-step__title { font-weight: 600; font-size: 1rem; margin-bottom: .4rem; }
.process-step__desc { font-size: .85rem; color: var(--text-dim); line-height: 1.6; }

/* ─── WORK / PORTFOLIO ───────────────────────────────── */
.work { background: var(--bg); }
.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
}
.work-item {
  background: var(--s1);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--dur-mid);
  position: relative;
  overflow: hidden;
}
.work-item:hover { background: var(--s2); }
.work-item--wide  { grid-column: span 7; }
.work-item--right { grid-column: span 5; }
.work-item--full  { grid-column: span 12; }
.work-item--half  { grid-column: span 6; }
.work-item__emoji { font-size: 2rem; line-height: 1; }
.work-item__cat   { font-size: .7rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }
.work-item__title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; font-style: italic; }
.work-item__desc  { color: var(--text-dim); font-size: .9rem; line-height: 1.65; flex: 1; }
.work-item__tags  { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: auto; }
.work-item__arrow {
  position: absolute;
  bottom: 1.75rem; right: 1.75rem;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--text-dim);
  transform: rotate(-45deg);
  transition: transform var(--dur-mid) var(--ease-out), border-color var(--dur-mid), color var(--dur-mid);
}
.work-item:hover .work-item__arrow {
  transform: rotate(0deg);
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── DIFFERENTIATORS ────────────────────────────────── */
.why { background: var(--s1); border-top: 1px solid var(--border); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why__list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.why__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--r-card);
  transition: border-color var(--dur-mid), background var(--dur-mid);
}
.why__item:hover { border-color: var(--border); background: var(--s2); }
.why__item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.why__item-title { font-weight: 600; font-size: .95rem; margin-bottom: .25rem; }
.why__item-desc { color: var(--text-dim); font-size: .85rem; line-height: 1.6; }
.why__visual {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why__visual-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; font-style: italic; color: var(--gold); }
.why__stat-row { display: flex; flex-direction: column; gap: .75rem; }
.why__bar-item { display: flex; flex-direction: column; gap: .35rem; }
.why__bar-label { font-size: .8rem; color: var(--text-mid); display: flex; justify-content: space-between; }
.why__bar-track { height: 6px; background: var(--s3); border-radius: 3px; overflow: hidden; }
.why__bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), #e8c887);
  transition: width 1.2s var(--ease-out);
  width: 0;
}
.why__bar-fill.animated { width: var(--w); }

/* ─── CTA SECTION ────────────────────────────────────── */
.cta-section {
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-section__inner {
  max-width: 640px;
  margin: 0 auto;
}
.cta-section__title { font-size: clamp(2.5rem, 2rem + 2.5vw, 4.5rem); margin-bottom: 1.25rem; }
.cta-section__sub { color: var(--text-mid); margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-section__contact {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--s1);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
}
.footer__logo span { color: var(--gold); font-weight: 300; font-style: normal; }
.footer__copy { font-size: .78rem; color: var(--text-dim); }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { font-size: .8rem; color: var(--text-dim); transition: color var(--dur-fast); }
.footer__links a:hover { color: var(--gold); }

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ─── MOBILE NAV ─────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,.97);
    backdrop-filter: blur(24px);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav__links.open a { font-size: 1.5rem; color: var(--text); }
  .nav__hamburger { display: flex; z-index: 101; }
  .nav__cta { display: none; }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__stats { gap: 1.25rem; }
  .why__grid { grid-template-columns: 1fr; }
  .why__visual { order: -1; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .pricing__cols { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .work-item--wide,
  .work-item--right,
  .work-item--half { grid-column: span 12; }
  .process__steps::before { display: none; }
  .price-row { flex-direction: column; align-items: flex-start; gap: .375rem; }
  .price-row__price { align-self: flex-end; }
  .wa-float__btn { bottom: 1.25rem; right: 1.25rem; }
}

/* ─── PAIN / AGITATION ──────────────────────────────── */
.pain { background: var(--s1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pain__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}
.pain__title { font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem); }
.pain__right { display: flex; flex-direction: column; gap: 2rem; }
.pain__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.pain__icon { font-size: 1.5rem; line-height: 1.2; flex-shrink: 0; }
.pain__item strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .35rem;
}
.pain__item p { font-size: .88rem; line-height: 1.7; color: var(--text-dim); margin: 0; }
@media (max-width: 900px) {
  .pain__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials { background: var(--bg); border-top: 1px solid var(--border); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tcard {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--dur-mid);
}
.tcard:hover { border-color: var(--gold-dim); }
.tcard__quote {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: .75;
  color: var(--gold);
  opacity: .4;
}
.tcard__text {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-mid);
  flex: 1;
}
.tcard__author {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.tcard__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tcard__name { font-size: .875rem; font-weight: 600; }
.tcard__role { font-size: .75rem; color: var(--text-dim); }
.tcard__result {
  margin-left: auto;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-dim);
  padding: .25rem .625rem;
  border-radius: 99px;
  white-space: nowrap;
}

/* ─── PRICING ────────────────────────────────────────── */
.pricing { background: var(--s1); border-top: 1px solid var(--border); }
.pricing__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.pricing__col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 2rem;
}
.pricing__col-title {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-row--gold .price-row__name { color: var(--gold); }
.price-row__info { display: flex; flex-direction: column; gap: .25rem; }
.price-row__name { font-size: .925rem; font-weight: 600; }
.price-row__sub { font-size: .78rem; color: var(--text-dim); line-height: 1.4; }
.price-row__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}
.price-row__price span { color: var(--gold); font-size: 1rem; }
.price-row__price small {
  display: block;
  font-size: .72rem;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-weight: 400;
}
.pricing__note {
  text-align: center;
  color: var(--text-dim);
  font-size: .875rem;
  margin-top: 2.5rem;
}
.pricing__note a { color: var(--gold); text-decoration: none; }
.pricing__note a:hover { text-decoration: underline; }

/* ─── FLOATING WHATSAPP ──────────────────────────────── */
.wa-float__btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: .625rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: .875rem 1.25rem;
  border-radius: 99px;
  font-size: .875rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
  white-space: nowrap;
}
.wa-float__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.48);
}
.wa-float__icon { font-size: 1.15rem; line-height: 1; }
.wa-float__label { display: none; }
@media (min-width: 640px) { .wa-float__label { display: inline; } }

/* ─── MAGNETIC CURSOR ────────────────────────────────── */
.magnetic { transition: transform var(--dur-mid) var(--ease-out); }
