/* ═══════════════════════════════════════════════════════
   SANTICLINIC — MOUNJARO EBOOK LANDING PAGE
   Aesthetic: Luxury Medical · Warm Cream & Forest Green
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --cream:      #f5f0e8;
  --cream-dark: #ede5d5;
  --green:      #2d5a3d;
  --green-mid:  #3d7a54;
  --green-light:#5a9e70;
  --gold:       #c8965a;
  --gold-light: #e2b97e;
  --dark:       #1a1a18;
  --mid:        #4a4a40;
  --muted:      #8a8878;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 4px;
  --radius-lg: 12px;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── UTILITY ─────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.label--center { text-align: center; }
.label--light  { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
}
.section-title em { font-style: italic; color: var(--green); }
.section-title--center { text-align: center; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-out);
}
.btn--primary {
  background: var(--green);
  color: #fff;
}
.btn--primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45,90,61,0.25);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid transparent;
  padding-left: 0;
}
.btn--ghost:hover { color: var(--gold-light); }
.btn--large {
  padding: 18px 48px;
  font-size: 0.9rem;
}
.btn--full { width: 100%; justify-content: center; }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  background: rgba(26, 44, 33, 0.85);
  backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(29, 47, 35, 0.97);
  padding: 10px 48px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.nav__logo-s {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: linear-gradient(145deg, #1d2f23 0%, #2d5a3d 45%, #1a3528 100%);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero__noise {
  position: absolute;
  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='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,90,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,158,112,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ── HERO GRID (desktop) ─────────────────────────────── */
.hero__content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 32px 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 120px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero__text {
  grid-column: 1;
  grid-row: 1;
}

.hero__book {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.8s forwards;
}

.hero__bottom {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.35s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__title strong {
  font-weight: 600;
  color: #fff;
  display: block;
}

.hero__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.75);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero__ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(200,150,90,0.6));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── BOOK MOCKUP ─────────────────────────────────────── */
.book-mockup {
  position: relative;
  width: 340px;
  height: 460px;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.4));
  transform: perspective(800px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.6s var(--ease-out);
}
.book-mockup:hover {
  transform: perspective(800px) rotateY(-4deg) rotateX(1deg) translateY(-8px);
}
.book-mockup__spine {
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 28px;
  background: linear-gradient(to right, #1a3528, #2d5a3d);
  border-radius: 2px 0 0 2px;
  box-shadow: inset -2px 0 6px rgba(0,0,0,0.3);
}
.book-mockup__cover {
  position: absolute;
  left: 28px;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(160deg, #f5f0e8 0%, #ede5d5 100%);
  border-radius: 0 4px 4px 0;
  overflow: hidden;
}
.book-mockup__cover--image {
  padding: 0;
}
.book-mockup__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0 4px 4px 0;
  display: block;
}

/* ── TRUST BAR ───────────────────────────────────────── */
/* ── TRUST BAR ───────────────────────────────────────── */
.trust-bar {
  background: linear-gradient(135deg, #1d2f23 0%, #2d5a3d 100%);
  padding: 32px 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.trust-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 200px;
}
.trust-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(200,150,90,0.12);
  border: 1px solid rgba(200,150,90,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.trust-item:hover .trust-item__icon {
  background: rgba(200,150,90,0.22);
  transform: translateY(-2px);
}
.trust-item__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-light);
  flex-shrink: 0;
}
.trust-item__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-item__text strong {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(245,240,232,0.95);
  letter-spacing: 0.02em;
}
.trust-item__text span {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.03em;
}
.trust-item__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .trust-bar { padding: 28px 24px; }
  .trust-item__divider { display: none; }
  .trust-bar__inner {
    gap: 20px;
    justify-content: center;
  }
  .trust-item {
    min-width: 160px;
    max-width: 220px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .trust-item__text {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .trust-bar { padding: 32px 20px; }
  .trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    justify-items: center;
  }
  .trust-item {
    min-width: unset;
    max-width: unset;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .trust-item__icon {
    width: 44px;
    height: 44px;
  }
  .trust-item__text strong { font-size: 0.82rem; }
  .trust-item__text span   { font-size: 0.72rem; }
}

/* ── ABOUT ───────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__right p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 16px;
}
.about__right p strong { color: var(--green); }

/* ── INSIDE ───────────────────────────────────────────── */
.inside {
  padding: 120px 0;
  background: #f0ebe0;
}
.inside__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: rgba(45,90,61,0.08);
  border: 1px solid rgba(45,90,61,0.08);
}
.inside__card {
  background: var(--cream);
  padding: 40px 36px;
  transition: background 0.3s ease;
}
.inside__card:hover { background: #fff; }
.inside__card-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(45,90,61,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.inside__card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 12px;
}
.inside__card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--mid);
}

/* ── AUTHOR ──────────────────────────────────────────── */
.author {
  padding: 120px 0;
  background: var(--cream);
}
.author__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}
.author__avatar {
  display: flex;
  justify-content: center;
}
.author__avatar-ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  padding: 6px;
  flex-shrink: 0;
}
.author__avatar-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.author__specialty {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 500;
}
.author__bio p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 24px;
}
.author__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--green);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-top: 8px;
}

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: #f0ebe0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.tcard {
  background: var(--cream);
  border: 1px solid rgba(45,90,61,0.1);
  padding: 40px 32px;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(45,90,61,0.08);
}
.tcard__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.tcard p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--mid);
  font-style: italic;
  margin-bottom: 28px;
}
.tcard__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tcard__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.tcard__author strong { display: block; font-size: 0.88rem; color: var(--dark); }
.tcard__author span   { font-size: 0.78rem; color: var(--muted); }

/* ── PRICING ─────────────────────────────────────────── */
.pricing {
  padding: 120px 0;
  background: linear-gradient(160deg, #1d2f23 0%, #2d5a3d 100%);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,90,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.pricing__card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.pricing__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 48px;
  line-height: 1.2;
}
.pricing__title em { font-style: italic; color: var(--gold-light); }
.pricing__list {
  list-style: none;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing__list li {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}
.pricing__price-old {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: rgba(245,240,232,0.35);
  text-decoration: line-through;
}
.pricing__price-now {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.pricing__note {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.5);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.pricing__secure {
  margin-top: 24px;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.05em;
}

/* ── MODAL ───────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.open {
  opacity: 1;
  pointer-events: all;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,26,24,0.75);
  backdrop-filter: blur(4px);
}
.modal__box {
  position: relative;
  z-index: 2;
  background: var(--cream);
  padding: 56px 48px;
  width: min(90vw, 480px);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out);
}
.modal.open .modal__box { transform: translateY(0); }
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 1.1rem;
  padding: 4px 8px;
  transition: color 0.2s ease;
}
.modal__close:hover { color: var(--dark); }
.modal__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 32px;
  line-height: 1.2;
}
.modal__form { display: flex; flex-direction: column; gap: 20px; }
.form-group  { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.form-group input {
  padding: 14px 16px;
  border: 1px solid rgba(45,90,61,0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,90,61,0.08);
}
.form-group input::placeholder { color: var(--muted); }
.modal__privacy {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}
.modal__success { text-align: center; padding: 16px 0; }
.modal__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.modal__success h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 12px;
}
.modal__success p { font-size: 0.95rem; color: var(--mid); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 64px 0 40px;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__brand {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  color: rgba(245,240,232,0.6);
}
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245,240,232,0.4);
}
.footer__bottom { display: flex; flex-direction: column; gap: 12px; }
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.3);
  line-height: 1.6;
}
.footer__disclaimer { max-width: 640px; }

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 0.8; transform: scaleY(1); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SCROLL TO TOP ───────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(45,90,61,0.35);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.4s var(--ease-out),
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover {
  background: var(--green-mid);
  box-shadow: 0 12px 32px rgba(45,90,61,0.45);
  transform: translateY(-3px);
}
.scroll-top:active { transform: translateY(0); }
.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── RESPONSIVE · 900px ──────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 12px 24px; }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px 100px;
    gap: 32px;
    text-align: center;
  }
  .hero__text   { order: 0; width: 100%; }
  .hero__book   { order: 1; width: 100%; display: flex; justify-content: center; }
  .hero__bottom { order: 2; width: 100%; text-align: center; }

  .hero__sub  { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }

  .book-mockup {
    width: 200px;
    height: 280px;
  }

  .about__grid        { grid-template-columns: 1fr; gap: 40px; }
  .inside__grid       { grid-template-columns: 1fr 1fr; }
  .author__grid       { grid-template-columns: 1fr; text-align: center; }
  .author__quote      { text-align: left; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .trust-bar__inner   { justify-content: center; }

  .author__avatar-ring {
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }
}

/* ── RESPONSIVE · 600px ──────────────────────────────── */
@media (max-width: 600px) {
  .inside__grid { grid-template-columns: 1fr; }
  .modal__box   { padding: 40px 24px; }
  .hero__title  { font-size: 2.2rem; }

  .book-mockup {
    width: 160px;
    height: 224px;
  }

  .scroll-top {
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
  }

  .trust-bar { padding: 18px 24px; }
  .author__avatar-ring {
    width: 200px;
    height: 200px;
  }
}



/* ── FOOTER LEGAL LINKS ──────────────────────────────── */
.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.footer__logo-img:hover { opacity: 1; }

.footer__middle {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__middle a {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.footer__middle a:hover { color: var(--gold-light); }
.footer__middle span   { color: rgba(255,255,255,0.15); }

/* ── MODAL CHECKBOX ──────────────────────────────────── */
.form-group--checkbox { margin-top: 4px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--green);
  cursor: pointer;
  margin-top: 2px;
  border: 1px solid rgba(45,90,61,0.3);
  border-radius: 2px;
}
.checkbox-label span {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--mid);
}
.checkbox-label span a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.checkbox-label span a:hover { color: var(--green-mid); }




/* ── NAV CTA BUTTON ──────────────────────────────────── */
.btn--nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(200,150,90,0.45);
  background: rgba(200,150,90,0.06);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s var(--ease-out);
}

/* shimmer sweep on hover */
.btn--nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200,150,90,0.15) 50%,
    transparent 100%
  );
  transition: left 0.5s ease;
}
.btn--nav-cta:hover::before {
  left: 100%;
}

.btn--nav-cta:hover {
  color: #fff;
  border-color: rgba(200,150,90,0.9);
  background: rgba(200,150,90,0.12);
  box-shadow:
    0 0 16px rgba(200,150,90,0.2),
    0 0 32px rgba(200,150,90,0.08);
  transform: translateY(-1px);
}

.btn--nav-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}

.btn--nav-cta:hover svg {
  transform: translateX(3px);
}

.btn--nav-cta__text {
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .btn--nav-cta {
    padding: 9px 16px;
    font-size: 0.72rem;
    gap: 6px;
  }
  .btn--nav-cta svg {
    width: 12px;
    height: 12px;
  }
}






/* ── HERO CTA BUTTON ─────────────────────────────────── */
.btn--hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease;
  box-shadow:
    0 4px 20px rgba(200,150,90,0.3),
    0 1px 0 rgba(255,255,255,0.15) inset;
}

/* pulse ring animation */
.btn--hero-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 3px;
  box-shadow: 0 0 0 0 rgba(200,150,90,0.4);
  animation: heroPulse 2.5s ease-out infinite;
}

.btn--hero-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 36px rgba(200,150,90,0.4),
    0 1px 0 rgba(255,255,255,0.15) inset;
}

.btn--hero-cta svg {
  width: 16px;
  height: 16px;
  stroke: var(--dark);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.btn--hero-cta:hover svg {
  transform: translateX(4px);
}

@keyframes heroPulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,150,90,0.4); }
  70%  { box-shadow: 0 0 0 12px rgba(200,150,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,150,90,0); }
}

/* ── PRICING CTA BUTTON ──────────────────────────────── */
.btn--pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 40px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  background: linear-gradient(
    135deg,
    #e8c47a 0%,
    var(--gold-light) 40%,
    var(--gold) 100%
  );
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease;
  box-shadow:
    0 8px 32px rgba(200,150,90,0.35),
    0 1px 0 rgba(255,255,255,0.2) inset;
}

/* shimmer sweep */
.btn--pricing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  animation: pricingShimmer 3s ease-in-out infinite;
}

@keyframes pricingShimmer {
  0%   { left: -60%; }
  50%  { left: 120%; }
  100% { left: 120%; }
}

.btn--pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 48px rgba(200,150,90,0.45),
    0 1px 0 rgba(255,255,255,0.2) inset;
}

.btn--pricing-cta__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.btn--pricing-cta__inner svg {
  width: 18px;
  height: 18px;
  stroke: var(--dark);
  flex-shrink: 0;
}

.btn--pricing-cta__arrow {
  width: 18px;
  height: 18px;
  stroke: var(--dark);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease-out);
}
.btn--pricing-cta:hover .btn--pricing-cta__arrow {
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .btn--hero-cta {
    padding: 14px 28px;
    font-size: 0.8rem;
  }
  .btn--pricing-cta {
    padding: 18px 28px;
    font-size: 0.82rem;
  }
}