/* ============================================================================
   V34 LANDING PAGE — STYLES
   Mobile-first, conversion-optimized
   ============================================================================ */

:root {
  --v34-purple: #7B2CBF;
  --v34-purple-dark: #5A189A;
  --v34-purple-light: #E0AAFF;
  --v34-purple-bg: #F3E8FF;
  --v34-cta-green: #10B981;
  --v34-cta-green-dark: #059669;
  --v34-orange: #F97316;
  --v34-red: #DC2626;
  --v34-trust-blue: #1E40AF;
  --v34-text: #1F2937;
  --v34-text-soft: #6B7280;
  --v34-bg-soft: #F9FAFB;
  --v34-bg-yellow: #FEF3C7;
  --v34-border: #E5E7EB;
  --v34-shadow: 0 4px 12px rgba(0,0,0,0.08);
  --v34-shadow-lg: 0 12px 28px rgba(0,0,0,0.12);
  --v34-radius: 14px;
  --v34-radius-lg: 20px;
  --v34-font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --v34-font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --v34-max-width: 1200px;
  --v34-max-width-narrow: 800px;
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--v34-font-body); color: var(--v34-text); line-height: 1.6; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
a { color: var(--v34-purple); text-decoration: none; }

/* ============ CONTAINER ============ */
.v34-container { width: 100%; max-width: var(--v34-max-width); margin: 0 auto; padding: 0 16px; }
.v34-container--narrow { max-width: var(--v34-max-width-narrow); }

/* ============ HEADINGS / TEXT ============ */
.v34-section-title { font-family: var(--v34-font-heading); font-size: 28px; font-weight: 800; line-height: 1.2; text-align: center; margin: 0 0 16px; color: var(--v34-text); }
.v34-section-title--white { color: #fff; }
.v34-section-subtitle { text-align: center; font-size: 16px; color: var(--v34-text-soft); max-width: 720px; margin: 0 auto 40px; }
.v34-section-subtitle--white { color: rgba(255,255,255,0.95); }
.v34-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--v34-purple); text-transform: uppercase; margin-bottom: 12px; text-align: center; width: 100%; }
.v34-eyebrow--red { color: var(--v34-red); }

@media (min-width: 768px) {
  .v34-section-title { font-size: 40px; }
  .v34-section-subtitle { font-size: 18px; margin-bottom: 56px; }
}

/* ============ BUTTONS ============ */
.v34-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 24px; font-weight: 700; font-size: 15px; border-radius: 12px; transition: all 0.2s ease; text-decoration: none; line-height: 1.2; min-height: 48px; }
.v34-btn--primary { background: var(--v34-cta-green); color: #fff; box-shadow: 0 4px 14px rgba(16,185,129,0.4); }
.v34-btn--primary:hover { background: var(--v34-cta-green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,185,129,0.5); }
.v34-btn--secondary { background: #fff; color: var(--v34-purple); border: 2px solid var(--v34-purple); }
.v34-btn--secondary:hover { background: var(--v34-purple); color: #fff; }
.v34-btn--xl { padding: 18px 32px; font-size: 17px; min-height: 60px; }
.v34-btn--full { width: 100%; }

/* ============ TOPBAR ============ */
.v34-topbar { background: linear-gradient(90deg, var(--v34-purple), var(--v34-purple-dark)); color: #fff; padding: 8px 0; overflow: hidden; font-size: 13px; font-weight: 600; }
.v34-topbar__track { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; padding: 0 16px; }
.v34-topbar__track > span { white-space: nowrap; }

@media (max-width: 640px) {
  .v34-topbar { font-size: 11px; }
  .v34-topbar__track { gap: 8px; }
}

/* ============ HERO ============ */
/* ============ BRAND HEADER ============ */
.v34-brand { background: #fff; border-bottom: 1px solid var(--v34-border); padding: 14px 0; position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.v34-brand__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.v34-brand__link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--v34-text); }
.v34-brand__link img { display: block; }
.v34-brand__name { font-family: var(--v34-font-heading); font-size: 20px; font-weight: 900; letter-spacing: 1px; color: var(--v34-purple-dark); }
.v34-brand__name em { font-style: normal; font-weight: 600; color: var(--v34-purple); margin-left: 4px; opacity: 0.85; }
.v34-brand__contact a { font-size: 13px; color: var(--v34-text-soft); text-decoration: none; }
.v34-brand__contact a:hover { color: var(--v34-purple); }

@media (max-width: 640px) {
  .v34-brand__contact { display: none; }
  .v34-brand__name { font-size: 17px; }
}

.v34-hero { background: linear-gradient(135deg, var(--v34-purple-bg) 0%, #fff 100%); padding: 32px 0 48px; }
.v34-hero__grid { display: grid; gap: 32px; align-items: center; }
.v34-hero__badge { display: inline-block; background: rgba(123,44,191,0.1); color: var(--v34-purple); padding: 6px 14px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 16px; }
.v34-hero__title { font-family: var(--v34-font-heading); font-size: 32px; font-weight: 900; line-height: 1.1; margin: 0 0 16px; color: var(--v34-text); }
.v34-hero__title-accent { color: var(--v34-purple); }
.v34-hero__subtitle { font-size: 16px; color: var(--v34-text-soft); margin: 0 0 24px; }
.v34-hero__trust { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0 24px; font-size: 13px; color: var(--v34-text-soft); }
.v34-hero__rating { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 14px; color: var(--v34-text-soft); }
.v34-stars { color: #FFB800; font-size: 18px; letter-spacing: 2px; }
.v34-hero__media { position: relative; }
.v34-hero__image { width: 100%; max-width: 540px; margin: 0 auto; border-radius: var(--v34-radius-lg); box-shadow: var(--v34-shadow-lg); }
.v34-hero__badge-floating { position: absolute; top: 12px; right: 12px; background: var(--v34-red); color: #fff; padding: 12px; border-radius: 50%; width: 70px; height: 70px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 800; box-shadow: var(--v34-shadow-lg); transform: rotate(-8deg); }
.v34-hero__badge-discount { font-size: 18px; line-height: 1; }
.v34-hero__badge-text { font-size: 10px; }

@media (min-width: 768px) {
  .v34-hero { padding: 56px 0 80px; }
  .v34-hero__grid { grid-template-columns: 1.1fr 1fr; gap: 56px; }
  .v34-hero__title { font-size: 52px; }
  .v34-hero__subtitle { font-size: 18px; }
}

/* ============ PROBLEM ============ */
.v34-problem { padding: 60px 0; background: #fff; }
.v34-problem__grid { display: grid; gap: 20px; }
.v34-problem__item { background: var(--v34-bg-soft); padding: 24px; border-radius: var(--v34-radius); border-left: 4px solid var(--v34-purple); }
.v34-problem__icon { font-size: 32px; display: block; margin-bottom: 12px; }
.v34-problem__item h3 { font-family: var(--v34-font-heading); font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--v34-text); }
.v34-problem__item p { font-size: 14px; color: var(--v34-text-soft); margin: 0; }
.v34-problem__item--quote { background: linear-gradient(135deg, var(--v34-purple), var(--v34-purple-dark)); color: #fff; display: flex; align-items: center; justify-content: center; text-align: center; border-left: none; }
.v34-quote { font-style: italic; font-size: 18px; font-weight: 600; margin: 0; line-height: 1.3; }

@media (min-width: 768px) {
  .v34-problem { padding: 100px 0; }
  .v34-problem__grid { grid-template-columns: repeat(3, 1fr); }
  .v34-quote { font-size: 22px; }
}

/* ============ SOLUTION ============ */
.v34-solution { padding: 60px 0; background: var(--v34-bg-soft); }
.v34-solution__science { background: #fff; border: 2px solid var(--v34-purple-light); border-radius: var(--v34-radius-lg); padding: 32px; margin-top: 32px; max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; box-shadow: var(--v34-shadow); }
.v34-solution__science-label { display: inline-block; background: var(--v34-purple-bg); color: var(--v34-purple); padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 16px; }
.v34-solution__science p { font-family: var(--v34-font-heading); font-size: 18px; font-weight: 600; line-height: 1.5; color: var(--v34-text); margin: 0; }

@media (min-width: 768px) {
  .v34-solution { padding: 100px 0; }
  .v34-solution__science p { font-size: 22px; }
}

/* ============ SOLUTION VISUAL ============ */
.v34-solution__visual { max-width: 540px; margin: 32px auto 0; padding: 0 16px; }
.v34-solution__visual img { width: 100%; height: auto; display: block; border-radius: var(--v34-radius-lg); box-shadow: var(--v34-shadow); }

/* ============ HOWTO VISUAL ============ */
.v34-howto__visual { max-width: 720px; margin: 32px auto 0; padding: 0 16px; }
.v34-howto__visual img { width: 100%; height: auto; display: block; border-radius: var(--v34-radius-lg); box-shadow: var(--v34-shadow); }

/* ============ RESULTS HERO IMAGE ============ */
.v34-results__hero { max-width: 720px; margin: 0 auto 40px; padding: 0 16px; }
.v34-results__hero img { width: 100%; height: auto; display: block; border-radius: var(--v34-radius-lg); box-shadow: var(--v34-shadow-lg); }

/* ============ RESULTS QUOTES (4 cards) ============ */
.v34-results__quotes { display: grid; gap: 16px; max-width: 1100px; margin: 0 auto 32px; }
.v34-results__quotes blockquote { background: var(--v34-bg-soft); border-left: 4px solid var(--v34-purple); border-radius: var(--v34-radius); padding: 20px 22px; margin: 0; }
.v34-results__quotes blockquote p { font-size: 15px; font-style: italic; color: var(--v34-text); margin: 0 0 10px; line-height: 1.5; }
.v34-results__quotes blockquote cite { font-size: 13px; font-weight: 600; color: var(--v34-text-soft); font-style: normal; }

@media (min-width: 768px) {
  .v34-results__quotes { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ============ SOCIAL PROOF SECTION (UGC + Cards + Quotes merged) ============ */
.v34-social { padding: 60px 0; background: linear-gradient(180deg, #fff 0%, var(--v34-purple-bg) 100%); }
.v34-social__rating { text-align: center; margin: 0 auto 36px; }
.v34-social__rating .v34-stars { font-size: 26px; }
.v34-social__rating p { margin: 6px 0 0; font-size: 15px; color: var(--v34-text-soft); }

@media (min-width: 768px) {
  .v34-social { padding: 100px 0; }
}

/* ============ UGC SECTION (Real Users) ============ */
.v34-ugc { padding: 60px 0; background: linear-gradient(180deg, #fff 0%, var(--v34-purple-bg) 100%); }
.v34-ugc__grid { display: grid; gap: 24px; max-width: 1000px; margin: 0 auto 24px; padding: 0 16px; }
.v34-ugc__card { background: #fff; border-radius: var(--v34-radius-lg); overflow: hidden; box-shadow: var(--v34-shadow-lg); margin: 0; display: flex; flex-direction: column; }
.v34-ugc__card img { width: 100%; height: auto; display: block; aspect-ratio: 9/12; object-fit: cover; }
.v34-ugc__card figcaption { padding: 20px 22px 24px; }
.v34-ugc__stars { font-size: 18px; letter-spacing: 2px; color: #FFB800; margin-bottom: 10px; }
.v34-ugc__card blockquote { font-size: 15px; font-style: italic; color: var(--v34-text); margin: 0 0 14px; line-height: 1.55; }
.v34-ugc__card cite { font-style: normal; font-size: 13px; font-weight: 700; color: var(--v34-text); display: block; line-height: 1.4; }
.v34-ugc__card cite span { font-weight: 500; color: var(--v34-cta-green); font-size: 12px; }
.v34-ugc__note { text-align: center; font-size: 13px; color: var(--v34-text-soft); margin: 24px 16px 0; }
.v34-ugc__note a { color: var(--v34-purple); font-weight: 600; }

@media (min-width: 768px) {
  .v34-ugc { padding: 100px 0; }
  .v34-ugc__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ============ TESTIMONIALS FEATURED CARDS ============ */
.v34-testimonials__featured { display: grid; gap: 20px; margin-bottom: 32px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.v34-testimonials__featured img { width: 100%; height: auto; display: block; border-radius: var(--v34-radius-lg); box-shadow: var(--v34-shadow); }

@media (min-width: 768px) {
  .v34-testimonials__featured { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ============ HOW TO ============ */
.v34-howto { padding: 60px 0; background: #fff; }
.v34-howto__steps { display: grid; gap: 24px; margin-bottom: 32px; }
.v34-howto__step { text-align: center; padding: 32px 24px; background: var(--v34-bg-soft); border-radius: var(--v34-radius-lg); position: relative; }
.v34-howto__num { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: var(--v34-purple); color: #fff; border-radius: 50%; font-family: var(--v34-font-heading); font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.v34-howto__step h3 { font-family: var(--v34-font-heading); font-size: 20px; font-weight: 800; letter-spacing: 1px; margin: 0 0 12px; color: var(--v34-purple); }
.v34-howto__step p { font-size: 15px; margin: 0; color: var(--v34-text-soft); }
.v34-howto__tip { background: var(--v34-bg-yellow); border-radius: var(--v34-radius); padding: 20px 24px; max-width: 720px; margin: 0 auto; text-align: center; font-size: 15px; }

@media (min-width: 768px) {
  .v34-howto { padding: 100px 0; }
  .v34-howto__steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

/* ============ BENEFITS ============ */
.v34-benefits { padding: 60px 0; background: var(--v34-bg-soft); }
.v34-benefits__grid { display: grid; gap: 20px; }
.v34-benefit { background: #fff; padding: 28px 24px; border-radius: var(--v34-radius); box-shadow: var(--v34-shadow); transition: transform 0.2s; }
.v34-benefit:hover { transform: translateY(-4px); }
.v34-benefit__icon { font-size: 36px; display: block; margin-bottom: 12px; }
.v34-benefit h3 { font-family: var(--v34-font-heading); font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--v34-text); }
.v34-benefit p { font-size: 14px; color: var(--v34-text-soft); margin: 0; }

@media (min-width: 768px) {
  .v34-benefits { padding: 100px 0; }
  .v34-benefits__grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

/* ============ RESULTS / BEFORE-AFTER ============ */
.v34-results { padding: 60px 0; background: #fff; }
.v34-results__grid { display: grid; gap: 24px; }
.v34-result-card { background: var(--v34-bg-soft); border-radius: var(--v34-radius-lg); padding: 20px; }
.v34-result-card__images { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.v34-result-card__image { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden; background: #ddd; }
.v34-result-card__image img { width: 100%; height: 100%; object-fit: cover; }
.v34-result-card__label { position: absolute; top: 8px; left: 8px; padding: 4px 10px; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: 1px; color: #fff; }
.v34-result-card__label--before { background: var(--v34-text-soft); }
.v34-result-card__label--after { background: var(--v34-cta-green); }
.v34-result-card__quote { font-size: 14px; font-style: italic; color: var(--v34-text); margin: 0 0 8px; }
.v34-result-card__author { font-size: 13px; font-weight: 600; color: var(--v34-text-soft); margin: 0; }
.v34-disclaimer { font-size: 12px; color: var(--v34-text-soft); text-align: center; margin-top: 24px; font-style: italic; }

@media (min-width: 768px) {
  .v34-results { padding: 100px 0; }
  .v34-results__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (min-width: 1024px) {
  .v34-results__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============ TESTIMONIALS ============ */
.v34-testimonials { padding: 60px 0; background: var(--v34-bg-soft); }
.v34-testimonials__rating { text-align: center; margin-bottom: 40px; }
.v34-testimonials__rating .v34-stars { font-size: 28px; }
.v34-testimonials__rating p { margin: 8px 0 0; font-size: 16px; }
.v34-testimonials__grid { display: grid; gap: 20px; }
.v34-testimonial {
  position: relative;
  background: #fff;
  padding: 28px 24px 22px;
  border-radius: var(--v34-radius-lg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--v34-border);
  border-top: 3px solid var(--v34-purple);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.v34-testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(123,44,191,0.12);
}
.v34-testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 22px;
  font-family: 'Georgia', serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--v34-purple-light);
  line-height: 1;
  opacity: 0.5;
}
.v34-testimonial h3 {
  font-family: var(--v34-font-heading);
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--v34-purple-dark);
  position: relative;
  z-index: 1;
}
.v34-testimonial .v34-stars { font-size: 15px; margin-bottom: 14px; }
.v34-testimonial p {
  font-size: 14.5px;
  color: var(--v34-text);
  line-height: 1.65;
  margin: 0 0 18px;
  font-style: italic;
  flex-grow: 1;
}
.v34-testimonial footer {
  font-size: 13px;
  color: var(--v34-text-soft);
  padding-top: 12px;
  border-top: 1px dashed var(--v34-border);
  font-weight: 500;
}
.v34-testimonial footer strong {
  color: var(--v34-text);
  font-weight: 700;
}

@media (min-width: 768px) {
  .v34-testimonials { padding: 100px 0; }
  .v34-testimonials__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ============ COMPARE TABLE ============ */
.v34-compare { padding: 60px 0; background: #fff; }
.v34-compare__wrap { overflow-x: auto; margin: 0 -16px; padding: 0 16px; }
.v34-compare__table { width: 100%; border-collapse: collapse; min-width: 600px; }
.v34-compare__table th, .v34-compare__table td { padding: 14px; text-align: center; border-bottom: 1px solid var(--v34-border); font-size: 14px; }
.v34-compare__table th:first-child, .v34-compare__table td:first-child { text-align: left; font-weight: 600; }
.v34-compare__table th { background: var(--v34-bg-soft); font-weight: 700; }
.v34-compare__col-highlight { background: var(--v34-purple-bg); font-weight: 700; color: var(--v34-purple-dark); }
.v34-compare__conclusion { text-align: center; font-size: 18px; margin-top: 24px; }

@media (min-width: 768px) {
  .v34-compare { padding: 100px 0; }
  .v34-compare__table th, .v34-compare__table td { padding: 18px; font-size: 15px; }
}

/* ============ BUNDLES (most important) ============ */
.v34-bundles { padding: 60px 0; background: linear-gradient(135deg, #FEF3C7 0%, #FFE4E6 100%); }
.v34-bundles__countdown { background: var(--v34-red); color: #fff; padding: 12px 24px; border-radius: var(--v34-radius); display: inline-flex; gap: 8px; font-weight: 700; margin: 0 auto 32px; max-width: 100%; box-shadow: var(--v34-shadow); }
.v34-bundles__countdown-time { font-family: 'Courier New', monospace; font-size: 18px; }
.v34-bundles__grid { display: grid; gap: 24px; max-width: 1100px; margin: 0 auto; }
.v34-bundle { background: #fff; border-radius: var(--v34-radius-lg); padding: 24px; box-shadow: var(--v34-shadow); border: 2px solid var(--v34-border); position: relative; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.v34-bundle:hover { transform: translateY(-4px); box-shadow: var(--v34-shadow-lg); }
.v34-bundle--popular { border-color: var(--v34-purple); transform: scale(1.02); }
.v34-bundle__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--v34-orange); color: #fff; padding: 6px 16px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: 1px; box-shadow: var(--v34-shadow); white-space: nowrap; }
.v34-bundle__badge--green { background: var(--v34-cta-green); }
.v34-bundles__grid--2cols { max-width: 800px; }
@media (min-width: 768px) {
  .v34-bundles__grid--2cols { grid-template-columns: repeat(2, 1fr) !important; }
}
.v34-bundle__header { text-align: center; padding-bottom: 16px; border-bottom: 1px dashed var(--v34-border); margin-bottom: 16px; }
.v34-bundle__icon { font-size: 36px; display: block; margin-bottom: 8px; }
.v34-bundle__name { font-family: var(--v34-font-heading); font-size: 18px; font-weight: 800; letter-spacing: 0.5px; margin: 0 0 4px; color: var(--v34-text); }
.v34-bundle__sub { font-size: 13px; color: var(--v34-text-soft); margin: 0; }
.v34-bundle__pricing { text-align: center; margin-bottom: 20px; }
.v34-bundle__price-old { display: block; font-size: 14px; color: var(--v34-text-soft); text-decoration: line-through; }
.v34-bundle__price { display: block; font-family: var(--v34-font-heading); font-size: 42px; font-weight: 900; color: var(--v34-purple); line-height: 1; margin: 4px 0; }
.v34-bundle__save { display: inline-block; background: var(--v34-cta-green); color: #fff; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.v34-bundle__features { list-style: none; padding: 0; margin: 0 0 20px; flex-grow: 1; }
.v34-bundle__features li { padding: 8px 0; font-size: 14px; padding-left: 24px; position: relative; }
.v34-bundle__features li::before { content: '✓'; position: absolute; left: 0; color: var(--v34-cta-green); font-weight: 800; }
.v34-bundle__note { font-size: 12px; color: var(--v34-text-soft); text-align: center; margin: 12px 0 0; font-style: italic; }
.v34-bundles__urgency { text-align: center; font-size: 16px; margin-top: 32px; color: var(--v34-red); font-weight: 600; }
.v34-trust-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 24px; font-size: 14px; font-weight: 600; color: var(--v34-text-soft); }

@media (min-width: 768px) {
  .v34-bundles { padding: 100px 0; }
  .v34-bundles__grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

/* ============================================================================
   EXPRESS CHECKOUT — Vertical Centered Cards (single column)
   Inspired by HiSmile / Skims / Hers — proven DTC pattern
   ============================================================================ */
.v34-express__box {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--v34-radius-lg);
  padding: 24px 18px;
  box-shadow: 0 16px 40px rgba(123, 44, 191, 0.14);
  border: 2px solid var(--v34-purple-light);
}

.v34-express__heading {
  font-family: var(--v34-font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--v34-text-soft);
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
}

/* ============ STEP LABELS (Paso 1, Paso 2) ============ */
.v34-express__step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--v34-font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--v34-text);
  margin: 0 0 16px;
  letter-spacing: 0.2px;
}

.v34-express__step-label--mt {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 2px dashed var(--v34-border);
}

.v34-express__step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--v34-purple);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

/* ============ FORM INSIDE EXPRESS BOX ============ */
.v34-express__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.v34-express__form .v34-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v34-express__form .v34-form__field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--v34-text);
}

.v34-express__form .v34-form__field input {
  padding: 13px 14px;
  border: 2px solid var(--v34-border);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: border 0.2s, box-shadow 0.2s;
  background: #fff;
  color: var(--v34-text);
  width: 100%;
}

.v34-express__form .v34-form__field input:focus {
  outline: none;
  border-color: var(--v34-purple);
  box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.12);
}

.v34-express__form .v34-form__row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
}

.v34-express__form .v34-form__trust {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--v34-text-soft);
  line-height: 1.5;
}

@media (max-width: 380px) {
  .v34-express__form .v34-form__row {
    grid-template-columns: 1fr;
  }
}

/* ============ CARD (vertical, centered) ============ */
.v34-express__option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 22px 18px 18px;
  background: #fff;
  border: 2px solid var(--v34-border);
  border-radius: var(--v34-radius);
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  overflow: visible;
}

.v34-express__option:hover {
  border-color: var(--v34-purple-light);
  background: #fdfaff;
}

.v34-express__option:last-child {
  margin-bottom: 0;
}

/* Hide native radio */
.v34-express__option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* ============ SELECTED STATE (strong glow + scale) ============ */
.v34-express__option--selected {
  border-color: var(--v34-purple);
  background: linear-gradient(135deg, var(--v34-purple-bg) 0%, #fff 60%);
  box-shadow: 0 8px 24px rgba(123, 44, 191, 0.18);
  transform: translateY(-1px);
}

.v34-express__option--popular {
  border-color: rgba(16, 185, 129, 0.4);
  border-width: 2px;
}

.v34-express__option--popular.v34-express__option--selected {
  border-color: var(--v34-cta-green);
  background: linear-gradient(135deg, #ECFDF5 0%, #fff 60%);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.22);
}

.v34-express__option--best {
  border-color: rgba(123, 44, 191, 0.4);
}

.v34-express__option--best.v34-express__option--selected {
  border-color: var(--v34-purple-dark);
  background: linear-gradient(135deg, #F3E8FF 0%, #fff 60%);
  box-shadow: 0 10px 28px rgba(123, 44, 191, 0.25);
}

/* ============ "✓ SELECCIONADO" pill (top-right when selected) ============ */
.v34-express__check {
  position: absolute;
  top: 10px;
  right: 12px;
  background: var(--v34-cta-green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.v34-express__option--selected .v34-express__check {
  opacity: 1;
  transform: scale(1);
}

.v34-express__option--best.v34-express__option--selected .v34-express__check {
  background: var(--v34-purple);
}

/* ============ TOP BADGE (MÁS VENDIDO / MEJOR PRECIO) ============ */
.v34-express__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--v34-cta-green);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.v34-express__badge--purple {
  background: var(--v34-purple);
}

/* ============ QTY + GIFTS + PER-UNIT ============ */
.v34-express__qty {
  font-family: var(--v34-font-heading);
  font-size: 19px;
  font-weight: 800;
  color: var(--v34-text);
  line-height: 1.2;
  letter-spacing: -0.2px;
  margin-top: 4px;
}

.v34-express__option--selected .v34-express__qty {
  color: var(--v34-text);
}

/* Duration / honest supporting copy as a soft pill */
.v34-express__duration {
  display: inline-block;
  background: rgba(16, 185, 129, 0.10);
  color: var(--v34-cta-green-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.1px;
}

.v34-express__option--best .v34-express__duration {
  background: rgba(123, 44, 191, 0.10);
  color: var(--v34-purple-dark);
}

.v34-express__per-unit {
  font-size: 14px;
  color: var(--v34-text-soft);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-top: 2px;
}

.v34-express__option--selected .v34-express__per-unit {
  color: var(--v34-purple-dark);
  font-weight: 700;
}

/* Divider */
.v34-express__divider {
  border: 0;
  border-top: 1px dashed var(--v34-border);
  width: 50%;
  margin: 10px auto 6px;
}

/* Price row */
.v34-express__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-top: 2px;
}

.v34-express__price-old {
  font-size: 16px;
  color: var(--v34-text-soft);
  text-decoration: line-through;
  font-weight: 500;
}

.v34-express__price {
  font-family: var(--v34-font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--v34-purple);
  line-height: 1;
  letter-spacing: -0.5px;
}

.v34-express__option--popular .v34-express__price {
  color: var(--v34-cta-green-dark);
}

/* Savings chip — prominent, NOT inline anymore */
.v34-express__save-chip {
  display: inline-block;
  margin-top: 12px;
  background: var(--v34-cta-green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
}

.v34-express__save-chip--purple {
  background: var(--v34-purple);
  box-shadow: 0 3px 10px rgba(123, 44, 191, 0.3);
}

/* ============ TOTAL BAR ============ */
.v34-express__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 6px 6px;
  margin-top: 14px;
  border-top: 2px dashed var(--v34-border);
}

.v34-express__total-label {
  font-family: var(--v34-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--v34-text);
}

.v34-express__total-amount {
  font-family: var(--v34-font-heading);
  font-size: 30px;
  font-weight: 900;
  color: var(--v34-purple);
  letter-spacing: -0.5px;
}

.v34-express__total-sub {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  color: var(--v34-text-soft);
  margin: 4px 0 14px;
  flex-wrap: wrap;
  font-weight: 600;
}

.v34-express__cta {
  margin-top: 4px;
  font-size: 16px !important;
  letter-spacing: 0.3px;
}

.v34-express__guarantee {
  text-align: center;
  font-size: 12px;
  color: var(--v34-text-soft);
  margin: 12px 0 0;
}

/* ============ DESKTOP ============ */
@media (min-width: 768px) {
  .v34-express__box { padding: 36px 32px; max-width: 580px; }
  .v34-express__heading { font-size: 15px; margin-bottom: 22px; }
  .v34-express__option { padding: 26px 22px 22px; margin-bottom: 18px; gap: 8px; }
  .v34-express__qty { font-size: 22px; }
  .v34-express__duration { font-size: 14px; padding: 5px 14px; }
  .v34-express__per-unit { font-size: 15px; }
  .v34-express__price-old { font-size: 18px; }
  .v34-express__price { font-size: 38px; }
  .v34-express__save-chip { font-size: 14px; padding: 7px 18px; margin-top: 14px; }
  .v34-express__total-amount { font-size: 36px; }
  .v34-express__total-label { font-size: 18px; }
  .v34-express__check { font-size: 11px; padding: 4px 11px; top: 12px; right: 14px; }
  .v34-express__divider { margin: 12px auto 8px; }
  .v34-express__step-label { font-size: 18px; }
  .v34-express__step-num { width: 32px; height: 32px; font-size: 15px; }
  .v34-express__form { gap: 16px; }
  .v34-express__form .v34-form__field input { padding: 14px 16px; }
}

/* ============ PRODUCT VISUAL ANCHOR (top of express box) ============ */
.v34-express__product {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 4px 18px;
  margin-bottom: 4px;
  border-bottom: 1px dashed var(--v34-border);
}

.v34-express__product-img {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: var(--v34-purple-bg);
  border-radius: 12px;
  padding: 6px;
}

.v34-express__product-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.v34-express__product-name {
  font-family: var(--v34-font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--v34-text);
  line-height: 1.2;
}

.v34-express__product-rating {
  font-size: 12px;
  color: #FFB800;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.v34-express__product-rating small {
  color: var(--v34-text-soft);
  font-weight: 600;
  letter-spacing: normal;
  font-size: 11px;
}

@media (min-width: 768px) {
  .v34-express__product-img { width: 76px; height: 76px; }
  .v34-express__product-name { font-size: 18px; }
  .v34-express__product-rating small { font-size: 12px; }
}

/* ============ DELIVERY DATE BANNER ============ */
.v34-express__delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 14px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #ECFDF5 0%, #fff 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  font-size: 13px;
  color: var(--v34-cta-green-dark);
  font-weight: 600;
  text-align: center;
}

.v34-express__delivery-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.v34-express__delivery strong {
  font-weight: 800;
}

@media (min-width: 768px) {
  .v34-express__delivery { font-size: 14px; padding: 12px 16px; }
}

/* ============ TRUST BADGES GRID (below submit) ============ */
.v34-express__trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.v34-express__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--v34-bg-soft);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--v34-text);
}

.v34-express__trust-item span {
  font-size: 18px;
  flex-shrink: 0;
}

.v34-express__trust-item strong {
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .v34-express__trust-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .v34-express__trust-item { font-size: 13px; padding: 12px 14px; flex-direction: column; text-align: center; gap: 4px; }
  .v34-express__trust-item span { font-size: 22px; }
}

/* ============ INPUT WRAPPER WITH STATUS ICON ============ */
.v34-input-wrap {
  position: relative;
}

.v34-input-wrap input {
  width: 100%;
  padding-right: 38px !important;
}

.v34-input-status {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.v34-input-status::before {
  content: '';
}

.v34-input-wrap--valid .v34-input-status {
  opacity: 1;
  background: var(--v34-cta-green);
  color: #fff;
}

.v34-input-wrap--valid .v34-input-status::before {
  content: '✓';
}

.v34-input-wrap--invalid .v34-input-status {
  opacity: 1;
  background: var(--v34-red);
  color: #fff;
}

.v34-input-wrap--invalid .v34-input-status::before {
  content: '✕';
}

.v34-input-wrap--valid input {
  border-color: var(--v34-cta-green) !important;
  background: rgba(16, 185, 129, 0.04) !important;
}

.v34-input-wrap--invalid input {
  border-color: var(--v34-red) !important;
  background: rgba(220, 38, 38, 0.04) !important;
}

/* ============ CITY AUTO-DETECT CHIP ============ */
.v34-city-detect {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: var(--v34-bg-soft);
  border: 1.5px dashed var(--v34-border);
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.25s ease;
  min-height: 50px;
}

.v34-city-detect__chip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}

.v34-city-detect__icon {
  font-size: 18px;
  flex-shrink: 0;
}

.v34-city-detect__label {
  font-size: 13px;
  color: var(--v34-text-soft);
  font-weight: 600;
}

.v34-city-detect__name {
  font-weight: 700;
  color: var(--v34-text);
  font-size: 14px;
  line-height: 1.2;
}

/* VALID state — green */
.v34-city-detect__chip--valid + .v34-city-detect__edit,
.v34-city-detect:has(.v34-city-detect__chip--valid) {
  /* fallback for browsers without :has — we use class on parent below */
}

.v34-city-detect--valid {
  background: linear-gradient(135deg, #ECFDF5 0%, #fff 100%);
  border-color: var(--v34-cta-green);
  border-style: solid;
}

.v34-city-detect--valid .v34-city-detect__name {
  color: var(--v34-cta-green-dark);
}

.v34-city-detect--valid .v34-city-detect__name::after {
  content: ' ✓';
  font-weight: 900;
}

/* INVALID state — red */
.v34-city-detect--invalid {
  background: linear-gradient(135deg, #FEF2F2 0%, #fff 100%);
  border-color: var(--v34-red);
  border-style: solid;
}

.v34-city-detect--invalid .v34-city-detect__name {
  color: var(--v34-red);
}

/* Edit button */
.v34-city-detect__edit {
  background: none;
  border: 0;
  color: var(--v34-purple);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 8px;
  transition: all 0.18s ease;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.v34-city-detect__edit:hover,
.v34-city-detect__edit:active {
  background: var(--v34-purple-bg);
  color: var(--v34-purple-dark);
}

@media (min-width: 768px) {
  .v34-city-detect { padding: 14px 18px; font-size: 15px; }
  .v34-city-detect__name { font-size: 15px; }
  .v34-city-detect__edit { font-size: 14px; }
}

/* ============ VIDEO DEMO SECTION ============ */
.v34-video-demo {
  padding: 50px 0 60px;
  background: linear-gradient(180deg, #fff 0%, var(--v34-purple-bg) 100%);
  text-align: center;
}

.v34-video-demo__wrap {
  max-width: 480px;
  margin: 28px auto 18px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(123, 44, 191, 0.22);
  background: #000;
  position: relative;
}

.v34-video-demo__player {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
  background: #000;
}

.v34-video-demo__cta-line {
  font-size: 14px;
  color: var(--v34-text-soft);
  margin: 16px 0 0;
}

.v34-video-demo__cta-line a {
  color: var(--v34-purple);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

@media (min-width: 768px) {
  .v34-video-demo { padding: 80px 0 90px; }
  .v34-video-demo__wrap { max-width: 540px; }
  .v34-video-demo__cta-line { font-size: 15px; margin-top: 20px; }
}

@media (max-width: 480px) {
  .v34-video-demo { padding: 40px 0 50px; }
  .v34-video-demo__wrap { max-width: 360px; margin: 22px auto 14px; }
}

/* ============ UPSELL MODAL (post-form, pre-submit) ============ */
.v34-upsell {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.v34-upsell[hidden] {
  display: none;
}

.v34-upsell__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  animation: v34-upsell-fade 0.25s ease;
}

.v34-upsell__sheet {
  position: relative;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 28px 22px 24px;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.25);
  animation: v34-upsell-slide 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.15);
}

@keyframes v34-upsell-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes v34-upsell-slide {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@media (min-width: 768px) {
  .v34-upsell { align-items: center; }
  .v34-upsell__sheet { border-radius: 20px; max-width: 480px; padding: 36px 32px 28px; }
}

.v34-upsell__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--v34-bg-soft);
  color: var(--v34-text-soft);
  font-size: 22px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
  -webkit-tap-highlight-color: transparent;
}
.v34-upsell__close:hover { background: var(--v34-border); color: var(--v34-text); }

.v34-upsell__badge {
  display: inline-block;
  background: linear-gradient(135deg, #FB923C, #F97316);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
  animation: v34-upsell-pulse 1.5s ease-in-out infinite;
}
@keyframes v34-upsell-pulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.04); }
}

.v34-upsell__title {
  font-family: var(--v34-font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--v34-text);
  margin: 0 0 8px;
  line-height: 1.2;
}
.v34-upsell__title span {
  color: var(--v34-purple);
}

.v34-upsell__sub {
  font-size: 15px;
  color: var(--v34-text-soft);
  margin: 0 0 20px;
  line-height: 1.4;
}
.v34-upsell__sub strong {
  color: var(--v34-cta-green-dark);
  font-weight: 800;
}

.v34-upsell__compare {
  background: var(--v34-bg-soft);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
}

.v34-upsell__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 10px;
  font-size: 14px;
}

.v34-upsell__row-label {
  color: var(--v34-text-soft);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.v34-upsell__row-value {
  font-family: var(--v34-font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--v34-text);
  text-align: right;
}

.v34-upsell__row--upgrade {
  background: linear-gradient(135deg, #ECFDF5 0%, #fff 70%);
  border: 2px solid var(--v34-cta-green);
  margin-top: 8px;
}

.v34-upsell__row--upgrade .v34-upsell__row-value {
  color: var(--v34-cta-green-dark);
}

.v34-upsell__arrow {
  text-align: center;
  font-size: 20px;
  color: var(--v34-text-soft);
  margin: 6px 0;
  font-weight: 800;
}

.v34-upsell__savings {
  margin-top: 12px;
  padding: 10px 12px;
  background: linear-gradient(135deg, var(--v34-cta-green), var(--v34-cta-green-dark));
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.v34-upsell__savings strong {
  font-size: 15px;
  font-weight: 900;
}

.v34-upsell__cta {
  margin-bottom: 12px;
  font-size: 15px !important;
}

.v34-upsell__decline {
  display: block;
  width: 100%;
  background: none;
  border: 0;
  color: var(--v34-text-soft);
  font-size: 13px;
  font-weight: 600;
  padding: 12px;
  text-decoration: underline;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.v34-upsell__decline:hover {
  color: var(--v34-text);
}

.v34-upsell__guarantee {
  text-align: center;
  font-size: 11px;
  color: var(--v34-text-soft);
  margin: 12px 0 0;
}

@media (max-width: 480px) {
  .v34-upsell__sheet { padding: 22px 16px 20px; }
  .v34-upsell__title { font-size: 20px; }
  .v34-upsell__sub { font-size: 14px; }
  .v34-upsell__row { padding: 8px 10px; font-size: 13px; }
  .v34-upsell__row-value { font-size: 14px; }
  .v34-upsell__cta { font-size: 14px !important; min-height: 52px; }
}

/* ============ LIVE SOCIAL PROOF NOTIFICATION ============ */
.v34-social-proof {
  position: fixed;
  bottom: 90px;
  left: 14px;
  z-index: 90;
  background: #fff;
  padding: 12px 16px 12px 14px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  border: 1px solid var(--v34-border);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.v34-social-proof--show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.v34-social-proof__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--v34-purple-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.v34-social-proof__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}

.v34-social-proof__text strong {
  font-size: 13px;
  color: var(--v34-text);
  font-weight: 700;
}

.v34-social-proof__text span {
  font-size: 11px;
  color: var(--v34-text-soft);
}

.v34-social-proof__close {
  position: absolute;
  top: 4px;
  right: 8px;
  background: none;
  border: 0;
  font-size: 16px;
  color: var(--v34-text-soft);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

@media (max-width: 480px) {
  .v34-social-proof { bottom: 84px; left: 10px; right: 10px; max-width: none; }
  .v34-social-proof__text strong { font-size: 12px; }
  .v34-social-proof__text span { font-size: 10px; }
}

@media (min-width: 768px) {
  .v34-social-proof { bottom: 24px; left: 24px; }
}

/* ============ MOBILE — COMPACT (cards + form fit above the fold) ============ */
@media (max-width: 480px) {
  .v34-express__box { padding: 14px 12px; }

  /* Product header — compact */
  .v34-express__product { padding: 4px 2px 12px; gap: 10px; }
  .v34-express__product-img { width: 48px; height: 48px; padding: 4px; }
  .v34-express__product-name { font-size: 14px; }
  .v34-express__product-rating { font-size: 11px; }
  .v34-express__product-rating small { font-size: 10px; }

  /* Step labels — compact */
  .v34-express__step-label { font-size: 13px; margin-bottom: 10px; gap: 8px; }
  .v34-express__step-num { width: 22px; height: 22px; font-size: 11px; }
  .v34-express__step-label--mt { margin-top: 16px; padding-top: 14px; }

  /* Cards — compact (was ~180px → ~80px each) */
  .v34-express__option {
    padding: 10px 12px 10px;
    gap: 2px;
    margin-bottom: 8px;
  }
  .v34-express__qty { font-size: 15px; margin-top: 0; line-height: 1.15; }
  .v34-express__duration { font-size: 10px; padding: 2px 8px; margin: 2px 0 0; letter-spacing: 0; }
  .v34-express__per-unit { font-size: 11px; margin-top: 1px; letter-spacing: 0; }
  .v34-express__divider { display: none; }
  .v34-express__price-row { margin-top: 4px; gap: 8px; }
  .v34-express__price-old { font-size: 11px; }
  .v34-express__price { font-size: 22px; }
  .v34-express__save-chip { font-size: 10px; padding: 3px 10px; margin-top: 4px; letter-spacing: 0.2px; box-shadow: 0 1px 4px rgba(16,185,129,.2); }
  .v34-express__check { font-size: 8px; padding: 2px 6px; top: 6px; right: 8px; letter-spacing: 0.2px; }
  .v34-express__badge { font-size: 9px; padding: 3px 9px; top: -8px; letter-spacing: 0.3px; }

  /* Total + CTA — compact */
  .v34-express__total { padding: 12px 4px 4px; margin-top: 10px; }
  .v34-express__total-amount { font-size: 24px; }
  .v34-express__total-label { font-size: 14px; }
  .v34-express__total-sub { font-size: 11px; gap: 10px; margin-bottom: 8px; }
  .v34-express__delivery { font-size: 12px; padding: 8px 12px; margin: 6px 0 10px; }
  .v34-express__cta { font-size: 14px !important; min-height: 52px; }
  .v34-express__guarantee { font-size: 11px; margin-top: 8px; }

  /* Trust badges — tighter */
  .v34-express__trust-grid { gap: 6px; margin-top: 10px; }
  .v34-express__trust-item { padding: 8px 10px; font-size: 11px; }
  .v34-express__trust-item span { font-size: 16px; }

  /* Form fields — tighter */
  .v34-express__form { gap: 10px; }
  .v34-express__form .v34-form__field label { font-size: 12px; }
  .v34-express__form .v34-form__field input { padding: 11px 13px; }

  /* Section header — compact */
  .v34-bundles.v34-express { padding: 24px 0 32px !important; }
  .v34-bundles .v34-eyebrow { font-size: 10px; margin-bottom: 6px; letter-spacing: 1px; }
  .v34-bundles .v34-section-title { font-size: 22px; margin-bottom: 6px; line-height: 1.15; }
  .v34-bundles .v34-section-subtitle { font-size: 12px; margin-bottom: 12px; line-height: 1.35; padding: 0 6px; }
  .v34-bundles__countdown { font-size: 12px; padding: 8px 14px; margin: 0 auto 14px; gap: 6px; }
  .v34-bundles__countdown-time { font-size: 14px; }
  .v34-bundles__urgency { font-size: 12px; margin-top: 18px; }
  .v34-trust-row { font-size: 11px; gap: 8px; margin-top: 14px; }
}

/* ============ MINI QUANTITY SELECTOR (inside form summary) ============ */
.v34-mini-pack-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.v34-mini-pack {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border: 2px solid var(--v34-border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.18s ease;
  font-size: 13px;
}

.v34-mini-pack:hover {
  border-color: var(--v34-purple-light);
  background: #fdfaff;
}

.v34-mini-pack--selected {
  border-color: var(--v34-purple);
  background: var(--v34-purple-bg);
}

.v34-mini-pack input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.v34-mini-pack__label {
  font-weight: 600;
  color: var(--v34-text);
}

.v34-mini-pack__price {
  font-family: var(--v34-font-heading);
  font-weight: 800;
  color: var(--v34-purple);
  white-space: nowrap;
}

/* (sticky-mobile sub-styles removed — back to single full-width button) */

/* ============ INGREDIENTS ============ */
.v34-ingredients { padding: 60px 0; background: #fff; }
.v34-ingredients__grid { display: grid; gap: 20px; }
.v34-ingredient { padding: 24px; background: var(--v34-bg-soft); border-radius: var(--v34-radius); text-align: center; }
.v34-ingredient__icon { font-size: 32px; display: block; margin-bottom: 12px; }
.v34-ingredient h3 { font-family: var(--v34-font-heading); font-size: 16px; font-weight: 700; margin: 0 0 6px; color: var(--v34-text); }
.v34-ingredient p { font-size: 13px; color: var(--v34-text-soft); margin: 0; }

@media (min-width: 768px) {
  .v34-ingredients { padding: 100px 0; }
  .v34-ingredients__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ============ FAQ ============ */
.v34-faq { padding: 60px 0; background: var(--v34-bg-soft); }
.v34-faq__list { display: flex; flex-direction: column; gap: 12px; }
.v34-faq__item { background: #fff; border-radius: var(--v34-radius); padding: 0; box-shadow: var(--v34-shadow); overflow: hidden; }
.v34-faq__item summary { padding: 18px 24px; font-weight: 700; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 15px; color: var(--v34-text); }
.v34-faq__item summary::-webkit-details-marker { display: none; }
.v34-faq__item summary::after { content: '+'; font-size: 24px; font-weight: 300; color: var(--v34-purple); transition: transform 0.2s; flex-shrink: 0; }
.v34-faq__item[open] summary::after { transform: rotate(45deg); }
.v34-faq__item p { padding: 0 24px 18px; margin: 0; font-size: 14px; color: var(--v34-text-soft); line-height: 1.7; }

@media (min-width: 768px) {
  .v34-faq { padding: 100px 0; }
  .v34-faq__item summary { font-size: 17px; }
}

/* ============ GUARANTEES ============ */
.v34-guarantees { padding: 60px 0; background: #fff; }
.v34-guarantees__grid { display: grid; gap: 20px; }
.v34-guarantee { text-align: center; padding: 28px 20px; background: var(--v34-bg-soft); border-radius: var(--v34-radius); }
.v34-guarantee__icon { font-size: 48px; display: block; margin-bottom: 12px; }
.v34-guarantee h3 { font-family: var(--v34-font-heading); font-size: 17px; font-weight: 800; margin: 0 0 8px; color: var(--v34-text); }
.v34-guarantee p { font-size: 14px; color: var(--v34-text-soft); margin: 0; }

@media (min-width: 768px) {
  .v34-guarantees { padding: 100px 0; }
  .v34-guarantees__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* ============ FINAL CTA ============ */
.v34-final-cta { padding: 60px 0; background: linear-gradient(135deg, var(--v34-purple), var(--v34-purple-dark)); color: #fff; text-align: center; }
.v34-final-cta__pack { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,0.2); border-radius: var(--v34-radius-lg); padding: 32px; margin: 32px 0; }
.v34-final-cta__pack-label { display: inline-block; background: var(--v34-orange); color: #fff; padding: 6px 16px; border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: 1px; margin-bottom: 12px; }
.v34-final-cta__pack p { font-size: 18px; margin: 8px 0; }
.v34-final-cta__price { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 20px 0; }
.v34-final-cta__price-old { text-decoration: line-through; opacity: 0.7; font-size: 22px; }
.v34-final-cta__price-new { font-family: var(--v34-font-heading); font-size: 48px; font-weight: 900; }
.v34-final-cta__trust { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 8px; align-items: center; font-size: 14px; }

@media (min-width: 768px) {
  .v34-final-cta { padding: 100px 0; }
  .v34-final-cta__price-new { font-size: 64px; }
}

/* ============ ORDER FORM ============ */
.v34-form { padding: 60px 0; background: var(--v34-bg-soft); }
.v34-form__grid { display: grid; gap: 24px; max-width: 1000px; margin: 0 auto; }
.v34-form__main { background: #fff; padding: 28px; border-radius: var(--v34-radius-lg); box-shadow: var(--v34-shadow); display: flex; flex-direction: column; gap: 16px; }
.v34-form__field { display: flex; flex-direction: column; gap: 6px; }
.v34-form__field label { font-size: 14px; font-weight: 600; color: var(--v34-text); }
.v34-form__field input { padding: 14px 16px; border: 2px solid var(--v34-border); border-radius: 10px; font-size: 16px; font-family: inherit; transition: border 0.2s; }
.v34-form__field input:focus { outline: none; border-color: var(--v34-purple); }
.v34-form__field small { font-size: 12px; color: var(--v34-text-soft); }
.v34-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.v34-form__trust { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 12px; color: var(--v34-text-soft); }
.v34-form__summary { background: #fff; padding: 28px; border-radius: var(--v34-radius-lg); box-shadow: var(--v34-shadow); height: fit-content; position: sticky; top: 20px; }
.v34-form__summary h3 { font-family: var(--v34-font-heading); font-size: 18px; font-weight: 800; margin: 0 0 16px; }
.v34-form__summary-item { padding: 12px 0; border-bottom: 1px dashed var(--v34-border); font-size: 14px; font-weight: 600; }
.v34-form__summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.v34-form__summary-row--total { font-family: var(--v34-font-heading); font-size: 22px; font-weight: 800; color: var(--v34-purple); }
.v34-form__summary-free { color: var(--v34-cta-green); font-weight: 700; }
.v34-form__summary-trust { list-style: none; padding: 0; margin: 16px 0 0; font-size: 13px; color: var(--v34-text-soft); display: flex; flex-direction: column; gap: 6px; }

@media (min-width: 768px) {
  .v34-form { padding: 100px 0; }
  .v34-form__grid { grid-template-columns: 1.5fr 1fr; gap: 32px; }
  .v34-form__main { padding: 40px; }
}

/* ============ FOOTER ============ */
.v34-footer { background: var(--v34-text); color: rgba(255,255,255,0.85); padding: 48px 0 24px; }
.v34-footer__top { text-align: center; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.v34-footer__top h3 { font-family: var(--v34-font-heading); font-size: 18px; color: #fff; margin: 0 0 8px; }
.v34-footer__top p { font-size: 13px; margin: 4px 0; }
.v34-footer__top a { color: var(--v34-purple-light); }
.v34-footer__cols { display: grid; gap: 24px; margin-bottom: 32px; }
.v34-footer__cols h4 { font-size: 13px; color: #fff; letter-spacing: 1px; margin: 0 0 12px; }
.v34-footer__cols ul { list-style: none; padding: 0; margin: 0; }
.v34-footer__cols li { font-size: 13px; padding: 4px 0; }
.v34-footer__cols a { color: rgba(255,255,255,0.7); }
.v34-footer__cols a:hover { color: #fff; }
.v34-footer__disclaimer { font-size: 11px; color: rgba(255,255,255,0.5); padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 12px; line-height: 1.5; }
.v34-footer__copy { font-size: 12px; text-align: center; color: rgba(255,255,255,0.5); margin: 0; }

@media (min-width: 768px) {
  .v34-footer__cols { grid-template-columns: repeat(4, 1fr); }
}

/* ============ STICKY MOBILE CTA ============ */
.v34-sticky-mobile { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: #fff; padding: 12px; box-shadow: 0 -4px 12px rgba(0,0,0,0.1); display: block; }
.v34-sticky-mobile .v34-btn { padding: 16px; font-size: 15px; }

@media (min-width: 768px) { .v34-sticky-mobile { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 80px; } }

/* ============================================================
   MOBILE OPTIMIZATIONS (≤767px) — comprehensive improvements
   ============================================================ */
@media (max-width: 767px) {
  /* Prevent iOS zoom on input focus */
  input, select, textarea { font-size: 16px !important; }

  /* Container tighter padding */
  .v34-container { padding: 0 14px; }

  /* Headings — better hierarchy on small screens */
  .v34-section-title { font-size: 24px; line-height: 1.25; }
  .v34-section-subtitle { font-size: 14px; margin-bottom: 28px; }
  .v34-eyebrow { font-size: 11px; }

  /* Topbar — keep readable but compact */
  .v34-topbar { padding: 6px 0; font-size: 11px; }
  .v34-topbar__track { gap: 6px; padding: 0 12px; }

  /* Brand header */
  .v34-brand { padding: 10px 0; }
  .v34-brand__link img { width: 32px; height: 32px; }
  .v34-brand__name { font-size: 16px; letter-spacing: 0.5px; }

  /* Hero — mobile-first */
  .v34-hero { padding: 24px 0 36px; }
  .v34-hero__title { font-size: 26px; line-height: 1.15; }
  .v34-hero__subtitle { font-size: 14px; margin: 0 0 18px; }
  .v34-hero__badge { font-size: 10px; padding: 5px 10px; }
  .v34-hero__rating { font-size: 12px; gap: 6px; }
  .v34-hero__trust { gap: 8px; font-size: 12px; }

  /* Bigger touch targets for buttons */
  .v34-btn { min-height: 50px; padding: 14px 20px; font-size: 14px; }
  .v34-btn--xl { min-height: 56px; padding: 16px 24px; font-size: 16px; }

  /* Sections — tighter padding */
  .v34-problem, .v34-solution, .v34-howto, .v34-benefits,
  .v34-results, .v34-testimonials, .v34-compare, .v34-bundles,
  .v34-ingredients, .v34-faq, .v34-guarantees, .v34-final-cta, .v34-form {
    padding: 44px 0;
  }

  /* Problem cards — stack tighter */
  .v34-problem__item { padding: 18px; }
  .v34-problem__item h3 { font-size: 15px; }
  .v34-problem__item p { font-size: 13px; }
  .v34-problem__icon { font-size: 26px; }
  .v34-quote { font-size: 16px; }

  /* Solution science box */
  .v34-solution__science { padding: 22px 18px; }
  .v34-solution__science p { font-size: 16px; line-height: 1.4; }

  /* How-to steps */
  .v34-howto__step { padding: 22px 16px; }
  .v34-howto__num { width: 44px; height: 44px; font-size: 22px; }
  .v34-howto__step h3 { font-size: 17px; }
  .v34-howto__step p { font-size: 13px; }
  .v34-howto__tip { padding: 16px 18px; font-size: 13px; }

  /* Benefits */
  .v34-benefit { padding: 22px 18px; }
  .v34-benefit__icon { font-size: 30px; }
  .v34-benefit h3 { font-size: 16px; }
  .v34-benefit p { font-size: 13px; }

  /* Testimonials */
  .v34-testimonial { padding: 18px; }
  .v34-testimonial h3 { font-size: 14px; }
  .v34-testimonial p { font-size: 13px; }

  /* Bundles — emphasis on popular pack */
  .v34-bundle { padding: 18px; }
  .v34-bundle--popular { transform: scale(1.0); }
  .v34-bundle__name { font-size: 16px; }
  .v34-bundle__price { font-size: 36px; }
  .v34-bundle__features li { font-size: 13px; padding: 6px 0 6px 22px; }
  .v34-bundles__countdown { padding: 10px 18px; font-size: 13px; }
  .v34-bundles__countdown-time { font-size: 16px; }
  .v34-bundles__urgency { font-size: 13px; }
  .v34-trust-row { gap: 10px; font-size: 12px; }

  /* Compare table — horizontal scroll */
  .v34-compare__table th, .v34-compare__table td { padding: 10px 8px; font-size: 12px; }
  .v34-compare__conclusion { font-size: 15px; }

  /* Ingredients */
  .v34-ingredient { padding: 18px 14px; }
  .v34-ingredient__icon { font-size: 26px; }
  .v34-ingredient h3 { font-size: 14px; }
  .v34-ingredient p { font-size: 12px; }

  /* FAQ — better tap targets */
  .v34-faq__item summary { padding: 14px 18px; font-size: 14px; }
  .v34-faq__item p { padding: 0 18px 16px; font-size: 13px; }

  /* Guarantees */
  .v34-guarantee { padding: 22px 16px; }
  .v34-guarantee__icon { font-size: 38px; }
  .v34-guarantee h3 { font-size: 15px; }
  .v34-guarantee p { font-size: 13px; }

  /* Final CTA */
  .v34-final-cta__pack { padding: 22px 16px; }
  .v34-final-cta__pack p { font-size: 16px; }
  .v34-final-cta__price-new { font-size: 40px; }
  .v34-final-cta__price-old { font-size: 18px; }
  .v34-final-cta__trust { font-size: 13px; }

  /* Form — bigger inputs */
  .v34-form__main { padding: 22px 18px; }
  .v34-form__field label { font-size: 13px; }
  .v34-form__field input { padding: 12px 14px; }
  .v34-form__row { grid-template-columns: 1fr; gap: 14px; }
  .v34-form__summary { padding: 22px 18px; }

  /* Footer */
  .v34-footer { padding: 36px 0 18px; }
  .v34-footer__top h3 { font-size: 16px; }
  .v34-footer__cols { gap: 18px; }
  .v34-footer__cols h4 { font-size: 12px; }
  .v34-footer__badges { gap: 8px; padding: 14px 0; font-size: 11px; }
  .v34-footer__badges span { padding: 4px 10px; }

  /* Sticky CTA */
  .v34-sticky-mobile { padding: 10px 12px; box-shadow: 0 -6px 16px rgba(0,0,0,0.12); }
  .v34-sticky-mobile .v34-btn { padding: 14px; font-size: 14px; min-height: 48px; }

  /* Cookie banner — less intrusive */
  .cookie-banner { padding: 16px 18px; left: 8px; right: 8px; bottom: 76px; }
  .cookie-banner__text strong { font-size: 13px; }
  .cookie-banner__text p { font-size: 12px; }
  .cookie-banner__btn { padding: 9px 14px; font-size: 12px; }

  /* HD images on mobile — full width */
  .v34-results__hero, .v34-howto__visual, .v34-solution__visual { padding: 0 14px; }
  .v34-results__hero img, .v34-howto__visual img, .v34-solution__visual img,
  .v34-testimonials__featured img { border-radius: var(--v34-radius); }
}

/* ============================================================
   SMALL MOBILE (≤375px) — iPhone SE / older
   ============================================================ */
@media (max-width: 375px) {
  .v34-hero__title { font-size: 22px; }
  .v34-section-title { font-size: 21px; }
  .v34-bundle__price { font-size: 32px; }
  .v34-final-cta__price-new { font-size: 36px; }
  .v34-topbar { font-size: 10px; }
}

/* ============ INLINE CTAs (between sections) ============ */
.v34-inline-cta { padding: 24px 0; background: #fff; }
.v34-inline-cta--purple { background: linear-gradient(135deg, var(--v34-purple) 0%, var(--v34-purple-dark) 100%); }
.v34-inline-cta__box { display: flex; flex-direction: column; gap: 14px; align-items: center; padding: 24px 22px; background: var(--v34-bg-soft); border-radius: var(--v34-radius-lg); border: 2px dashed var(--v34-purple-light); text-align: center; }
.v34-inline-cta--purple .v34-inline-cta__box { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); backdrop-filter: blur(8px); }
.v34-inline-cta__icon { font-size: 32px; line-height: 1; }
.v34-inline-cta__text { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.v34-inline-cta__text strong { font-family: var(--v34-font-heading); font-size: 17px; font-weight: 800; color: var(--v34-text); }
.v34-inline-cta__text span { font-size: 13px; color: var(--v34-text-soft); }
.v34-inline-cta--purple .v34-inline-cta__text strong { color: #fff; }
.v34-inline-cta--purple .v34-inline-cta__text span { color: rgba(255,255,255,0.85); }
.v34-inline-cta .v34-btn { white-space: nowrap; }

@media (min-width: 768px) {
  .v34-inline-cta { padding: 36px 0; }
  .v34-inline-cta__box { flex-direction: row; gap: 20px; padding: 22px 28px; text-align: left; }
  .v34-inline-cta__icon { font-size: 40px; }
  .v34-inline-cta__text strong { font-size: 19px; }
  .v34-inline-cta__text span { font-size: 14px; }
}

/* ============ TRUST BAR (4 badges) ============ */
.v34-trust-bar { padding: 32px 0; background: var(--v34-bg-soft); border-top: 1px solid var(--v34-border); border-bottom: 1px solid var(--v34-border); }
.v34-trust-bar__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 900px; margin: 0 auto; padding: 0 16px; }
.v34-trust-bar__item { text-align: center; padding: 14px 8px; background: #fff; border-radius: var(--v34-radius); box-shadow: 0 2px 6px rgba(0,0,0,0.04); display: flex; flex-direction: column; gap: 4px; }
.v34-trust-bar__icon { font-size: 32px; line-height: 1; margin-bottom: 6px; }
.v34-trust-bar__item strong { font-family: var(--v34-font-heading); font-size: 14px; font-weight: 700; color: var(--v34-text); }
.v34-trust-bar__item small { font-size: 11px; color: var(--v34-text-soft); }

@media (min-width: 768px) {
  .v34-trust-bar { padding: 48px 0; }
  .v34-trust-bar__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .v34-trust-bar__item { padding: 22px 14px; }
  .v34-trust-bar__icon { font-size: 42px; }
  .v34-trust-bar__item strong { font-size: 15px; }
  .v34-trust-bar__item small { font-size: 12px; }
}

/* ============ FOOTER TRUST BADGES ============ */
.v34-footer__badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); margin: 24px 0; font-size: 12px; color: rgba(255,255,255,0.85); }
.v34-footer__badges span { padding: 6px 14px; background: rgba(255,255,255,0.05); border-radius: 999px; }
.v34-footer__copy a { color: rgba(255,255,255,0.7); margin: 0 4px; }
.v34-footer__copy a:hover { color: #fff; }

/* ============ COOKIE BANNER (RGPD) ============ */
.cookie-banner { position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 999; background: #fff; border-radius: 14px; box-shadow: 0 16px 40px rgba(0,0,0,0.18); padding: 20px 24px; max-width: 720px; margin: 0 auto; border: 2px solid var(--v34-purple-light); }
.cookie-banner__content { display: flex; flex-direction: column; gap: 16px; }
.cookie-banner__text strong { display: block; font-size: 14px; margin-bottom: 6px; color: var(--v34-purple-dark); }
.cookie-banner__text p { margin: 0; font-size: 13px; color: var(--v34-text-soft); line-height: 1.5; }
.cookie-banner__text a { color: var(--v34-purple); }
.cookie-banner__actions { display: flex; gap: 8px; }
.cookie-banner__btn { flex: 1; padding: 10px 16px; font-size: 13px; font-weight: 700; border-radius: 8px; cursor: pointer; border: 0; font-family: inherit; }
.cookie-banner__btn:hover { opacity: 0.92; }
.cookie-banner__btn--primary { background: var(--v34-purple); color: #fff; }
.cookie-banner__btn--secondary { background: var(--v34-bg-soft); color: var(--v34-text); }

@media (min-width: 768px) {
  .cookie-banner__content { flex-direction: row; align-items: center; gap: 24px; }
  .cookie-banner__actions { flex: 0 0 auto; }
  .cookie-banner__btn { padding: 12px 20px; min-width: 110px; flex: 0 0 auto; }
}

@media (max-width: 767px) {
  .cookie-banner { bottom: 76px; }
}
