html, body {
  width: 100%;
  overflow-x: hidden;
}
:root {
  --vth-bg: #f5f5f5;
  --vth-bg-alt: #ffffff;
  --vth-bg-highlight: #e9f6ef;
  --vth-bg-green: #15803d;
  --vth-border: #dddddd;
  --vth-text: #222222;
  --vth-muted: #555555;
  --vth-accent: #15803d;
  --vth-accent-dark: #14532d;
  --vth-radius: 10px;
  --vth-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);

  /* WIDER CONTENT AREA */
  --vth-max-width: 980px;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400; /* <--- THIS IS THE NEW LINE YOU ARE ADDING */
  color: var(--vth-text);
  background: var(--vth-bg);
  line-height: 1.65;
  font-size: 18px;
}

/* GLOBAL HEADING FONT SETTINGS – applies everywhere */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  color: #282828;
  margin-top: 0;
}

.vth-page {
  background: var(--vth-bg);
}
.vth-main-nav-inner {
  justify-content: space-between;
}


/* Top bar */
.vth-topbar {
  background: #0b1b11;
  color: #e2f3ea;
  font-size: 0.8rem;
  padding: 6px 0;
}

/* Main top navigation */
.vth-main-nav {
  background: #000000;
  color: #ffffff;
  padding: 10px 0;
}

.vth-main-nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.vth-nav-logo {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.vth-logo-placeholder {
  color: #ffffff;
}

/* actual logo image */
.vth-logo {
  height: 180px;   /* was 54px – this WILL be noticeable */
  width: auto;
  display: block;
}

.vth-logo-img {
    height: auto !important;
    aspect-ratio: 1 / 1;
}


.vth-nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  margin-left: auto;
  margin-right: 28px;
}

.vth-nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
}

.vth-nav-links a:hover {
  color: #ffb100;
}

.vth-btn-nav {
  background: #007bff;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}

/* Nav logo sizing */
.vth-logo-img {
  display: block;
  height: 90px;
  width: auto;
}

/* Mobile nav tweaks */
@media (max-width: 900px) {
  .vth-logo-img {
    height: 50px;
  }

  .vth-main-nav-inner {
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
  }

  .vth-nav-links {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .vth-nav-links a {
    font-size: 0.9rem;
  }

  .vth-btn-nav {
    margin-left: auto;
    padding: 6px 14px;
    font-size: 0.85rem;
  }
}

/* ===================== HERO / VSL ===================== */

.vth-hero {
  padding: 36px 0 42px;
  background: linear-gradient(135deg, #15803d, #0a3a20);
  color: #ffffff;
}

.vth-hero .vth-container {
  max-width: var(--vth-max-width);
  padding-right: 28px;
}

/* Desktop/tablet: 2 columns with CTA under copy */
.vth-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  grid-template-areas:
    "copy media"
    "cta  media";
  column-gap: 56px;
  row-gap: 24px;
  align-items: flex-start;
}

.vth-hero-copy {
  grid-area: copy;
  max-width: 560px;
  padding-right: 10px;
}

.vth-hero-media {
  grid-area: media;
  display: flex;
  justify-content: flex-end;
}

.vth-hero-cta-block {
  grid-area: cta;
}

.vth-headline {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 8px;
  color: #ffffff;
}

.vth-subheadline {
  margin: 12px 0 14px;
  font-size: 1.05rem;
  color: #e4f7eb;
}

.vth-hero-copy p {
  color: #f0fdf4;
}

.vth-hero-cta {
  margin-top: 4px;
}

.vth-video-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--vth-shadow-soft);
  background: linear-gradient(135deg, #064e3b, #022c22);
  border: 4px solid rgba(6, 78, 59, 0.7);
  padding: 14px;
}

.vth-video-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

.vth-video-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ffffff;
}

.vth-video-cta-trust{
  margin-top: 8px;
  font-size: 0.9rem;
  color: #d1fae5;
  text-align: center;
}

.vth-note {
  font-size: 0.82rem;
  color: #ffffff;
  margin-top: 8px;
}

/* ===== MOBILE LAYOUT (copy → video → CTA) ===== */
@media (max-width: 900px) {
  .vth-hero {
    padding: 22px 0 26px;
  }

  .vth-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "media"
      "cta";
    row-gap: 22px;
  }

  .vth-hero-copy,
  .vth-hero-media,
  .vth-hero-cta-block {
    width: 100%;
  }

  .vth-headline {
    font-size: 2.2rem;
  }

  .vth-subheadline {
    font-size: 1rem;
  }

  .vth-hero-cta .vth-btn {
    width: 100%;
    text-align: center;
  }

  .vth-note {
    text-align: center;
  }
}

/* ===================== Buttons ===================== */
.vth-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  border: none;
  cursor: pointer;
}

.vth-btn-primary {
  background: #ffb100;
  color: #1a1205;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.vth-btn-primary:hover {
  background: #e29b00;
}

.vth-btn-large {
  padding: 12px 30px;
  font-size: 1.02rem;
}

/* ===================== Generic sections ===================== */
.vth-section {
  padding: 64px 0;
  background: transparent;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
/* Price narrative -> offer transition */
.vth-section-bridge {
  background: #f7faf7;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(21, 128, 61, 0.12);
}

.vth-section-offer--stacked {
  padding-top: 48px;
}

/* Keep pricing/bridge paragraphs aligned with the main container width */

.vth-section-alt {
  background: #eaf6ef;
}

.vth-section-highlight {
  background: var(--vth-bg-highlight);
}

.vth-section-offer {
  background: #ffffff;
}

.vth-section-guarantee {
  background: linear-gradient(135deg, #15803d, #0a3a20) !important;
  color: #ffffff !important;
  text-align: center;
}

.vth-section h2 {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2.1rem;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 14px;
  font-weight: 800;
}

.vth-section-guarantee h2,
.vth-section-guarantee p {
  color: #ffffff !important;
}

.vth-lead {
  font-size: 1.02rem;
  color: var(--vth-muted);
}

.vth-center,
.vth-heading-center,
.vth-lead.vth-center {
  text-align: center;
}

/* Columns */
.vth-two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.vth-two-col-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.vth-two-col-reverse > div:first-child {
  order: 2;
}

.vth-two-col-reverse > div:last-child {
  order: 1;
}

@media (max-width: 900px) {
  .vth-two-col,
  .vth-two-col-reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .vth-two-col-reverse > div:first-child,
  .vth-two-col-reverse > div:last-child {
    order: initial;
  }
}

/* Images */
.vth-img-box {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.vth-img-box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--vth-shadow-soft);
}

/* Lists (generic) */
.vth-list {
  padding-left: 22px;
  margin: 0;
}

.vth-list li {
  margin-bottom: 6px;
}

.vth-list-tight li {
  margin-bottom: 4px;
}

/* FULL-WIDTH GREEN RIBBON BANDS */
.vth-ribbon-band {
  background: #15803d;
  color: #ffffff;
  padding: 26px 0;
}

.vth-ribbon-band p {
  margin: 0;
  text-align: center;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.35;
}

/* MODULES – card with green header + glow */
.vth-module {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(21, 128, 61, 0.18);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
  margin-bottom: 22px;
  overflow: hidden;
}

.vth-module-header {
  background: var(--vth-bg-green);
  color: #ffffff;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vth-module-header .vth-module-title,
.vth-module-header h3 {
  color: #fff !important;
}

.vth-module-header .vth-module-subtitle,
.vth-module-header p {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* Optional: right badge (if used in HTML) */
.vth-module-badge-right,
.vth-module-tag,
.vth-module-badge {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.vth-module-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 22px;
  padding: 18px 18px 20px;
  background: #ffffff;
}

.vth-module-alt .vth-module-body {
  background: #fafafa;
}

.vth-module-text p {
  margin-top: 0;
}

.vth-module-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--vth-shadow-soft);
}

/* Make module images smaller (ebook mockups) */
.vth-module .vth-module-media img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Notes text (Module 3 etc.) */
.vth-module-note,
.vth-module-note-bottom {
  color: rgba(15, 23, 42, 0.92);
  font-size: 1.06rem;
  line-height: 1.65;
}

.vth-module-note {
  margin: 0 0 14px;
}

.vth-module-note-bottom {
  margin: 14px 0 0;
}

/* Compact list option (if you use vth-list-compact in HTML) */
.vth-list-compact li {
  margin: 8px 0;
}

/* Feature tile grid */
.vth-grid-4 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.vth-feature-tile {
  background: #ffffff;
  border-radius: 10px;
  padding: 12px 11px;
  border: 1px solid var(--vth-border);
  font-size: 0.9rem;
}

/* Pricing */
.vth-pricing {
  margin-top: 18px;
}

.vth-price-box {
  max-width: 420px;
  background: #fdfdfd;
  border-radius: 16px;
  padding: 20px 22px 24px;
  border: 1px solid #c6d8c9;
  box-shadow: var(--vth-shadow-soft);
  text-align: left;
}

.vth-price {
  margin: 6px 0 10px;
}

.vth-price-main {
  font-size: 2rem;
  font-weight: 700;
  color: var(--vth-accent-dark);
  margin-right: 6px;
}

.vth-price-note {
  font-size: 0.85rem;
  color: var(--vth-muted);
}

.vth-price-list {
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.vth-price-box p,
.vth-price-box small,
.vth-price-box .vth-price-note,
.vth-price-box .vth-final-note {
  color: #000 !important;
}

/* Offer layout */
.vth-offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: center;
}

.vth-offer-media {
  text-align: center;
}

.vth-product-shot img {
  max-width: 620px;
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--vth-shadow-soft);
}

/* === STACKED PRICING LAYOUT === */

.vth-section-offer--stacked {
  text-align: center;
}

.vth-offer-media--center {
  margin: 32px auto 24px;
  max-width: 1100px;
}

.vth-offer-media--center img {
  width: 100%;
  max-width: 1040px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Make the launch bundle image appear larger without altering other images */
.vth-offer-bundle-img {
  transform: scale(1.15);
  transform-origin: center;
}

@media (max-width: 900px) {
  .vth-offer-bundle-img {
    transform: scale(1.06);
  }
}

@media (max-width: 600px) {
  .vth-offer-bundle-img {
    transform: none;
  }
}

.vth-price-card--centered {
  max-width: 520px;
  margin: 0 auto;
  padding: 32px 28px;
}

.vth-price-hero {
  margin-bottom: 18px;
}

.vth-price-big {
  font-size: 3.2rem;
}

.vth-btn-cta {
  margin-top: 14px;
}
/* === PRICING SECTION WIDTH & ALIGNMENT FIX === */

/* Make the container wider */
.vth-section-offer--stacked .vth-container {
  max-width: 1100px;
}

/* Widen the price card */
.vth-price-card--centered {
  max-width: 980px;
  padding: 36px 48px 34px;
}

/* Keep content centered overall */
.vth-section-offer--stacked {
  text-align: center;
}

/* Left-align bullet list for readability */
.vth-price-card--centered ul {
  text-align: left;
  max-width: 100%;
  margin: 24px auto;
}

/* Improve spacing between bullets */
.vth-price-card--centered ul li {
  margin-bottom: 10px;
}

/* Product image spacing */
.vth-offer-media--center {
  margin: 36px auto 10px;
}

/* Disclaimer under image */
.vth-product-disclaimer {
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: #555;
}

/* Button spacing */
.vth-price-card--centered .vth-btn-cta {
  margin-top: 20px;
}

/* Mobile safety */
@media (max-width: 768px) {
  .vth-price-card--centered {
    padding: 28px 22px;
  }

  .vth-price-card--centered ul {
    max-width: 100%;
  }
}


/* Guarantee section text */
.vth-section-guarantee p {
  max-width: 720px;
  margin: 0 auto 10px;
}

/* FAQ */
.vth-faq-item {
  border-bottom: 1px solid var(--vth-border);
}

.vth-faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 56px 20px 22px !important;
  border: none;
  background: none;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
}

.vth-faq-a {
  display: none;
  padding: 0 0 12px;
  color: var(--vth-muted);
  font-size: 0.93rem;
}

.vth-faq-open .vth-faq-a {
  display: block;
}

/* Footer */
.vth-footer {
  background: #0b1410;
  color: #9db3a5;
  font-size: 0.78rem;
  padding: 18px 0 24px;
}

.vth-footer-inner {
  text-align: center;
}

.vth-footer-links {
  max-width: 720px;
  margin: 8px auto 0;
}

.vth-footer a,
.vth-footer-links a {
  color: var(--vth-accent);
  text-decoration: none;
  font-weight: 500;
}

.vth-footer a:hover,
.vth-footer-links a:hover {
  text-decoration: underline;
}

/* Image gallery */
.vth-image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.vth-image-grid-item {
  text-align: center;
  font-size: 0.8rem;
}

.vth-image-grid-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--vth-shadow-soft);
  display: block;
  margin-bottom: 4px;
}

/* Responsive content sections */
@media (max-width: 900px) {
  .vth-module-body,
  .vth-offer-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .vth-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vth-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vth-price-box {
    max-width: 100%;
  }
}

/* Small-screen tweaks */
@media (max-width: 600px) {
  .vth-ribbon-band p {
    font-size: 1.45rem;
    line-height: 1.15;
    padding: 0 8px;
  }

  .vth-container {
    padding: 0 20px;
  }
}

/* =========================================
   PRINTABLES GRID (kept as-is)
   ========================================= */
.vtt-printables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.vtt-print-card {
  background: #ffffff;
  border: 1px solid #d9e3dc;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.vtt-print-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.vtt-print-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.vtt-print-actions button,
.vtt-print-actions a {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.vtt-view-btn {
  background: #15803d;
  color: #fff;
}

.vtt-download-btn {
  background: #e2f4e9;
  color: #14532d;
}

.vtt-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.vtt-popup-inner {
  background: #fff;
  width: 90%;
  max-width: 880px;
  height: 90vh;
  border-radius: 12px;
  position: relative;
  padding: 12px;
}

.vtt-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: #15803d;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

#vtt-popup-frame {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================================
   FINAL: LEAF BULLETS ONLY (single source of truth)
   ========================================================= */

/* Remove browser bullets */
.vth-list-green{
  list-style: none !important;
  padding-left: 0 !important;
  margin: 12px 0 !important;
}

/* Each bullet line */

.vth-list-green li {
    list-style: none !important;
    position: relative !important;
    padding-left: 44px !important;

    margin: 14px 0 !important;

    font-family: inherit !important;
    font-size: 1em !important;        /* matches body text exactly */
    font-weight: 400 !important;
    line-height: 1.65 !important;     /* same rhythm as body */

    color: var(--vth-text) !important;
}


/* Kill ::marker everywhere */
.vth-list-green li::marker{
  content: "" !important;
  display: none !important;
}

/* Leaf icon (CSS-only, no image to keep Lighthouse happy) */
.vth-list-green li::before{
  content: "\2713" !important; /* ✓ */
  position: absolute !important;
  left: 0 !important;
  top: 0.05em !important;
  width: 26px !important;
  height: 26px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background-color: #16a34a !important;
  color: #ffffff !important;
  font-size: 0.9rem !important;
  font-weight: 900 !important;

  /* Neutralize any old tick styles */
  box-shadow: none !important;
  transform: none !important;
}



/* Mobile: slightly smaller */
@media (max-width: 720px){
  .vth-list-green li{
    padding-left: 40px !important;
  }
  .vth-list-green li::before{
    width: 24px !important;
    height: 24px !important;
    font-size: 0.85rem !important;
  }
}

/* =====================================================
   RESTORE FLEXIBLE TRIP GALLERY SECTION
   ===================================================== */

.vth-section-alt {
  background: #eef7f1;
}

.vth-image-grid {
  gap: 22px;
}

.vth-image-grid-item {
  background: #ffffff;
  border: 1px solid #dbe8df;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.vth-image-grid-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.vth-image-grid-item div {
  padding: 12px 14px 14px;
  font-weight: 600;
  color: #222;
  font-size: 0.95rem;
}

/* =====================================================
   RESTORE PRICING SECTION (FINAL)
   ===================================================== */

#pricing {
  background: #ffffff;
}

#pricing h2 {
  color: #222;
}

#pricing .vth-lead {
  color: #555;
}

.vth-price-card {
  background: #ffffff;
  border: 1px solid #cfe3d6;
  border-radius: 18px;
  padding: 26px 26px 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.vth-price-kicker {
  color: #14532d;
  font-weight: 800;
}

.vth-price-big {
  color: #15803d;
  font-size: 4.6rem;
}

.vth-price-sub {
  color: #444;
}

/* Clean list – no browser bullets */
.vth-price-checks {
  list-style: none;
  padding-left: 0;
  margin: 18px 0 22px;
}

.vth-price-checks li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 10px;
  color: #222;
  line-height: 1.45;
}

/* Green check icon */
.vth-price-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #15803d;
  font-weight: 900;
}

/* CTA button */
.vth-btn-cta {
  background: #15803d;
  color: #ffffff;
}

.vth-btn-cta:hover {
  background: #0f5f2d;
}
/* =====================================================
   HARD OVERRIDE — MODULE IMAGES (FINAL, FORCE FIX)
   ===================================================== */

/* Target ANY image inside a module body */
.vth-module-body img {
  width: auto !important;
  max-width: 240px !important;   /* 🔑 THIS is the size control */
  height: auto !important;
  display: block !important;
  margin: 0 auto !important;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

/* Mobile: slightly smaller */
@media (max-width: 900px) {
  .vth-module-body img {
    max-width: 200px !important;
    margin-top: 14px !important;
  }
}
/* =====================================================
   MODULE 2 — INLINE ILLUSTRATION (FINAL SIZE TUNE)
   ===================================================== */

.vth-inline-illustration {
  max-width: 620px;          /* ⬅️ wider = matches bullet block */
  margin-top: 18px;
}

/* Image itself */
.vth-inline-illustration img {
  width: 100%;
  height: auto;
  max-height: 300px;         /* ⬅️ slightly taller, still controlled */
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
}

/* Caption */
.vth-inline-illustration .vth-image-caption {
  margin-top: 8px;
  font-size: 13px;
  color: #6b7280;
  font-style: italic;
  text-align: left;
}

/* Mobile refinement */
@media (max-width: 900px) {
  .vth-inline-illustration {
    max-width: 100%;
  }

  .vth-inline-illustration img {
    max-height: 240px;
  }
}
/* =====================================================
   MODULE 2 — INLINE IMAGE: FORCE FULL TEXT-COLUMN WIDTH
   ===================================================== */

.vth-module-alt .vth-inline-illustration {
  width: 100%;
  max-width: 100%;
  margin-top: 20px;
}

.vth-module-alt .vth-inline-illustration img {
  width: 100% !important;      /* ⬅️ fills bullet column */
  height: auto !important;
  max-width: none !important;  /* ⬅️ removes hidden caps */
  max-height: none !important;
  display: block;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
}

/* Caption stays aligned with text column */
.vth-module-alt .vth-image-caption {
  max-width: 100%;
  margin-top: 8px;
  font-size: 13px;
  color: #6b7280;
  font-style: italic;
  text-align: left;
}
/* PRICING – leaf bullets */
.vth-price-leaf li {
  font-size: 0.95rem;
  margin: 10px 0;
}
/* =====================================
   PRICING – BUY NOW STYLE
===================================== */

.vth-price-focus {
  text-align: center;
  border: 2px solid #d7eadc;
}

.vth-price-header {
  margin-bottom: 12px;
}

.vth-price-kicker {
  font-weight: 800;
  color: #14532d;
  font-size: 1.1rem;
}

.vth-price-big {
  font-size: 4.2rem;
  font-weight: 900;
  color: #15803d;
  line-height: 1;
  margin: 6px 0;
}

.vth-price-sub {
  font-size: 0.95rem;
  color: #444;
}

/* BUY BUTTON */
.vth-btn-buy {
  display: block;
  margin: 26px auto 12px;
  padding: 18px 28px;
  font-size: 1.25rem;
  font-weight: 900;
  background: #15803d;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vth-btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

.vth-buy-note {
  font-size: 0.85rem;
  color: #444;
}
/* === HIGH-CONVERSION PRIMARY BUY BUTTON === */

.vth-btn-buy {
  display: inline-block;
  background: linear-gradient(180deg, #ffe83a, #ffd400);
  color: #0b2c14;
  font-weight: 900;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 18px 42px;
  border-radius: 999px;
  text-align: center;
  box-shadow:
    0 10px 0 #d4b400,
    0 18px 28px rgba(0,0,0,0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vth-btn-buy:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 0 #d4b400,
    0 14px 24px rgba(0,0,0,0.22);
}

.vth-btn-buy:active {
  transform: translateY(2px);
  box-shadow:
    0 4px 0 #d4b400,
    0 8px 16px rgba(0,0,0,0.25);
}
/* === BIG GREEN CTA WITH ORANGE SWOOSH === */

.vth-buy-wrap {
  position: relative;
  display: inline-block;
  margin: 32px auto;
}

/* === PAYMENT & GUARANTEE UNDER CTA === */

.vth-payment-trust {
  margin-top: 18px;
  text-align: center;
}

.vth-payment-trust img {
  max-width: 360px;
  width: 100%;
  height: auto;
  margin: 0 auto 10px;
  display: block;
}

.vth-payment-trust p {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.75);
  line-height: 1.45;
}


/* Main button */
.vth-btn-buy-swoosh {
  position: relative;
  display: inline-block;
  background: #0b6b1f;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 20px 52px;
  border-radius: 999px;
  text-decoration: none;
  z-index: 1;
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
  transition: all 0.15s ease;
}

/* Hover */
.vth-btn-buy-swoosh:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.3);
  background: #0f7d27;
}

/* Active press */
.vth-btn-buy-swoosh:active {
  transform: translateY(1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* =========================
   BONUS SECTION
========================= */
.vth-section-bonus{
  padding: 54px 0;
}
.vth-bonus-wrap{
  position: relative;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
  padding: 26px 24px 22px;
}

.bonus-badge{
  position: absolute;
  top: -14px;
  left: 24px;
  z-index: 2;
}
/* =========================
   NEW BONUS CARD HEADERS
========================= */

.vth-bonus-card{
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 46px;
  border: 1px solid rgba(21, 128, 61, 0.18);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

/* Green header strip */
.vth-bonus-header{
  background: linear-gradient(135deg, #0f7a2a, #0c6b24);
  color: #ffffff;
  padding: 20px 26px 18px;
}


.vth-bonus-label{
  display: inline-block;
  background: #ffffff;
  color: #0f7a2a;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.vth-bonus-header h3{
  margin: 8px 0 2px;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.25;
}


.vth-bonus-value{
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 4px;
}

.vth-bonus-card .vth-bonus-wrap{
  padding-top: 28px;
}



/* === BONUS IMAGE SIZE CONTROL === */
.vth-bonus-card .vth-bonus-media{
  max-width: 360px;
  margin: 0 auto;
}

.vth-bonus-card .vth-bonus-image{
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}
@media (max-width: 768px){
  .vth-bonus-card .vth-bonus-media{
    max-width: 100%;
  }

  .vth-bonus-card .vth-bonus-image{
    max-width: 260px;
  }
}


/* === BONUS SECTION FIXES === */

/* Make the CTA look like a real button again (even if other CSS overrides it) */
.vth-btn.vth-btn--cta{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: #f4b400;          /* matches your yellow CTA vibe */
  color: #111 !important;
  font-weight: 800;
  text-decoration: none !important;
  border: 0;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  margin-top: 14px;
}

/* Hover */
.vth-btn.vth-btn--cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.16);
}

/* Tighten the dashed border box around the ebook image */
.vth-bonus-media{
  padding: 10px !important;              /* reduce “thick” spacing */
  border-width: 1px !important;          /* thinner border */
  border-style: dashed;
  border-color: #cfd6d8;
  border-radius: 14px;
  background: #f6f7f7;
}

/* Reduce inner rounding a touch so the box feels less bulky */
.vth-bonus-image{
  border-radius: 10px;
}

/* Leaf bullets for the “What’s inside” list */
.vth-bonus-points ul{
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0;
}

.vth-bonus-points li{
  position: relative;
  padding-left: 30px;
  margin: 10px 0;
  line-height: 1.35;
}

/* Leaf icon bullet */
/* Leaf PNG bullets (same style as the rest of the sales letter) */
.vth-bonus-points ul{
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0;
}

.vth-bonus-points li{
  position: relative;
  padding-left: 34px;   /* space for the icon */
  margin: 12px 0;
  line-height: 1.35;
}

.vth-bonus-points li::before{
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: #16a34a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
}


/* Keep note under button nicely spaced */
.vth-bonus-note{
  margin: 10px 0 0;
  opacity: 0.8;
}

/* Optional: tighten grid spacing a bit */
.vth-bonus-grid{
  gap: 22px;
}
.vth-section-decision {
  max-width: 900px;
  margin: 0 auto;
}

.vth-section-decision h2 {
  text-align: left;
}

.vth-section-decision p {
  text-align: left;
  line-height: 1.7;
  max-width: 820px;
}

.vth-decision-list {
  margin-left: 1.2rem;
}
.vth-section-price-strip {
  background: #f7fbf8;
  padding: 24px 0;
  border-top: 1px solid #d9eadf;
  border-bottom: 1px solid #d9eadf;
}

.vth-price-strip {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 1fr;
  align-items: center;
  gap: 20px;
}

.vth-price-strip-left h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.vth-price-strip-left p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

.vth-price-strip-center {
  text-align: center;
}

.vth-price-strip-center .vth-price {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #1f7a3f;
}

.vth-price-strip-center .vth-price-note {
  font-size: 14px;
  color: #666;
}

.vth-price-strip-right {
  text-align: right;
}

/* Mobile */
@media (max-width: 768px) {
  .vth-price-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vth-price-strip-right {
    text-align: center;
  }
}
/* === PRICE STRIP (UPGRADED) === */
.vth-section-price-strip{
  background:#f3fbf5;
  padding:22px 0;
  border-top:1px solid #d9eadf;
  border-bottom:1px solid #d9eadf;
}
/* =========================
   SIMPLE BUNDLE PRICE CTA
========================= */
.vth-section-price-cta{
  background: linear-gradient(135deg, #0f7a2a, #0a4a24);
  padding: 70px 0;
}

.vth-price-cta-card{
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 40px 30px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.vth-price-cta-title{
  margin: 0 0 10px;
  font-size: 1.9rem;
  line-height: 1.25;
  color: #0f2f19;
}

.vth-price-cta-image {
  margin: 8px auto 18px;
}

.vth-price-cta-image img {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.vth-price-cta-list{
  list-style: none;
  padding-left: 0;
  margin: 4px 0 16px;
  color: #37423a;
  font-size: 0.98rem;
}

.vth-price-cta-list li{
  margin: 4px 0;
}

.vth-price-cta-price{
  margin: 6px 0 18px;
}

.vth-price-cta-amount{
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  color: #0f7a2a;
  letter-spacing: -0.5px;
}

.vth-price-cta-note{
  display: block;
  font-size: 0.98rem;
  color: #5a665f;
}

.vth-btn-cta-main{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  background: #f4b400;
  color: #1b1b1b !important;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  margin-top: 4px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vth-btn-cta-main:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.vth-price-cta-trust{
  margin-top: 10px;
  font-size: 0.9rem;
  color: #1f2a23;
}

@media (max-width: 900px){
  .vth-section-price-cta{
    padding: 54px 0;
  }

  .vth-price-cta-card{
    padding: 26px 20px 24px;
  }

  .vth-btn-cta-main{
    width: 100%;
  }
}

.vth-price-strip{
  background:#fff;
  border:1px solid #d9eadf;
  border-radius:18px;
  padding:18px 18px;
  display:grid;
  grid-template-columns: 1.6fr 0.6fr 0.9fr;
  align-items:center;
  gap:18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.vth-price-strip-left h3{
  margin:4px 0 6px;
  font-size:20px;
  line-height:1.15;
}

.vth-price-strip-left p{
  margin:0;
  font-size:14px;
  color:#54605a;
}

.vth-strip-badge{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  padding:6px 10px;
  border-radius:999px;
  background:#e6f4ea;
  color:#1f7a3f;
  border:1px solid #cfe7d6;
}

.vth-price-strip-center{
  text-align:center;
}

.vth-price-strip-center .vth-price{
  display:block;
  font-size:40px;
  font-weight:900;
  color:#1f7a3f;
  letter-spacing:-0.5px;
}

.vth-price-strip-center .vth-price-note{
  display:block;
  margin-top:2px;
  font-size:13px;
  color:#5a665f;
}

.vth-price-strip-right{
  text-align:right;
}

.vth-strip-btn{
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  box-shadow: 0 14px 24px rgba(0,0,0,0.12);
}

.vth-strip-trust{
  margin-top:8px;
  font-size:12px;
  color:#5a665f;
}

/* Mobile */
@media (max-width: 820px){

  /* Fix price strip layout */
  .vth-price-strip{
    grid-template-columns:1fr;
    text-align:left;
  }

  .vth-price-strip-right{
    text-align:left;
  }

  /* --- HERO TIGHTENING FOR VIDEO PEEK --- */

  .vth-hero{
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .vth-hero-grid{
    gap: 14px;
  }

  .vth-headline{
    font-size: 1.75rem !important;
    line-height: 1.12 !important;
    margin-bottom: 10px !important;
  }

  .vth-subheadline{
    margin-bottom: 10px !important;
    line-height: 1.35 !important;
  }

  .hero-microtrust{
    margin-bottom: 8px !important;
  }

  .vth-hero-copy{
    margin-bottom: 0 !important;
  }

  .vth-video-wrap{
    margin-top: -10px !important;
  }

}

.vth-card-title {
  display: block;
  color: #1f6b3a; /* dark vegan green */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
/* STORY SECTION GRID */
.vth-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: flex-start;
}

/* Story text */
.vth-story-text p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #222;
}

/* Image placeholders */
.vth-story-image {
  display: flex;
  justify-content: center;
}

.vth-image-placeholder {
  width: 100%;
  max-width: 260px;
  min-height: 180px;
  border-radius: 14px;
  background: #eef3ef;
  border: 2px dashed #b7d7c2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: #2e7d32;
  font-size: 0.9rem;
}

/* Mobile layout */
@media (max-width: 900px) {
  .vth-story-grid {
    grid-template-columns: 1fr;
  }

  .vth-story-image {
    order: -1;
  }

  .vth-image-placeholder {
    max-width: 100%;
    margin-bottom: 12px;
  }
}
.vth-divider{
  border: 0;
  height: 1px;
  background: rgba(0,0,0,0.12);
  margin: 22px 0;
}
/* ===== Story section image stack (professional look) ===== */
.vth-story-media{
  display: grid;
  gap: 14px;
  align-content: start;
}

.vth-story-card{
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  border: 1px solid rgba(0,0,0,.06);
}

.vth-story-card img{
  width: 100%;
  height: auto;
  display: block;
}

/* Make YOUR photo slightly smaller + more “portrait card” */
.vth-story-card.vth-story-me{
  max-width: 360px;   /* smaller than before */
  justify-self: end;  /* keeps it aligned nicely on desktop */
}

/* Supporting images slightly wider than your portrait */
.vth-story-card.vth-story-support{
  max-width: 420px;
  justify-self: end;
}

/* Mobile: center the stack and allow full width */
@media (max-width: 900px){
  .vth-story-card.vth-story-me,
  .vth-story-card.vth-story-support{
    max-width: 520px;
    justify-self: center;
  }
}
/* ================================
   STORY SECTION (clean split rows)
================================ */
#about .vth-story-split{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 44px;
  align-items: start;
  margin: 0 0 28px;
}

#about .vth-story-split + .vth-story-split{
  margin-top: 28px;
}

#about .vth-story-text p,
#about .vth-story-text ul{
  margin-bottom: 14px;
}

#about .vth-story-media{
  display: flex;
  justify-content: flex-end;
}

#about .vth-story-card{
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

#about .vth-story-card img{
  display: block;
  width: 100%;
  height: auto;
}

/* Make your photo slightly smaller than the other image */
#about .vth-story-card--me{
  max-width: 360px;
}

/* Caption pill (optional, but looks pro) */
#about .vth-story-caption{
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: #1f2937;
  background: rgba(21,128,61,.10);
  border: 1px solid rgba(21,128,61,.22);
}
/* Tighten spacing between story section and next section */
#about.vth-section {
  padding-bottom: 0px; /* reduce bottom space */
}

/* Reduce space ABOVE the "What exactly is Vegan Travel Hacks?" section */
.vth-section-highlight {
  padding-top: 25px; /* was larger before */
}


/* Mobile stack */
@media (max-width: 900px){
  #about .vth-story-split{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  #about .vth-story-media{
    justify-content: flex-start;
  }
  #about .vth-story-card--me{
    max-width: 320px;
  }
}
/* STORY SPLITS (about section) */
.vth-story-split{
  display:grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,.7fr);
  gap: 40px;
  align-items: start;
  margin: 28px 0;
}

.vth-story-media{
  display:flex;
  justify-content:flex-end;
}

.vth-story-card{
  width: 100%;
  max-width: 360px;
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 16px 38px rgba(0,0,0,.12);
  background:#fff;
}

.vth-story-card img{
  display:block;
  width:100%;
  height:auto;
}

/* Make Justin image slightly smaller than the supporting one */
.vth-story-me{
  max-width: 320px;
}

/* Mobile */
@media (max-width: 900px){
  .vth-story-split{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .vth-story-media{
    justify-content:center;
  }
  .vth-story-card,
  .vth-story-me{
    max-width: 520px;
  }
}
/* ==============================
   STORY SPLIT (Professional)
   ============================== */
.vth-story-split{
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.7fr); /* give more space to text */
  gap: 32px;
  align-items: start;
  margin: 0;
}

.vth-story-text h2{
  margin-top: 0;
}

/* Full-width continuation text under the first story split */
.vth-story-text-full{
  max-width: none;
  width: 100%;
  margin: 22px 0 0;
  text-align: left;
}

/* Right column wrapper */
.vth-story-media{
  display: grid;
  gap: 18px;
  align-content: start;
}

/* Image card box (matches your “bordered image” screenshot) */
.vth-story-card{
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.vth-story-card img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

/* Make your Justin photo slightly smaller + cleaner */
.vth-story-me{
  max-width: 320px;
  justify-self: end;      /* keeps it tight on the right */
}

/* Wake-up call images: keep them aligned + consistent */
.vth-story-stack{
  justify-self: end;
  width: 100%;
  max-width: 320px;
}

/* Mobile: stack text then images */
@media (max-width: 900px){
  .vth-story-split{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .vth-story-me,
  .vth-story-stack{
    max-width: 520px;
    justify-self: center;
  }
}
/* Tighten space before "What exactly is Vegan Travel Hacks" */
.vth-section-highlight {
  margin-top: 40px; /* was likely much larger */
}
.vth-divider {
  margin: 24px 0; /* reduce vertical spacing */
}
.vth-section-highlight h2 {
  margin-top: 0;
}
/* =========================
   TESTIMONIALS
========================= */
.vth-testimonials{
  padding: 32px 0;
}

.vth-testimonials--hero{
  padding-top: 40px;
}

.vth-testimonials-kicker{
  margin: 0 0 4px;
  font-weight: 700;
  text-transform: none;
  color: #111827;
}

.vth-testimonials-sub{
  margin: 0 0 18px;
  font-size: 0.98rem;
  color: #4b5563;
}

.vth-testimonials-strip{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.vth-testimonials-strip--two{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vth-testimonials-strip--one{
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

/* Default testimonial card */
.vth-testimonial{
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
  font-size: 0.95rem;
}

/* Final single testimonial should match the green hero style */
.vth-testimonials-strip--one .vth-testimonial{
  background: linear-gradient(135deg, #15803d, #166534);
  color: #ffffff;
  border-radius: 18px;
  padding: 24px 26px 22px;
  box-shadow: 0 22px 50px rgba(6, 78, 59, 0.55);
  border: 1px solid rgba(209, 250, 229, 0.25);
  font-size: 1rem;
}

.vth-testimonials-strip--one .vth-testimonial-name{
  color: #e2f7eb;
}

.vth-testimonial-quote{
  margin: 0 0 10px;
}

.vth-testimonial-name{
  font-weight: 700;
  font-size: 0.9rem;
  color: #064e3b;
}

@media (max-width: 900px){
  .vth-testimonials-strip{
    grid-template-columns: minmax(0,1fr);
  }
}

.vth-testimonial-wide{
  background: linear-gradient(135deg, #15803d, #166534);
  color: #ffffff;
  border-radius: 18px;
  padding: 24px 24px 22px;
  box-shadow: 0 22px 50px rgba(6, 78, 59, 0.55);
  border: 1px solid rgba(209, 250, 229, 0.25);
  margin-top: 18px;
}

.vth-testimonial-wide-text{
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.7;
}

.vth-testimonial-wide-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.vth-testimonial-stars{
  letter-spacing: 2px;
  color: #facc15;
}

.vth-testimonial-wide-name{
  font-weight: 700;
}

@media (max-width: 900px){
  .vth-testimonial-wide{
    padding: 18px 16px;
  }
  .vth-testimonial-wide-footer{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
.vth-divider {
  margin: 20px 0;
}

.vth-section-highlight {
  margin-top: 32px;
}

.vth-section-highlight h2 {
  margin-top: 0;
}
/* Subtle module section frame */
#modules.vth-section {
  border: 1px solid rgba(21, 128, 61, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  background: #ffffff;
}
/* =========================
   FINAL BONUS CARD FIX
   (Matches premium card border + glow)
========================= */

.vth-bonus-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 42px;
  border: 1px solid rgba(21, 128, 61, 0.18);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

/* Header: slimmer, cleaner */
.vth-bonus-header{
  background: linear-gradient(135deg, #0f7a2a, #0c6b24);
  padding: 16px 22px;
  color: #fff;
}

/* Badge + value inline */
.vth-bonus-label{
  display: inline-block;
  background: #ffffff;
  color: #0f7a2a;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 999px;
  margin-right: 10px;
}

.vth-bonus-header h3{
  margin: 10px 0 4px;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.2;
}

.vth-bonus-value{
  font-size: 0.95rem;
  opacity: 0.95;
}

/* Grid: image left, text right */
.vth-bonus-grid{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding: 24px;
  align-items: start;
}

/* Image container */
.vth-bonus-media{
  background: #f6f7f7;
  border: 1px dashed #cfd6d8;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  justify-content: center;
}

/* 🔥 IMAGE SIZE FIX */
.vth-bonus-image{
  width: 100%;
  max-width: 220px;   /* THIS fixes the “huge image” problem */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

/* Bullet list */
.vth-bonus-points ul{
  list-style: none;
  padding-left: 0;
  margin: 0 0 16px;
}

.vth-bonus-points li{
  position: relative;
  padding-left: 34px;
  margin: 10px 0;
  line-height: 1.4;
}

.vth-bonus-points li::before{
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: #16a34a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
}

/* CTA stays tidy */
.vth-btn.vth-btn--cta{
  margin-top: 10px;
}

/* Mobile stack */
@media (max-width: 860px){
  .vth-bonus-grid{
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .vth-bonus-media{
    margin-bottom: 14px;
  }
}
/* =========================
   BONUS HEADER FINAL TWEAK
========================= */

/* Top row: badge + value inline */
.vth-bonus-topline{
  display: flex;
  align-items: center;   /* ✅ THIS is the key fix */
  gap: 12px;
  margin-bottom: 8px;
}

/* Badge stays as-is */
.vth-bonus-label{
  background: #ffffff;
  color: #0f7a2a;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 2px 12px;
  border-radius: 999px;
}

.vth-bonus-value{
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.97);
  line-height: 1.2;
  position: relative;
  top: -0.5px;
}

/* ✅ TITLE FIX — white text */
.vth-bonus-header h3{
  color: #ffffff;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.2;
}
.vth-image-secondary {
  margin-top: 16px;
}
/* ===============================
   GLOBAL SAFETY FIX (NON-HOMEPAGE)
   Prevent horizontal cut-off
================================ */

/* Apply to all pages EXCEPT homepage */
body:not(.home),
body:not(.index),
.vth-page {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Make sure no section can exceed viewport width */
section,
header,
footer,
.vth-section,
.vth-container {
  max-width: 100%;
  overflow-x: hidden;
}

/* Fix common full-width offenders */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}
/* =========================================
   GLOBAL PAGE SAFETY FIX (NON-HOMEPAGE)
   Fixes cut-off / horizontal issues in Chrome
========================================= */

/* Ensure all pages respect centered layout */
body {
  overflow-x: hidden;
}

/* Force all main content blocks to center */
.vth-page > section,
.vth-page > header,
.vth-page > footer,
.vth-page > main,
.vth-page > div {
  max-width: 100%;
}

/* Safety net: anything accidentally wider than viewport */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* FIX: non-home pages missing container */
.vth-page .vth-container {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
/* Ensure cards align perfectly */
.vtt-print-card {
  display: flex;
  flex-direction: column;
}

/* Push buttons to bottom of card */
.vtt-print-actions {
  margin-top: auto;
}
.vth-price-kicker {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 18px;
  color: #15803d;
}
.vth-section-assurance {
  background: #f7faf7;
}

.vth-section-assurance .vth-assurance-box {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.vth-section-assurance .vth-container {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.vth-assurance-box {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 32px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.vth-assurance-box h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.vth-assurance-box p {
  margin-bottom: 14px;
  line-height: 1.7;
}

.vth-assurance-signoff {
  margin-top: 18px;
  font-weight: 700;
  color: #15803d;
}
.vth-bonus-inline {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px dashed rgba(0,0,0,0.15);
}

.vth-bonus-inline-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.vth-bonus-value {
  color: #15803d;
  font-weight: 700;
}

.vth-bonus-inline-note {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #444;
}

.vth-bonus-cta-note {
  margin-top: 10px;
}

.vth-pay-note {
  margin-top: 8px;
}
.vth-video-cta {
  margin-top: 12px;          /* tighter spacing above launch text */
  display: flex;
  flex-direction: column;
  align-items: center;
}


.vth-video-cta .vth-btn {
  padding: 12px 44px;     /* wider button */
  font-size: 1.05rem;    /* slightly larger text */
  letter-spacing: 0.2px;
}
.vth-launch-note {
  margin-bottom: 12px;       /* space between text and button */
  font-size: 0.9rem;
  color: #e6f5ec;
  text-align: center;
  opacity: 0.95;
}

/* Launch hero offer card */
.vth-offer-card{
  background: #eef7f1;
  border: 1px solid rgba(46,125,50,0.22);
  border-radius: 16px;
  padding: 26px 26px 24px;
  box-shadow: 0 18px 34px rgba(0,0,0,0.16);
  max-width: 420px;
}

.vth-offer-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #1f6d2e;
  margin-bottom: 10px;
  padding: 6px 10px;
  background: rgba(21, 128, 61, 0.12);
  border: 1px solid rgba(21, 128, 61, 0.18);
  border-radius: 999px;
  letter-spacing: 0.6px;
}

.vth-offer-social-proof{
  font-size: 0.92rem;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 14px;
  padding: 10px 12px;
  background: rgba(21, 128, 61, 0.08);
  border-radius: 8px;
  text-align: center;
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.vth-offer-price{
  margin: 0 0 12px;
  font-weight: 900;
  font-size: 1.45rem;
  line-height: 1.1;
  color: #111;
}

.vth-offer-discount{
  font-size: 1.85rem;
  font-weight: 900;
  color: #e74c3c;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-shadow: 0 2px 3px rgba(231, 76, 60, 0.18);
  display: block;
}

.vth-offer-amounts{
  margin-bottom: 6px;
}

.vth-old-price{
  font-size: 1.25rem;
  color: #555;
  text-decoration: line-through;
  margin-right: 12px;
  font-weight: 600;
}

.vth-old-price-launch{
  font-size: 1.4rem;
}

.vth-premium-old{
  font-size: 1.15rem;
  color: #6b7280;
  margin-right: 10px;
}

.vth-new-price{
  font-size: 2.6rem;
  font-weight: 900;
  color: #15803d;
  line-height: 1;
}

.vth-offer-sub{
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: #1b1b1b;
}

.vth-offer-list{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.vth-offer-list li{
  margin: 0 0 9px;
  padding: 0;
  font-size: 0.95rem;
  color: #1b1b1b;
}

.vth-checkmark{
  color: #2e7d32;
  font-weight: 900;
  margin-right: 8px;
  font-size: 1.1rem;
}

.vth-offer-trust{
  margin-top: 12px;
  font-size: 0.8rem;
  opacity: 0.75;
  color: #111;
}

@media (max-width: 900px){
  .vth-offer-card{
    max-width: 100%;
  }
  .vth-offer-discount{
    font-size: 1.8rem;
  }
  .vth-offer-social-proof{
    font-size: 0.9rem;
    padding: 8px;
  }
}

/* Launch email capture */
.vth-section-email-capture{
  background: linear-gradient(135deg, #f0fdf4, #f7faf7);
  padding: 50px 0;
}

.vth-email-card{
  max-width: 620px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.12);
  text-align: center;
}

.vth-email-card h2{
  font-size: 1.8rem;
  margin: 0 0 12px;
  color: #1b1b1b;
  font-weight: 700;
}

.vth-email-card > p{
  margin: 0 0 24px;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.vth-email-form{
  width: 100%;
}

.vth-email-input-group{
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.vth-email-input{
  flex: 1;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.vth-email-input:focus{
  outline: none;
  border-color: #15803d;
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.1);
}

.vth-email-input::placeholder{
  color: #999;
}

.vth-email-submit{
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.vth-email-disclaimer{
  margin: 0;
  font-size: 0.85rem;
  color: #777;
  line-height: 1.5;
}

.vth-email-disclaimer a{
  color: #15803d;
  text-decoration: none;
  font-weight: 600;
}

.vth-email-disclaimer a:hover{
  text-decoration: underline;
}

.vth-email-response{
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
}

.vth-email-response.success{
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.vth-email-response.error{
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 600px){
  .vth-email-card{
    padding: 24px;
  }
  .vth-email-card h2{
    font-size: 1.5rem;
  }
  .vth-email-input-group{
    flex-direction: column;
    gap: 8px;
  }
  .vth-email-submit{
    width: 100%;
  }
}

/* Launch premium price strip */
.vth-section-price-strip-premiumbg{
  background: linear-gradient(135deg, #15803d, #0a3a20);
  padding: 40px 0;
  margin: 50px 0 0 0;
}

.vth-price-strip-premium{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 32px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.vth-premium-title{
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #15803d;
  line-height: 1.3;
}

.vth-premium-features{
  margin: 0;
  padding-left: 18px;
  color: #4b5563;
}

.vth-price-strip-premium-center{
  text-align: center;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  padding: 0 30px;
}

.vth-premium-price{
  font-size: 2.8rem;
  font-weight: 900;
  color: #15803d;
  line-height: 1;
}

.vth-premium-payment{
  display: block;
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vth-price-strip-premium-right{
  text-align: center;
}

.vth-btn-premium{
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 999px;
  text-decoration: none;
  background: #ffb100;
  color: #1a1205;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.vth-btn-premium:hover{
  background: #e29b00;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.vth-premium-trust{
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

.vth-premium-check{
  color: #15803d;
  font-weight: 900;
  margin-right: 6px;
}

@media (max-width: 1024px){
  .vth-price-strip-premium{
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .vth-price-strip-premium-center{
    border: none;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
  }
  .vth-premium-price{
    font-size: 2.4rem;
  }
}

@media (max-width: 600px){
  .vth-premium-title{
    font-size: 1.1rem;
  }
  .vth-premium-price{
    font-size: 2rem;
  }
  .vth-btn-premium{
    width: 100%;
    padding: 12px 24px;
  }
}

/* Launch final CTA */
.vth-final-cta{
  background: linear-gradient(135deg, #0a3a20, #15803d);
  padding: 50px 0;
  margin-top: 40px;
}

.vth-final-cta-box{
  background: #ffffff;
  border-radius: 14px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 2px solid #15803d;
  max-width: 700px;
  margin: 0 auto;
}

.vth-final-cta-box h2{
  font-size: 1.8rem;
  margin: 0 0 12px;
  color: #0a3a20;
  font-weight: 900;
}

.vth-final-cta-box p{
  margin: 0 0 10px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.vth-final-cta-box p strong{
  color: #e74c3c;
  font-weight: 900;
}

.vth-final-cta-price{
  margin: 6px 0 4px;
  font-size: 1.05rem;
}

.vth-final-cta-btn{
  padding: 16px 40px;
  font-size: 1.05rem;
  margin: 20px 0 0;
  display: inline-block;
  background: #ffb100;
  color: #1a1205;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.vth-final-cta-btn:hover{
  background: #e29b00;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.vth-final-cta-note{
  margin-top: 16px;
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
}

@media (max-width: 600px){
  .vth-final-cta-box{
    padding: 24px;
  }
  .vth-final-cta-box h2{
    font-size: 1.4rem;
  }
  .vth-final-cta-btn{
    width: 100%;
    padding: 14px 30px;
  }
}


.vth-video-wrap video {
  margin-bottom: 5px; /* controls space below video */
}

/* =========================================================
   PAGE-SPECIFIC LAYOUT (MOVED FROM INLINE CSS)
   Modules, who-cards, CTA bar, ribbons, etc.
========================================================= */

/* Improved trust Box Styles */
.improved-trust-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  padding: 24px 24px;
  margin: 24px 0;
  max-width: 100%;
  border-left: 5px solid #15803d;
}

.improved-trust-box h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.improved-trust-box p {
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .improved-trust-box {
    padding: 24px 10px;
  }

  .improved-trust-box h2 {
    font-size: 1.3rem;
  }
}

/* Modern module card style (premium border + stronger glow) */
.vth-module {
  border-radius: 18px;
  border: 1px solid rgba(21, 128, 61, 0.18);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
  background: #fff;
  margin-bottom: 38px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.vth-module:hover {
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.16);
  border-color: #b6e7c7;
}

.vth-module-header {
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, #15803d 80%, #1e7c54 100%);
  color: #fff;
  padding: 22px 28px 16px 28px;
  border-bottom: 1.5px solid #e4f7eb;
}

.vth-module-body {
  padding: 28px 28px 18px 28px;
}

@media (max-width: 700px) {
  .vth-module-header,
  .vth-module-body {
    padding: 16px 8px;
  }
}

/* Improved Who This Is For Cards */
.who-card {
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(21,128,61,0.07);
  border: 2px solid #e4f7eb;
  background: #fff;
  padding: 36px 32px 28px 32px;
  margin-bottom: 18px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.who-card-yes {
  border-left: 6px solid #22c55e;
  background: linear-gradient(90deg, #f4fef7 80%, #e9f9ee 100%);
}

.who-card-no {
  border-left: 6px solid #f87171;
  background: linear-gradient(90deg, #fef6f6 80%, #fbeaea 100%);
}

.who-icon {
  font-size: 2rem;
  vertical-align: middle;
  margin-right: 8px;
  display: inline-block;
}

.who-icon-yes { color: #22c55e; }
.who-icon-no { color: #f87171; }

.who-card h3 {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.who-card ul {
  font-size: 1.07rem;
  margin: 0;
  padding-left: 22px;
}

.who-card li {
  margin-bottom: 12px;
}

.who-card:hover {
  box-shadow: 0 8px 32px rgba(21,128,61,0.13);
  border-color: #b6e7c7;
}

@media (max-width: 700px) {
  .who-card {
    padding: 18px 8px 14px 8px;
  }

  .who-card h3 {
    font-size: 1.05rem;
  }
}

/* Improved CTA Bar Styles */
.improved-cta-hero {
  border-radius: 22px;
  border: 2.5px solid #e4f7eb;
  box-shadow: 0 6px 32px rgba(21,128,61,0.08), 0 1.5px 6px rgba(21,128,61,0.04);
  background: linear-gradient(90deg, #fff 80%, #f4fef7 100%);
  margin: 0 auto 32px auto;
  padding: 18px 32px 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1100px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.improved-cta-hero:hover {
  box-shadow: 0 12px 40px rgba(21,128,61,0.13), 0 2px 8px rgba(21,128,61,0.07);
  border-color: #b6e7c7;
}

.improved-cta-btn {
  font-size: 1.18rem;
  padding: 16px 38px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(255,177,0,0.13);
  background: linear-gradient(90deg, #ffb100 80%, #ffd700 100%);
  font-weight: 800;
  transition: background 0.2s, box-shadow 0.2s;
}

.improved-cta-btn:hover {
  background: linear-gradient(90deg, #ffd700 80%, #ffb100 100%);
  box-shadow: 0 8px 32px rgba(255,177,0,0.18);
}

.cta-trust-badge {
  color: #22c55e;
  font-size: 1.5em;
  margin-right: 2px;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .improved-cta-hero {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 8px;
    gap: 10px;
  }

  .improved-cta-btn {
    width: 100%;
    padding: 14px 0;
  }

  .vth-price-hero-center {
    text-align: center;
    margin: 10px 0;
  }
}

/* Results disclaimer box */
.results-disclaimer {
  max-width: 820px;
  margin: 40px auto 20px;
  padding: 15px 20px;
  font-size: 14px;
  color: #666;
  background: #f4f6f4;
  border-left: 4px solid #2f7d32;
  border-radius: 6px;
}

/* "Who this is for" grid */
.who-this-is-for {
  padding: 20px 20px;
  background: #f7faf7;
  text-align: center;
}

.who-this-is-for h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.who-grid .who-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.who-grid .who-card h3 { margin-bottom: 15px; }
.who-grid .who-card ul { padding-left: 18px; }
.who-grid .who-card li { margin-bottom: 10px; }

/* Sales split sections and two-column layouts */
.vth-sales-wrap .split-section {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,0.85fr);
  gap: 56px;
  align-items: center;
  margin: 56px 0;
}

.vth-sales-wrap .split-section .split-text p {
  margin: 0 0 14px;
  line-height: 1.75;
}

.vth-sales-wrap .split-section .split-media {
  display: flex;
  justify-content: flex-end;
}

.vth-sales-wrap .split-section .split-media img {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.vth-sales-wrap .vth-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.vth-sales-wrap .vth-two-col-reverse {
  direction: rtl;
}

.vth-sales-wrap .vth-two-col-reverse > * {
  direction: ltr;
}

@media (max-width: 900px) {
  .vth-sales-wrap .split-section {
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 40px 0;
  }

  .vth-sales-wrap .split-section .split-media {
    justify-content: center;
  }

  .vth-sales-wrap .split-section .split-media img {
    max-width: 520px;
  }

  .vth-sales-wrap .vth-two-col {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .vth-sales-wrap .vth-two-col-reverse {
    direction: ltr;
  }
}

/* Full-width green ribbon */
.vth-ribbon-band {
  background: #15803d;
  color: #fff;
  padding: 34px 0;
  text-align: center;
  width: 100%;
  overflow-x: hidden;
}

.vth-ribbon-band p {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .vth-ribbon-band {
    padding: 26px 0;
  }

  .vth-ribbon-band p {
    font-size: 1.15rem;
  }
}

/* Global horizontal scroll fix */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
/* =========================
   Sticky CTA (premium)
   ========================= */

.pbc-sticky-cta{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(140%);
  z-index: 9999;

  width: min(760px, calc(100% - 20px));
  padding: 12px 12px;
  border-radius: 18px;

  background: linear-gradient(180deg, rgba(9,55,37,.98), rgba(7,42,29,.98));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.34);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  color: #fff;
  text-decoration: none;

  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease, filter .22s ease;
}

.pbc-sticky-cta.is-on{
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.pbc-sticky-cta:hover{
  filter: brightness(1.03);
}

.pbc-sticky-cta__left{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-left: 6px;
}

.pbc-sticky-cta__badge{
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .3px;

  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
}

.pbc-sticky-cta__title{
  font-weight: 900;
  font-size: 15px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pbc-sticky-cta__meta{
  font-weight: 700;
  font-size: 12.5px;
  opacity: .88;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pbc-sticky-cta__right{
  display: flex;
  align-items: center;
  gap: 12px;
}

.pbc-sticky-cta__price{
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}

.pbc-sticky-cta__was{
  font-weight: 800;
  font-size: 12px;
  opacity: .7;
  text-decoration: line-through;
}

.pbc-sticky-cta__now{
  font-weight: 950;
  font-size: 16px;
}

.pbc-sticky-cta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;

  font-weight: 950;
  font-size: 14px;
  letter-spacing: .2px;

  background: linear-gradient(180deg, #ffcc39, #f6aa00);
  color: #122018;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.18);
}

/* Mobile: stack price + button neatly */
@media (max-width: 560px){
  .pbc-sticky-cta{
    padding: 10px 10px;
    border-radius: 16px;
  }

  .pbc-sticky-cta__title{
    font-size: 14px;
  }

  .pbc-sticky-cta__meta{
    display: none; /* keep it clean on small screens */
  }

  .pbc-sticky-cta__price{
    display: none; /* avoid clutter; CTA button is enough */
  }

  .pbc-sticky-cta__btn{
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 14px;
    min-width: 170px;
    text-align: center;
  }
}
/* MOBILE HERO: show video sooner */
@media (max-width: 820px){

  
  /* Center + enlarge hero headline for mobile conversion */
  .vth-headline{
    text-align: center !important;
    font-size: 2rem !important;
    line-height: 1.15 !important;
    margin-bottom: 14px !important;
  }

  .vth-subheadline{
    text-align: center !important;
    font-size: 1.1rem !important;
    margin-bottom: 14px !important;
  }

  .vth-hero-copy ul{
    max-width: 90%;
    margin: 0 auto 12px auto;
  }

  .vth-hero-copy ul li{
    text-align: left;
  }

  .vth-hero-copy .read-more{
    text-align: center;
    display: block;
    margin-top: 10px;
  }


  /* Tighten overall hero spacing */
  .vth-hero{
    padding-top: 14px;
    padding-bottom: 14px;
  }

  /* Reduce vertical gaps in the hero grid */
  .vth-hero-grid{
    gap: 14px;
  }

  /* Headline smaller + tighter line-height so it doesn't eat the screen */
  .vth-headline{
    font-size: 1.75rem !important;
    line-height: 1.12 !important;
    margin-bottom: 10px !important;
  }

  /* Subheadline tighter */
  .vth-subheadline{
    margin-bottom: 10px !important;
    line-height: 1.35 !important;
  }

  /* Bullets tighter spacing */
  .vth-hero-bullets{
    margin-bottom: 10px !important;
  }

  /* Collapse block (Read more) shouldn’t add chunky spacing */
  .vth-hero-more{
    margin-bottom: 10px !important;
  }

  /* Make video wrap not add extra top padding/margin */
  .vth-video-wrap{
    margin-top: 0 !important;
  }

  /* Tighten the CTA block under the video */
  .vth-video-cta{
    padding: 12px !important;
  }

  /* Reduce the price stack a bit */
  .vth-price-highlight{
    font-size: 1.6rem !important;
  }

  /* Button slightly smaller on mobile */
  .vth-btn-large{
    padding: 12px 22px !important;
    font-size: 1rem !important;
  }
}
.vth-video-facade:hover .vth-play-button {
  background: #ffb100 !important; /* Matches your yellow branding */
}
.vth-footer a, .vth-footer-links a {
    color: #333333 !important; 
    text-decoration: underline; 
    font-weight: 700;
}
.vth-btn-nav {
    color: #ffffff !important; 
}
/* NAV logo sizing fix */
.vth-main-nav .vth-nav-logo img{
  width: 88px;
  height: 88px;
  max-width: 88px;
}