/* Valentine's Day Video Book LP - custom styles */
.vb-valentines-lp {
  --vb-pink: #fce7f3;
  --vb-pink-light: #fdf2f8;
  --vb-red: #b91c1c;
  --vb-red-dark: #991b1b;
  --vb-red-gradient: linear-gradient(135deg, #b91c1c 0%, #e11d48 50%, #f472b6 100%);
  --vb-icon-coral: #f87171; /* reddish-orange used for feature icons + bg tint */
  --vb-icon-coral-light: #fef2f2; /* super light for card/background tint */
  --vb-text: #111827;
  --vb-text-muted: #374151;
  --vb-card-bg: #fffbfa; /* super light reddish-orange instead of pure white */
  --vb-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --vb-radius: 16px;
  --vb-radius-sm: 12px;
  font-family: 'Roboto Flex', sans-serif;
  color: var(--vb-text);
  background: #fffbfa;
  background-image:
    radial-gradient(at 70% 20%, rgba(252, 165, 165, 0.28) 0px, transparent 50%),
    radial-gradient(at 20% 80%, rgba(248, 113, 113, 0.18) 0px, transparent 50%),
    radial-gradient(at 90% 60%, rgba(254, 205, 211, 0.22) 0px, transparent 45%),
    radial-gradient(at 50% 50%, rgba(252, 165, 165, 0.12) 0px, transparent 55%);
}

.vb-valentines-lp main {
  position: relative;
  z-index: 1;
}

/* LP nav: show only logo + CTA button (desktop and mobile) */
body.vb-valentines-lp-page .nav .nav-dropdown,
body.vb-valentines-lp-page .nav .nav-link {
  display: none !important;
}

body.vb-valentines-lp-page .nav .mobile-menu-toggle {
  display: none !important;
}

body.vb-valentines-lp-page .nav .mobile-menu-header {
  display: none !important;
}

body.vb-valentines-lp-page .nav .nav-items {
  display: flex !important;
  position: static !important;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: transparent !important;
  width: auto !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1rem !important;
}

body.vb-valentines-lp-page .nav.scrolled .nav-items {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media (min-width: 768px) {
  body.vb-valentines-lp-page .nav .nav-logo {
    height: 2.25rem;
  }
  body.vb-valentines-lp-page .nav.scrolled .nav-logo {
    height: 2.25rem;
  }
}

/* VDay LP only: hide footer CTA block (Ready to give the most meaningful gift...) but keep footer links/copyright */
body.vb-valentines-lp-page .footer-cta-content {
  display: none !important;
}

/* Container */
.vb-valentines-lp .vb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ----- Hero: warm dark bg + pastel glows to match h1, floating hearts ----- */
.vb-valentines-lp .hero.vb-hero-with-hearts {
  background-color: #1a0f14;
  background-image:
    radial-gradient(at 20% 30%, rgba(254, 205, 211, 0.14) 0px, transparent 50%),
    radial-gradient(at 80% 70%, rgba(249, 168, 212, 0.12) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(252, 165, 165, 0.08) 0px, transparent 50%),
    radial-gradient(at 40% 80%, rgba(253, 230, 138, 0.06) 0px, transparent 50%),
    radial-gradient(at 90% 20%, rgba(253, 205, 211, 0.1) 0px, transparent 45%);
}

.vb-valentines-lp .hero.vb-hero-with-hearts h1 {
  background: linear-gradient(120deg, #fecdd3 0%, #fda4af 30%, #f9a8d4 55%, #fca5a5 75%, #fde68a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Match subhead size: 1rem mobile, 1.3875rem desktop */
.vb-valentines-lp .hero .vb-hero-special-price {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  margin-top: -0.5rem;
}
@media (min-width: 768px) {
  .vb-valentines-lp .hero .vb-hero-special-price {
    font-size: 1.3875rem;
  }
}
.vb-valentines-lp .hero .vb-hero-special-price strong {
  color: #fecdd3;
}
.vb-valentines-lp .hero .vb-hero-special-price s {
  color: rgba(255, 255, 255, 0.55);
}

/* Floating heart emojis container */
.vb-hero-hearts {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.vb-hero-hearts .vb-heart {
  position: absolute;
  bottom: -1em;
  left: 0;
  opacity: 0;
  animation: vb-heart-float linear infinite;
  white-space: nowrap;
  user-select: none;
  filter: blur(var(--vb-heart-blur, 0px));
}

@keyframes vb-heart-float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  3% {
    opacity: 0.5;
  }
  97% {
    opacity: 0.55;
  }
  100% {
    transform: translateY(-120vh) translateX(var(--vb-heart-drift, 0));
    opacity: 0;
  }
}

/* Valentine hero book image - vertically centered in hero */
.vb-valentines-lp .hero.vb-hero-with-hearts .hero-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .vb-valentines-lp .hero.vb-hero-with-hearts .hero-image-container {
    margin-top: -96px;
  }
}

.vb-valentines-lp .vb-hero-book-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
}

.vb-valentines-lp .vb-hero-book-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* Video behind book PNG – sits in cutout (PNG must have transparent cutout); centered in screen */
.vb-hero-video-cutout {
  position: absolute;
  left: 38%;
  top: 19%;
  width: 50%;
  height: 54%;
  overflow: hidden;
  border-radius: 2px;
  z-index: 0;
}

.vb-hero-cutout-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Hero badges over the book - slow hover animation */
.vb-valentines-lp .vb-hero-book-container {
  position: relative;
}

.vb-hero-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18% 8% 10% 10%;
}

/* Ship badge: move down; price badge: move up */
.vb-hero-badge-ship {
  margin-top: 2.5rem;
}

.vb-hero-badge-price {
  margin-bottom: 4rem;
}

.vb-hero-badge {
  animation: vb-badge-float 3.5s ease-in-out infinite;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.vb-hero-badge-price {
  animation-delay: 0.8s;
}

@keyframes vb-badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.vb-hero-badge-ship {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: #fff;
  border-radius: 9999px;
  padding: 0.5rem 0.875rem 0.5rem 0.5rem;
  max-width: 85%;
}

.vb-hero-badge-ship .vb-badge-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  line-height: 1;
}

.vb-hero-badge-ship .vb-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
}

.vb-hero-badge-ship .vb-badge-text strong {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
}

.vb-hero-badge-ship .vb-badge-text span {
  font-size: 0.75rem;
  color: #374151;
  line-height: 1.2;
}

.vb-hero-badge-price {
  align-self: flex-end;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FB5681;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* CTA button text: show "Buy Book" on mobile only, "Buy Photo & Video Book" on desktop only */
body.vb-valentines-lp-page .vb-cta-text-mobile {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}
body.vb-valentines-lp-page .vb-cta-text-desktop {
  display: inline !important;
}

/* Secondary CTA: "How It Works" on mobile, "See How It Works" on desktop */
body.vb-valentines-lp-page .vb-how-mobile {
  display: none !important;
}
@media (max-width: 768px) {
  body.vb-valentines-lp-page .vb-how-desktop {
    display: none !important;
  }
  body.vb-valentines-lp-page .vb-how-mobile {
    display: inline !important;
  }
}
@media (max-width: 768px) {
  body.vb-valentines-lp-page .vb-cta-text-desktop {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }
  body.vb-valentines-lp-page .vb-cta-text-mobile {
    display: inline !important;
    visibility: visible !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
  }
}

/* Mobile hero: smaller h1, smaller book image, badges below book (not overlaid) */
@media (max-width: 768px) {
  .vb-valentines-lp .hero.vb-hero-with-hearts .initial-content h1 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
  }

  .vb-valentines-lp .vb-hero-book-container {
    flex-direction: column !important;
    align-items: center !important;
  }

  .vb-valentines-lp .vb-hero-book-img {
    max-width: 85% !important;
    width: auto !important;
  }

  .vb-valentines-lp .vb-hero-book-container .vb-hero-badges {
    display: none !important;
  }

  /* Smaller price/shipping line under hero CTA */
  .vb-valentines-lp .vb-cta-price {
    font-size: 0.8125rem !important;
  }
  .vb-valentines-lp .vb-cta-price strong {
    font-size: 0.875rem !important;
  }
}

/* Device mockups (used in sections below hero) */
.vb-hero-mockup {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.vb-device-frame {
  background: #fff;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.vb-device-screen {
  background: var(--vb-pink);
  border-radius: var(--vb-radius-sm);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
}

/* ----- Section common ----- */
.vb-valentines-lp .vb-section {
  padding: 4rem 0;
}

.vb-section-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--vb-text);
  text-align: center;
  margin-bottom: 0.75rem;
}

.vb-section-desc {
  text-align: center;
  color: var(--vb-text);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* ----- More Than a Photo Book (features grid) ----- */
.vb-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  /* Match homepage how-it-works mobile padding: 3rem top, 4rem bottom */
  .vb-valentines-lp #how-it-works.vb-section {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
  .vb-features-grid {
    grid-template-columns: 1fr;
  }
}

.vb-feature-card {
  background: var(--vb-card-bg);
  border-radius: var(--vb-radius);
  padding: 1.5rem;
  box-shadow: var(--vb-shadow);
  text-align: center;
}

.vb-feature-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* All icons: same pink #FB5681 with subtle gradient 3D effect */
.vb-feature-card:nth-child(1) .vb-feature-icon-wrap,
.vb-feature-card:nth-child(2) .vb-feature-icon-wrap,
.vb-feature-card:nth-child(3) .vb-feature-icon-wrap,
.vb-feature-card:nth-child(4) .vb-feature-icon-wrap,
.vb-feature-card:nth-child(5) .vb-feature-icon-wrap,
.vb-feature-card:nth-child(6) .vb-feature-icon-wrap {
  background: linear-gradient(145deg, #fc6b8d 0%, #FB5681 40%, #e94a6f 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08),
              0 4px 0 rgba(0, 0, 0, 0.06),
              inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.vb-feature-card .vb-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.vb-feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--vb-text);
  margin-bottom: 0.5rem;
}

.vb-feature-card p {
  font-size: 0.9375rem;
  color: var(--vb-text-muted);
  line-height: 1.5;
}

.vb-features-cta-wrap {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 0;
}

/* Features CTA uses .primary-btn from homepage.css - red, same size/style */
.vb-features-cta-wrap .primary-btn {
  display: inline-block;
}

.vb-features-cta-wrap .vb-cta-price {
  display: block;
  margin-top: 0.75rem;
}

.vb-features-cta-wrap .vb-features-delivery {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--vb-text-muted);
  line-height: 1.4;
}

/* Only $99 ($129 crossed out) below all buy buttons */
.vb-cta-price {
  font-size: 0.9375rem;
  color: var(--vb-text-muted);
  margin: 0;
}

.vb-cta-price strong {
  color: var(--vb-text);
  font-weight: 500;
}

.vb-was-price {
  margin-left: 0.35rem;
}

.vb-cta-price s {
  color: var(--vb-text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

/* Hero: price line on dark bg – bigger, centered under button */
.vb-valentines-lp .hero .start-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vb-valentines-lp .hero .start-btn-wrapper .vb-cta-price {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.4;
  margin-top: 0.75rem;
}

.vb-valentines-lp .hero .start-btn-wrapper .vb-cta-price strong {
  color: #fff;
  font-size: inherit;
}

.vb-valentines-lp .hero .vb-cta-price s {
  color: rgba(255, 255, 255, 0.65);
}

/* Dark gradient CTA: white text */
.vb-cta-price-dark {
  color: rgba(255, 255, 255, 0.9);
}

.vb-cta-price-dark strong {
  color: #fff;
}

.vb-cta-price-dark s {
  color: rgba(255, 255, 255, 0.65);
}

/* Final CTA banner: white text */
.vb-cta-price-final {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.75rem;
}

.vb-cta-price-final strong {
  color: #fff;
}

.vb-cta-price-final s {
  color: rgba(255, 255, 255, 0.65);
}

/* ----- Dark gradient section (Say I Love You + Capture Your Love Story) ----- */
.vb-dark-gradient-section {
  /* Darker, synced with hero (#1a0f14) – deep burgundy undertones, not vibrant red */
  background: linear-gradient(135deg, #1a0f14 0%, #251318 25%, #2d151c 45%, #2a1218 70%, #1a0f14 100%);
}

.vb-dark-subsection {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.vb-dark-subsection:first-child {
  padding-top: 4rem;
}

.vb-dark-subsection:last-child {
  padding-bottom: 4rem;
}

/* Mobile: tighter vertical spacing to match homepage (2rem top, 4rem bottom) */
@media (max-width: 768px) {
  .vb-valentines-lp .vb-dark-subsection {
    padding-top: 0;
    padding-bottom: 0;
  }
  .vb-valentines-lp .vb-dark-subsection:first-child {
    padding-bottom: 4rem;
  }
  .vb-valentines-lp .vb-dark-gradient-section .vb-split {
    gap: 1.5rem;
  }
  .vb-valentines-lp .vb-dark-gradient-cta {
    padding-top: 1.5rem;
    padding-bottom: 0;
  }
}

/* Say I Love You (sub-section; no bg, inherits parent gradient) */
.vb-say-iloveyou-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.vb-say-iloveyou-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.vb-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .vb-split {
    grid-template-columns: 1fr;
  }
}

/* Alternating split: first child (mockup) left, second (content) right */
@media (max-width: 900px) {
  .vb-split-reverse .vb-capture-mockup-wrap {
    order: 2;
  }
  .vb-split-reverse .vb-capture-content {
    order: 1;
  }
}

.vb-dark-gradient-section .vb-say-iloveyou .vb-split-title {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.2;
}

.vb-dark-gradient-section .vb-say-iloveyou .vb-split-title-accent {
  background: linear-gradient(120deg, #fecdd3 0%, #fda4af 30%, #f9a8d4 55%, #fca5a5 75%, #fde68a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vb-split-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--vb-text);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.vb-split-title-accent {
  color: #c52844;
}

.vb-dark-gradient-section .vb-say-iloveyou .vb-split-desc {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
}

.vb-split-desc {
  color: var(--vb-text);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.vb-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.vb-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--vb-text);
}

.vb-bullets li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  fill: var(--vb-red);
  margin-top: 2px;
}

.vb-bullets-iloveyou .vb-bullet-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 2px;
}

.vb-dark-gradient-section .vb-say-iloveyou .vb-bullets-iloveyou .vb-bullet-icon {
  color: #fecdd3;
}

.vb-bullets-iloveyou .vb-bullet-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}

.vb-bullets-iloveyou li {
  color: #553a42;
}

.vb-dark-gradient-section .vb-say-iloveyou .vb-bullets-iloveyou li {
  color: rgba(255, 255, 255, 0.92);
}

.vb-split-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Single CTA at bottom of dark gradient section */
.vb-dark-gradient-cta {
  padding: 3rem 0 4rem;
  text-align: center;
}

.vb-dark-gradient-cta .vb-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.vb-dark-gradient-section .vb-dark-cta-btn {
  background: #fff;
  color: #111827;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.vb-dark-gradient-section .vb-dark-cta-btn:hover {
  background: #f3f4f6;
  color: #111827;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

/* Video player mockup */
.vb-video-mockup .vb-device-screen {
  justify-content: flex-start;
  padding: 1rem;
}

.vb-video-mockup .vb-video-from {
  font-size: 0.875rem;
  color: var(--vb-text-muted);
  margin-bottom: 0.5rem;
}

.vb-video-mockup .vb-video-placeholder {
  flex: 1;
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vb-video-mockup .vb-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.vb-video-mockup .vb-play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--vb-red);
  margin-left: 4px;
}

.vb-video-mockup .vb-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.vb-video-mockup .vb-progress-fill {
  height: 100%;
  width: 35%;
  background: var(--vb-pink);
  border-radius: 3px;
}

/* ----- Capture Your Love Story (alternating: visual left, content right) ----- */
/* Same heading/desc treatment as Say I Love You: split title size + gradient on "Love Story" */
.vb-dark-gradient-section .vb-capture-love-story .vb-split-title {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.2;
}

.vb-dark-gradient-section .vb-capture-love-story .vb-split-title-accent {
  background: linear-gradient(120deg, #fecdd3 0%, #fda4af 30%, #f9a8d4 55%, #fca5a5 75%, #fde68a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vb-dark-gradient-section .vb-capture-love-story .vb-split-desc {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
}

.vb-capture-mockup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.vb-capture-book-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.vb-capture-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vb-capture-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(185, 28, 28, 0.1);
}


.vb-dark-gradient-section .vb-capture-love-story .vb-capture-list li {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.vb-capture-list li:last-child {
  border-bottom: none;
}

.vb-capture-list .vb-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--vb-red);
}

.vb-dark-gradient-section .vb-capture-love-story .vb-capture-list .vb-icon {
  color: #fecdd3;
}

.vb-capture-list h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--vb-text);
  margin-bottom: 0.25rem;
}

.vb-dark-gradient-section .vb-capture-love-story .vb-capture-list h3 {
  color: #fff;
}

.vb-capture-list p {
  font-size: 0.9375rem;
  color: var(--vb-text-muted);
  line-height: 1.5;
}

.vb-dark-gradient-section .vb-capture-love-story .vb-capture-list p {
  color: rgba(255, 255, 255, 0.88);
}

/* Celebration mockup */
.vb-celebration-mockup .vb-device-screen {
  background: linear-gradient(180deg, #fef3c7 0%, var(--vb-pink) 100%);
}

.vb-celebration-mockup .vb-celebration-illus {
  font-size: 4rem;
  line-height: 1;
}

/* ----- Testimonials (Love Stories, 3 cards, review summary) ----- */
/* Same base light pink as section under hero, different gradient/blob placement */
.vb-testimonials-section {
  background: #fffbfa;
  background-image:
    radial-gradient(at 30% 70%, rgba(254, 205, 211, 0.28) 0px, transparent 50%),
    radial-gradient(at 85% 15%, rgba(253, 230, 138, 0.2) 0px, transparent 45%),
    radial-gradient(at 15% 40%, rgba(252, 165, 165, 0.18) 0px, transparent 50%),
    radial-gradient(at 70% 85%, rgba(249, 168, 212, 0.15) 0px, transparent 55%);
}

/* Love Stories: red pill with white text */
.vb-testimonials-label {
  display: block;
  text-align: center;
  background: #E95680;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin: 0 auto 0.75rem;
  width: fit-content;
}

/* Title and desc: same as second section below hero (use default .vb-section-title / .vb-section-desc) */
.vb-testimonials-section .vb-section-title {
  color: var(--vb-text);
}

.vb-testimonials-section .vb-section-desc {
  color: var(--vb-text);
  font-size: 1.0625rem;
}

.vb-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .vb-testimonials {
    grid-template-columns: 1fr;
  }
}

.vb-testimonial-card {
  background: #fff;
  border-radius: var(--vb-radius);
  padding: 1.5rem;
  box-shadow: var(--vb-shadow);
  position: relative;
  text-align: left;
}

.vb-testimonial-card .vb-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.vb-testimonial-card .vb-stars svg {
  width: 18px;
  height: 18px;
  fill: #eab308;
}

.vb-testimonial-quote-mark {
  display: none;
}

.vb-testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--vb-text);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.vb-testimonial-cite {
  font-size: 0.875rem;
  color: var(--vb-text);
  margin: 0 0 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.vb-testimonial-meta {
  font-size: 0.8125rem;
  color: var(--vb-text-muted);
  margin: 0;
}

.vb-testimonials-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.vb-testimonials-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--vb-text);
}

.vb-stars-inline {
  margin-bottom: 0;
}

.vb-stars-inline svg {
  width: 16px;
  height: 16px;
  fill: #eab308;
}

.vb-testimonials-guarantees {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--vb-text-muted);
}

.vb-testimonials-guarantees .vb-check {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 0.25rem;
  color: var(--vb-red);
}

/* ----- Final CTA box (inside testimonials section, max-width, rounded red box) ----- */
.vb-final-cta-wrap {
  max-width: 1200px;
  margin: 5rem auto 0;
  padding: 0 1.5rem 5rem;
}

.vb-final-cta-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #b91c1c 0%, #991b1b 35%, #7f1d1d 100%);
  color: #fff;
  box-shadow: 0 10px 40px rgba(127, 29, 29, 0.4);
}

/* Floating hearts (outline + filled), pulsed */
.vb-final-cta-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.vb-cta-heart {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0.2;
  transform: scale(0.92);
  animation: vb-cta-heart-pulse 2.2s ease-in-out infinite;
}

.vb-cta-heart-outline {
  color: rgba(255, 255, 255, 0.4);
}

.vb-cta-heart-filled {
  color: rgba(255, 255, 255, 0.35);
}

.vb-cta-heart-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}

@keyframes vb-cta-heart-pulse {
  0%, 100% { opacity: 0.2; transform: scale(0.92); }
  50% { opacity: 0.55; transform: scale(1.08); }
}

.vb-final-cta-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.625rem 1rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.vb-final-cta-strip-icon,
.vb-final-cta-strip-heart {
  font-size: 1rem;
}

.vb-final-cta-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem 3.5rem;
  text-align: center;
}

.vb-final-cta-inner h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 500;
  max-width: 12em;
  margin: 0 auto 1rem;
  color: #fff;
  line-height: 1.2;
}

.vb-final-cta-inner .vb-final-desc {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.vb-final-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.vb-final-cta-price-block {
  text-align: center;
}

.vb-final-cta-inner .vb-price {
  font-size: 2.75rem;
  font-weight: 500;
  margin: 0;
  color: #fff;
}
.vb-final-cta-inner .vb-price s {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  margin-left: 0.25rem;
}

/* Match other white CTA button (same as .vb-dark-cta-btn) */
.vb-final-cta-btn.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111827;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.vb-final-cta-btn.primary-btn:hover {
  background: #f3f4f6;
  color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.vb-final-cta-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 1.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
}

.vb-final-cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.vb-final-cta-trust svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
}

@media (max-width: 560px) {
  .vb-final-cta-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .vb-final-cta-row {
    flex-direction: column;
  }
  .vb-final-cta-inner .vb-price {
    font-size: 2.25rem;
  }
}

