:root {
  --bg-dark: #180700;
  --bg-red: #450307;
  --bg-light: #f7f0e8;
  --bg-gray: #f5f5f5;
  --accent-gold: #d7c6a8;
  --text-white: #f7f0e8;
  --text-dark: #180700;
  --text-gold-dim: #a08c71;
  --text-muted: #555555;
  --font-heading: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
  --bg-black: #020202;
  --text-brown: #503017;
  --spacing-section: 72px;
  --spacing-element: 16px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--bg-dark);
  color: var(--text-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.top-bar {
  background-color: var(--bg-red);
  color: var(--text-white);
  text-align: center;
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.hero-light {
  background-color: var(--bg-dark);
  padding: 48px 16px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.hero-image-wrapper {
  width: 100%;
  max-width: 450px;
  z-index: 1;
}
.hero-content-light {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 600px;
  z-index: 2;
  width: 100%;
}
.hero-top-text-light {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: #6e6e6e;
  margin-bottom: -12px;
}
.hero-title-light {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 28px;
  color: var(--text-white);
  line-height: 1.25;
}
.hero-subtitle-light {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--accent-gold);
  line-height: 1.6;
  max-width: 500px;
  text-align: center;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 358px;
  margin-top: 8px;
}
.cta-button-dark {
  background-color: #4a8e4b;
  color: #f7f0e8;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  padding: 20px 24px;
  border-radius: 4px;
  border: 1px solid #3d7a3e;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  position: relative;
}
.btn-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #f7f0e8;
  stroke-width: 2px;
  stroke-dasharray: 150 480;
  stroke-dashoffset: 150;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@keyframes spin-border {
  from {
    stroke-dashoffset: 630;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.cta-button-dark:hover .btn-svg {
  opacity: 1;
  animation: spin-border 2s linear infinite;
}
.btn-text {
  position: relative;
  z-index: 1;
}
.cta-button-outline {
  background-color: #f7f0e8;
  color: #440206;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  padding: 18px 24px;
  border-radius: 4px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #440206;
  gap: 10px;
  transition: all 0.2s ease;
  line-height: 1;
}
.cta-button-dark:hover,
.cta-button-outline:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.hero-social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.social-avatars {
  display: flex;
  align-items: center;
}
.social-circles {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.social-circle {
  width: 40px;
  height: 40px;
  background: #180700;
  border-radius: 50%;
  margin-left: -8px;
  border: 2px solid #f7f0e8;
  overflow: hidden;
  flex-shrink: 0;
}
.social-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.social-circle:first-child {
  margin-left: 0;
}
.social-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #f7f0e8;
  object-fit: cover;
  margin-left: -12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.social-avatars img:first-child {
  margin-left: 0;
}
.social-count-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #440206;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-left: -12px;
  border: 2px solid #f7f0e8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  font-family: var(--font-body);
}
.social-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: #180700;
  text-align: center;
  max-width: 280px;
  line-height: 1.4;
}
/* Social Proof Section */
.social-proof-section {
  background: #f5f5f5;
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}
.social-proof-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: #020202;
  text-align: center;
}
.social-proof-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 12px;
  width: 100%;
  scrollbar-width: none;
}
.social-proof-scroll::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .social-proof-scroll {
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
    scroll-snap-type: none;
  }
}
.social-proof-card {
  min-width: 300px;
  max-width: 320px;
  padding: 14px;
  background: white;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-snap-align: start;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.social-proof-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.social-proof-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d9d9d9;
  overflow: hidden;
  flex-shrink: 0;
}
.social-proof-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.social-proof-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.social-proof-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: #020202;
  line-height: 1.2;
}
.social-proof-stars {
  display: flex;
  align-items: center;
  gap: 0;
}
.social-proof-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}
.social-proof-img {
  width: 100%;
  height: 262px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.social-proof-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.social-proof-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 358px;
}
.social-proof-circles {
  display: flex;
  align-items: center;
}
.sp-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #180700;
  margin-left: -8px;
  border: 2px solid #f5f5f5;
  overflow: hidden;
  flex-shrink: 0;
}
.sp-circle:first-child {
  margin-left: 0;
}
.sp-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.sp-footer-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: #180700;
  text-align: center;
}

.features-section {
  background-color: white;
  padding: var(--spacing-section) 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.section-title-center {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  color: #180700;
  text-align: center;
  max-width: 400px;
  line-height: 1.3;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 400px;
}
.features-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  max-width: 420px;
  line-height: 1.6;
  margin-top: -16px;
}
.feature-card {
  padding: 24px 12px;
  background: white;
  border-radius: 12px;
  border: 1px solid #d7c6a8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  min-height: 128px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
}
.feature-icon {
  font-size: 32px;
  line-height: 1;
  color: #8b5c2a;
  --ph-duotone-opacity: 0.3;
}
.feature-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: #180700;
  line-height: 1.4;
}
.more-features {
  width: 100%;
  max-width: 400px;
  padding: 20px 12px;
  background: transparent;
  border-radius: 12px;
  border: 1px solid #d7c6a8;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: #180700;
}
.comparison-section {
  background-color: #f5f5f5;
  padding: var(--spacing-section) 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.comparison-card {
  background: white;
  border-radius: 14px;
  padding: 24px 16px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.comparison-header {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: #020202;
  text-align: center;
  line-height: 1.4;
}
.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-group-title {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #020202;
  margin-bottom: 8px;
}
.compare-item {
  padding: 16px;
  background: #f5f5f5;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.compare-item.bad {
  border-bottom: 3px solid #e33428;
}
.compare-item.good {
  border-bottom: 3px solid #36c133;
}
.compare-icon {
  font-size: 32px;
  line-height: 1;
}
.compare-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #180700;
  line-height: 1.4;
}
.quote-banner {
  background-color: #440206;
  padding: var(--spacing-section) 16px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.quote-text {
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 300;
  color: #f7f0e8;
  max-width: 600px;
  line-height: 1.4;
}
.quote-text .italic {
  font-style: italic;
  font-weight: 600;
}
.bonuses-list-section {
  background-color: #020202;
  padding: var(--spacing-section) 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.bonuses-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}
.bonus-list-item {
  background: #180700;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  width: 100%;
}
.bonus-item-image {
  height: 200px;
  background: #989c95;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.bonus-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.bonus-list-item:hover .bonus-item-image img {
  transform: scale(1.03);
}
.bonus-item-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bonus-item-title {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 600;
  color: #f7f0e8;
  line-height: 1.2;
}
.bonus-item-desc {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #a08c71;
  text-align: justify;
  line-height: 1.5;
}
.bonus-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.old-price {
  font-family: "Fraunces", serif;
  font-size: 18px;
  color: #f7f0e8;
  text-decoration: line-through;
  opacity: 0.8;
}
.free-badge {
  background: #d7c6a8;
  color: #020202;
  font-family: "Fraunces", serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
}
.testimonials-section-new {
  background-color: white;
  padding: var(--spacing-section) 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.about-raquel-new {
  background-color: #f7f0e8;
  padding: var(--spacing-section) 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.raquel-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.raquel-card-img {
  width: 100%;
  max-width: 380px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: #180700;
}
.raquel-card-img img {
  width: 100%;
  height: auto;
  display: block;
}
.offer-section-new {
  background-color: white;
  padding: var(--spacing-section) 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.pricing-card {
  background: #f5f5f5;
  padding: 32px 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 400px;
  border: 1px solid #e3e3e3;
}
.checklist {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.checklist-item {
  padding: 12px 0;
  border-bottom: 1px solid #e3e3e3;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.checklist-item:last-child {
  border-bottom: none;
}
.checklist-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #180700;
  line-height: 1.4;
}
.price-display {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.price-old {
  font-family: "Fraunces";
  font-size: 24px;
  text-decoration: line-through;
  color: #121212;
  font-weight: 600;
  opacity: 0.5;
}
.price-current {
  font-family: "Fraunces";
  font-size: 36px;
  color: #de2b2b;
  font-weight: 700;
  line-height: 1.1;
}
.coupon-box {
  background: rgba(221, 43, 43, 0.1);
  border: 1px solid #de2b2b;
  color: #61181f;
  border-radius: 4px;
  padding: 8px 16px;
  font-family: "Inter";
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.faq-section {
  background: #180700;
  padding: var(--spacing-section) 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.faq-title {
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 600;
  color: #f7f0e8;
  text-align: center;
}
.faq-list {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 0.5px solid rgba(247, 240, 232, 0.4);
  padding: 24px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  color: #f7f0e8;
  font-family: "Inter";
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon.plus::before,
.faq-icon.plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f7f0e8;
}
.faq-icon.plus::before {
  width: 14px;
  height: 2px;
}
.faq-icon.plus::after {
  width: 2px;
  height: 14px;
  transition: transform 0.2s ease;
}
details[open] .faq-icon.plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-answer {
  margin-top: 16px;
  color: rgba(247, 240, 232, 0.8);
  font-family: "Inter";
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
}
.footer-new {
  background-color: #020202;
  padding: 48px 16px;
  text-align: center;
  color: #f7f0e8;
  font-family: "Inter";
  font-weight: 300;
  font-size: 14px;
  opacity: 0.8;
}
.carousel-container {
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
}
.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}
.carousel-slide {
  min-width: 100%;
}
.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.carousel-btn {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 12px;
  color: #180700;
  flex-shrink: 0;
}
.carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke: #180700;
  stroke-width: 2;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 12px;
}
.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-indicator.current-slide {
  background: #440206;
  transform: scale(1.1);
}

/* NEW HOW IT WORKS SECTION */
.how-it-works-section-new {
  width: 100%;
  padding: 72px 16px;
  background: #f5f5f5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.section-title-new {
  width: 100%;
  text-align: center;
  color: #020202;
  font-size: 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  max-width: 400px;
}
.glow-card {
  width: 100%;
  max-width: 400px;
  padding: 16px;
  background: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.glow-card-title {
  width: 100%;
  text-align: center;
  color: #020202;
  font-size: 20px;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.4;
}
.glow-card-image-box {
  width: 100%;
  position: relative;
  background: white;
  overflow: hidden;
}
.glow-card-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.glow-card-desc {
  width: 100%;
  text-align: center;
  color: #180700;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.4;
}

.glow-box-highlight {
  width: 100%;
  max-width: 400px;
  padding: 32px 24px;
  background: white;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.highlight-title {
  width: 100%;
  text-align: center;
  color: #020202;
  font-size: 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 8px;
}
.highlight-item {
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid #e3e3e3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.highlight-icon {
  font-size: 24px;
  line-height: 1.4;
}
.highlight-text {
  text-align: center;
  color: #180700;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.4;
}
.highlight-image-stacked {
  width: 100%;
  position: relative;
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.highlight-img-bg {
  width: 100%;
  position: relative;
}
.highlight-img-bg img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* RECURSOS QUE VOCE VAI ADORAR */
.resources-section-new {
  width: 100%;
  padding: 32px 15px;
  background: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.resources-title {
  width: 100%;
  text-align: center;
  color: #020202;
  font-size: 24px;
  font-family: var(--font-heading);
  font-weight: 600;
}
.resource-card {
  width: 100%;
  max-width: 400px;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.resource-badge {
  padding: 6px 12px;
  background: white;
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.07);
  border-radius: 999px;
  outline: 1px #ededed solid;
  outline-offset: -1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.resource-badge-dot {
  width: 6px;
  height: 6px;
  background: #219653;
  border-radius: 50%;
}
.resource-badge-text {
  text-align: center;
  color: #333333;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.4;
}
.resource-card-title {
  width: 100%;
  text-align: center;
  color: #020202;
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.4;
}
.resource-card-desc {
  width: 100%;
  text-align: center;
  color: #180700;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.4;
}
.resource-mockup-actions {
  width: 284px;
  height: 191px;
  position: relative;
}
.img-action {
  position: absolute;
  box-shadow: 2px 4px 13px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  border: 1px solid #ebeae8;
  object-fit: cover;
}
.img-action.top-center {
  width: 113px;
  height: 82px;
  left: 108px;
  top: 7px;
  z-index: 1;
}
.img-action.bottom-right {
  width: 112px;
  height: 81px;
  left: 125px;
  top: 119px;
  z-index: 2;
}
.img-action.center-right {
  width: 112px;
  height: 82px;
  left: 176px;
  top: 62px;
  z-index: 3;
}
.img-action.bottom-left {
  width: 113px;
  height: 81px;
  left: 18px;
  top: 104px;
  z-index: 4;
}
.img-action.center-left {
  width: 112px;
  height: 81px;
  left: 4px;
  top: 33px;
  z-index: 5;
}

.resource-mockup-theme {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.resource-mockup-theme img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.resource-actions {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.resource-actions img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.resource-mockup-mode {
  width: 328px;
  height: 169px;
  position: relative;
  background: white;
  box-shadow: 0px 3px 9.7px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  border-radius: 8px;
  outline: 4px #494949 solid;
  /* outline-offset: -2px; */
}
/* Image compare slider */
.img-compare-slider {
  width: 100%;
  height: 190px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  outline: 2px solid #494949;
  outline-offset: -2px;
  user-select: none;
  cursor: col-resize;
}
.img-compare-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
}
.img-compare-overlay {
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.img-compare-top {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  min-width: var(--slider-full-width, 328px);
}
.img-compare-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 10;
  cursor: col-resize;
  will-change: left;
}
.img-compare-handle-line {
  flex: 1;
  width: 2px;
  background: white;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.35);
}
.img-compare-handle-circle {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid #e3e3e3;
}
.cta-button-fixed-width {
  width: 100%;
  max-width: 358px;
}

/* NEW BONUS SECTION */
.bonuses-section-new {
  width: 100%;
  padding: 72px 16px;
  background: #020202;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bonuses-title-new {
  text-align: center;
  max-width: 400px;
}

.bonuses-title-new span {
  font-size: 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

.bonuses-title-white {
  color: #f7f0e8;
}

.bonuses-title-yellow {
  color: #ffd22f;
}

.bonuses-list-container {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bonus-card-new {
  width: 100%;
  padding: 14px;
  background: #180700;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bonus-image-wrapper-new {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.bg-light-gray {
  background: #f5f5f5;
}
.bg-gray-muted {
  background: #989c95;
}
.bg-cream {
  background: #f7f0e8;
}

.bonus-img-cover {
  width: 100%;
  height: auto;
  display: block;
}
.bonus-img-cover-top {
  width: 100%;
  height: auto;
  display: block;
}

.bonus-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bonus-title-new {
  color: #f7f0e8;
  font-size: 20px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.bonus-desc-new {
  text-align: justify;
  color: #a08c71;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.4;
}

.bonus-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bonus-old-price {
  color: #f7f0e8;
  font-size: 18px;
  font-family: var(--font-heading);
  font-weight: 400;
  text-decoration: line-through;
}

.bonus-free-badge {
  padding: 6px 14px;
  background: #d7c6a8;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bonus-free-badge-text {
  color: #020202;
  font-size: 18px;
  font-family: var(--font-heading);
  font-weight: 300;
}

/* Specific to XTiles custom layout */
.xtiles-layout-container {
  width: 234px;
  height: 160px;
  position: relative;
  margin: 6px auto 0;
}

.xt1 {
  width: 159px;
  height: 86px;
  left: 33px;
  top: 7px;
  position: absolute;
  border-radius: 4px;
  border: 2.2px solid #121212;
  border-top-width: 6.7px;
  overflow: hidden;
}
.xt1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xt2 {
  width: 57px;
  height: 76px;
  left: 175px;
  top: 50px;
  position: absolute;
  box-shadow: 0.4px 0.7px 2px rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  outline: 1.9px solid #121212;
  overflow: hidden;
}
.xt2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xt3 {
  width: 99px;
  height: 53px;
  left: 2px;
  top: 66px;
  position: absolute;
  border-radius: 2.8px;
  border: 1.4px solid #121212;
  border-top-width: 4.2px;
  overflow: hidden;
}
.xt3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xt4 {
  width: 45px;
  height: 77px;
  left: 47px;
  top: 78px;
  position: absolute;
  transform: rotate(-7deg);
  transform-origin: top left;
  box-shadow: 1px 1.8px 5.3px rgba(0, 0, 0, 0.12);
  border-radius: 2.6px;
  outline: 1.3px solid #121212;
  overflow: hidden;
}
.xt4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xt5 {
  width: 45px;
  height: 78px;
  left: 141px;
  top: 71px;
  position: absolute;
  transform: rotate(10deg);
  transform-origin: top left;
  box-shadow: 1px 1.8px 5.3px rgba(0, 0, 0, 0.12);
  border-radius: 2.6px;
  outline: 1.3px solid #121212;
  overflow: hidden;
}
.xt5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xt6 {
  width: 44px;
  height: 78px;
  left: 93px;
  top: 71px;
  position: absolute;
  transform: rotate(-1deg);
  transform-origin: top left;
  box-shadow: 1px 1.8px 5.3px rgba(0, 0, 0, 0.12);
  border-radius: 2.6px;
  outline: 1.3px solid #121212;
  overflow: hidden;
}
.xt6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xt-badge {
  padding: 5px;
  left: 81px;
  top: 119px;
  position: absolute;
  background: white;
  box-shadow: 3.6px 2.8px 0px #5c9894;
  border-radius: 6px;
  border: 0.5px solid #2f3d3c;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.xt-badge-inner {
  padding: 5px;
  background: #f8f8f8;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.xt-badge-inner img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  object-fit: cover;
}
.xt-badge-text {
  color: #121212;
  font-size: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 1024px) {
  :root {
    --spacing-section: 100px;
  }
  .hero-light {
    padding-top: 80px;
  }
  .features-grid {
    max-width: 900px;
    grid-template-columns: repeat(4, 1fr);
  }
  .comparison-card {
    max-width: 900px;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 48px;
    padding: 40px;
  }
  .comparison-list {
    flex: 1;
  }
  .bonuses-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    gap: 24px;
  }
  .bonuses-container > div:nth-last-child(2):nth-child(4),
  .bonuses-container > div:last-child {
    grid-column: auto / span 1;
  }
  .offer-section-new {
    padding: 120px 16px;
  }
  .about-raquel-new {
    /* max-width: 1000px; */
    margin: 0 auto;
    padding: var(--spacing-section) 48px;
  }
  .raquel-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 64px;
    width: 100%;
  }
  .raquel-card-img {
    flex: 1;
    max-width: 400px;
    margin-bottom: 0;
  }
  .about-raquel-new .hero-content-light {
    flex: 1;
    align-items: flex-start;
    text-align: left;
  }
  .raquel-title {
    margin-bottom: 24px;
  }
  .raquel-subtitle {
    text-align: left !important;
  }
  .about-raquel-new .hero-subtitle-light.raquel-text {
    text-align: left !important;
  }
}
.video-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-modal.show {
  display: flex;
  opacity: 1;
}
.modal-content {
  position: relative;
  background-color: #000;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.close-modal {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 2001;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .close-modal {
    right: -40px;
    top: -40px;
    background: transparent;
  }
}
.close-modal:hover,
.close-modal:focus {
  color: #de2b2b;
  text-decoration: none;
  cursor: pointer;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.modal-header {
  background-color: #000;
  padding: 24px 24px 8px 24px;
  border-radius: 8px 8px 0 0;
  text-align: center;
}
.modal-title {
  color: #fff;
  font-family: var(--font-heading, "Fraunces", serif);
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}
@media (min-width: 768px) {
  .modal-title {
    font-size: 24px;
  }
}
.modal-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  padding: 8px 56px 0 16px;
  background-color: #000;
  border-bottom: 1px solid #333;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.modal-tabs::-webkit-scrollbar {
  display: none;
}
.modal-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #888;
  font-family: var(--font-heading, "Fraunces", serif);
  font-size: 16px;
  cursor: pointer;
  padding: 12px 4px;
  margin-bottom: -1px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.modal-tab:hover,
.modal-tab.active {
  color: #fff;
}
.modal-tab.active {
  border-bottom-color: #de2b2b;
}
@media (min-width: 768px) {
  .modal-tabs {
    justify-content: center;
    padding: 12px 0 0 0;
    overflow-x: visible;
  }
  .modal-tab {
    font-size: 18px;
    padding: 12px 16px;
  }
}
.tab-badge {
  background: #d7c6a8;
  color: #020202;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.offer-section-v2 {
  width: 100%;
  padding: 72px 16px;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.offer-header-v2 {
  text-align: center;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-title-v2 {
  color: #020202;
  font-size: 24px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  margin-bottom: 8px;
}
.offer-subtitle-v2 {
  color: #333333;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 1.4;
}
.offer-card-v2 {
  width: 100%;
  max-width: 400px;
  background: #f5f5f5;
  border-radius: 18px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  overflow: visible;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.offer-card-title {
  color: #020202;
  font-size: 24px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  text-align: center;
}
.offer-card-desc {
  color: #121212;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
}
.offer-features-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}
.offer-feature-item {
  padding: 12px;
  border-bottom: 1px solid #e3e3e3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2px;
}
.offer-feature-item:last-child {
  border-bottom: none;
}
.offer-text {
  color: #180700;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  width: 100%;
}
.offer-text-muted {
  opacity: 0.45;
}
.offer-card-mockup {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
}
.offer-card-mockup img {
  width: 100%;
  height: auto;
  display: block;
}
.offer-card-featured {
  outline: 3px solid #61181f;
  position: relative;
  margin-top: 28px;
  overflow: visible;
}
.offer-card-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #440206;
  border-radius: 20px;
  outline: 2px solid #61181f;
  padding: 6px 18px;
  color: #f5f5f5;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  z-index: 2;
}
.offer-price-area {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.price-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.price-strike {
  color: #121212;
  font-size: 23px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  text-decoration: line-through;
}
.price-final {
  color: #de2b2b;
  font-size: 32px;
  font-family: "Fraunces", serif;
  font-weight: 600;
}
.coupon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 6px 12px;
  border-radius: 8px;
}
.coupon-code {
  background: rgba(221, 43, 43, 0.2);
  color: #61181f;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #de2b2b;
  font-weight: 600;
  font-size: 12px;
}
.limited-text {
  color: #333333;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 300;
}
.offer-mockup-single {
  width: 100%;
  max-width: 320px;
  margin-top: 16px;
}
.offer-mockup-single img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 1024px) {
  .hero-light {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 80px;
  }
  .hero-content-light {
    align-items: flex-start;
    text-align: left;
    max-width: 500px;
  }
  .hero-title-light {
    text-align: left;
  }
  .hero-subtitle-light {
    text-align: center;
    margin-left: 0;
  }
  .hero-image-wrapper {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    max-width: 600px;
    width: 50%;
    margin-top: 0;
  }
  .hero-buttons {
    align-items: flex-start;
  }
  .hero-social-proof {
    align-items: flex-start;
  }
  .social-text {
    text-align: left;
  }
  .offer-section-v2 {
    padding: 100px 24px;
  }
  .offer-card-v2 {
    max-width: 500px;
  }
}
.how-it-works-section {
  padding: 100px 24px;
  background-color: #fff;
}
.how-it-works-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.how-it-works-section .section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--text-dark);
  font-weight: 300;
}
.cards-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 50px;
}
.stack-card {
  position: sticky;
  top: calc(80px + (var(--i) * 20px));
  background: white;
  border-radius: 20px;
  border: 1px solid #e3e3e3;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 30px;
  transform-origin: top center;
  transition: transform 0.3s ease;
}
.card-content {
  display: flex;
  flex-direction: column;
}
.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.stack-card:hover .card-image img {
  transform: scale(1.05);
}
.card-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card-divider {
  width: 40px;
  height: 2px;
  background: #440206;
}
.card-description {
  font-family: var(--font-body);
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .how-it-works-section {
    padding: 120px 24px;
    background-color: #f7f0e8;
  }
  .card-content {
    flex-direction: row;
    align-items: stretch;
    min-height: 350px;
  }
  .card-image {
    width: 50%;
    height: auto;
  }
  .card-info {
    width: 50%;
    padding: 48px;
  }
}

/* =============================================
   XTILES AUTO CAROUSEL
   ============================================= */
.xtiles-carousel {
  position: relative;
  width: 100%;
  height: 173px;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.xtiles-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.xtiles-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.xtiles-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Prev / Next buttons */
.xtc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #180700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition:
    background 0.2s,
    transform 0.2s;
  padding: 0;
}
.xtc-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
.xtc-prev {
  left: 8px;
}
.xtc-next {
  right: 8px;
}

/* Pagination dots */
.xtc-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.xtc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
  display: block;
}
.xtc-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Expand hint */
.xtc-expand-hint {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 10px;
  font-family: var(--font-body, "Inter", sans-serif);
  padding: 3px 7px;
  border-radius: 20px;
  opacity: 0.85;
  pointer-events: none;
  backdrop-filter: blur(4px);
  z-index: 10;
}

/* =============================================
   XTILES LIGHTBOX MODAL
   ============================================= */
#xtc-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}
#xtc-lightbox.open {
  display: flex;
  animation: xtcFadeIn 0.25s ease;
}
@keyframes xtcFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.xtc-lb-inner {
  position: relative;
  width: calc(100vw - 32px);
  max-width: 520px;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  box-sizing: border-box;
}

.xtc-lb-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  background: #111;
}
.xtc-lb-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  display: block;
}

/* Lightbox prev/next */
.xtc-lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  z-index: 10;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
  padding: 0;
  touch-action: manipulation;
}
.xtc-lb-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}
.xtc-lb-arrow-prev {
  left: 8px;
}
.xtc-lb-arrow-next {
  right: 8px;
}

/* Lightbox dots */
.xtc-lb-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.xtc-lb-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
  display: block;
}
.xtc-lb-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Lightbox label */
.xtc-lb-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-family: var(--font-body, "Inter", sans-serif);
  text-align: center;
}

/* Lightbox close */
.xtc-lb-close {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  background: rgba(30, 30, 30, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
  padding: 0;
  z-index: 9100;
  touch-action: manipulation;
}
.xtc-lb-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.glow-cards-container,
.resources-cards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

@media (min-width: 1024px) {
  .how-it-works-section-new {
    padding: 100px 24px;
  }
  .resources-section-new {
    padding: 100px 24px;
  }
  .glow-cards-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    align-items: stretch;
  }
  .resources-cards-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1250px;
    align-items: stretch;
  }
  .glow-card,
  .resource-card {
    height: auto;
  }
}

/* ─── VSL Player ─── */
.vsl-player {
  width: 100%;
  max-width: 358px;
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.18),
    0 6px 20px rgba(0, 0, 0, 0.1);
  line-height: 0;
  min-height: 200px;
  user-select: none;
  -webkit-user-select: none;
}
.vsl-player video {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none; /* block pause / right-click on video */
}

/* ── Unmute overlay ── */
.vsl-unmute {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease;
  animation: vsl-pulse 2s ease-in-out infinite;
}
.vsl-unmute.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
  transform: scale(0.92);
}
.vsl-unmute svg {
  flex-shrink: 0;
}

@keyframes vsl-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.78;
  }
}

/* ── Progress bar ── */
.vsl-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
  pointer-events: none; /* non-interactive */
}
.vsl-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--bg-red), #62040a);
  border-radius: 0 2px 2px 0;
  transition: width 0.45s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.cta-upsell-wrapper {
  display: none; /* hidden completely */
  width: 100%;
  margin: 24px auto 0 auto;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta-upsell-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* --- New Hero V3 Section --- */
.hero-v3 {
  background-color: var(--bg-light);
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}

.hero-v3-top,
.hero-v3-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 48px;
  gap: 32px;
  width: 100%;
  max-width: 600px;
}

.hero-v3-image-top {
  width: 100%;
}

.hero-v3-image-top img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-v3-content {
  width: 100%;
  max-width: 358px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  text-align: center;
}

.hero-v3-tag {
  background: rgba(255, 255, 255, 0.89);
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.07);
  border-radius: 999px;
  outline: 1px solid #ededed;
  outline-offset: -1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
}

.hero-v3-tag-icon {
  width: 16px;
  height: 16px;
  position: relative;
  overflow: hidden;
}

.hero-v3-tag-icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.hero-v3-tag span {
  color: #61181f;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.4;
}

.hero-v3-title {
  color: #180700;
  font-size: 30px;
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.2;
}

.hero-v3-title .italic-bold {
  font-style: italic;
  font-weight: 600;
}

.hero-v3-subtitle {
  color: #333333;
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.4;
}
.hero-v3-subtitle .bold {
  font-weight: 700;
}

.hero-v3-benefits {
  background: #470509;
  width: 100%;
  display: flex;
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.hero-v3-benefits-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero-v3-benefits-track span {
  color: #d7c6a8;
  font-size: 16px;
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
}

.hero-v3-preview {
  width: 100%;
  max-width: 358px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}

.hero-v3-preview h2 {
  color: #020202;
  font-size: 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.hero-v3-preview-img {
  width: 100%;
  background: white;
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  outline: 4px solid #494949;
  outline-offset: -4px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-v3-preview-img img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(3px);
}

.hero-v3-pricing {
  width: 100%;
  max-width: 358px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
}

.hero-v3-prices {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-v3-price-old {
  color: #de2b2b;
  font-size: 23px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: line-through;
  line-height: 1.2;
}

.hero-v3-price-new {
  color: #4a8e4b;
  font-size: 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

.hero-v3-guarantee {
  background: transparent;
  width: 100%;
  text-align: center;
  padding: 6px 0;
}

.hero-v3-guarantee p {
  color: #333333;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.4;
}

.hero-v3-guarantee p span.bold {
  font-weight: 700;
}

.hero-v3-guarantee p span.bold-red {
  color: #de2b2b;
  font-weight: 700;
}

.hero-v3-cta {
  background: #4a8e4b;
  border-radius: 4px;
  border: 1px solid #3d7a3e;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 20px 24px;
  text-decoration: none;
  width: 100%;
  transition: all 0.2s ease;
}

.hero-v3-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.hero-v3-cta span {
  color: #180700;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Hero V3 Mockup - 3 Phones */
.hero-v3-mockup {
  width: 100%;
  max-width: 358px;
  margin: 0 auto;
  display: block;
}

.hero-v3-mockup img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Hero V3 Updated Layout */
.hero-v3 {
  background-color: var(--bg-light);
  width: 100%;
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.hero-v3-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 358px;
  text-align: center;
}

.hero-v3-content h1,
.hero-v3-content p {
  text-align: center;
  width: 100%;
}

.hero-v3-mockup + .hero-v3-cta {
  width: 100%;
  max-width: 358px;
}

/* =============================================
   PROBLEM SECTION
   ============================================= */
.problem-section {
  background-color: white;
  padding: 0 0 72px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.problem-roll {
  background: #470509;
  width: 100%;
  display: flex;
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.problem-roll-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.problem-roll-track span {
  color: #d7c6a8;
  font-size: 16px;
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
}

.problem-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  gap: 24px;
  max-width: 600px;
  width: 100%;
}

.problem-tag {
  color: #6e6e6e;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: white;
  padding: 8px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.problem-title {
  color: #180700;
  font-size: 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

.problem-text {
  color: #333;
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
}

.problem-text b {
  font-weight: 700;
}

.problem-image {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.problem-image img {
  width: 100%;
  height: auto;
  display: block;
}

.problem-highlight {
  color: #61181f;
  font-size: 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
}

.problem-cta-group {
  width: 100%;
  max-width: 358px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.btn-green {
  background: #a2f6a4;
  border-radius: 4px;
  outline: 1px solid #709f71;
  outline-offset: -1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 18px 21px;
  text-decoration: none;
  width: 100%;
  transition: all 0.2s ease;
  color: #180700 !important;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  box-shadow: 0 4px 0px #709f71;
  border: none;
  cursor: pointer;
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0px #709f71;
  filter: brightness(1.05);
}

.btn-green:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0px #709f71;
}

.btn-outline-dark {
  background: transparent;
  color: #180700;
  padding: 18px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  border: 1px solid #180700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  text-transform: uppercase;
}

.mockup-stack {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 320px;
  margin: 32px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.mockup-stack img {
  position: absolute;
  width: 140px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.ms-left {
  left: 10%;
  top: 40px;
  z-index: 1;
}
.ms-center {
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 2;
  width: 160px !important;
}
.ms-right {
  right: 10%;
  top: 40px;
  z-index: 1;
}

.logo-notion-glow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 32px;
}

.logo-notion-glow i {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 24px;
  color: #1a1a1a;
  font-weight: 600;
}

.logo-notion-glow span {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
}

@media (min-width: 1024px) {
  .problem-section {
    padding-bottom: 120px;
  }
  .problem-content {
    max-width: 800px;
    gap: 40px;
  }
  .problem-title {
    font-size: 42px;
  }
  .mockup-stack {
    max-width: 600px;
    height: 400px;
  }
  .mockup-stack img {
    width: 200px;
  }
  .ms-center {
    width: 220px !important;
  }
}
