/* ==========================================================================
   HOPE Hypnotherapy Landing Page Stylesheet
   ========================================================================== */

/* ── Global Transitions & Snap Snapping ── */
@keyframes ux-wobble { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(0.5deg); } 75% { transform: rotate(-0.5deg); } }
@keyframes ux-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.ux-wobble-hover:hover { animation: ux-wobble 3s ease-in-out infinite; }
.js-reveal { opacity: 0; transform: translateY(30px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.js-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Full-Width reset for Elementor Containers */
.wellness-section .elementor-container { max-width: 100% !important; padding: 0 !important; }
.wellness-section { scroll-snap-align: start; }
html { scroll-snap-type: y proximity; scroll-behavior: smooth; }

/* Disable snap entirely on mobile - touch scrolling is already natural */
@media(max-width: 768px) {
  html { scroll-snap-type: none; }
  .wellness-section { scroll-snap-align: none; }
}

.hop-magnetic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0A1F14;
  background: linear-gradient(180deg, #E0C17A 0%, #C5A059 100%);
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1px solid rgba(197,160,89,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 8px 24px rgba(197,160,89,0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hop-magnetic-btn.btn-lg {
  padding: 1.4rem 3.5rem;
  font-size: 1.05rem;
}
.hop-magnetic-btn:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 16px 32px rgba(197,160,89,0.25);
  filter: brightness(1.05);
}
.hop-magnetic-btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.08s ease-in, box-shadow 0.08s ease-in;
}
.hop-magnetic-btn svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: 10px;
  flex-shrink: 0;
}
.hop-magnetic-btn:hover svg {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .hop-magnetic-btn, .hop-magnetic-btn.btn-lg {
    padding: 1rem 2rem !important;
    font-size: 0.9rem !important;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Responsive Editorial Grid */
.hop-grid-editorial { display: grid; grid-template-columns: 5fr 7fr; gap: 100px; align-items: start; }
@media(max-width: 1024px) {
  .hop-grid-editorial { grid-template-columns: 1fr; gap: 60px; }
  .wellness-section section { padding: 100px 0 !important; }
  .wellness-section .container-inner { padding: 0 32px !important; }
  #section-pricing { padding: 160px 0 !important; }
  .hop-s9-section { padding: 0 0 180px !important; }
  #section-pain { padding: 0 !important; }
  #section-screening { padding: 0 !important; }
}

/* Responsive Table Fallback */
@media(max-width: 768px) {
  .hop-responsive-table tr { display: block; margin-bottom: 2rem; border: 1px solid rgba(0,0,0,0.05); }
  .hop-responsive-table td { display: block; width: 100% !important; border: none !important; padding: 2rem !important; }
  .hop-responsive-table thead { display: none; }
}

/* Comprehensive Mobile Rules (< 768px) */
@media(max-width: 768px) {
  .wellness-section section { padding: 80px 0 !important; }
  .wellness-section .container-inner { padding: 0 24px !important; }
  h1, h2, h3 { word-break: break-word; }
  .hop-track { pointer-events: auto; }
  .wellness-section { overflow-x: hidden; }
  section { overflow-x: hidden; }
  #section-pricing { padding: 120px 0 80px !important; }
  .hop-s9-section { padding: 0 0 120px !important; }
  #section-pain { padding: 0 !important; }
  #section-screening { padding: 0 !important; }
}

/* Mobile Performance Tweaks */
@media(max-width: 768px) {
  .js-reveal,
  .hop-s5-reveal,
  .hop-s7-track,
  .hop-s9-card,
  .hop-s9-img-wrap,
  .hop-s9-img,
  .hop-magnetic-btn,
  .portal-bg,
  .portal-mask-svg,
  .portal-mask-text,
  .portal-gradient,
  .vanilla-reveal { will-change: auto !important; }

  .hop-s9-card-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(10, 31, 20, 0.82) !important;
  }
  .hop-s9-btn {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .hop-s5-floating-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.95) !important;
  }
  .hop-s5-floating-card.is-visible {
    animation: none !important;
  }
}

/* ── Section 1 Hero styles ── */
:root {
  --hero-accent: #C5A059;
  --hero-overlay: #0A1F14;
}
.hero-premium-portal {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.portal-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center 40%;
  animation: slowBreathe 30s ease-in-out 0s infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0) scale(1.05);
}
.portal-mask-svg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
  animation: maskFadeOut 0.4s ease-out 1.9s forwards;
  contain: layout style paint;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.portal-mask-text {
  animation: textBoom 1.4s cubic-bezier(0.8, 0, 0.2, 1) 0.2s forwards;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
@keyframes textBoom {
  0%   { transform: scale(1); opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: scale(80); opacity: 0; }
}
@keyframes maskFadeOut { to { opacity: 0; } }
.portal-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.45) 35%, rgba(0,0,0,0.1) 65%, transparent 100%);
  z-index: 2;
  opacity: 0;
  animation: gradIn 0.7s ease-out 2s forwards;
  will-change: opacity;
  backface-visibility: hidden;
}
@keyframes gradIn { to { opacity: 1; } }
@keyframes slowBreathe { 0%, 100% { transform: scale(1.05); } 50% { transform: scale(1.1); } }
.portal-content { position: relative; z-index: 5; padding: 140px 80px 80px; max-width: 680px; }
@keyframes fadeUpReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vanilla-reveal {
  animation: fadeUpReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(2.0s + var(--stagger, 0) * 0.18s);
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.hero-eyebrow {
  font-family: DM Sans, sans-serif;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--hero-accent);
  font-size: 0.8rem;
  display: block;
  margin-bottom: 2rem;
}
.hero-headline {
  font-family: DM Sans, sans-serif;
  font-size: clamp(36px, 4.5vw, 70px);
  line-height: 1.08;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 2rem;
}
.hero-headline em { color: var(--hero-accent); font-style: italic; }
.hero-subtext {
  font-family: DM Sans, sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-checks {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  font-family: DM Sans, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
}
.hero-checks span { display: flex; align-items: center; gap: 0.4rem; }
.hero-checks b { color: var(--hero-accent); }
.hero-cta-wrap { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.hero-cta-sub { font-family: DM Sans, sans-serif; font-size: 0.7rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

@media (max-width: 1024px) {
  .portal-content { padding: 120px 32px 80px; max-width: 100%; }
  .hero-headline { font-size: clamp(32px, 7vw, 54px); }
}
@media (max-width: 768px) {
  .portal-content { padding: 100px 24px 60px; }
  .hero-checks { flex-direction: column; gap: 0.75rem; }
  .portal-bg { animation: none !important; transform: scale(1.05) !important; object-position: center 35% !important; }
  .portal-mask-svg { display: none !important; }
  .portal-gradient { animation: none !important; opacity: 1 !important; }
  .vanilla-reveal { animation-delay: calc(0.05s + var(--stagger, 0) * 0.08s) !important; }
}

/* ── Section 2 Pain styles ── */
#section-pain { background: #F7F3EE; }
.hop-s2-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 80px; align-items: start; max-width: 1400px; margin: 0 auto; padding: 0 80px; }
.hop-s2-left { position: sticky; top: 0; height: 100dvh; display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
.hop-s2-eyebrow { font-family: DM Sans, sans-serif; font-weight: 700; letter-spacing: 0.4em; color: #C5A059; font-size: 0.8rem; display: block; }
.hop-s2-headline { font-family: DM Sans, sans-serif; font-size: clamp(34px, 4.5vw, 62px); line-height: 1.1; font-weight: 600; margin: 0; color: #0A1F14; }
.hop-s2-headline em { color: #C5A059; font-style: italic; }
.hop-s2-right { padding: 120px 0 0; border-top: 1px solid rgba(0,0,0,0.08); }
.hop-s2-item { padding: 4rem 1rem 4rem 0; border-bottom: 1px solid rgba(0,0,0,0.08); cursor: pointer; border-radius: 4px; transition: background 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.hop-s2-item:hover { background: rgba(197,160,89,0.03); transform: translateX(10px); }
.hop-s2-item-top { display: flex; align-items: center; gap: 1.75rem; margin-bottom: 1.5rem; }
.hop-s2-num { font-family: DM Sans, sans-serif; font-weight: 800; font-size: 0.8rem; color: #C5A059; opacity: 0.3; flex-shrink: 0; }
.hop-s2-item-title { font-family: DM Sans, sans-serif; font-size: clamp(20px, 1.8vw, 28px); font-weight: 600; flex-grow: 1; margin: 0; color: #0A1F14; line-height: 1.2; }
.hop-s2-item-body { padding-left: 3.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.hop-s2-desc { font-family: DM Sans, sans-serif; opacity: 0.6; font-size: 1.05rem; line-height: 1.65; margin: 0; color: #0A1F14; }
.hop-s2-cta { font-family: DM Sans, sans-serif; font-weight: 800; color: #C5A059; text-decoration: none; font-size: 0.85rem; letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.3s ease; }
.hop-s2-cta:hover { gap: 0.85rem; }
@keyframes s2FadeIn { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
.hop-s2-reveal { opacity: 0; }
.hop-s2-reveal.is-visible { animation: s2FadeIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: calc(var(--stagger, 0) * 0.12s); }
.hop-s2-left-reveal { opacity: 0; transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); transform: translateY(24px); }
.hop-s2-left-reveal.is-visible { opacity: 1; transform: translateY(0); }
.hop-s2-portrait-wrap { overflow: hidden; border-radius: 8px; max-width: 80%; clip-path: inset(100% 0 0 0); transform: scale(1.06); box-shadow: 0 40px 80px -20px rgba(0,0,0,0.15); will-change: transform; }
@keyframes s2PortraitReveal { from { clip-path: inset(100% 0 0 0); transform: scale(1.06); } to { clip-path: inset(0 0 0 0); transform: scale(1); } }
@keyframes s2Float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-6px) scale(1); } }
.hop-s2-portrait-wrap.is-visible { animation: s2PortraitReveal 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards, s2Float 5s cubic-bezier(0.45, 0, 0.55, 1) 2s infinite; }
.hop-s2-portrait { display: block; width: 100%; max-height: 45vh; object-fit: cover; object-position: center top; border-radius: 8px; }

@media (max-width: 1024px) {
  .hop-s2-grid { grid-template-columns: 1fr; gap: 0; padding: 0 40px; }
  .hop-s2-left { position: relative; top: auto; height: auto; padding: 80px 0 60px; }
  .hop-s2-right { padding: 0 0 80px; }
  .hop-s2-item { padding: 2.5rem 0; }
  .hop-s2-item:hover { transform: none; }
}
@media (max-width: 640px) { .hop-s2-grid { padding: 0 24px; } .hop-s2-item-body { padding-left: 2rem; } }

/* ── Section 3 Screening / Checklist ── */
#section-screening { background: #0A1F14; padding: 0 0 120px 0; position: relative; }
.hop-s3-sticky-header { position: relative; z-index: 30; text-align: center; padding: 100px 48px 80px; pointer-events: none; }
.hop-s3-sticky-header h2 { font-family: DM Sans, sans-serif; font-size: clamp(26px, 3.2vw, 50px); font-weight: 600; line-height: 1.25; color: white; margin: 0; }
.hop-s3-stack-wrapper { max-width: 1000px; margin: 0 auto; padding: 0 48px 40px; display: flex; flex-direction: column; }
.hop-s3-stack-card { position: sticky; border-radius: 20px; overflow: hidden; height: 480px; margin-bottom: 16px; box-shadow: 0 -20px 40px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); will-change: transform, filter; transform-origin: center top; }
.hop-s3-card-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.hop-s3-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,31,20,0.93) 0%, rgba(10,31,20,0.55) 50%, rgba(10,31,20,0.1) 100%); }
.hop-s3-card-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.hop-s3-card-header { display: flex; align-items: center; gap: 1.25rem; }
.hop-s3-num { color: #C5A059; font-family: DM Sans, sans-serif; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.12em; flex-shrink: 0; }
.hop-s3-title { color: white; font-family: DM Sans, sans-serif; font-size: clamp(20px, 2.2vw, 32px); font-weight: 600; line-height: 1.2; margin: 0; }
.hop-s3-details { color: rgba(255,255,255,0.68); font-family: DM Sans, sans-serif; font-size: clamp(14px, 1.1vw, 16px); line-height: 1.65; margin: 0; max-width: 68%; }
.hop-s3-sos-text-wrap { text-align: center; max-width: 760px; margin: 64px auto 40px; padding: 0 48px; }
.hop-s3-sos-h2 { font-family: DM Sans, sans-serif; font-size: clamp(20px, 2.2vw, 32px); font-weight: 400; font-style: italic; color: rgba(255,255,255,0.82); line-height: 1.6; margin: 0; transition: color 0.4s ease; cursor: default; }
.hop-s3-sos-h2:hover { color: rgba(255,255,255,1); }
.hop-s3-cta-wrap { text-align: center; margin-top: 40px; }
@keyframes s3FadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hop-s3-reveal { opacity: 0; }
.hop-s3-reveal.is-visible { animation: s3FadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: calc(var(--stagger, 0) * 0.2s); }

@media (max-width: 1024px) {
  .hop-s3-stack-wrapper { padding: 0 24px 32px; }
  .hop-s3-stack-card { height: 400px; }
  .hop-s3-stack-card:nth-child(1) { top: 20vh; }
  .hop-s3-stack-card:nth-child(2) { top: 24vh; }
  .hop-s3-stack-card:nth-child(3) { top: 28vh; }
  .hop-s3-stack-card:nth-child(4) { top: 32vh; }
  .hop-s3-sticky-header { padding: 80px 24px 60px; top: 6vh; }
}
@media (max-width: 640px) {
  .hop-s3-stack-wrapper { padding: 0 24px 24px; }
  .hop-s3-stack-card { height: 340px; }
  .hop-s3-stack-card:nth-child(1) { top: 16vh; }
  .hop-s3-stack-card:nth-child(2) { top: 20vh; }
  .hop-s3-stack-card:nth-child(3) { top: 24vh; }
  .hop-s3-stack-card:nth-child(4) { top: 28vh; }
  .hop-s3-card-content { padding: 2rem 1.5rem; }
  .hop-s3-details { max-width: 100%; }
  .hop-s3-cta-wrap { margin-top: 32px; margin-bottom: 24px; }
  .hop-s3-sos-text-wrap { padding: 0 24px; margin: 48px auto 28px; }
}

/* ── Section 5 Authority styles ── */
.hop-s5-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 100px; align-items: start; max-width: 1400px; margin: 0 auto; padding: 0 80px; }
.hop-s5-left { position: relative; }
.hop-s5-img-wrap { position: relative; width: 100%; aspect-ratio: 3/4; border-radius: 999px 999px 8px 8px; overflow: hidden; clip-path: inset(100% 0 0 0); transform: scale(1.05); will-change: clip-path, transform; }
@keyframes s5ImgReveal { from { clip-path: inset(100% 0 0 0); transform: scale(1.05); } to { clip-path: inset(0 0 0 0); transform: scale(1); } }
.hop-s5-img-wrap.is-visible { animation: s5ImgReveal 1.2s cubic-bezier(0.8, 0, 0.2, 1) forwards; }
.hop-s5-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hop-s5-floating-card { position: absolute; bottom: 10%; right: -15%; background: rgba(255, 255, 255, 0.72); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 2rem; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.4); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6); max-width: 250px; text-align: left; opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); transition-delay: 0.9s; will-change: opacity, transform; }
@keyframes s5Float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hop-s5-floating-card.is-visible { opacity: 1; animation: s5Float 5.5s cubic-bezier(0.45, 0, 0.55, 1) 1.8s infinite; }
.hop-s5-social-wrap { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2.5rem; flex-wrap: wrap; opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); transition-delay: 1.3s; }
.hop-s5-social-wrap.is-visible { opacity: 1; transform: translateY(0); }
.hop-s5-social-btn { padding: 0.45rem 1rem; background: rgba(0, 0, 0, 0.03); border-radius: 100px; color: #C5A059; text-decoration: none; font-family: DM Sans, sans-serif; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; transition: background 0.3s ease, color 0.3s ease; display: inline-block; }
.hop-s5-social-btn:hover { background: #1A2621; color: white; }
@keyframes s5FadeUp { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }
.hop-s5-reveal { opacity: 0; will-change: transform, opacity; backface-visibility: hidden; }
.hop-s5-reveal.is-visible { animation: s5FadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: calc(var(--stagger, 0) * 0.13s); }
.hop-s5-blockquote { font-family: DM Sans, sans-serif; font-size: clamp(22px, 2.2vw, 32px); line-height: 1.55; border-left: 2px solid #C5A059; padding-left: 2.5rem; margin: 0 0 3.5rem; font-style: italic; color: #1A2621; }
#hop-counters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; border-top: 1px solid rgba(0, 0, 0, 0.1); padding-top: 3rem; margin-bottom: 3rem; }
.hop-s5-count-num { font-family: DM Sans, sans-serif; font-size: 2.2rem; color: #C5A059; line-height: 1.1; }
.hop-s5-count-label { font-family: DM Sans, sans-serif; font-size: 0.58rem; font-weight: 800; opacity: 0.4; letter-spacing: 0.2em; margin-top: 0.4rem; }
.hop-s5-mobile-eyebrow { display: none; }

@media(max-width: 1024px) {
  .hop-s5-grid { grid-template-columns: 1fr; gap: 60px; padding: 0 32px; }
  .hop-s5-floating-card { right: 5%; bottom: 5%; max-width: 200px; padding: 1.5rem; }
  #hop-counters { grid-template-columns: repeat(2, 1fr); }
  .hop-s5-mobile-eyebrow { display: block; font-family: DM Sans, sans-serif; font-weight: 600; letter-spacing: -0.01em; color: #1A2621; font-size: clamp(22px, 4vw, 32px); line-height: 1.3; margin-bottom: 1.5rem; }
  .hop-s5-grid > div:last-child > .hop-s5-reveal[style*="--stagger:0"] { display: none !important; }
}
@media(max-width: 640px) {
  .hop-s5-grid { padding: 0 24px; gap: 40px; }
  .hop-s5-floating-card { position: relative; right: 0; bottom: 0; max-width: 100%; margin-top: -2rem; z-index: 2; }
  #hop-counters { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ── Section 6 Process Timeline ── */
.hop-s6-step { display: flex; align-items: center; margin-bottom: 120px; position: relative; }
.hop-s6-step-left { flex-direction: row; }
.hop-s6-step-right { flex-direction: row-reverse; }
.hop-s6-text-col { width: 42%; }
.hop-s6-text-left { text-align: right; padding: 0 5rem 0 0; }
.hop-s6-text-right { text-align: left; padding: 0 0 0 5rem; }
.hop-s6-num { font-family: DM Sans, sans-serif; font-weight: 800; color: #C5A059; opacity: 0.3; font-size: 1.5rem; display: block; }
.hop-s6-title { font-family: DM Sans, sans-serif; font-size: clamp(22px, 2.2vw, 32px); font-weight: 600; margin: 1rem 0 0.75rem; color: #1A2621; }
.hop-s6-desc { font-family: DM Sans, sans-serif; opacity: 0.6; font-size: 1.05rem; line-height: 1.75; margin: 0; }
.hop-s6-dot { flex-shrink: 0; width: 20px; height: 20px; background: #C5A059; border-radius: 50%; box-shadow: 0 0 0 12px rgba(197, 160, 89, 0.1); position: relative; z-index: 2; border: 4px solid #F7F3EE; }
.hop-s6-img-col { width: 42%; }
.hop-s6-img-wrap { width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1); }
.hop-s6-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.hop-s6-img-wrap:hover img { transform: scale(1.04); }
.hop-s6-path { stroke-dasharray: 3000; stroke-dashoffset: 3000; transition: stroke-dashoffset 3s ease-out; opacity: 0.12; }
.is-visible .hop-s6-path { stroke-dashoffset: 0; }

@media(max-width: 768px) {
  .hop-s6-step, .hop-s6-step-left, .hop-s6-step-right { flex-direction: column !important; align-items: flex-start !important; padding-left: 3.5rem; margin-bottom: 80px; }
  .hop-s6-dot { position: absolute; left: 0; top: 8px; margin: 0; }
  .hop-s6-text-col { width: 100% !important; }
  .hop-s6-text-left, .hop-s6-text-right { text-align: left !important; padding: 0 !important; }
  .hop-s6-img-col { width: 100% !important; margin-top: 1.5rem; }
  .hop-s6-img-wrap { aspect-ratio: 16/9; }
  .hop-s6-path, .hop-s6-steps-wrap svg { left: 10px !important; transform: none !important; }
}

/* ── Section 7 Testimonials Slider ── */
.hop-s7-card { width: min(500px, 85vw); background: white; padding: 4rem; border-radius: 4px; border: 1px solid rgba(0,0,0,0.03); display: flex; flex-direction: column; gap: 2rem; box-shadow: 0 30px 60px rgba(0,0,0,0.02); flex-shrink: 0; }
.hop-s7-track { display: flex; gap: 4rem; width: max-content; will-change: transform; cursor: grab; user-select: none; touch-action: pan-y; }
.hop-s7-track:active { cursor: grabbing; }
.hop-s7-viewport { position: relative; overflow: hidden; }
.hop-s7-fade-l, .hop-s7-fade-r { position: absolute; top: 0; height: 100%; width: 80px; pointer-events: none; z-index: 2; }
.hop-s7-fade-l { left: 0; background: linear-gradient(to right, #FBF9F7 0%, transparent 100%); }
.hop-s7-fade-r { right: 0; background: linear-gradient(to left, #FBF9F7 0%, transparent 100%); }

@media(max-width: 768px) {
  .hop-s7-card { width: min(300px, 85vw); padding: 2.5rem; gap: 1.5rem; }
  .hop-s7-card h3 { font-size: 1.5rem !important; }
  .hop-s7-fade-l, .hop-s7-fade-r { width: 32px; }
}

/* ── Section 8 Pricing Section ── */
.hop-pillar-wrapper { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 24px; }
.hop-pillar-eyebrow { font-family: DM Sans, sans-serif; font-weight: 700; letter-spacing: 0.4em; color: #C5A059; font-size: 0.85rem; display: block; margin-bottom: 1.5rem; }
.hop-pillar-heading { font-family: DM Sans, sans-serif; font-size: clamp(40px, 4.5vw, 64px); line-height: 1.1; font-weight: 600; color: #1A2621; margin: 0 0 1.5rem; }
.hop-pillar-intro { font-family: DM Sans, sans-serif; font-size: 1.1rem; line-height: 1.8; color: #1A2621; opacity: 0.6; margin: 0 0 3rem; max-width: 560px; }
.hop-price-massive { font-family: DM Sans, sans-serif; font-size: clamp(48px, 6vw, 80px); font-weight: 700; color: #1A2621; line-height: 1; margin-bottom: 1rem; }
.hop-price-dash { font-size: 2rem; opacity: 0.25; }
.hop-price-sub { font-family: DM Sans, sans-serif; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.22em; color: #1A2621; opacity: 0.4; margin: 0 0 4rem; }
.hop-checklist-label { font-family: DM Sans, sans-serif; font-size: 1.15rem; font-weight: 700; color: #1A2621; margin-bottom: 1.5rem; }
.hop-checklist-card { width: 100%; background: #FFFFFF; border: 1px solid rgba(0,0,0,0.05); border-radius: 24px; box-shadow: 0 30px 60px -15px rgba(0,0,0,0.07); overflow: hidden; margin-bottom: 3rem; text-align: left; }
.hop-checklist-list { list-style: none; padding: 0; margin: 0; }
.hop-checklist-item { display: flex; align-items: flex-start; gap: 1.25rem; padding: 2rem 2.5rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.hop-checklist-item:last-child { border-bottom: none; }
.hop-item-special { background: rgba(197,160,89,0.05); }
.hop-check-icon { flex-shrink: 0; margin-top: 0.25rem; }
.hop-item-body { flex: 1; min-width: 0; }
.hop-item-title { font-family: DM Sans, sans-serif; font-size: 1.15rem; font-weight: 600; color: #1A2621; margin: 0 0 0.4rem; }
.hop-item-desc { font-family: DM Sans, sans-serif; font-size: 0.9rem; color: #1A2621; opacity: 0.5; margin: 0; line-height: 1.55; }
.hop-item-dur { font-family: DM Sans, sans-serif; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; color: #1A2621; opacity: 0.35; flex-shrink: 0; margin-top: 0.3rem; white-space: nowrap; }
.hop-item-dur-gold { color: #C5A059; opacity: 1; }
.hop-pillar-location { display: flex; align-items: center; justify-content: center; gap: 0.6rem; font-family: DM Sans, sans-serif; font-size: 0.95rem; color: #1A2621; opacity: 0.55; margin-bottom: 2rem; }
.hop-pillar-cta { max-width: 440px; width: 100%; border-radius: 100px; padding: 1.8rem 2rem; box-sizing: border-box; text-align: center; }

@media(max-width: 640px) {
  .hop-checklist-item { padding: 1.5rem; flex-wrap: wrap; }
  .hop-item-dur { width: 100%; margin-top: 0.5rem; }
}

/* ── Section 9 Inaction Warning ── */
:root {
  --bg-sanctuary: #F7F3EE;
  --text-deep: #1A2621;
  --accent-gold: #C5A059;
}
.hop-s9-section { background: var(--bg-sanctuary); color: var(--text-deep); padding: 0 0 180px; overflow: hidden; }
.hop-s9-header { text-align: center; margin-bottom: 100px; padding-top: 0; }
.hop-s9-header::before { content: ''; display: block; width: 1px; height: 60px; background: var(--accent-gold); margin: 0 auto 2rem; transform: scaleY(0); transform-origin: top; transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1); }
.hop-s9-header.is-visible::before { transform: scaleY(1); }
.hop-s9-eyebrow { font-family: DM Sans; font-weight: 700; letter-spacing: 0.4em; color: var(--accent-gold); font-size: 0.85rem; display: block; text-transform: uppercase; margin-bottom: 2rem; }
.js-split-line { display: inline-block; overflow: hidden; vertical-align: bottom; }
.js-split-word { display: inline-block; transform: translateY(100%); transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1); will-change: transform; }
.is-visible .js-split-word { transform: translateY(0); }
.hop-s9-headline { font-family: DM Sans; font-size: clamp(48px, 6vw, 88px); line-height: 1.05; font-weight: 600; margin: 0; color: var(--text-deep); }
.hop-s9-desc { font-family: DM Sans; font-size: 1.3rem; opacity: 0.7; margin-top: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.6; color: var(--text-deep); }
.hop-s9-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-bottom: 120px; align-items: start; }
.hop-s9-card { position: relative; aspect-ratio: 3/4.2; border-radius: 12px; overflow: hidden; cursor: pointer; background: #111; will-change: transform; transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.2, 1, 0.3, 1); }
.hop-s9-card:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(26,38,33,0.2); }
@media (min-width: 769px) {
  .hop-s9-card:nth-child(2) { transform: translateY(50px); }
  .hop-s9-card:nth-child(2):hover { transform: translateY(38px); box-shadow: 0 30px 60px rgba(26,38,33,0.2); }
}
.hop-s9-img-wrap { position: absolute; inset: -15%; width: 130%; height: 130%; overflow: hidden; z-index: 0; pointer-events: none; will-change: transform; }
.hop-s9-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.2); will-change: transform; }
.hop-s9-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,38,33,0.05) 0%, rgba(26,38,33,0.4) 100%); z-index: 1; pointer-events: none; }
.hop-s9-card-overlay { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.9); box-shadow: 0 20px 40px rgba(0,0,0,0.08); padding: 1.5rem 1.25rem; z-index: 2; overflow: hidden; transform: none; opacity: 1; transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1); will-change: transform, opacity; }

@media(min-width: 769px) {
  .hop-s9-card-overlay { transform: translateY(30px); opacity: 0; padding: 2.5rem 2rem; }
  .hop-s9-card.is-visible .hop-s9-card-overlay { transform: translateY(0); opacity: 1; }
  .hop-s9-delay-1 .hop-s9-card-overlay { transition-delay: 0.1s; }
  .hop-s9-delay-2 .hop-s9-card-overlay { transition-delay: 0.2s; }
  .hop-s9-delay-3 .hop-s9-card-overlay { transition-delay: 0.3s; }
}
.hop-s9-watermark { position: absolute; top: -1rem; right: 0.5rem; font-family: DM Sans; font-size: 8rem; font-weight: 300; font-style: italic; color: var(--accent-gold); opacity: 0.15; line-height: 1; pointer-events: none; z-index: -1; }
.hop-s9-card-title { font-family: DM Sans; font-size: 1.8rem; font-weight: 600; color: var(--text-deep); margin: 0 0 0.8rem; letter-spacing: -0.02em; }
.hop-s9-card-desc { font-family: DM Sans; font-size: 1.05rem; color: var(--text-deep); opacity: 0.8; line-height: 1.6; margin: 0; }
.hop-s9-footer { text-align: center; max-width: 900px; margin: 0 auto; }
.hop-s9-quote { font-family: DM Sans; font-style: italic; font-size: clamp(28px, 4vw, 48px); line-height: 1.5; color: var(--text-deep); margin-bottom: 4rem; opacity: 0; transform: translateY(20px); transition: all 0.8s ease; position: relative; padding: 0 2rem; }
.hop-s9-quote::before { content: '“'; font-size: 12rem; color: var(--accent-gold); position: absolute; top: -2rem; left: -1rem; opacity: 0.05; line-height: 1; pointer-events: none; font-style: normal; }
.hop-s9-quote.is-visible { opacity: 0.9; transform: translateY(0); }
.hop-s9-btn { display: inline-flex; align-items: center; gap: 1rem; background: linear-gradient(135deg, rgba(197,160,89,0.95) 0%, rgba(26,38,33,0.85) 100%); color: white; font-family: DM Sans; font-size: 0.85rem; font-weight: 800; letter-spacing: 0.1em; text-decoration: none; padding: 1.5rem 4rem; border-radius: 100px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1); opacity: 0; transform: translateY(20px); will-change: transform, opacity; }
.hop-s9-btn.is-visible { opacity: 1; transform: translateY(0); }
.hop-s9-btn b { display: inline-block; transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1); }
.hop-s9-btn:hover { background: linear-gradient(135deg, rgba(197,160,89,1) 0%, rgba(26,38,33,0.95) 100%); color: #fff !important; transform: translateY(-4px) !important; box-shadow: 0 20px 40px rgba(197,160,89,0.3); }
.hop-s9-btn:hover b { transform: translateX(8px); }

@media(max-width: 768px) {
  .hop-s9-section { padding: 0 0 100px; overflow: visible; }
  .hop-s9-section .container-inner { padding-left: 0 !important; padding-right: 0 !important; }
  .hop-s9-header { margin-bottom: 60px; padding-left: 24px; padding-right: 24px; }
  .hop-s9-footer { padding: 0 24px; }
  .hop-s9-headline { font-size: clamp(36px, 9vw, 56px); line-height: 1.1; }
  .hop-s9-desc { font-size: 1.05rem; }
  .hop-s9-grid { display: flex; flex-direction: row; overflow-x: auto; overflow-y: visible; gap: 1rem; margin-bottom: 60px; padding: 10px 24px 30px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .hop-s9-grid::-webkit-scrollbar { display: none; }
  .hop-s9-card { flex: 0 0 72vw; max-width: 280px; aspect-ratio: 3/4.2; scroll-snap-align: start; }
  .hop-s9-card:nth-child(2) { transform: none !important; }
  .hop-s9-quote { font-size: clamp(17px, 4.5vw, 22px); padding: 0; line-height: 1.5; word-break: normal; overflow-wrap: break-word; }
  .hop-s9-card-overlay { background: rgba(255, 255, 255, 0.96); box-shadow: 0 8px 24px rgba(0,0,0,0.14); padding: 1.25rem 1rem; }
  .hop-s9-card-title { font-size: 1.3rem; letter-spacing: -0.01em; margin: 0 0 0.5rem; }
  .hop-s9-card-desc { font-size: 0.9rem; line-height: 1.5; opacity: 1; }
  .hop-s9-watermark { font-size: 5.5rem; top: -0.5rem; }
  .hop-s9-quote::before { display: none; }
  .hop-s9-btn { padding: 1.2rem 2.5rem; width: 100%; justify-content: center; }
}

/* ── Section 10 FAQ Accordion ── */
.hop-faq-item.is-active .hop-faq-answer { max-height: 1000px !important; opacity: 1 !important; margin-top: 1rem; }
.hop-faq-item.is-active h3 { color: #C5A059 !important; }
.hop-faq-item.is-active .hop-faq-icon { transform: rotate(45deg) !important; color: #C5A059 !important; }
@media(max-width: 768px) {
  .hop-faq-answer { padding-left: 1.5rem !important; }
}


/* ==========================================================================
   Elementor Editor Overrides (Force visibility for builder canvas parity)
   ========================================================================== */
.elementor-editor-active .js-reveal,
.elementor-edit-mode .js-reveal,
.elementor-editor-active .hop-s2-reveal,
.elementor-edit-mode .hop-s2-reveal,
.elementor-editor-active .hop-s2-left-reveal,
.elementor-edit-mode .hop-s2-left-reveal,
.elementor-editor-active .hop-s3-reveal,
.elementor-edit-mode .hop-s3-reveal,
.elementor-editor-active .hop-s5-reveal,
.elementor-edit-mode .hop-s5-reveal,
.elementor-editor-active .vanilla-reveal,
.elementor-edit-mode .vanilla-reveal,
.elementor-editor-active .hop-s9-quote,
.elementor-edit-mode .hop-s9-quote,
.elementor-editor-active .hop-s9-btn,
.elementor-edit-mode .hop-s9-btn {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

.elementor-editor-active .hop-s2-portrait-wrap,
.elementor-edit-mode .hop-s2-portrait-wrap,
.elementor-editor-active .hop-s5-img-wrap,
.elementor-edit-mode .hop-s5-img-wrap {
  clip-path: none !important;
  transform: none !important;
  animation: none !important;
}

.elementor-editor-active .hop-s5-floating-card,
.elementor-edit-mode .hop-s5-floating-card {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.elementor-editor-active .hop-s9-card-overlay,
.elementor-edit-mode .hop-s9-card-overlay {
  opacity: 1 !important;
  transform: none !important;
}
