/* ============================================================
   HOME.CSS — Page-specific styles for index.html
   ============================================================ */

/* ── Offset for fixed nav ─────────────────────────────────── */
main { padding-top: var(--nav-h); }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-cream);
}

/* Background decorative elements */
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero__bg-shape--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--c-green-pale) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero__bg-shape--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--c-ochre-light) 0%, transparent 70%);
  bottom: -80px; left: 10%;
}
.hero__bg-grain {
  position: absolute; 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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.025'/%3E%3C/svg%3E");
  opacity: .4;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  padding-block: var(--sp-12) var(--sp-14);
  position: relative;
  z-index: 1;
}

/* Content */
.hero__content { max-width: 560px; }
.hero__title {
  margin-block: var(--sp-4) var(--sp-6);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.hero__title em { color: var(--c-green); }
.hero__sub {
  font-size: var(--fs-md);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: var(--sp-8);
}
.hero__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}
/* First two buttons (primary CTAs) — full size */
.hero__actions .btn:nth-child(1),
.hero__actions .btn:nth-child(2) {
  flex: 1 1 auto;
}
/* Second two (secondary CTAs) — slightly smaller */
.hero__actions .btn:nth-child(3),
.hero__actions .btn:nth-child(4) {
  font-size: var(--fs-sm);
  padding: .55rem 1.1rem;
}
.hero__actions .btn-ghost {
  --c-ghost: var(--c-green);
  background: transparent;
  color: var(--c-green);
  border-color: var(--c-green);
}
.hero__actions .btn-ghost:hover {
  background: var(--c-green);
  color: var(--c-white);
}

/* Trust badges */
.hero__badges {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-border);
}
.hero__badge { display: flex; flex-direction: column; gap: 2px; }
.hero__badge-num { font-family: var(--f-display); font-size: var(--fs-xl); font-weight: 600; color: var(--c-ink); }
.hero__badge-label { font-size: var(--fs-xs); color: var(--c-ink-light); font-weight: 500; }
.hero__badge-sep { width: 1px; height: 36px; background: var(--c-border); }

/* Media */
.hero__media { display: flex; justify-content: flex-end; }
.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: visible;
}
.hero__video,
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
}
/* Show video if it loads, otherwise show img */
.hero__img { position: absolute; inset: 0; z-index: 0; }
.hero__video { position: relative; z-index: 1; }
.hero__video:not([src]) { display: none; }

/* Floating cards */
.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-white);
  border-radius: var(--r-full);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--sh-lg);
  font-size: var(--fs-sm);
  font-weight: 600;
  white-space: nowrap;
  z-index: 2;
}
.hero__float--top  { top: var(--sp-6); left: -var(--sp-8); transform: translateX(-40px); }
.hero__float--bottom { bottom: var(--sp-8); right: -var(--sp-4); transform: translateX(20px); }
.hero__float-dot {
  width: 8px; height: 8px;
  background: var(--c-green-mid);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(64,145,108,.4); }
  50%       { box-shadow: 0 0 0 6px rgba(64,145,108,0); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__scroll span {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--c-green), transparent);
  border-radius: var(--r-full);
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════════════════════
   ABOUT MINI
══════════════════════════════════════════════════════ */
.about-mini__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-mini__img-wrap { position: relative; }
.about-mini__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.about-mini__img-badge {
  position: absolute;
  bottom: -var(--sp-4);
  right: -var(--sp-4);
  background: var(--c-green);
  color: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transform: translate(16px, 16px);
}
.about-mini__img-badge span:first-child {
  font-family: var(--f-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  line-height: 1;
}
.about-mini__img-badge span:last-child { font-size: var(--fs-xs); opacity: .85; }
.about-mini__body h2 { margin-block: var(--sp-4) var(--sp-2); }
.about-mini__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-top: var(--sp-8); }

/* ══════════════════════════════════════════════════════
   METHOD
══════════════════════════════════════════════════════ */
.method__pillars { margin-top: var(--sp-8); }
.method__pillar {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  border: 1px solid var(--c-border);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.method__pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.method__pillar--featured {
  background: var(--c-green);
  border-color: var(--c-green);
}
.method__pillar--featured h3,
.method__pillar--featured p { color: var(--c-white); }
.method__pillar--featured p { opacity: .85; }
.method__pillar-icon { font-size: 2.5rem; margin-bottom: var(--sp-4); }
.method__pillar h3 { margin-bottom: var(--sp-3); }

/* ══════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}
.pricing__card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-mid) var(--ease), transform var(--t-mid) var(--ease);
}
.pricing__card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.pricing__card--featured {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-white);
  transform: scale(1.04);
  box-shadow: var(--sh-xl);
  position: relative;
}
.pricing__card--featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing__card--featured h3,
.pricing__card--featured p { color: var(--c-white); }
.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-ochre);
  color: var(--c-ink);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.pricing__name { font-size: var(--fs-sm); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--c-ink-light); margin-bottom: var(--sp-2); }
.pricing__card--featured .pricing__name { color: rgba(255,255,255,.7); }
.pricing__price { font-family: var(--f-display); font-size: var(--fs-4xl); font-weight: 400; line-height: 1; margin-bottom: var(--sp-1); }
.pricing__price-note { font-size: var(--fs-xs); color: var(--c-ink-light); margin-bottom: var(--sp-6); }
.pricing__card--featured .pricing__price-note { color: rgba(255,255,255,.6); }
.pricing__desc { font-size: var(--fs-sm); line-height: 1.7; flex: 1; margin-bottom: var(--sp-6); }
.pricing__card--featured .pricing__desc { color: rgba(255,255,255,.85); }
.pricing__cta { margin-top: auto; }
.pricing__card--featured .btn-primary {
  background: var(--c-white);
  color: var(--c-green);
}
.pricing__card--featured .btn-primary:hover {
  background: var(--c-cream);
}

/* Skeletons */
.pricing__card--skeleton,
.pricing__card--featured-skeleton {
  min-height: 360px;
  background: linear-gradient(90deg, var(--c-border) 25%, var(--c-border-light) 50%, var(--c-border) 75%);
  background-size: 200% 100%;
  animation: skeletonWave 1.5s ease infinite;
}
.pricing__card--featured-skeleton { transform: scale(1.04); }
@keyframes skeletonWave {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ══════════════════════════════════════════════════════
   SHOP HIGHLIGHT
══════════════════════════════════════════════════════ */
.shop-hl__head { margin-bottom: var(--sp-10); }
.shop-hl__head .btn-secondary { flex-shrink: 0; }
.shop-hl__grid { margin-top: 0; }

.shop-hl__card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.shop-hl__card:hover { transform: translateY(-4px); box-shadow: var(--sh-xl); }
.shop-hl__card-img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.shop-hl__card-body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.shop-hl__card-type { margin-bottom: var(--sp-2); }
.shop-hl__card-title { font-family: var(--f-display); font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.shop-hl__card-desc { font-size: var(--fs-sm); line-height: 1.65; color: var(--c-ink-light); flex: 1; }
.shop-hl__card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: var(--sp-5); padding-top: var(--sp-5); border-top: 1px solid var(--c-border); }
.shop-hl__card-price { font-family: var(--f-display); font-size: var(--fs-xl); font-weight: 600; color: var(--c-green); }

.shop-hl__skeleton { min-height: 340px; border-radius: var(--r-lg); background: linear-gradient(90deg, var(--c-border) 25%, var(--c-border-light) 50%, var(--c-border) 75%); background-size: 200% 100%; animation: skeletonWave 1.5s ease infinite; }

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════ */
.how { background: var(--c-green); }
.how .section-head p { color: rgba(255,255,255,.75); }
.how__steps {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}
.how__step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
  padding: var(--sp-6);
}
.how__step-num {
  font-family: var(--f-display);
  font-size: var(--fs-5xl);
  font-weight: 400;
  color: rgba(255,255,255,.15);
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.how__step h4 { margin-bottom: var(--sp-3); font-size: var(--fs-md); }
.how__step p  { font-size: var(--fs-sm); color: rgba(255,255,255,.7); line-height: 1.7; }
.how__step-arrow {
  font-size: var(--fs-2xl);
  color: rgba(255,255,255,.3);
  align-self: center;
  margin-top: -var(--sp-6);
}

/* ══════════════════════════════════════════════════════
   BOOK CTA
══════════════════════════════════════════════════════ */
.book-cta__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--sp-16);
  align-items: center;
}
.book-cta__body h2 { margin-block: var(--sp-4) var(--sp-2); }

.book-cta__slots {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding: var(--sp-3) var(--sp-5);
  background: var(--c-green-pale);
  border-radius: var(--r-full);
  width: fit-content;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-green);
}
.book-cta__slots-dot {
  width: 8px; height: 8px;
  background: var(--c-green-mid);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease infinite;
}

.book-cta__img-wrap { position: relative; }
.book-cta__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.book-cta__guarantee {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-white);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-full);
  box-shadow: var(--sh-md);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-green);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
  transition: opacity var(--t-mid) var(--ease);
}
.test-card {
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.test-card__stars { color: var(--c-ochre); font-size: var(--fs-md); margin-bottom: var(--sp-4); letter-spacing: 2px; }
.test-card__text { font-family: var(--f-italic); font-style: italic; font-size: var(--fs-md); line-height: 1.7; color: var(--c-ink); margin-bottom: var(--sp-5); }
.test-card__footer { display: flex; align-items: center; gap: var(--sp-3); }
.test-card__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--c-green-pale); flex-shrink: 0; }
.test-card__name { font-weight: 600; font-size: var(--fs-sm); color: var(--c-ink); }
.test-card__loc { font-size: var(--fs-xs); color: var(--c-ink-light); margin-top: 1px; }

.testimonials__controls { display: flex; align-items: center; justify-content: center; gap: var(--sp-4); }
.testimonials__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  background: var(--c-white);
  font-size: var(--fs-lg);
  color: var(--c-ink);
  transition: all var(--t-fast) var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.testimonials__btn:hover { background: var(--c-green); border-color: var(--c-green); color: var(--c-white); }
.testimonials__dots { display: flex; gap: var(--sp-2); }
.testimonials__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.testimonials__dot.active { background: var(--c-green); transform: scale(1.3); }

/* ══════════════════════════════════════════════════════
   YOUTUBE PREVIEW
══════════════════════════════════════════════════════ */
.yt-preview__grid { margin-top: 0; }
.yt-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
  text-decoration: none;
  display: block;
  color: inherit;
}
.yt-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.yt-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.yt-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-mid) var(--ease); }
.yt-card:hover .yt-card__thumb img { transform: scale(1.04); }
.yt-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.25);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}
.yt-card:hover .yt-card__play { opacity: 1; }
.yt-card__play-btn {
  width: 48px; height: 48px;
  background: var(--c-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.yt-card__body { padding: var(--sp-4); }
.yt-card__title { font-size: var(--fs-sm); font-weight: 600; line-height: 1.4; color: var(--c-ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.yt-card__date { font-size: var(--fs-xs); color: var(--c-ink-light); margin-top: var(--sp-2); }
.yt-card--skeleton { aspect-ratio: 1.2; background: linear-gradient(90deg, var(--c-border) 25%, var(--c-border-light) 50%, var(--c-border) 75%); background-size: 200% 100%; animation: skeletonWave 1.5s ease infinite; }

/* ══════════════════════════════════════════════════════
   BLOG PREVIEW
══════════════════════════════════════════════════════ */
.blog-preview__grid { margin-top: 0; }
.blog-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.blog-card__img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.blog-card__body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.blog-card__cat { margin-bottom: var(--sp-3); }
.blog-card__title { font-family: var(--f-display); font-size: var(--fs-lg); line-height: 1.3; margin-bottom: var(--sp-3); }
.blog-card__excerpt { font-size: var(--fs-sm); color: var(--c-ink-light); line-height: 1.7; flex: 1; }
.blog-card__date { font-size: var(--fs-xs); color: var(--c-ink-light); margin-top: var(--sp-4); }
.blog-card--skeleton { min-height: 320px; border-radius: var(--r-lg); background: linear-gradient(90deg, var(--c-border) 25%, var(--c-border-light) 50%, var(--c-border) 75%); background-size: 200% 100%; animation: skeletonWave 1.5s ease infinite; }

/* ══════════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════════ */
.newsletter {
  background: var(--c-green);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-16);
  align-items: center;
  position: relative;
  z-index: 1;
}
.newsletter__body h2 { margin-block: var(--sp-4) var(--sp-2); }
.newsletter__body p { color: rgba(255,255,255,.8); }

.newsletter__form { margin-top: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-4); }
.newsletter__field { display: flex; gap: var(--sp-3); }
.newsletter__input {
  flex: 1;
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  color: var(--c-white);
}
.newsletter__input::placeholder { color: rgba(255,255,255,.55); }
.newsletter__input:focus { border-color: rgba(255,255,255,.8); box-shadow: 0 0 0 3px rgba(255,255,255,.15); }

/* Interest tags */
.newsletter__interests-label { font-size: var(--fs-sm); font-weight: 500; color: rgba(255,255,255,.75); margin-bottom: var(--sp-3); }
.newsletter__tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.nl-tag {
  display: flex; align-items: center;
  cursor: pointer;
}
.nl-tag input[type="checkbox"] { display: none; }
.nl-tag span {
  padding: 6px 14px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: all var(--t-fast) var(--ease);
}
.nl-tag input:checked + span {
  background: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-green);
}
.nl-tag:hover span {
  border-color: rgba(255,255,255,.7);
  color: var(--c-white);
}

.newsletter__submit { width: fit-content; }
.newsletter__submit.loading { opacity: .7; pointer-events: none; }
.newsletter__legal { font-size: var(--fs-xs); color: rgba(255,255,255,.5); }
.newsletter__legal a { color: rgba(255,255,255,.7); text-decoration: underline; }

/* Success */
.newsletter__success { text-align: center; padding: var(--sp-10) 0; }
.newsletter__success-icon { font-size: 3rem; background: rgba(255,255,255,.15); width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--sp-5); font-size: var(--fs-2xl); }
.newsletter__success h3 { margin-bottom: var(--sp-4); }

/* PDF preview */
.newsletter__pdf { position: relative; }
.newsletter__pdf-img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  transform: rotate(2deg);
  transition: transform var(--t-mid) var(--ease);
}
.newsletter:hover .newsletter__pdf-img { transform: rotate(0deg) scale(1.02); }
.newsletter__pdf-badge {
  position: absolute;
  top: -var(--sp-3);
  right: -var(--sp-3);
  background: var(--c-ochre);
  color: var(--c-ink);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  transform: rotate(-6deg);
  box-shadow: var(--sh-md);
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--c-ink);
  color: var(--c-white);
}
.footer__inner {
  padding-block: var(--sp-16) var(--sp-12);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-16);
}
.footer__logo { font-family: var(--f-display); font-size: var(--fs-xl); display: block; margin-bottom: var(--sp-3); }
.footer__brand p { color: rgba(255,255,255,.5); font-size: var(--fs-sm); line-height: 1.65; margin-bottom: var(--sp-5); }
.footer__social { display: flex; gap: var(--sp-4); }
.footer__social a { color: rgba(255,255,255,.4); transition: color var(--t-fast) var(--ease); }
.footer__social a:hover { color: var(--c-white); }

.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
.footer__col { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__col h5 { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: var(--sp-2); }
.footer__col a { font-size: var(--fs-sm); color: rgba(255,255,255,.6); transition: color var(--t-fast) var(--ease); }
.footer__col a:hover { color: var(--c-white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: var(--sp-6);
}
.footer__bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-4); }
.footer__bottom p { font-size: var(--fs-xs); color: rgba(255,255,255,.35); }
.footer__legal { display: flex; gap: var(--sp-6); }
.footer__legal a { font-size: var(--fs-xs); color: rgba(255,255,255,.35); transition: color var(--t-fast) var(--ease); }
.footer__legal a:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner       { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero__media       { justify-content: center; }
  .hero__img-wrap    { max-width: 360px; }
  .about-mini__inner { grid-template-columns: 1fr; }
  .about-mini__img-wrap { max-width: 400px; }
  .book-cta__inner   { grid-template-columns: 1fr; }
  .book-cta__img-wrap { display: none; }
  .newsletter__inner { grid-template-columns: 1fr; }
  .newsletter__pdf   { display: none; }
  .footer__inner     { grid-template-columns: 1fr; gap: var(--sp-10); }
}
@media (max-width: 768px) {
  .pricing__grid     { grid-template-columns: 1fr; }
  .pricing__card--featured { transform: none; }
  .testimonials__track { grid-template-columns: 1fr; }
  .how__step-arrow   { display: none; }
  .footer__links     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero__badges      { flex-wrap: wrap; gap: var(--sp-4); }
  .hero__badge-sep   { display: none; }
  .footer__links     { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; align-items: flex-start; }
}
