/* ============================================
   BookVerseHQ — Light Theme
   Warm White + Warm Orange #E8531E
   READ. GROW. TRANSFORM.
   ============================================ */

:root {
  --orange: #E8531E;
  --orange-dark: #C93F0F;
  --orange-light: #F07848;
  --orange-glow: rgba(232, 83, 30, 0.12);
  --navy: #F8F5F1;
  --navy-mid: #F1EDE8;
  --navy-light: #FFFFFF;
  --navy-card: #FFFFFF;
  --cream: #3D2B1F;
  --cream-soft: #5C3D2E;
  --text-head: #1A1208;
  --text-body: #5A5048;
  --text-muted: #8A7A6A;
  --border: rgba(0, 0, 0, 0.08);
  --border-o: rgba(232, 83, 30, 0.25);
  --shadow-card: 0 4px 28px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-o: 0 8px 32px rgba(232, 83, 30, 0.28);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --ease: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--text-head);
  line-height: 1.6;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

img {
  max-width: 100%
}

input,
textarea,
select,
button {
  font-family: inherit
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: #EDE8E3
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px
}

/* ── Utilities ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 96px 0
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange-light);
  background: rgba(232, 83, 30, 0.1);
  border: 1px solid var(--border-o);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-head);
  margin-bottom: 14px
}

.section-sub {
  font-size: 17px;
  color: var(--text-body);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7
}

.section-sub-sm {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 32px;
  line-height: 1.7
}

.accent {
  color: var(--orange-light)
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-o);
  transition: var(--ease)
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232, 83, 30, 0.5);
  background: linear-gradient(135deg, var(--orange-light), var(--orange))
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  transition: var(--ease);
  cursor: pointer
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  background: rgba(232, 83, 30, 0.06)
}

.btn-xl {
  padding: 18px 40px;
  font-size: 17px
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 16px 0;
  background: rgba(248, 245, 241, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  transition: var(--ease)
}

.navbar.scrolled {
  padding: 11px 0;
  background: rgba(248, 245, 241, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1)
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FFF7F4;
  border: 1.5px solid var(--border-o);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(232, 83, 30, 0.2)
}

.logo-icon.small {
  width: 32px;
  height: 32px;
  border-radius: 8px
}

.logo-bv {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -1px
}

.logo-icon.small .logo-bv {
  font-size: 11px
}

.bv-b {
  color: #1A1208
}

.bv-v {
  color: var(--orange)
}

.logo-wordmark {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1
}

.wm-book {
  color: var(--text-head)
}

.wm-verse {
  color: var(--orange)
}

.wm-hq {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--ease);
  position: relative;
  padding-bottom: 2px
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s ease
}

.nav-link:hover {
  color: var(--text-head)
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(232, 83, 30, 0.35);
  transition: var(--ease)
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 83, 30, 0.55)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text-head);
  border-radius: 2px;
  transition: var(--ease)
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg)
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #FBF8F4 0%, #F5EDE4 55%, #FDF9F6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(232, 83, 30, 0.12);
  animation: floatUp linear infinite
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh);
    opacity: 0
  }

  10% {
    opacity: 1
  }

  90% {
    opacity: 0.5
  }

  100% {
    transform: translateY(-120px);
    opacity: 0
  }
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px)
}

.orb1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 83, 30, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px
}

.orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 83, 30, 0.08) 0%, transparent 70%);
  bottom: -50px;
  left: 80px
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2
}

.hero-content {
  flex: 1;
  max-width: 580px
}

.hero-visual {
  flex-shrink: 0;
  position: relative
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 83, 30, 0.1);
  border: 1px solid rgba(232, 83, 30, 0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-light);
  margin-bottom: 24px
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6
  }
}

/* Hero title */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-head);
  margin-bottom: 20px
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-sub {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px
}

.hero-sub strong {
  color: var(--cream)
}

/* Feature chips */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px
}

.hfeat {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-light);
  background: rgba(232, 83, 30, 0.1);
  border: 1px solid rgba(232, 83, 30, 0.22);
  padding: 6px 14px;
  border-radius: 50px
}

/* CTA + Stats */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 24px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  width: fit-content
}

.hstat {
  text-align: center
}

.hstat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--orange);
  font-family: 'Playfair Display', serif
}

.hstat-suffix {
  font-size: 18px;
  font-weight: 700;
  color: var(--orange-light)
}

.hstat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px
}

.hstat-sep {
  width: 1px;
  height: 38px;
  background: var(--border)
}

/* Phone mockup */
.phone-frame {
  width: 270px;
  height: 520px;
  background: #1A0E08;
  border-radius: 40px;
  border: 3px solid rgba(232, 83, 30, 0.4);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25), 0 0 50px rgba(232, 83, 30, 0.15);
  position: relative;
  overflow: hidden;
  animation: phoneFloat 5s ease-in-out infinite
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg)
  }

  50% {
    transform: translateY(-20px) rotate(-3deg)
  }
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #0a0603;
  border-radius: 13px;
  z-index: 10
}

.phone-screen {
  padding: 50px 14px 14px;
  height: 100%
}

.reel-preview {
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(160deg, #1a0a02 0%, #2d1205 40%, #0c1222 100%)
}

.reel-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(232, 83, 30, 0.22) 0%, transparent 60%)
}

.reel-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px
}

.reel-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3)
}

.reel-handle {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  flex: 1
}

.reel-follow-btn {
  font-size: 9px;
  font-weight: 700;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 50px;
  padding: 3px 8px;
  background: rgba(232, 83, 30, 0.1)
}

.reel-bottom {
  position: relative;
  z-index: 2;
  padding: 14px;
  background: linear-gradient(transparent, rgba(12, 18, 34, 0.92))
}

.reel-book-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px
}

.reel-book-line {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px
}

.reel-book-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px
}

.reel-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  overflow: hidden
}

.reel-progress-bar {
  height: 100%;
  width: 60%;
  background: var(--orange);
  border-radius: 2px;
  animation: progressAnim 3s ease-in-out infinite alternate
}

@keyframes progressAnim {
  0% {
    width: 20%
  }

  100% {
    width: 90%
  }
}

.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  z-index: 3;
  border: 2px solid rgba(255, 255, 255, 0.28);
  animation: playPulse 2s ease-in-out infinite
}

@keyframes playPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1)
  }
}

.phone-glow-ring {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(232, 83, 30, 0.3) 0%, transparent 70%);
  filter: blur(20px)
}

/* Floating chips */
.floating-chip {
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  background: #FFFFFF;
  border: 1px solid rgba(232, 83, 30, 0.22);
  color: var(--orange);
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  white-space: nowrap
}

.chip1 {
  top: 60px;
  right: -50px;
  animation: chipFloat 4s ease-in-out infinite
}

.chip2 {
  top: 210px;
  right: -60px;
  animation: chipFloat 4s ease-in-out 1.2s infinite
}

.chip3 {
  top: 360px;
  right: -40px;
  animation: chipFloat 4s ease-in-out 2.4s infinite
}

@keyframes chipFloat {

  0%,
  100% {
    transform: translateX(0)
  }

  50% {
    transform: translateX(8px)
  }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px
}

.scroll-dot {
  width: 6px;
  height: 20px;
  border-radius: 3px;
  background: linear-gradient(var(--orange), transparent);
  animation: scrollHint 2s ease-in-out infinite
}

@keyframes scrollHint {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8)
  }

  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

/* ── Sections bg alternation ── */
.how-it-works {
  background: #F1EDE8
}

.what-you-get {
  background: #F8F5F1
}

.categories {
  background: #F1EDE8
}

.products {
  background: #F8F5F1
}

.social-proof {
  background: #F1EDE8
}

.why-us {
  background: #F8F5F1
}

.lead-magnet {
  background: #F1EDE8
}

.pricing {
  background: #F8F5F1
}

.final-cta {
  background: #F1EDE8
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative
}

.step-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  cursor: default
}

.step-card:not(:last-child) {
  margin-right: 20px
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-o);
  box-shadow: var(--shadow-hover)
}

.step-number {
  font-size: 52px;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  color: rgba(232, 83, 30, 0.18);
  line-height: 1;
  margin-bottom: 14px
}

.step-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-head)
}

.step-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7
}

.step-connector {
  position: absolute;
  top: 48px;
  right: -22px;
  width: 24px;
  height: 24px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  z-index: 5;
  box-shadow: var(--shadow-o)
}

.step-connector::after {
  content: '→'
}

/* ── WHAT YOU GET ── */
.wyg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.wyg-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: var(--ease);
  cursor: default;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative
}

.wyg-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-o);
  box-shadow: var(--shadow-hover)
}

.featured-wyg {
  border-color: var(--border-o);
  background: linear-gradient(135deg, #FFF4EF, #FFFFFF);
  box-shadow: 0 8px 40px rgba(232, 83, 30, 0.12)
}

.wyg-icon-wrap {
  font-size: 40px;
  margin-bottom: 18px;
  display: block
}

.wyg-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-head)
}

.wyg-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7
}

.wyg-featured-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px
}

/* ── CATEGORIES ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.cat-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  transition: var(--ease);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  position: relative
}

.cat-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--orange);
  box-shadow: 0 16px 40px rgba(232, 83, 30, 0.15);
  background: #FFF4EF
}

.cat-emoji {
  font-size: 36px;
  margin-bottom: 12px;
  display: block
}

.cat-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-head)
}

.cat-count {
  font-size: 12px;
  color: var(--text-muted)
}

.hot-cat {
  border-color: rgba(232, 83, 30, 0.28)
}

.cat-hot-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, #c0392b, var(--orange));
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px
}

/* ── PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.product-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--ease);
  cursor: default;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  position: relative
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: var(--border-o)
}

.bestseller-card {
  border-color: var(--border-o);
  box-shadow: 0 8px 36px rgba(232, 83, 30, 0.12)
}

.prod-badge-wrap {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3
}

.prod-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px
}

.bestseller-badge {
  background: var(--orange);
  color: #fff
}

.hot-badge {
  background: linear-gradient(135deg, #c0392b, var(--orange));
  color: #fff
}

.new-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff
}

.prod-cover {
  height: 210px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.p-cover1 {
  background: linear-gradient(160deg, #2D0E02, #6B230A, #1A0802)
}

.p-cover2 {
  background: linear-gradient(160deg, #1A0C04, #4A1A08, #0C1222)
}

.p-cover3 {
  background: linear-gradient(160deg, #0F1A2E, #1B1060, #0C1222)
}

.prod-cover-inner {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2
}

.prod-cover-icon {
  font-size: 48px;
  margin-bottom: 10px;
  display: block
}

.prod-cover-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 6px
}

.prod-cover-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55)
}

.prod-body {
  padding: 24px;
  background: var(--navy-card)
}

.prod-stars {
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--orange-light)
}

.prod-rating-text {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400
}

.prod-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 10px
}

.prod-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px
}

.prod-includes {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px
}

.prod-includes li {
  font-size: 13px;
  color: var(--text-body)
}

.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.prod-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.prod-original {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through
}

.prod-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--orange-light);
  font-family: 'Playfair Display', serif
}

.prod-save-badge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(232, 83, 30, 0.15);
  color: var(--orange-light);
  border: 1px solid var(--border-o);
  border-radius: 50px;
  padding: 3px 8px
}

.btn-download {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--ease);
  box-shadow: var(--shadow-o)
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 83, 30, 0.55)
}

/* ── SOCIAL PROOF ── */
.sp-top-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px
}

.sp-stat-pill {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-light);
  background: rgba(232, 83, 30, 0.1);
  border: 1px solid rgba(232, 83, 30, 0.22);
  padding: 10px 20px;
  border-radius: 50px
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px
}

.testi-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: var(--ease)
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-o);
  box-shadow: var(--shadow-hover)
}

.testi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px
}

.testi-stars {
  color: var(--orange-light);
  font-size: 16px
}

.testi-platform {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted)
}

.testi-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0
}

.av-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark))
}

.av-purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed)
}

.av-teal {
  background: linear-gradient(135deg, #14b8a6, #0f766e)
}

.av-green {
  background: linear-gradient(135deg, #22c55e, #16a34a)
}

.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-head)
}

.testi-author span {
  font-size: 12px;
  color: var(--text-muted)
}

.social-platforms {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 250px;
  padding: 20px 24px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: var(--navy-card);
  box-shadow: var(--shadow-card);
  transition: var(--ease);
  cursor: pointer
}

.platform-card:hover {
  transform: translateY(-6px)
}

.ig-card:hover {
  border-color: #dc2743;
  box-shadow: 0 16px 40px rgba(220, 39, 67, 0.15)
}

.yt-card:hover {
  border-color: #ff0000;
  box-shadow: 0 16px 40px rgba(255, 0, 0, 0.15)
}

.fb-card:hover {
  border-color: #1877F2;
  box-shadow: 0 16px 40px rgba(24, 119, 242, 0.15)
}

.platform-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 2px
}

.platform-info span {
  display: block;
  font-size: 12px;
  color: var(--text-muted)
}

.platform-cta {
  color: var(--orange-light) !important;
  font-weight: 700 !important;
  margin-top: 4px;
  font-size: 12px !important
}

/* ── WHY US ── */
.why-us .section-title {
  color: var(--text-head)
}

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

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: var(--shadow-o)
}

.why-item h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-head)
}

.why-item p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65
}

.comparison-card {
  background: var(--navy-card);
  border: 1px solid var(--border-o);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 8px 40px rgba(232, 83, 30, 0.1)
}

.comp-header {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border)
}

.comp-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.4fr 1fr;
  gap: 8px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.comp-row:last-child {
  border-bottom: none
}

.comp-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted)
}

.comp-old {
  font-size: 13px;
  color: #ef4444;
  text-align: center
}

.comp-vs {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center
}

.comp-new {
  font-size: 13px;
  font-weight: 700;
  color: #10b981;
  text-align: center
}

.highlight-new {
  color: var(--orange-light) !important;
  font-size: 15px !important
}

/* ── LEAD MAGNET ── */
.lm-box {
  background: linear-gradient(135deg, #1A0702 0%, #2E0F04 50%, #1A0E02 100%);
  border-radius: var(--r-xl);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 83, 30, 0.2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4)
}

.lm-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 83, 30, 0.2) 0%, transparent 70%);
  pointer-events: none
}

.lm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2
}

.lm-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange-light);
  background: rgba(232, 83, 30, 0.12);
  border: 1px solid rgba(232, 83, 30, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px
}

.lm-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px
}

.lm-accent {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.lm-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 28px
}

.lm-books-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.lm-book-chip {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 50px
}

.lm-form {
  display: flex;
  flex-direction: column;
  gap: 18px
}

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

.lm-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8)
}

.lm-form-group input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-sm);
  color: #fff;
  padding: 14px 18px;
  font-size: 15px;
  transition: var(--ease);
  outline: none
}

.lm-form-group input::placeholder {
  color: rgba(255, 255, 255, 0.28)
}

.lm-form-group input:focus {
  border-color: var(--orange);
  background: rgba(232, 83, 30, 0.1);
  box-shadow: 0 0 0 3px rgba(232, 83, 30, 0.18)
}

.btn-lm-submit {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border: none;
  padding: 18px;
  border-radius: var(--r-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 8px 28px rgba(232, 83, 30, 0.45)
}

.btn-lm-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232, 83, 30, 0.65)
}

.lm-privacy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  text-align: center
}

.lm-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r)
}

.lm-success.visible {
  display: block
}

.lm-success-icon {
  font-size: 56px;
  margin-bottom: 16px
}

.lm-success h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px
}

.lm-success p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65)
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start
}

.price-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: var(--ease);
  position: relative;
  box-shadow: var(--shadow-card)
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover)
}

.price-featured {
  border: 2px solid var(--orange);
  box-shadow: 0 8px 40px rgba(232, 83, 30, 0.25);
  transform: scale(1.02)
}

.price-featured:hover {
  transform: scale(1.02) translateY(-8px)
}

.price-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--shadow-o)
}

.price-plan-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px
}

.price-amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--text-head);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 6px
}

.price-featured .price-amount {
  color: var(--orange-light)
}

.price-per {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px
}

.price-features li {
  font-size: 14px;
  color: var(--text-body)
}

.btn-price-primary {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: var(--shadow-o)
}

.btn-price-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 83, 30, 0.55)
}

.btn-price-outline {
  display: block;
  width: 100%;
  padding: 16px;
  background: transparent;
  color: var(--text-head);
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease);
  text-align: center
}

.btn-price-outline:hover {
  border-color: var(--orange-light);
  color: var(--orange-light);
  background: rgba(232, 83, 30, 0.07)
}

.price-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px
}

/* ── FINAL CTA ── */
.fcta-box {
  background: linear-gradient(135deg, #1A0702 0%, #2E0F04 100%);
  border-radius: var(--r-xl);
  padding: 96px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 83, 30, 0.18);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45)
}

.fcta-glow1 {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(232, 83, 30, 0.22) 0%, transparent 70%);
  pointer-events: none
}

.fcta-glow2 {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 60, 20, 0.15) 0%, transparent 70%);
  pointer-events: none
}

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

.fcta-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-light);
  background: rgba(232, 83, 30, 0.12);
  border: 1px solid rgba(232, 83, 30, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 1px
}

.fcta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15
}

.fcta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.75
}

.fcta-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.final-cta .btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07)
}

.final-cta .btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.13)
}

.fcta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 72px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px
}

.footer-logo .wm-book {
  color: var(--text-head)
}

.footer-logo .wm-verse {
  color: var(--orange)
}

.footer-logo .wm-hq {
  color: var(--text-muted)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px
}

.footer-tagline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 12px;
  text-transform: uppercase
}

.footer-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px
}

.footer-socials {
  display: flex;
  gap: 10px
}

.fsocial {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease)
}

.fsocial:hover {
  transform: translateY(-3px)
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 18px;
  letter-spacing: 0.3px
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px
}

.footer-col a {
  font-size: 13px;
  color: var(--text-body);
  transition: var(--ease)
}

.footer-col a:hover {
  color: var(--orange)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px
}

.footer-legal {
  display: flex;
  gap: 24px
}

.footer-legal a {
  font-size: 12px;
  color: var(--text-muted);
  transition: var(--ease)
}

.footer-legal a:hover {
  color: var(--orange)
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all
}

.modal-box {
  background: var(--navy-card);
  border: 1px solid rgba(232, 83, 30, 0.2);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  transform: scale(0.88) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  text-align: center
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0)
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 22px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--ease);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-head)
}

.modal-icon {
  font-size: 48px;
  margin-bottom: 16px
}

.modal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 8px
}

.modal-box p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 14px
}

.modal-price-tag {
  font-size: 40px;
  font-weight: 900;
  color: var(--orange-light);
  font-family: 'Playfair Display', serif;
  margin-bottom: 6px
}

.modal-delivery-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.modal-actions .btn-primary {
  justify-content: center
}

.modal-actions .btn-ghost {
  color: var(--text-head);
  border-color: rgba(255, 255, 255, 0.2);
  justify-content: center
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
  }

  .step-card:not(:last-child) {
    margin-right: 0
  }

  .step-connector {
    display: none
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
  }
}

@media(max-width:1024px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 56px
  }

  .hero {
    padding: 130px 24px 80px
  }

  .hero-content {
    max-width: 100%
  }

  .hero-ctas,
  .hero-features {
    justify-content: center
  }

  .hero-stats {
    margin: 0 auto
  }

  .hero-sub {
    margin: 0 auto 28px
  }

  .wyg-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .testimonials-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:900px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto
  }

  .price-featured {
    transform: none
  }

  .price-featured:hover {
    transform: translateY(-8px)
  }

  .cat-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(12, 18, 34, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 12px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5)
  }

  .nav-links.open {
    display: flex
  }

  .nav-links li {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
  }

  .hamburger {
    display: flex
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .wyg-grid {
    grid-template-columns: 1fr
  }

  .lm-box,
  .fcta-box {
    padding: 48px 32px
  }

  .steps-grid {
    grid-template-columns: 1fr
  }

  .fcta-ctas {
    flex-direction: column;
    align-items: center
  }

  .hero-visual {
    display: none
  }

  .social-platforms {
    flex-direction: column
  }

  .footer-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .section {
    padding: 72px 0
  }

  .hero {
    padding: 100px 16px 60px
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px
  }

  .hstat-sep {
    width: 60px;
    height: 1px
  }

  .lm-box,
  .fcta-box {
    padding: 40px 20px
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .sp-top-stats {
    justify-content: center
  }
}