/* ============================================
   STYLE.CSS — Inkwell & Crest Publishing
   Luxury publishing agency — design system
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette */
  --color-primary: #B30000;
  --color-primary-deep: #8B0000;
  --color-secondary: #E63946;
  --color-accent: #FF5A5F;
  --color-dark: #111111;
  --color-ink: #1a1a1a;
  --color-bg: #FAFAFA;
  --color-white: #FFFFFF;
  --color-muted: #6b6b6b;
  --color-line: rgba(17, 17, 17, 0.08);
  --color-line-strong: rgba(17, 17, 17, 0.14);
  --color-cream: #fdf6f4;
  --color-soft: #fff5f5;

  /* Gradients */
  --gradient: linear-gradient(135deg, #8B0000 0%, #E63946 100%);
  --gradient-soft: linear-gradient(135deg, rgba(179, 0, 0, 0.08), rgba(230, 57, 70, 0.08));
  --gradient-accent: linear-gradient(135deg, #E63946 0%, #FF5A5F 100%);
  --gradient-dark: linear-gradient(160deg, #111111 0%, #2a0a0a 60%, #4a0e0e 100%);
  --gradient-text: linear-gradient(120deg, #8B0000, #E63946, #FF5A5F);

  /* Typography */
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 12px 34px rgba(17, 17, 17, 0.09);
  --shadow-lg: 0 24px 60px rgba(17, 17, 17, 0.12);
  --shadow-red: 0 18px 48px rgba(179, 0, 0, 0.22);
  --shadow-glow: 0 0 40px rgba(230, 57, 70, 0.35);
  --shadow-inner: inset 0 2px 6px rgba(17, 17, 17, 0.08);

  /* Layout */
  --container: 1280px;
  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

::selection { background: var(--color-secondary); color: #fff; }

/* ---------- Custom scrollbar ---------- */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #f0eaea; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
  border-radius: 10px;
  border: 2px solid #f0eaea;
}
::-webkit-scrollbar-thumb:hover { background: var(--color-primary-deep); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); }
h4 { font-size: 1.2rem; }
p { color: #444; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: var(--color-soft);
  border: 1px solid rgba(230, 57, 70, 0.18);
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.15);
}

.lead { font-size: 1.12rem; color: #555; line-height: 1.75; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; padding: 90px 0; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow { display: block; width: fit-content; margin: 0 auto 16px; }
.section-head h2 { display: block; width: fit-content; margin: 0 auto 14px; }
.section-head p { font-size: 1.05rem; color: #555; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 32px;
  border-radius: var(--r-pill);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.3s ease;
  white-space: nowrap;
  isolation: isolate;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E63946, #FF5A5F);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 54px rgba(230, 57, 70, 0.4); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-ink);
  border: 1.5px solid var(--color-line-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: rippleEffect 0.65s linear;
  pointer-events: none;
}
@keyframes rippleEffect { to { transform: scale(4); opacity: 0; } }

/* Magnetic pulse for primary CTA */
.btn-pulse { animation: pulseGlow 2.6s ease-out infinite; }

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.16), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9990;
  transition: opacity 0.4s ease;
  mix-blend-mode: multiply;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient);
  z-index: 9999;
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.7);
  transition: width 0.1s linear;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader__book {
  width: 70px; height: 54px;
  position: relative;
  perspective: 200px;
}
.preloader__book::before,
.preloader__book::after {
  content: "";
  position: absolute;
  top: 0; width: 50%; height: 100%;
  border: 2.5px solid var(--color-primary);
  background: #fff;
}
.preloader__book::before { left: 0; border-right: none; border-radius: 4px 0 0 4px; animation: pageFlip 1.2s ease-in-out infinite; transform-origin: right; }
.preloader__book::after { right: 0; border-left: none; border-radius: 0 4px 4px 0; }
.preloader__txt {
  position: absolute;
  bottom: 38%;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--color-primary);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s var(--ease);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}
.nav.scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 8px 30px rgba(17, 17, 17, 0.07);
  border-bottom: 1px solid var(--color-line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  color: var(--color-ink);
  min-width: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.05); }
.brand__mark svg { width: 44px; height: 44px; }
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.brand__name {
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--color-ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand__sub {
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--color-primary);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  color: #444;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 4px;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
  border-radius: 2px;
}
.nav__link:hover { color: var(--color-primary); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.active { color: var(--color-primary); }
.nav__link.active::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav__toggle {
  display: none;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gradient-dark);
  box-shadow: 0 8px 20px rgba(17,17,17,0.18);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.nav__toggle::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav__toggle:hover::before { opacity: 1; }
.nav__toggle:hover { transform: scale(1.05); box-shadow: var(--shadow-red); }
.nav__toggle span {
  width: 22px; height: 2.5px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.4s var(--ease-bounce);
  position: relative;
  z-index: 1;
}
.nav__toggle span:nth-child(1) { width: 16px; }
.nav__toggle span:nth-child(3) { width: 18px; }
.nav__toggle.active span:nth-child(1) { width: 22px; transform: translateY(8.5px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.active span:nth-child(3) { width: 22px; transform: translateY(-8.5px) rotate(-45deg); }

/* ============================================
   MOBILE MENU — Futuristic full-screen overlay
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  height: 100dvh;
  background: #0d0d0d;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
  overflow-x: hidden;
  color: #fff;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.mobile-menu__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}
.mobile-menu__blob--1 {
  width: 300px; height: 300px;
  top: -80px; right: -80px;
  background: radial-gradient(circle, rgba(230,57,70,0.7), transparent 70%);
  animation: orbDrift 14s ease-in-out infinite;
}
.mobile-menu__blob--2 {
  width: 360px; height: 360px;
  bottom: -100px; left: -120px;
  background: radial-gradient(circle, rgba(139,0,0,0.6), transparent 70%);
  animation: orbDrift 18s ease-in-out infinite reverse;
}
.mobile-menu__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.mobile-menu__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 26px 28px 36px;
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}
.mobile-menu__label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu__label::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}
.mobile-menu__close {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  color: #fff;
  transition: all 0.3s var(--ease);
}
.mobile-menu__close svg { width: 20px; height: 20px; }
.mobile-menu__close:hover {
  background: var(--gradient);
  border-color: transparent;
  transform: rotate(90deg) scale(1.05);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 8px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.32rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: all 0.35s var(--ease);
  opacity: 0;
  transform: translateX(30px);
}
.mobile-menu.open .mobile-menu__link {
  animation: mobileLinkIn 0.5s var(--ease) forwards;
}
.mobile-menu.open .mobile-menu__link:nth-child(1) { animation-delay: 0.12s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { animation-delay: 0.17s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { animation-delay: 0.22s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { animation-delay: 0.27s; }
.mobile-menu.open .mobile-menu__link:nth-child(5) { animation-delay: 0.32s; }
.mobile-menu.open .mobile-menu__link:nth-child(6) { animation-delay: 0.37s; }
.mobile-menu.open .mobile-menu__link:nth-child(7) { animation-delay: 0.42s; }
.mobile-menu.open .mobile-menu__link:nth-child(8) { animation-delay: 0.47s; }
@keyframes mobileLinkIn {
  to { opacity: 1; transform: translateX(0); }
}
.mobile-menu__link-num {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  min-width: 24px;
}
.mobile-menu__link-text { flex: 1; }
.mobile-menu__link svg {
  width: 20px; height: 20px;
  color: rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  transform: translateX(-6px);
  opacity: 0;
}
.mobile-menu__link::before {
  content: "";
  position: absolute;
  left: -28px; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 0;
  background: var(--gradient);
  border-radius: 0 3px 3px 0;
  transition: height 0.35s var(--ease);
}
.mobile-menu__link:hover,
.mobile-menu__link:active {
  color: #fff;
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(230,57,70,0.12), transparent);
}
.mobile-menu__link:hover::before,
.mobile-menu__link:active::before { height: 60%; }
.mobile-menu__link:hover svg,
.mobile-menu__link:active svg {
  color: var(--color-accent);
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu__footer {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu__cta {
  width: 100%;
  margin-bottom: 18px;
  justify-content: center;
}
.mobile-menu__contact {
  display: flex;
  gap: 10px;
}
.mobile-menu__contact-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  transition: all 0.3s var(--ease);
}
.mobile-menu__contact-item svg { width: 16px; height: 16px; }
.mobile-menu__contact-item:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  transform: translateY(-2px);
}
.mobile-menu__contact-item--wa { color: #25D366; border-color: rgba(37,211,102,0.3); }
.mobile-menu__contact-item--wa:hover { background: rgba(37,211,102,0.15); }

.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.7);
  backdrop-filter: blur(8px);
  z-index: 1050;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 50px) 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #fff5f5 0%, #FAFAFA 45%, #fff 100%);
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
/* animated mesh */
.hero__mesh {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(179, 0, 0, 0.1), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(255, 90, 95, 0.07), transparent 55%);
  animation: gradientShift 14s ease infinite;
  background-size: 200% 200%;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(179,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  animation: gridPan 18s linear infinite;
}
/* blobs */
.blob {
  position: absolute;
  filter: blur(8px);
  opacity: 0.55;
}
.blob--1 {
  width: 320px; height: 320px;
  top: 8%; left: -6%;
  background: radial-gradient(circle, rgba(230,57,70,0.4), transparent 70%);
  animation: blobMorph 16s ease-in-out infinite, orbDrift 22s ease-in-out infinite;
}
.blob--2 {
  width: 380px; height: 380px;
  bottom: -8%; right: -8%;
  background: radial-gradient(circle, rgba(179,0,0,0.32), transparent 70%);
  animation: blobMorph 20s ease-in-out infinite reverse, orbDrift 26s ease-in-out infinite reverse;
}
/* light rays */
.ray {
  position: absolute;
  width: 140%; height: 80px;
  left: -20%;
  background: linear-gradient(90deg, transparent, rgba(255,90,95,0.12), transparent);
  transform-origin: center;
  filter: blur(20px);
}
.ray--1 { top: 20%; transform: rotate(-12deg); animation: lightRay 30s linear infinite; }
.ray--2 { top: 60%; transform: rotate(8deg); animation: lightRay 36s linear infinite reverse; }

#hero-canvas {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}
.hero__content { max-width: 620px; }
.hero__title {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 1.05;
  margin: 22px 0 22px;
}
.hero__title .line { display: block; }
.hero__title .rotating-wrap {
  display: inline-block;
  position: relative;
  min-width: 320px;
}
.rotating-word {
  display: inline-block;
  background: var(--gradient-text);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradientFlow 5s ease infinite;
}
.hero__sub {
  font-size: 1.16rem;
  color: #555;
  max-width: 540px;
  margin-bottom: 34px;
  line-height: 1.75;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.hero__stats::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient);
}
.hero__stat { text-align: center; position: relative; }
.hero__stat:not(:last-child)::after {
  content: "";
  position: absolute; right: 0; top: 18%; bottom: 18%;
  width: 1px; background: var(--color-line);
}
.hero__stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  font-weight: 500;
}

/* Hero visual */
.hero__visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual-img {
  position: absolute;
  inset: 10% 5%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 0;
}
.hero__visual-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__visual-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(139,0,0,0.25), transparent 50%, rgba(17,17,17,0.4));
}
.float-book {
  position: absolute;
  border-radius: 8px 14px 14px 8px;
  box-shadow: var(--shadow-lg), -4px 0 0 rgba(17,17,17,0.06);
  overflow: hidden;
  transform-style: preserve-3d;
  background: #1a1a1a;
}
.float-book .fb-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.float-book::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 10px;
  background: linear-gradient(90deg, rgba(0,0,0,0.35), transparent);
  z-index: 3;
}
.float-book::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent 55%);
  z-index: 2;
}
.float-book .fb-spine {
  position: absolute;
  top: 0; left: 10px; bottom: 0;
  width: 3px;
  background: rgba(0,0,0,0.25);
  z-index: 4;
}
.float-book .fb-content {
  position: absolute;
  inset: 0;
  padding: 28px 22px 22px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  z-index: 5;
}
.float-book .fb-tag {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
  font-family: var(--font-head);
}
.float-book .fb-title {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  font-size: 1.1rem;
}
.float-book .fb-author {
  font-size: 0.72rem;
  opacity: 0.85;
}

.fb-1 {
  width: 180px; height: 260px;
  top: 30px; left: 30px;
  animation: bookFloat 7s ease-in-out infinite;
  transform: rotate(-8deg);
  z-index: 3;
}
.fb-2 {
  width: 200px; height: 290px;
  top: 90px; right: 40px;
  animation: bookFloat 8s ease-in-out infinite 0.6s;
  transform: rotate(6deg);
  z-index: 4;
}
.fb-3 {
  width: 170px; height: 246px;
  bottom: 20px; left: 80px;
  animation: bookFloat 6.5s ease-in-out infinite 0.3s;
  transform: rotate(-3deg);
  z-index: 2;
}

/* glow orb behind books */
.hero__orb {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.4), transparent 70%);
  filter: blur(20px);
  animation: orbDrift 12s ease-in-out infinite;
  z-index: 1;
}

/* floating decorative chips */
.hero__chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 6;
}
.hero__chip .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.18);
}
.hero__chip svg { width: 18px; height: 18px; color: var(--color-primary); }
.hero__chip--1 { top: 10px; right: 8%; animation: floatY 5s ease-in-out infinite; }
.hero__chip--2 { bottom: 30px; right: 0; animation: floatY 6s ease-in-out infinite 0.5s; }
.hero__chip--3 { top: 50%; left: -10px; animation: floatY 5.5s ease-in-out infinite 0.3s; }

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 6;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.scroll-indicator__mouse {
  width: 26px; height: 42px;
  border: 2px solid var(--color-line-strong);
  border-radius: 14px;
  position: relative;
}
.scroll-indicator__mouse::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--color-primary);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* trust badges row */
.hero__trust {
  display: flex; align-items: center; gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem; color: #555;
  font-weight: 500;
}
.hero__trust-item svg { width: 18px; height: 18px; color: var(--color-primary); }

/* ============================================
   TRUSTED BY — logo marquee
   ============================================ */
.trusted {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.trusted__label {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 34px;
}
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: #8a8a8a;
  transition: color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.logo-item svg { width: 26px; height: 26px; }
.logo-item:hover { color: var(--color-primary); transform: translateY(-3px); }

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--color-bg); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 34px 28px 30px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--color-line);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.4s ease;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card::after {
  content: "";
  position: absolute;
  top: -50%; right: -50%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(230,57,70,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

/* Tag badge (Stage I, II, etc.) — always top-right */
.service-card__tag {
  position: absolute !important;
  top: 22px !important; right: 22px !important;
  left: auto !important; bottom: auto !important;
  display: block !important;
  font-size: 0.6rem;
  padding: 5px 11px;
  background: var(--gradient);
  color: #fff !important;
  border: none !important;
  z-index: 2;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 10px rgba(179,0,0,0.2);
  margin: 0 !important;
}

.service-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--gradient-soft);
  display: grid; place-items: center;
  margin-bottom: 22px;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.service-card__icon svg { width: 28px; height: 28px; color: var(--color-primary); transition: transform 0.4s var(--ease); }
.service-card:hover .service-card__icon { transform: scale(1.08) rotate(-6deg); }
.service-card:hover .service-card__icon svg { transform: scale(1.1); }

.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--color-primary);
  transition: gap 0.3s ease;
}
.service-card__link svg { width: 15px; height: 15px; transition: transform 0.3s ease; }
.service-card:hover .service-card__link { gap: 10px; }
.service-card:hover .service-card__link svg { transform: translateX(3px); }

.service-card__num {
  position: absolute;
  bottom: 14px; right: 18px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(179,0,0,0.16);
  pointer-events: none;
  z-index: 2;
  letter-spacing: -0.04em;
  transition: -webkit-text-stroke-color 0.4s ease, transform 0.4s ease;
}
.service-card:hover .service-card__num {
  -webkit-text-stroke-color: rgba(230,57,70,0.38);
  transform: scale(1.06);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why { background: #fff; }
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why__visual { position: relative; }
.why__panel {
  position: relative;
  border-radius: var(--r-xl);
  padding: 40px;
  background: var(--gradient-dark);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 460px;
}
.why__panel::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(230,57,70,0.4), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,90,95,0.3), transparent 50%);
}
.why__panel-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
}
.why__panel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.why__panel-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.6), rgba(17,17,17,0.9));
}
.why__panel-content { position: relative; z-index: 2; }
.why__panel-quote {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.35;
  margin-bottom: 26px;
  color: #ffffff;
}
.why__panel-author { display: flex; align-items: center; gap: 14px; }
.why__panel-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
}
.why__panel-name { font-weight: 600; font-size: 0.98rem; }
.why__panel-role { font-size: 0.82rem; opacity: 0.7; }

.why__float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  z-index: 4;
}
.why__float-card .ic {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--gradient-soft);
  display: grid; place-items: center;
}
.why__float-card .ic svg { width: 20px; height: 20px; color: var(--color-primary); }
.why__float-card .t { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--color-ink); }
.why__float-card .s { font-size: 0.76rem; color: var(--color-muted); }
.why__float-card--1 { top: -22px; right: 30px; animation: floatY 5s ease-in-out infinite; }
.why__float-card--2 { bottom: -22px; left: -20px; animation: floatY 6s ease-in-out infinite 0.5s; }

.why__list { margin-top: 28px; display: grid; gap: 14px; }
.why__item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: var(--color-soft);
  border: 1px solid rgba(230,57,70,0.12);
  border-radius: var(--r-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.why__item:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.why__check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(230,57,70,0.3);
}
.why__check svg { width: 16px; height: 16px; color: #fff; }
.why__item h4 { font-size: 1rem; margin-bottom: 2px; }
.why__item p { font-size: 0.86rem; color: #666; margin: 0; }

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process { background: var(--color-bg); }
.process__timeline {
  position: relative;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  z-index: 1;
  max-width: 100%;
  overflow: visible;
}
.process__line {
  position: absolute;
  top: 42px; left: 10%; right: 10%;
  height: 3px;
  background: var(--color-line);
  border-radius: 3px;
  overflow: hidden;
  z-index: 0;
}
.process__line::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--gradient);
  border-radius: 3px;
  transition: width 1.6s var(--ease);
}
.process__line.active::before { width: 100%; }

.process__step {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  overflow: visible;
  padding-top: 14px;
}
.process__step-btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
}
.process__step-num {
  width: 86px; height: 86px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-line);
  display: grid; place-items: center;
  position: relative;
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-sm);
}
.process__step-num svg { width: 32px; height: 32px; color: var(--color-muted); transition: color 0.4s ease; }
.process__step-num::before {
  content: attr(data-step);
  position: absolute;
  top: -8px; right: -8px;
  min-width: 28px; height: 28px;
  padding: 0 8px;
  border-radius: 14px;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  display: grid; place-items: center;
  box-shadow: var(--shadow-red);
}
.process__step:last-child .process__step-num {
  background: var(--gradient-dark);
  border-color: rgba(230,57,70,0.3);
}
.process__step:last-child .process__step-num::before {
  background: linear-gradient(135deg, #FF5A5F, #FFB400);
  font-size: 1rem;
}
.process__step-btn:hover .process__step-num,
.process__step.active .process__step-num,
.process__step.in-view .process__step-num {
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-6px) scale(1.05);
  box-shadow: var(--shadow-red);
}
.process__step-btn:hover .process__step-num svg,
.process__step.active .process__step-num svg,
.process__step.in-view .process__step-num svg { color: #fff; }
.process__step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.process__step p { font-size: 0.84rem; color: #666; padding: 0 6px; margin-bottom: 12px; }
.process__step-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.74rem;
  color: var(--color-primary);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.process__step-toggle svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.process__step-btn:hover .process__step-toggle { opacity: 1; }
.process__step.active .process__step-toggle svg { transform: rotate(180deg); }
.process__step.active .process__step-toggle { opacity: 1; }

/* Expandable detail panel — appears below the timeline, full width */
.process__detail {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease), opacity 0.4s ease, margin-top 0.4s ease;
  opacity: 0;
  margin-top: 0;
  width: 100%;
}
.process__step.active .process__detail {
  max-height: 800px;
  opacity: 1;
  margin-top: 24px;
}
.process__detail-inner {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-line);
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.process__detail-inner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient);
}
.process__detail-text {
  font-size: 1.02rem;
  color: #444;
  line-height: 1.75;
  margin: 0 auto 26px;
  max-width: 780px;
}
.process__detail-meta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
}
.process__detail-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 14px;
}
.process__detail-deliverables ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.process__detail-deliverables li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #333;
}
.process__detail-deliverables li svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; }
.process__detail-timeline { display: flex; flex-direction: column; }
.process__detail-time {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.process__next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 28px auto 0;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--gradient-soft);
  color: var(--color-primary);
  border: 1px solid rgba(230,57,70,0.2);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.process__next svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.process__next:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: translateX(4px); }
.process__next:hover svg { transform: translateX(3px); }
.process__next--cta { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: var(--shadow-red); }
.process__next--cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ============================================
   FEATURED BOOKS
   ============================================ */
.featured { background: #fff; overflow: hidden; }
.featured__carousel {
  position: relative;
  display: flex;
  gap: 28px;
  padding: 20px 6px 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.featured__carousel::-webkit-scrollbar { display: none; }
.book-card {
  flex: 0 0 280px;
  scroll-snap-align: center;
  perspective: 1200px;
}
.book-card__inner {
  position: relative;
  height: 420px;
  border-radius: 6px 16px 16px 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  transform-style: preserve-3d;
  background: #1a1a1a;
}
.book-card__inner::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 14px;
  background: linear-gradient(90deg, rgba(0,0,0,0.4), rgba(0,0,0,0.05));
  z-index: 4;
}
.book-card__inner::after {
  content: "";
  position: absolute;
  left: 14px; top: 0; bottom: 0;
  width: 2px;
  background: rgba(0,0,0,0.25);
  z-index: 5;
}
/* Image-based book card */
.book-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s var(--ease);
}
.book-card__inner--img:hover .book-card__img { transform: scale(1.06); }
.book-card__cover--img {
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent 50%);
  z-index: 3;
}
.book-card__cover--img::before { display: none; }
.book-card__cover {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 26px 30px 36px;
  color: #fff;
}
.book-card__cover::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(0,0,0,0.35));
  z-index: 1;
}
.book-card__cover > * { position: relative; z-index: 2; }
.book-card__tag {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.85;
}
.book-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.12;
  margin-bottom: 8px;
}
.book-card__author { font-size: 0.82rem; opacity: 0.85; }
.book-card__meta {
  position: absolute;
  bottom: 16px; right: 18px;
  display: flex; gap: 3px;
  z-index: 3;
}
.book-card__meta svg { width: 14px; height: 14px; color: #FFD700; }
.book-card:hover .book-card__inner {
  transform: translateY(-12px) rotateY(-8deg);
  box-shadow: 0 30px 70px rgba(17,17,17,0.25);
}
.book-card__info {
  padding: 18px 4px 0;
  text-align: center;
}
.book-card__info h4 { font-size: 1rem; margin-bottom: 4px; }
.book-card__info p { font-size: 0.82rem; color: var(--color-muted); }
.book-card__price {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--color-primary);
}

.featured__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.featured__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--color-line-strong);
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.featured__btn svg { width: 20px; height: 20px; color: var(--color-ink); transition: color 0.3s ease; }
.featured__btn:hover { background: var(--gradient); border-color: transparent; transform: translateY(-3px); }
.featured__btn:hover svg { color: #fff; }

/* Book cover color variants */
.cover-1 { background: linear-gradient(150deg, #8B0000, #4a0a0a); }
.cover-2 { background: linear-gradient(150deg, #1a1a1a, #3d1010); }
.cover-3 { background: linear-gradient(150deg, #E63946, #8B0000); }
.cover-4 { background: linear-gradient(150deg, #2d1b3d, #5a2a4a); }
.cover-5 { background: linear-gradient(150deg, #0f3d3e, #1a6b5a); }
.cover-6 { background: linear-gradient(150deg, #b8860b, #6b4a00); }

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio { background: var(--color-bg); }
.portfolio__filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  color: #555;
  background: #fff;
  border: 1.5px solid var(--color-line);
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.filter-btn.active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-red);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}
.portfolio__item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: var(--shadow-sm);
}
.portfolio__item.size-tall { grid-row: span 2; }
.portfolio__item.size-wide { grid-column: span 2; }
.portfolio__item.size-big { grid-row: span 2; grid-column: span 2; }
.portfolio__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s ease;
  filter: brightness(0.92);
}
.portfolio__item:hover .portfolio__img { transform: scale(1.12); filter: brightness(0.6); }
.portfolio__item:hover { box-shadow: var(--shadow-lg); }
.portfolio__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(17,17,17,0.92), transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease);
  z-index: 2;
}
.portfolio__item:hover .portfolio__overlay { opacity: 1; transform: translateY(0); }
.portfolio__cat {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease) 0.05s;
}
.portfolio__title { color: #fff; font-size: 1.1rem; font-family: var(--font-head); font-weight: 600; transform: translateY(8px); transition: transform 0.4s var(--ease) 0.1s; }
.portfolio__item:hover .portfolio__cat,
.portfolio__item:hover .portfolio__title { transform: translateY(0); }
.portfolio__view {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--color-accent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s var(--ease) 0.15s;
}
.portfolio__view svg { width: 15px; height: 15px; }
.portfolio__item:hover .portfolio__view { opacity: 1; transform: translateY(0); }
.portfolio__item.hide { display: none; }

/* ============================================
   STATISTICS
   ============================================ */
.stats {
  background: var(--gradient-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
}
.stats__bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(230,57,70,0.3), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255,90,95,0.22), transparent 45%);
  z-index: 1;
}
.stats__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-block {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease), background 0.4s ease;
}
.stat-block:hover { transform: translateY(-8px); background: rgba(255,255,255,0.1); }
.stat-block__circle {
  position: relative;
  width: 110px; height: 110px;
  margin: 0 auto 18px;
}
.stat-block__circle svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.stat-block__circle .track { fill: none; stroke: rgba(255,255,255,0.12); stroke-width: 6; }
.stat-block__circle .bar { fill: none; stroke: url(#statGrad); stroke-width: 6; stroke-linecap: round; stroke-dasharray: 314; stroke-dashoffset: 314; transition: stroke-dashoffset 1.8s var(--ease); }
.stat-block__num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
}
.stat-block__num .suffix {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-block__label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: #fff;
}
.stat-block__sub { font-size: 0.82rem; opacity: 0.7; margin-top: 4px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: #fff; overflow: hidden; }
.testimonials__slider {
  position: relative;
  overflow: hidden;
  padding: 10px 4px;
}
.testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 0.7s var(--ease);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform 0.4s var(--ease);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card__quote {
  position: absolute;
  top: 18px; right: 24px;
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 1;
  color: rgba(230,57,70,0.12);
  font-weight: 800;
}
.testimonial-card__stars {
  display: flex; gap: 3px;
  margin-bottom: 16px;
}
.testimonial-card__stars svg { width: 18px; height: 18px; color: #FFB400; }
.testimonial-card__text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 22px;
}
.testimonial-card__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
}
.testimonial-card__avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-card__name { font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; color: var(--color-ink); }
.testimonial-card__role { font-size: 0.8rem; color: var(--color-muted); }

.testimonials__dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 36px;
}
.testimonials__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-line-strong);
  transition: all 0.3s ease;
  cursor: pointer;
}
.testimonials__dot.active { background: var(--gradient); width: 32px; border-radius: 5px; }

/* ============================================
   PRICING
   ============================================ */
.pricing { background: var(--color-bg); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 40px 34px;
  border: 1px solid var(--color-line);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  background: var(--gradient-dark);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-8px); }
.pricing-card.popular::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(230,57,70,0.35), transparent 50%),
    radial-gradient(circle at 90% 100%, rgba(255,90,95,0.25), transparent 50%);
  pointer-events: none;
}
.pricing-card > * { position: relative; z-index: 2; }

.pricing__badge {
  position: absolute;
  top: 24px; right: -42px;
  background: var(--gradient-accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 50px;
  transform: rotate(45deg);
  box-shadow: var(--shadow-red);
}

.pricing-card__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.pricing-card.popular .pricing-card__name { color: var(--color-accent); }
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.pricing-card__price .amt {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
}
.pricing-card__price .per { font-size: 0.92rem; color: var(--color-muted); }
.pricing-card.popular .pricing-card__price .per { color: rgba(255,255,255,0.7); }
.pricing-card__desc { font-size: 0.9rem; color: #777; margin-bottom: 26px; }
.pricing-card.popular .pricing-card__desc { color: rgba(255,255,255,0.75); }

.pricing-card__features { display: grid; gap: 14px; margin-bottom: 30px; flex: 1; }
.pricing-card__feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.92rem;
}
.pricing-card__feature svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-primary); }
.pricing-card.popular .pricing-card__feature svg { color: var(--color-accent); }
.pricing-card__feature.muted { color: #aaa; }
.pricing-card__feature.muted svg { color: #ccc; }

.pricing-card .btn { width: 100%; }

/* ============================================
   FAQ
   ============================================ */
.faq { background: #fff; }
.faq__wrap { max-width: 820px; margin: 0 auto; }
.faq__item {
  border: 1px solid var(--color-line);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq__item.open { border-color: rgba(230,57,70,0.3); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--color-ink);
}
.faq__icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gradient-soft);
  display: grid; place-items: center;
  transition: transform 0.4s var(--ease), background 0.3s ease;
}
.faq__icon svg { width: 16px; height: 16px; color: var(--color-primary); transition: color 0.3s ease; }
.faq__item.open .faq__icon { transform: rotate(45deg); background: var(--gradient); }
.faq__item.open .faq__icon svg { color: #fff; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq__a-inner {
  padding: 0 26px 24px;
  color: #666;
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-band {
  position: relative;
  padding: 90px 0;
  background: var(--gradient-dark);
  overflow: hidden;
  text-align: center;
}
.cta-band__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.25;
}
.cta-band__bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(230,57,70,0.5), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,90,95,0.35), transparent 45%);
  animation: gradientShift 12s ease infinite;
  background-size: 200% 200%;
  z-index: 1;
}
.cta-band__rays {
  position: absolute; inset: 0;
  overflow: hidden;
}
.cta-band__rays .ray { height: 200px; opacity: 0.4; filter: blur(30px); }
.cta-band__content { position: relative; z-index: 3; max-width: 760px; margin: 0 auto; }
.cta-band h2 { color: #fff; margin-bottom: 18px; font-size: clamp(2.2rem, 4vw, 3.2rem); }
.cta-band p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 34px; }
.cta-band .eyebrow { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #fff; }
.cta-band__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--color-bg); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.contact__info { padding-right: 20px; }
.contact__info h2 { margin-bottom: 18px; }
.contact__info p { color: #555; margin-bottom: 30px; font-size: 1.02rem; }
.contact__methods { display: grid; gap: 18px; margin-bottom: 34px; }
.contact__method {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.contact__method:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact__method .ic {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--gradient);
  display: grid; place-items: center;
  box-shadow: var(--shadow-red);
}
.contact__method .ic svg { width: 22px; height: 22px; color: #fff; }
.contact__method .label { font-size: 0.78rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.contact__method .val { font-family: var(--font-head); font-weight: 600; color: var(--color-ink); }

.contact__map {
  margin-top: 26px;
  height: 180px;
  border-radius: var(--r-md);
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
}
.contact__map::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.contact__map-pin {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.contact__map-pin svg { width: 38px; height: 38px; color: var(--color-accent); animation: pulseGlow 2s infinite; }
.contact__map-pin span { font-family: var(--font-head); font-weight: 600; font-size: 0.86rem; }

/* Form */
.contact__form {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 38px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-line);
}
.contact__form h3 { margin-bottom: 6px; }
.contact__form .sub { font-size: 0.92rem; color: #777; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { position: relative; margin-bottom: 20px; }
.form-group label {
  position: absolute;
  top: 16px; left: 18px;
  font-size: 0.96rem;
  color: #999;
  pointer-events: none;
  transition: all 0.25s var(--ease);
  background: #fff;
  padding: 0 6px;
}
.form-control {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid var(--color-line);
  border-radius: var(--r-md);
  background: #fff;
  font-size: 0.96rem;
  color: var(--color-ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.form-control:focus { border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(230,57,70,0.12); }
.form-group:focus-within label,
.form-group.filled label {
  top: -9px; left: 14px;
  font-size: 0.76rem;
  color: var(--color-primary);
  font-weight: 500;
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B30000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-error {
  display: none;
  font-size: 0.78rem;
  color: #dc2626;
  margin-top: 6px;
  padding-left: 4px;
}
.form-group.error .form-control { border-color: #dc2626; }
.form-group.error .form-error { display: block; }
.form-success {
  display: none;
  align-items: center; gap: 10px;
  padding: 14px 18px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--r-md);
  color: #15803d;
  font-size: 0.9rem;
  margin-top: 14px;
}
.form-success.show { display: flex; animation: fadeUp 0.5s ease; }
.form-success svg { width: 20px; height: 20px; }
.contact__form .btn { width: 100%; margin-top: 6px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand .brand { color: #fff; margin-bottom: 18px; }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.7; margin-bottom: 22px; max-width: 320px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer__social a svg { width: 18px; height: 18px; color: rgba(255,255,255,0.8); transition: color 0.3s ease; }
.footer__social a:hover { background: var(--gradient); transform: translateY(-4px); border-color: transparent; }
.footer__social a:hover svg { color: #fff; }

.footer__col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-weight: 600;
}
.footer__col ul { display: grid; gap: 11px; }
.footer__col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}
.footer__col a:hover { color: var(--color-accent); padding-left: 6px; }

.footer__newsletter p { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-bottom: 16px; }
.footer__newsletter form { display: flex; gap: 8px; }
.footer__newsletter input {
  flex: 1;
  padding: 13px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}
.footer__newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer__newsletter input:focus { border-color: var(--color-accent); }
.footer__newsletter button {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.footer__newsletter button:hover { transform: scale(1.08); }
.footer__newsletter button svg { width: 18px; height: 18px; color: #fff; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__bottom p { font-size: 0.86rem; color: rgba(255,255,255,0.5); }
.footer__bottom-links { display: flex; gap: 22px; }
.footer__bottom-links a { font-size: 0.86rem; color: rgba(255,255,255,0.5); transition: color 0.3s ease; }
.footer__bottom-links a:hover { color: var(--color-accent); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid; place-items: center;
  box-shadow: var(--shadow-red);
  z-index: 900;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-4px) scale(1.05); }
.back-top svg { width: 22px; height: 22px; color: #fff; }

/* ============================================
   STICKY CTA BAR (mobile)
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-line);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 950;
  box-shadow: 0 -8px 24px rgba(17,17,17,0.08);
}
.sticky-cta__info { display: flex; flex-direction: column; }
.sticky-cta__info .t { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--color-ink); }
.sticky-cta__info .s { font-size: 0.76rem; color: var(--color-muted); }

/* ============================================
   LIVE NOTIFICATION POPUP
   ============================================ */
.live-popup {
  position: fixed;
  bottom: 28px; left: 28px;
  max-width: 340px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center; gap: 14px;
  z-index: 940;
  border: 1px solid var(--color-line);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s var(--ease-bounce), opacity 0.4s ease;
}
.live-popup.show { transform: translateY(0); opacity: 1; }
.live-popup.hide { transform: translateY(120%); opacity: 0; }
.live-popup__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
}
.live-popup__body .t { font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--color-ink); }
.live-popup__body .s { font-size: 0.78rem; color: var(--color-muted); margin-top: 2px; }
.live-popup__close {
  position: absolute;
  top: 6px; right: 8px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: #aaa;
  font-size: 1.2rem;
  line-height: 1;
}
.live-popup__close:hover { color: var(--color-ink); }

/* ============================================
   SVG WAVE DIVIDER
   ============================================ */
.wave-divider { display: block; width: 100%; height: 70px; line-height: 0; }
.wave-divider svg { width: 100%; height: 100%; display: block; }

/* ---------- Helpers ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.hidden { display: none !important; }
