/* ============================================
   YEBGO — TOKENS
   ============================================ */

/* Satoshi */
@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* General Sans */
@font-face {
  font-family: "GeneralSans";
  src: url("assets/fonts/GeneralSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GeneralSans";
  src: url("assets/fonts/GeneralSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Action & conversion */
  --yebgo-amber: #d4e000;
  --yebgo-amber-hover: #bfd000;
  --yebgo-amber-focus: #e8f000;
  --yebgo-amber-soft: #f4ff99;
  --yebgo-amber-xsoft: #faffd6;

  /* Réassurance & confiance */
  --yebgo-violet: #7c3aed;
  --yebgo-violet-hover: #6d28d9;
  --yebgo-violet-soft: #a78bfa;
  --yebgo-violet-bg: #ede9fe;
  --yebgo-violet-xbg: #f5f3ff;

  /* Impact & structure */
  --yebgo-dark: #111a00;
  --yebgo-dark-soft: #1e2e00;
  --yebgo-dark-medium: #2d4400;
  --yebgo-dark-light: #3d6200;

  /* Surfaces & neutres */
  --yebgo-white: #ffffff;
  --yebgo-bg: #f8f9fa;
  --yebgo-surface: #f1f3f5;
  --yebgo-border: #dee2e6;
  --yebgo-text: #212529;
  --yebgo-text-secondary: #6c757d;

  /* Radius */
  --yebgo-radius-sm: 8px;
  --yebgo-radius-md: 12px;
  --yebgo-radius-lg: 16px;
  --yebgo-radius-xl: 20px;
  --yebgo-radius-pill: 999px;

  /* Fonts */
  --font-heading: "Satoshi", sans-serif;
  --font-body: "GeneralSans", sans-serif;

  /* Shared shadows */
  --yg-shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.04);
  --yg-shadow-card: 0 10px 28px rgba(17, 26, 0, 0.06);
  --yg-shadow-card-hover: 0 18px 42px rgba(17, 26, 0, 0.1);
  --yg-shadow-button: 0 4px 16px rgba(212, 224, 0, 0.25);
  --yg-shadow-button-hover: 0 8px 28px rgba(212, 224, 0, 0.3);

  /* Motion */
  --yg-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --yg-ease-smooth: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================================
   YEBGO — BASE SCOPED
   ============================================ */

.yebgo-landing {
  color: var(--yebgo-text);
  background: var(--yebgo-white);
  font-family: var(--font-body);
  isolation: isolate;
}

.yebgo-landing,
.yebgo-landing *,
.yebgo-landing *::before,
.yebgo-landing *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.yebgo-landing :where(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-heading);
}

.yebgo-landing :where(button, input, textarea, select) {
  font: inherit;
}

.yebgo-landing :where(a) {
  color: inherit;
}

.yebgo-landing ::selection {
  background: var(--yebgo-amber);
  color: var(--yebgo-dark);
}

/* ============================================
   YEBGO — COMPONENTS
   ============================================ */

.yebgo-landing .yg-btn {
  --yg-btn-bg: transparent;
  --yg-btn-bg-hover: transparent;
  --yg-btn-color: var(--yebgo-text);
  --yg-btn-border: 0;
  --yg-btn-padding: 14px 28px;
  --yg-btn-radius: var(--yebgo-radius-md);
  --yg-btn-font-size: 16px;
  --yg-btn-font-weight: 600;
  --yg-btn-shadow: none;
  --yg-btn-shadow-hover: none;
  --yg-btn-hover-translate: 0;
  --yg-btn-icon-shift: 0;
  --yg-btn-width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: var(--yg-btn-width);
  padding: var(--yg-btn-padding);
  border: var(--yg-btn-border);
  border-radius: var(--yg-btn-radius);
  background: var(--yg-btn-bg);
  color: var(--yg-btn-color) !important;
  font-family: var(--font-body);
  font-size: var(--yg-btn-font-size);
  font-weight: var(--yg-btn-font-weight);
  line-height: 1.1;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: var(--yg-btn-shadow);
  transition:
    color 0.2s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    opacity 0.2s ease;
}

.yebgo-landing .yg-btn--primary {
  --yg-btn-bg: var(--yebgo-amber);
  --yg-btn-bg-hover: var(--yebgo-amber-hover);
  --yg-btn-color: var(--yebgo-dark);
  --yg-btn-padding: 16px 34px;
  --yg-btn-shadow: var(--yg-shadow-button);
  --yg-btn-shadow-hover: var(--yg-shadow-button-hover);
  --yg-btn-hover-translate: -2px;
  --yg-btn-icon-shift: 3px;
}

.yebgo-landing .yg-btn--secondary {
  --yg-btn-bg: #fcfcff;
  --yg-btn-bg-hover: var(--yebgo-white);
  --yg-btn-color: var(--yebgo-text);
  --yg-btn-border: 1px solid rgba(124, 58, 237, 0.16);
  --yg-btn-padding: 15px 26px;
  --yg-btn-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 8px 18px rgba(17, 26, 0, 0.04);
  --yg-btn-shadow-hover:
    0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 12px 22px rgba(17, 26, 0, 0.06);
  --yg-btn-hover-translate: -1px;
}

.yebgo-landing .yg-btn--text {
  --yg-btn-bg: transparent;
  --yg-btn-bg-hover: transparent;
  --yg-btn-color: var(--yebgo-amber);
  --yg-btn-padding: 0;
  --yg-btn-radius: 0;
  --yg-btn-font-size: 14px;
  --yg-btn-font-weight: 600;
  --yg-btn-shadow: none;
  --yg-btn-shadow-hover: none;
  gap: 0;
  text-decoration: underline transparent !important;
  text-underline-offset: 0.18em;
}

.yebgo-landing .yg-btn--compact {
  --yg-btn-padding: 9px 20px;
  --yg-btn-font-size: 13.5px;
  --yg-btn-font-weight: 600;
  --yg-btn-shadow: none;
  --yg-btn-shadow-hover: none;
  --yg-btn-hover-translate: 0;
}

.yebgo-landing .yg-btn:hover {
  background: var(--yg-btn-bg-hover);
  color: var(--yg-btn-color) !important;
  transform: translateY(var(--yg-btn-hover-translate));
  box-shadow: var(--yg-btn-shadow-hover);
}

.yebgo-landing .yg-btn--text:hover {
  color: var(--yebgo-amber-hover) !important;
  text-decoration-color: currentColor !important;
}

.yebgo-landing .yg-btn:focus-visible {
  outline: 2px solid var(--yebgo-violet);
  outline-offset: 2px;
}

.yebgo-landing .yg-btn svg {
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.yebgo-landing .yg-btn:hover svg {
  transform: translateX(var(--yg-btn-icon-shift));
}

.yebgo-landing .yg-btn--lead {
  --yg-btn-icon-shift: 0;
  gap: 12px;
}

.yebgo-landing .yg-btn--lead .yg-btn__label {
  display: inline-flex;
  align-items: center;
}

.yebgo-landing .yg-btn--lead .yg-btn__arrow {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 18px;
}

.yebgo-landing .yg-btn--lead .yg-btn__arrow svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: none !important;
}

.yebgo-landing .yg-btn--lead .yg-btn__arrow-line,
.yebgo-landing .yg-btn--lead .yg-btn__arrow-head {
  transform-box: fill-box;
  transition:
    transform 0.22s var(--yg-ease-smooth),
    opacity 0.18s var(--yg-ease-smooth);
}

.yebgo-landing .yg-btn--lead .yg-btn__arrow-line {
  transform-origin: right center;
  transform: scaleX(0);
  opacity: 0;
}

.yebgo-landing .yg-btn--lead .yg-btn__arrow-head {
  transform: translateX(-1px);
}

.yebgo-landing .yg-btn--lead.is-pressed .yg-btn__arrow-line,
.yebgo-landing
  .yg-btn--lead:is(:hover, :focus-visible, :active)
  .yg-btn__arrow-line {
  transform: scaleX(1);
  opacity: 1;
}

.yebgo-landing .yg-btn--lead.is-pressed .yg-btn__arrow-head,
.yebgo-landing
  .yg-btn--lead:is(:hover, :focus-visible, :active)
  .yg-btn__arrow-head {
  transform: translateX(0);
}

.yebgo-landing .yg-btn--lead.is-pressed,
.yebgo-landing .yg-btn--lead:focus-visible {
  background: var(--yg-btn-bg-hover);
  box-shadow: var(--yg-btn-shadow-hover);
  transform: translateY(var(--yg-btn-hover-translate));
}

@media (prefers-reduced-motion: reduce) {
  .yebgo-landing .yg-btn--lead .yg-btn__arrow-line,
  .yebgo-landing .yg-btn--lead .yg-btn__arrow-head {
    transition: none !important;
  }
}

.yebgo-landing .yg-pill {
  --yg-pill-height: 32px;
  --yg-pill-padding: 0 12px;
  --yg-pill-border: 1px solid rgba(124, 58, 237, 0.12);
  --yg-pill-bg: var(--yebgo-violet-bg);
  --yg-pill-color: var(--yebgo-violet);
  --yg-pill-font-size: 12px;
  --yg-pill-font-weight: 600;
  --yg-pill-letter-spacing: 0.08em;
  --yg-pill-text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--yg-pill-height);
  padding: var(--yg-pill-padding);
  border-radius: var(--yebgo-radius-pill);
  border: var(--yg-pill-border);
  background: var(--yg-pill-bg);
  color: var(--yg-pill-color);
  font-family: var(--font-body);
  font-size: var(--yg-pill-font-size);
  font-weight: var(--yg-pill-font-weight);
  line-height: 1;
  letter-spacing: var(--yg-pill-letter-spacing);
  text-transform: var(--yg-pill-text-transform);
}

.yebgo-landing .yg-badge {
  --yg-badge-height: 30px;
  --yg-badge-padding: 0 10px;
  --yg-badge-border: 1px solid rgba(124, 58, 237, 0.1);
  --yg-badge-radius: var(--yebgo-radius-pill);
  --yg-badge-bg: var(--yebgo-violet-xbg);
  --yg-badge-color: var(--yebgo-violet);
  --yg-badge-font-size: 12px;
  --yg-badge-font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  min-height: var(--yg-badge-height);
  padding: var(--yg-badge-padding);
  border-radius: var(--yg-badge-radius);
  border: var(--yg-badge-border);
  background: var(--yg-badge-bg);
  color: var(--yg-badge-color);
  font-family: var(--font-body);
  font-size: var(--yg-badge-font-size);
  font-weight: var(--yg-badge-font-weight);
  line-height: 1;
  white-space: nowrap;
}

.yebgo-landing .yg-badge--surface {
  --yg-badge-border: 1px solid rgba(222, 226, 230, 0.92);
  --yg-badge-bg: var(--yebgo-bg);
  --yg-badge-color: var(--yebgo-text);
}

.yebgo-landing .yg-badge--amber {
  --yg-badge-border: 0;
  --yg-badge-bg: var(--yebgo-amber);
  --yg-badge-color: var(--yebgo-dark);
  --yg-badge-font-size: 13px;
  --yg-badge-font-weight: 700;
  font-family: var(--font-heading);
}

.yebgo-landing .yg-card {
  --yg-card-border: 1px solid var(--yebgo-border);
  --yg-card-radius: var(--yebgo-radius-xl);
  --yg-card-bg: var(--yebgo-white);
  --yg-card-shadow: var(--yg-shadow-card);
  --yg-card-hover-border: rgba(124, 58, 237, 0.18);
  --yg-card-hover-shadow: var(--yg-shadow-card-hover);
  border: var(--yg-card-border);
  border-radius: var(--yg-card-radius);
  background: var(--yg-card-bg);
  box-shadow: var(--yg-card-shadow);
}

.yebgo-landing .yg-card--interactive {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  will-change: transform;
}

.yebgo-landing .yg-card--interactive:hover {
  transform: translateY(-4px);
  border-color: var(--yg-card-hover-border);
  box-shadow: var(--yg-card-hover-shadow);
}

.yebgo-landing .yg-section-head {
  --yg-section-head-max: 580px;
  --yg-section-head-margin: 0 auto 56px;
  --yg-section-head-title-color: var(--yebgo-dark);
  --yg-section-head-sub-color: var(--yebgo-text-secondary);
  --yg-section-head-title-max: 580px;
  --yg-section-head-sub-max: 580px;
  text-align: center;
  max-width: var(--yg-section-head-max);
  margin: var(--yg-section-head-margin);
}

.yebgo-landing .yg-section-head .yg-pill {
  margin-bottom: 20px;
}

.yebgo-landing .yg-section-head__title {
  max-width: var(--yg-section-head-title-max);
  margin: 0 auto 16px;
  color: var(--yg-section-head-title-color);
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.yebgo-landing .yg-section-head__sub {
  margin: 0 auto;
  max-width: var(--yg-section-head-sub-max);
  color: var(--yg-section-head-sub-color);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

.yebgo-landing .yg-section-head--light {
  --yg-section-head-title-color: var(--yebgo-white);
  --yg-section-head-sub-color: rgba(255, 255, 255, 0.8);
}

.yebgo-landing .yg-reveal {
  --yg-reveal-offset: 24px;
  --yg-reveal-duration: 0.6s;
  --yg-reveal-ease: var(--yg-ease);
  opacity: 1;
  transform: none;
  transition:
    opacity var(--yg-reveal-duration) var(--yg-reveal-ease),
    transform var(--yg-reveal-duration) var(--yg-reveal-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.yebgo-landing .yg-reveal.yg-reveal--pending.yg-reveal--armed {
  opacity: 0;
  transform: translateY(var(--yg-reveal-offset));
  will-change: opacity, transform;
}

.yebgo-landing .yg-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.yebgo-landing .yg-reveal[data-delay="1"] {
  --reveal-delay: 0.1s;
}

.yebgo-landing .yg-reveal[data-delay="2"] {
  --reveal-delay: 0.2s;
}

.yebgo-landing .yg-reveal[data-delay="3"] {
  --reveal-delay: 0.3s;
}

.yebgo-landing .yg-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yebgo-violet-bg);
  color: var(--yebgo-violet);
  font-size: 8px;
  font-weight: 800;
  font-style: normal;
}

.yebgo-landing .yg-check::before {
  content: "✓";
}

.yebgo-landing .yg-nav__mobile-cta-text {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  white-space: nowrap;
}

/* ============================================
   YEBGO — SECTIONS
   ============================================ */

/* ========= HERO + NAV ========= */

.yebgo-landing .yg-nav {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 20px;
  pointer-events: none;
}

.yebgo-landing .yg-nav__capsule {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 8px 8px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 26, 0, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--yg-shadow-soft);
  transition: all 0.4s ease;
  pointer-events: auto;
}

.yebgo-landing .yg-nav.scrolled .yg-nav__capsule {
  border-color: rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 1px 4px rgba(0, 0, 0, 0.03);
}

.yebgo-landing .yg-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none !important;
}

.yebgo-landing .yg-nav__logo-default,
.yebgo-landing .yg-nav__logo-scroll {
  display: block;
  width: auto;
  height: 48px;
  transition: opacity 0.3s ease;
}

.yebgo-landing .yg-nav__logo-scroll {
  display: none;
}

.yebgo-landing .yg-nav.scrolled .yg-nav__logo-default {
  display: none;
}

.yebgo-landing .yg-nav.scrolled .yg-nav__logo-scroll {
  display: block;
}

.yebgo-landing .yg-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.yebgo-landing .yg-nav__link {
  padding: 7px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.yebgo-landing .yg-nav__link:hover,
.yebgo-landing .yg-nav__link.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--yebgo-white) !important;
}

.yebgo-landing .yg-nav.scrolled .yg-nav__link {
  color: var(--yebgo-text-secondary) !important;
}

.yebgo-landing .yg-nav.scrolled .yg-nav__link:hover,
.yebgo-landing .yg-nav.scrolled .yg-nav__link.active {
  background: rgba(0, 0, 0, 0.04);
  color: var(--yebgo-text) !important;
}

.yebgo-landing .yg-nav__mobile-right {
  display: none;
  align-items: center;
  gap: 10px;
}

.yebgo-landing .yg-nav.scrolled .yg-nav__mobile-cta-text {
  --yg-btn-bg: var(--yebgo-amber);
  --yg-btn-bg-hover: var(--yebgo-amber-hover);
  --yg-btn-color: var(--yebgo-dark);
  --yg-btn-padding: 4px 8px;
  --yg-btn-radius: 5px;
}

.yebgo-landing .yg-nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(212, 224, 0, 0);
  cursor: pointer;
  flex-shrink: 0;
}

.yebgo-landing .yg-nav__burger-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transform-origin: center;
  transition: all 0.3s var(--yg-ease);
}

.yebgo-landing .yg-nav__burger.open .yg-nav__burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.yebgo-landing .yg-nav__burger.open .yg-nav__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.yebgo-landing .yg-nav__burger.open .yg-nav__burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.yebgo-landing .yg-nav.scrolled .yg-nav__burger {
  background: rgba(17, 26, 0, 0.04);
}

.yebgo-landing .yg-nav.scrolled .yg-nav__burger-line {
  background: var(--yebgo-dark);
}

.yebgo-landing .yg-mobile-dd {
  max-width: 920px;
  margin: 8px auto 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.3s var(--yg-ease);
}

.yebgo-landing .yg-mobile-dd.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.yebgo-landing .yg-mobile-dd__card {
  --yg-card-border: 1px solid rgba(0, 0, 0, 0.06);
  --yg-card-radius: 16px;
  --yg-card-bg: rgba(255, 255, 255, 0.97);
  padding: 8px 24px 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.yebgo-landing .yg-mobile-dd__nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.yebgo-landing .yg-mobile-dd__link {
  padding: 14px 0;
  border-bottom: 1px solid var(--yebgo-border);
  color: var(--yebgo-text) !important;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.yebgo-landing .yg-mobile-dd__link:last-child {
  border-bottom: 0;
}

.yebgo-landing .yg-mobile-dd__link:hover {
  color: var(--yebgo-violet) !important;
}

.yebgo-landing .yg-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 0;
  background: var(--yebgo-white);
}

.yebgo-landing .yg-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.yebgo-landing .yg-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "copy media"
    "actions media";
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.yebgo-landing .yg-hero__left {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.yebgo-landing .yg-hero__actions {
  grid-area: actions;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.yebgo-landing .yg-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.yebgo-landing .yg-hero__right {
  grid-area: media;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yebgo-landing .yg-hero__social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--yebgo-border);
  border-radius: var(--yebgo-radius-pill);
  background: var(--yebgo-bg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.yebgo-landing .yg-hero__social-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.yebgo-landing .yg-hero__social-avatar {
  width: 28px;
  height: 28px;
  margin-left: -8px;
  border: 2px solid var(--yebgo-white);
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 2px 8px rgba(17, 26, 0, 0.08);
}

.yebgo-landing .yg-hero__social-avatar:first-child {
  margin-left: 0;
}

.yebgo-landing .yg-hero__social-avatar--1 {
  background-image: url("assets/images/pro btp.webp");
}

.yebgo-landing .yg-hero__social-avatar--2 {
  background-image: url("assets/images/pro nails.webp");
}

.yebgo-landing .yg-hero__social-avatar--3 {
  background-image: url("assets/images/pro coach.webp");
}

.yebgo-landing .yg-hero__social-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.yebgo-landing .yg-hero__social-title {
  color: var(--yebgo-dark);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
}

.yebgo-landing .yg-hero__social-sub {
  color: var(--yebgo-text-secondary);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.15;
}

.yebgo-landing .yg-hero__h1 {
  margin: 0;
  color: var(--yebgo-text);
  font-size: clamp(42px, 5.4vw, 60px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.yebgo-landing .yg-hero__h1-accent {
  position: relative;
  color: var(--yebgo-dark);
  white-space: nowrap;
}

.yebgo-landing .yg-hero__h1-accent::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: 4px;
  left: -2px;
  z-index: -1;
  height: 8px;
  border-radius: 4px;
  background: rgba(212, 224, 0, 0.35);
}

.yebgo-landing .yg-hero__sub {
  max-width: 470px;
  margin: 0;
  color: var(--yebgo-text-secondary);
  font-size: 17px;
  font-weight: 450;
  line-height: 1.65;
}

.yebgo-landing .yg-hero__cta,
.yebgo-landing .yg-hero__cta-secondary {
  --yg-btn-width: fit-content;
}

.yebgo-landing .yg-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.yebgo-landing .yg-hero__proof-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--yebgo-text-secondary);
  font-size: 13px;
}

.yebgo-landing .yg-carousel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 520px;
}

.yebgo-landing .yg-carousel__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  background: var(--yebgo-surface);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.yebgo-landing .yg-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.yebgo-landing .yg-carousel__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.yebgo-landing .yg-carousel__slide.active {
  opacity: 1;
  transform: scale(1);
}

.yebgo-landing .yg-carousel__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.yebgo-landing .yg-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yebgo-landing .yg-carousel__slide-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--yebgo-radius-pill);
  background: rgba(17, 26, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--yebgo-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.yebgo-landing .yg-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--yebgo-text);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.yebgo-landing .yg-carousel__arrow:hover {
  background: var(--yebgo-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.yebgo-landing .yg-carousel__arrow--prev {
  left: 10px;
}

.yebgo-landing .yg-carousel__arrow--next {
  right: 10px;
}

.yebgo-landing .yg-hero__selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 2px;
}

.yebgo-landing .yg-hero__selector-label {
  color: var(--yebgo-text-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.yebgo-landing .yg-hero__selector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.yebgo-landing .yg-hero__selector-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--yebgo-border);
  border-radius: var(--yebgo-radius-pill);
  background: var(--yebgo-white);
  color: var(--yebgo-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.yebgo-landing .yg-hero__selector-btn.active {
  border-color: var(--yebgo-dark);
  background: var(--yebgo-dark);
  color: var(--yebgo-white);
}

.yebgo-landing .yg-hero__selector-btn:focus-visible {
  outline: 2px solid var(--yebgo-violet);
  outline-offset: 2px;
}

.yebgo-landing .yg-hero__selector-text {
  display: inline-flex;
  align-items: center;
}

.yebgo-landing .yg-hero__selector-text--mobile {
  display: none;
}

.yebgo-landing .yg-hero__bar {
  margin-top: 40px;
  padding: 18px 20px 0;
}

.yebgo-landing .yg-hero__bar-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid rgba(17, 26, 0, 0.08);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(248, 249, 250, 0.92) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
  box-shadow:
    0 14px 28px rgba(17, 26, 0, 0.04),
    0 2px 8px rgba(17, 26, 0, 0.02);
}

.yebgo-landing .yg-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  padding: 20px 24px 18px;
  text-align: center;
}

.yebgo-landing .yg-stat + .yg-stat::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 52px;
  background: rgba(17, 26, 0, 0.08);
  transform: translateY(-50%);
}

.yebgo-landing .yg-stat__value {
  color: var(--yebgo-dark);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.yebgo-landing .yg-stat__label {
  color: var(--yebgo-text-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ========= REALIZATIONS ========= */

.yebgo-landing .yg-realizations-v4 {
  position: relative;
  z-index: 1;
  padding: 96px 0 88px;
  background: var(--yebgo-white);
  color: var(--yebgo-text);
}

.yebgo-landing .yg-realizations-v4__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.yebgo-landing .yg-realizations-v4__head {
  margin-bottom: 40px;
}

.yebgo-landing .yg-realizations-v4__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.yebgo-landing .yg-realizations-v4__card {
  overflow: hidden;
  --yg-card-border: 1px solid rgba(17, 26, 0, 0.08);
  --yg-card-shadow:
    0 10px 24px rgba(17, 26, 0, 0.045), 0 2px 8px rgba(17, 26, 0, 0.025);
  --yg-card-hover-border: rgba(124, 58, 237, 0.18);
  --yg-card-hover-shadow:
    0 16px 30px rgba(17, 26, 0, 0.07), 0 6px 16px rgba(17, 26, 0, 0.035);
  transform: translateY(0);
  transition:
    transform 0.28s var(--yg-ease-smooth),
    border-color 0.24s var(--yg-ease-smooth),
    box-shadow 0.28s var(--yg-ease-smooth),
    background-color 0.24s var(--yg-ease-smooth);
}

.yebgo-landing .yg-realizations-v4__card--featured {
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow:
    0 14px 30px rgba(17, 26, 0, 0.06),
    0 4px 12px rgba(17, 26, 0, 0.03);
}

.yebgo-landing .yg-realizations-v4__browser {
  padding: 12px 12px 0;
}

.yebgo-landing .yg-realizations-v4__frame {
  overflow: hidden;
  border: 1px solid var(--yebgo-border);
  border-radius: 16px 16px 0 0;
  background: var(--yebgo-white);
  transition:
    border-color 0.24s var(--yg-ease-smooth),
    box-shadow 0.28s var(--yg-ease-smooth);
}

.yebgo-landing .yg-realizations-v4__chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--yebgo-border);
  background: var(--yebgo-bg);
}

.yebgo-landing .yg-realizations-v4__dots {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
}

.yebgo-landing .yg-realizations-v4__dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.yebgo-landing .yg-realizations-v4__dot--r {
  background: #ff5f57;
}

.yebgo-landing .yg-realizations-v4__dot--y {
  background: #febc2e;
}

.yebgo-landing .yg-realizations-v4__dot--g {
  background: #28c840;
}

.yebgo-landing .yg-realizations-v4__url {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  min-width: 0;
  height: 30px;
  padding: 0 12px;
  overflow: hidden;
  border: 1px solid var(--yebgo-border);
  border-radius: var(--yebgo-radius-pill);
  background: var(--yebgo-white);
  color: #7b8794;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.yebgo-landing .yg-realizations-v4__viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #fcfcfd 0%, #f8f9fa 100%);
  transition:
    transform 0.32s var(--yg-ease-smooth),
    filter 0.32s var(--yg-ease-smooth);
}

.yebgo-landing .yg-realizations-v4__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yebgo-landing .yg-realizations-v4__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(248, 249, 250, 0.98)
  );
}

.yebgo-landing .yg-realizations-v4__placeholder-chip {
  width: fit-content;
}

.yebgo-landing .yg-realizations-v4__placeholder-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 0;
}

.yebgo-landing .yg-realizations-v4__placeholder-sector {
  color: var(--yebgo-dark);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.yebgo-landing .yg-realizations-v4__placeholder-text {
  max-width: 260px;
  color: var(--yebgo-text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.yebgo-landing .yg-realizations-v4__placeholder-line {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--yebgo-amber);
  opacity: 0.75;
}

.yebgo-landing .yg-realizations-v4__footer {
  padding: 16px 16px 18px;
  border-top: 1px solid var(--yebgo-border);
  background: var(--yebgo-white);
  transition:
    border-color 0.24s var(--yg-ease-smooth),
    background-color 0.24s var(--yg-ease-smooth);
}

.yebgo-landing .yg-realizations-v4__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.yebgo-landing .yg-realizations-v4__badge {
  --yg-badge-height: 30px;
}

.yebgo-landing .yg-realizations-v4__name {
  margin: 0;
  color: var(--yebgo-dark);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.yebgo-landing .yg-realizations-v4__strengths {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.yebgo-landing .yg-realizations-v4__strength {
  white-space: nowrap;
}

.yebgo-landing .yg-realizations-v4__link-wrap {
  display: flex;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 26, 0, 0.07);
}

.yebgo-landing .yg-realizations-v4__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: var(--yebgo-text-secondary) !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none !important;
  transition:
    color 0.2s var(--yg-ease-smooth),
    opacity 0.2s var(--yg-ease-smooth);
}

.yebgo-landing .yg-realizations-v4__link-label {
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  text-decoration-color: rgba(17, 26, 0, 0.12);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
  transition: text-decoration-color 0.2s var(--yg-ease-smooth);
}

.yebgo-landing .yg-realizations-v4__link-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.2s var(--yg-ease-smooth);
}

.yebgo-landing .yg-realizations-v4__link:hover,
.yebgo-landing .yg-realizations-v4__link:focus-visible {
  color: var(--yebgo-dark) !important;
}

.yebgo-landing .yg-realizations-v4__link:hover .yg-realizations-v4__link-label,
.yebgo-landing
  .yg-realizations-v4__link:focus-visible
  .yg-realizations-v4__link-label {
  text-decoration-color: currentColor;
}

.yebgo-landing .yg-realizations-v4__link:hover .yg-realizations-v4__link-arrow,
.yebgo-landing
  .yg-realizations-v4__link:focus-visible
  .yg-realizations-v4__link-arrow {
  transform: translateX(2px);
}

.yebgo-landing .yg-realizations-v4__link:focus-visible {
  outline: 0;
}

.yebgo-landing .yg-realizations-v4__link:active {
  opacity: 0.78;
}

.yebgo-landing .yg-realizations-v4__tech {
  overflow: hidden;
  padding: 10px;
  border-radius: var(--yebgo-radius-xl);
}

.yebgo-landing .yg-realizations-v4__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.yebgo-landing .yg-realizations-v4__cta {
  --yg-btn-width: fit-content;
}

.yebgo-landing .yg-why {
  position: relative;
  padding: 72px 0;
  background: var(--yebgo-bg);
}

.yebgo-landing .yg-why__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.yebgo-landing .yg-why__head {
  --yg-section-head-max: 700px;
  --yg-section-head-margin: 0 auto 28px;
  --yg-section-head-title-max: 18ch;
  --yg-section-head-sub-max: 58ch;
}

.yebgo-landing .yg-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.yebgo-landing .yg-why__card {
  padding: 24px 22px 22px;
  border-color: rgba(17, 26, 0, 0.08);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 249, 250, 0.92) 100%
  );
}

.yebgo-landing .yg-why__card-kicker {
  margin: 0 0 12px;
  color: var(--yebgo-violet);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yebgo-landing .yg-why__card-title {
  margin: 0 0 10px;
  color: var(--yebgo-dark);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.yebgo-landing .yg-why__card-text {
  margin: 0;
  color: var(--yebgo-text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.yebgo-landing .yg-why__note {
  max-width: 720px;
  margin: 22px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(17, 26, 0, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--yebgo-dark);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

.yebgo-landing .yg-realizations-v4__tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.yebgo-landing .yg-realizations-v4__tech-item {
  display: flex;
  flex: 1 1 calc(50% - 8px);
  align-items: center;
  gap: 10px;
  min-width: 135px;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid #ece9f8;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  transition:
    transform 0.24s var(--yg-ease-smooth),
    background-color 0.24s var(--yg-ease-smooth),
    border-color 0.24s var(--yg-ease-smooth),
    box-shadow 0.24s var(--yg-ease-smooth);
}

.yebgo-landing .yg-realizations-v4__tech-item:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 58, 237, 0.16);
  background: var(--yebgo-white);
  box-shadow: 0 8px 18px rgba(17, 26, 0, 0.045);
}

.yebgo-landing .yg-realizations-v4__tech-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  overflow: visible;
  border-radius: 12px;
  background: var(--yebgo-violet-xbg);
  color: var(--yebgo-violet);
  transition:
    background-color 0.24s var(--yg-ease-smooth),
    color 0.24s var(--yg-ease-smooth),
    transform 0.24s var(--yg-ease-smooth);
}

.yebgo-landing .yg-realizations-v4__tech-icon svg {
  width: 19px;
  height: 19px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yebgo-landing .yg-realizations-v4__icon-path {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s var(--yg-ease-smooth);
  will-change: stroke-dashoffset;
}

.yebgo-landing
  .yg-realizations-v4__tech-item.is-drawing
  .yg-realizations-v4__icon-path {
  stroke-dashoffset: 0 !important;
}

.yebgo-landing .yg-realizations-v4__tech-text {
  color: var(--yebgo-dark);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.yebgo-landing .yg-realizations-v4__tech-item.is-drawing {
  border-color: rgba(124, 58, 237, 0.12);
}

.yebgo-landing
  .yg-realizations-v4__tech-item.is-drawing
  .yg-realizations-v4__tech-icon {
  background: rgba(124, 58, 237, 0.12);
}

@media (hover: hover) {
  .yebgo-landing .yg-realizations-v4__card:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, 0.16);
    box-shadow:
      0 16px 30px rgba(17, 26, 0, 0.07),
      0 6px 16px rgba(17, 26, 0, 0.035);
  }

  .yebgo-landing .yg-realizations-v4__card:hover .yg-realizations-v4__frame {
    border-color: rgba(124, 58, 237, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }

  .yebgo-landing .yg-realizations-v4__card:hover .yg-realizations-v4__viewport {
    transform: scale(1.012);
    filter: saturate(1.02);
  }

  .yebgo-landing .yg-realizations-v4__card:hover .yg-realizations-v4__footer {
    border-color: rgba(124, 58, 237, 0.1);
    background: #fcfbff;
  }
}

@media (hover: none) {
  .yebgo-landing .yg-realizations-v4__card:active {
    transform: translateY(-1px);
    border-color: rgba(124, 58, 237, 0.16);
    box-shadow:
      0 12px 24px rgba(17, 26, 0, 0.06),
      0 4px 10px rgba(17, 26, 0, 0.03);
  }

  .yebgo-landing
    .yg-realizations-v4__card:active
    .yg-realizations-v4__viewport {
    transform: scale(1.008);
  }

  .yebgo-landing .yg-realizations-v4__tech-item:active {
    transform: translateY(-1px);
    background: var(--yebgo-white);
    box-shadow: 0 8px 18px rgba(17, 26, 0, 0.045);
  }
}

/* ========= PROCESS ========= */

.yebgo-landing .yg-process {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  padding: 96px 0 88px;
  border-radius: 32px 32px 0 0;
  background: var(--yebgo-dark);
}

.yebgo-landing .yg-process__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.yebgo-landing .yg-process__header {
  margin-bottom: 32px;
}

.yebgo-landing .yg-process__panel {
  display: flex;
  position: relative;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 42px 34px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--yebgo-radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.yebgo-landing .yg-process__step {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 100%;
  padding: 12px 14px 14px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  text-align: center;
  transition:
    border-color 0.22s var(--yg-ease-smooth),
    background 0.24s var(--yg-ease-smooth),
    box-shadow 0.24s var(--yg-ease-smooth);
}

.yebgo-landing .yg-process__step.is-complete {
  border-color: rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.018);
}

.yebgo-landing .yg-process__step.is-current {
  border-color: rgba(212, 224, 0, 0.14);
  background: rgba(255, 255, 255, 0.028);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.022);
}

.yebgo-landing .yg-process__num {
  color: rgba(212, 224, 0, 0.58);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  transition: color 0.22s var(--yg-ease-smooth);
}

.yebgo-landing .yg-process__step.is-complete .yg-process__num,
.yebgo-landing .yg-process__step.is-current .yg-process__num {
  color: var(--yebgo-amber);
}

.yebgo-landing .yg-process__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.yebgo-landing .yg-process__step-title {
  margin: 0;
  color: var(--yebgo-white);
  font-size: 17px;
  font-weight: 600;
}

.yebgo-landing .yg-process__step-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.55;
}

.yebgo-landing .yg-process__arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
  opacity: 0.28;
  transition: opacity 0.22s var(--yg-ease-smooth);
}

.yebgo-landing .yg-process__arrow svg {
  stroke: rgba(255, 255, 255, 0.22);
  transition: stroke 0.22s var(--yg-ease-smooth);
}

.yebgo-landing .yg-process__arrow.is-active {
  opacity: 0.72;
}

.yebgo-landing .yg-process__arrow.is-active svg {
  stroke: var(--yebgo-amber);
}

.yebgo-landing .yg-process__callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.yebgo-landing .yg-process__callout-text {
  margin: 0;
  color: var(--yebgo-white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.yebgo-landing .yg-process__cta {
  align-self: center;
}

/* ========= COMPARAISONS ========= */

.yebgo-landing .yg-compare {
  position: relative;
  padding: 72px 0;
  background: var(--yebgo-bg);
}

.yebgo-landing .yg-compare__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

.yebgo-landing .yg-compare__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.yebgo-landing .yg-compare__cta {
  --yg-btn-width: fit-content;
}

/* ========= FAQ ========= */

.yebgo-landing .yg-faq {
  padding: 72px 0;
  background:
    linear-gradient(180deg, rgba(248, 249, 250, 0) 0%, #fbfcfd 18%),
    var(--yebgo-white);
}

.yebgo-landing .yg-faq__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.yebgo-landing .yg-faq__head {
  --yg-section-head-max: 620px;
  --yg-section-head-margin: 0 auto 24px;
  --yg-section-head-title-max: 20ch;
  --yg-section-head-sub-max: 36ch;
}

.yebgo-landing .yg-faq__shell {
  --yg-card-border: 1px solid #e7eaf0;
  --yg-card-radius: 22px;
  --yg-card-shadow: 0 10px 30px rgba(17, 26, 0, 0.04);
  overflow: hidden;
}

.yebgo-landing .yg-faq__list {
  display: flex;
  flex-direction: column;
}

.yebgo-landing .yg-faq__item + .yg-faq__item {
  border-top: 1px solid rgba(222, 226, 230, 0.92);
}

.yebgo-landing .yg-faq__item-title {
  margin: 0;
}

.yebgo-landing .yg-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--yebgo-dark);
  text-align: left;
  cursor: pointer;
  transition: background 0.22s ease;
}

.yebgo-landing .yg-faq__item.is-open .yg-faq__trigger {
  background: rgba(124, 58, 237, 0.05);
}

.yebgo-landing .yg-faq__trigger:focus-visible {
  outline: 2px solid var(--yebgo-violet);
  outline-offset: -2px;
}

.yebgo-landing .yg-faq__question {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.yebgo-landing .yg-faq__chevron {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: rgba(17, 26, 0, 0.58);
  transition:
    transform 0.22s ease,
    color 0.22s ease;
}

.yebgo-landing .yg-faq__chevron svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yebgo-landing .yg-faq__item.is-open .yg-faq__chevron {
  color: var(--yebgo-dark);
  transform: rotate(180deg);
}

.yebgo-landing .yg-faq__panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.28s var(--yg-ease-smooth),
    opacity 0.18s ease;
}

.yebgo-landing .yg-faq__item.is-open .yg-faq__panel {
  opacity: 1;
}

.yebgo-landing .yg-faq__answer {
  padding: 0 24px 22px;
}

.yebgo-landing .yg-faq__answer p {
  max-width: 62ch;
  margin: 0;
  color: var(--yebgo-text-secondary);
  font-size: 15px;
  line-height: 1.62;
}

.yebgo-landing .yg-faq__note {
  max-width: 44ch;
  margin: 18px auto 0;
  color: var(--yebgo-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

/* ========= CTA FINAL ========= */

.yebgo-landing .yg-final-cta {
  padding: 96px 0 104px;
  background:
    linear-gradient(180deg, #f8faf4 0%, #eef4e5 100%), var(--yebgo-white);
}

.yebgo-landing .yg-final-cta__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.yebgo-landing .yg-final-cta__head {
  --yg-section-head-max: 640px;
  --yg-section-head-margin: 0 auto 34px;
  --yg-section-head-title-max: 20ch;
  --yg-section-head-sub-max: 37ch;
  transition:
    opacity 0.24s var(--yg-ease-smooth),
    transform 0.24s var(--yg-ease-smooth);
}

.yebgo-landing .yg-final-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 28px;
  align-items: start;
}

.yebgo-landing .yg-final-cta__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 4px 0 0;
}

.yebgo-landing .yg-final-cta__trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition:
    opacity 0.22s var(--yg-ease-smooth),
    transform 0.22s var(--yg-ease-smooth);
}

.yebgo-landing .yg-final-cta__trust li {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(17, 26, 0, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--yebgo-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  transition:
    border-color 0.22s var(--yg-ease-smooth),
    background-color 0.22s var(--yg-ease-smooth),
    box-shadow 0.22s var(--yg-ease-smooth);
}

.yebgo-landing .yg-final-cta__trust.is-active li {
  border-color: rgba(17, 26, 0, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 14px rgba(17, 26, 0, 0.035);
}

.yebgo-landing .yg-final-cta__flow {
  --yg-card-border: 1px solid rgba(17, 26, 0, 0.08);
  --yg-card-radius: 24px;
  --yg-card-bg: rgba(255, 255, 255, 0.78);
  --yg-card-shadow: none;
  padding: 22px;
  transition:
    border-color 0.22s var(--yg-ease-smooth),
    background-color 0.22s var(--yg-ease-smooth),
    box-shadow 0.24s var(--yg-ease-smooth),
    opacity 0.22s var(--yg-ease-smooth),
    transform 0.22s var(--yg-ease-smooth);
}

.yebgo-landing .yg-final-cta__flow.is-active {
  --yg-card-border: 1px solid rgba(17, 26, 0, 0.11);
  --yg-card-bg: rgba(255, 255, 255, 0.84);
  --yg-card-shadow: 0 10px 22px rgba(17, 26, 0, 0.05);
}

.yebgo-landing .yg-final-cta__flow-label {
  margin: 0 0 14px;
  color: var(--yebgo-text-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yebgo-landing .yg-final-cta__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yebgo-landing .yg-final-cta__step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(17, 26, 0, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  transition:
    border-color 0.22s var(--yg-ease-smooth),
    background-color 0.22s var(--yg-ease-smooth);
}

.yebgo-landing .yg-final-cta__step-num {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--yebgo-dark);
  color: var(--yebgo-white);
  font-size: 13px;
  font-weight: 700;
  transition:
    background-color 0.22s var(--yg-ease-smooth),
    color 0.22s var(--yg-ease-smooth),
    box-shadow 0.22s var(--yg-ease-smooth);
}

.yebgo-landing .yg-final-cta__step-text {
  color: var(--yebgo-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.yebgo-landing .yg-final-cta__offer {
  --yg-card-border: 1px solid rgba(17, 26, 0, 0.1);
  --yg-card-radius: 28px;
  --yg-card-bg: linear-gradient(180deg, #182305 0%, #111a00 100%);
  --yg-card-shadow: 0 16px 38px rgba(17, 26, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  color: var(--yebgo-white);
  transform: translateY(0);
  transition:
    transform 0.34s var(--yg-ease-smooth),
    border-color 0.3s var(--yg-ease-smooth),
    box-shadow 0.34s var(--yg-ease-smooth),
    background 0.3s var(--yg-ease-smooth);
}

.yebgo-landing .yg-final-cta__offer.is-emphasized {
  --yg-card-border: 1px solid rgba(212, 224, 0, 0.22);
  --yg-card-bg: linear-gradient(180deg, #1a2705 0%, #111a00 100%);
  --yg-card-shadow:
    0 22px 46px rgba(17, 26, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transform: translateY(-4px);
}

.yebgo-landing .yg-final-cta__offer-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.yebgo-landing .yg-final-cta__offer-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.yebgo-landing .yg-final-cta__offer-kicker {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yebgo-landing .yg-final-cta__offer-name {
  margin: 0;
  color: var(--yebgo-white);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.yebgo-landing .yg-final-cta__offer-heading .yg-badge {
  min-height: 28px;
  padding: 0 10px;
  font-size: 11px;
}

.yebgo-landing .yg-final-cta__pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition:
    opacity 0.22s var(--yg-ease-smooth),
    transform 0.22s var(--yg-ease-smooth);
}

.yebgo-landing .yg-final-cta__price {
  margin: 0;
  color: var(--yebgo-amber);
  font-family: var(--font-heading);
  font-size: clamp(50px, 7vw, 66px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.yebgo-landing .yg-final-cta__recurrence {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

.yebgo-landing .yg-final-cta__recurrence strong {
  color: var(--yebgo-white);
  font-weight: 700;
}

.yebgo-landing .yg-final-cta__model-note {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.55;
}

.yebgo-landing .yg-final-cta__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.24s var(--yg-ease-smooth),
    background-color 0.24s var(--yg-ease-smooth);
}

.yebgo-landing .yg-final-cta__offer.is-emphasized .yg-final-cta__group {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.yebgo-landing .yg-final-cta__group-title {
  margin: 0;
  color: var(--yebgo-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.yebgo-landing .yg-final-cta__includes {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yebgo-landing .yg-final-cta__includes li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.yebgo-landing .yg-final-cta__includes li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(212, 224, 0, 0.16);
  box-shadow: inset 0 0 0 4px var(--yebgo-amber);
}

.yebgo-landing .yg-final-cta__domain-note {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.5;
}

.yebgo-landing .yg-final-cta__cta {
  --yg-btn-width: 100%;
  --yg-btn-padding: 18px 24px;
}

.yebgo-landing .yg-final-cta__flow.is-active .yg-final-cta__step {
  border-color: rgba(17, 26, 0, 0.09);
  background: rgba(255, 255, 255, 0.9);
}

.yebgo-landing .yg-final-cta__flow.is-active .yg-final-cta__step-num {
  background: #1b2804;
  box-shadow: 0 6px 14px rgba(17, 26, 0, 0.08);
}

.yebgo-landing .yg-final-cta__card-note {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

/* ========= FOOTER ========= */

.yebgo-landing .yg-footer {
  padding: 0 0 28px;
  background: #101709;
  color: rgba(244, 246, 238, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.yebgo-landing .yg-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.yebgo-landing .yg-footer__top {
  padding: 34px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.yebgo-landing .yg-footer__brand {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.yebgo-landing .yg-footer__logo {
  display: inline-flex;
  align-items: center;
}

.yebgo-landing .yg-footer__logo img {
  display: block;
  width: auto;
  height: 38px;
}

.yebgo-landing .yg-footer__tagline {
  max-width: 30ch;
  margin: 0;
  color: rgba(244, 246, 238, 0.74);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.yebgo-landing .yg-footer__middle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 56px;
  padding: 28px 0 30px;
}

.yebgo-landing .yg-footer__col {
  min-width: 0;
}

.yebgo-landing .yg-footer__title {
  margin: 0 0 14px;
  color: var(--yebgo-white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.yebgo-landing .yg-footer__nav ul,
.yebgo-landing .yg-footer__contact {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.yebgo-landing .yg-footer__nav ul {
  list-style: none;
}

.yebgo-landing .yg-footer__contact {
  font-style: normal;
}

.yebgo-landing .yg-footer__nav a,
.yebgo-landing .yg-footer__contact a,
.yebgo-landing .yg-footer__legal a {
  color: rgba(244, 246, 238, 0.84);
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.yebgo-landing .yg-footer__contact p {
  max-width: 30ch;
  margin: 2px 0 0;
  color: rgba(244, 246, 238, 0.58);
  font-size: 14px;
  line-height: 1.6;
}

.yebgo-landing .yg-footer :where(a):focus-visible {
  outline: 2px solid rgba(212, 224, 0, 0.7);
  outline-offset: 4px;
  border-radius: 6px;
}

.yebgo-landing .yg-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.yebgo-landing .yg-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.yebgo-landing .yg-footer__legal a,
.yebgo-landing .yg-footer__copyright {
  color: rgba(244, 246, 238, 0.6);
  font-size: 13.5px;
  line-height: 1.5;
}

.yebgo-landing .yg-footer__copyright {
  margin: 0;
}

/* ========= LEGAL PAGES ========= */

.yebgo-landing.yg-legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(212, 224, 0, 0.08), transparent 36%),
    #f6f7f2;
}

.yebgo-landing.yg-legal-page .yg-legal-shell {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 0 20px;
}

.yebgo-landing.yg-legal-page .yg-legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 26, 0, 0.08);
  background: rgba(246, 247, 242, 0.92);
  backdrop-filter: blur(14px);
}

.yebgo-landing.yg-legal-page .yg-legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.yebgo-landing.yg-legal-page .yg-legal-header__logo {
  display: inline-flex;
  align-items: center;
}

.yebgo-landing.yg-legal-page .yg-legal-header__logo img {
  display: block;
  width: auto;
  height: 40px;
}

.yebgo-landing.yg-legal-page .yg-legal-header__back {
  color: var(--yebgo-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.yebgo-landing.yg-legal-page .yg-legal-intro {
  padding: 56px 0 24px;
}

.yebgo-landing.yg-legal-page .yg-legal-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 0 12px;
  min-height: 32px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.06);
  color: var(--yebgo-violet);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yebgo-landing.yg-legal-page .yg-legal-intro__title {
  margin: 0;
  color: var(--yebgo-dark);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.yebgo-landing.yg-legal-page .yg-legal-intro__meta {
  margin: 14px 0 0;
  color: rgba(33, 37, 41, 0.6);
  font-size: 14px;
  line-height: 1.5;
}

.yebgo-landing.yg-legal-page .yg-legal-intro__lead {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--yebgo-text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.yebgo-landing.yg-legal-page .yg-legal-content {
  padding: 0 0 72px;
}

.yebgo-landing.yg-legal-page .yg-legal-card {
  padding: 34px 36px;
  border: 1px solid rgba(17, 26, 0, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(17, 26, 0, 0.05);
}

.yebgo-landing.yg-legal-page .yg-legal-prose {
  color: var(--yebgo-text);
}

.yebgo-landing.yg-legal-page .yg-legal-prose > :first-child {
  margin-top: 0;
}

.yebgo-landing.yg-legal-page .yg-legal-prose > :last-child {
  margin-bottom: 0;
}

.yebgo-landing.yg-legal-page .yg-legal-prose h2,
.yebgo-landing.yg-legal-page .yg-legal-prose h3,
.yebgo-landing.yg-legal-page .yg-legal-prose p,
.yebgo-landing.yg-legal-page .yg-legal-prose ul {
  margin: 0;
}

.yebgo-landing.yg-legal-page .yg-legal-prose h2,
.yebgo-landing.yg-legal-page .yg-legal-prose h3 {
  color: var(--yebgo-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.yebgo-landing.yg-legal-page .yg-legal-prose h2 {
  margin-top: 32px;
  font-size: 24px;
  line-height: 1.2;
}

.yebgo-landing.yg-legal-page .yg-legal-prose h3 {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.3;
}

.yebgo-landing.yg-legal-page .yg-legal-prose p + p,
.yebgo-landing.yg-legal-page .yg-legal-prose p + ul,
.yebgo-landing.yg-legal-page .yg-legal-prose ul + p,
.yebgo-landing.yg-legal-page .yg-legal-prose ul + ul,
.yebgo-landing.yg-legal-page .yg-legal-prose h2 + p,
.yebgo-landing.yg-legal-page .yg-legal-prose h2 + ul,
.yebgo-landing.yg-legal-page .yg-legal-prose h3 + p,
.yebgo-landing.yg-legal-page .yg-legal-prose h3 + ul {
  margin-top: 14px;
}

.yebgo-landing.yg-legal-page .yg-legal-prose p,
.yebgo-landing.yg-legal-page .yg-legal-prose li {
  color: var(--yebgo-text);
  font-size: 15px;
  line-height: 1.75;
}

.yebgo-landing.yg-legal-page .yg-legal-prose ul {
  padding-left: 22px;
}

.yebgo-landing.yg-legal-page .yg-legal-prose li + li {
  margin-top: 8px;
}

.yebgo-landing.yg-legal-page .yg-legal-prose a {
  color: var(--yebgo-dark);
}

/* ========= CHECKOUT PAGE ========= */

.yebgo-landing.yg-checkout-page {
  min-height: 100vh;
  background: #f8f9fa;
}

.yebgo-landing.yg-checkout-page .yg-checkout__shell {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 0 16px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__header {
  padding: 16px 0 16px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(17, 26, 0, 0.08);
}

.yebgo-landing.yg-checkout-page .yg-checkout__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.yebgo-landing.yg-checkout-page .yg-checkout__logo img {
  display: block;
  width: auto;
  height: 34px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__back {
  color: var(--yebgo-dark);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.yebgo-landing.yg-checkout-page .yg-checkout__steps {
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(17, 26, 0, 0.08);
}

.yebgo-landing.yg-checkout-page .yg-checkout__steps-list {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yebgo-landing.yg-checkout-page .yg-checkout__step {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yebgo-text-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.yebgo-landing.yg-checkout-page
  .yg-checkout__step
  + .yg-checkout__step::before {
  content: "";
  position: absolute;
  left: -14px;
  width: 10px;
  height: 1px;
  background: rgba(17, 26, 0, 0.16);
}

.yebgo-landing.yg-checkout-page .yg-checkout__step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 26, 0, 0.18);
}

.yebgo-landing.yg-checkout-page .yg-checkout__step.is-current {
  color: var(--yebgo-dark);
}

.yebgo-landing.yg-checkout-page
  .yg-checkout__step.is-current
  .yg-checkout__step-dot {
  background: var(--yebgo-amber);
}

.yebgo-landing.yg-checkout-page .yg-checkout {
  padding: 20px 0 24px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__layout {
  display: grid;
  gap: 16px;
}

.yebgo-landing.yg-checkout-page
  :is(.yg-checkout__summary, .yg-checkout__options, .yg-checkout__process) {
  --yg-card-border: 1px solid rgba(17, 26, 0, 0.08);
  --yg-card-radius: 22px;
  --yg-card-shadow: 0 8px 18px rgba(17, 26, 0, 0.03);
  padding: 18px;
}

.yebgo-landing.yg-checkout-page
  :is(.yg-checkout__summary, .yg-checkout__options, .yg-checkout__process) {
  display: grid;
  gap: 16px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__card-head {
  display: grid;
  gap: 10px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__section-kicker,
.yebgo-landing.yg-checkout-page .yg-checkout__payment-shell-label {
  margin: 0 0 6px;
  color: var(--yebgo-text-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yebgo-landing.yg-checkout-page .yg-checkout__section-title,
.yebgo-landing.yg-checkout-page .yg-checkout__legal-title {
  margin: 0;
  color: var(--yebgo-dark);
  font-family: var(--font-heading);
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-head {
  display: grid;
  gap: 6px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__product-meta {
  margin: 0;
  color: var(--yebgo-text-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-subtitle {
  margin: 0;
  color: var(--yebgo-text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-main {
  display: grid;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(17, 26, 0, 0.08);
  border-bottom: 1px solid rgba(17, 26, 0, 0.08);
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-product {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 26, 0, 0.08);
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-product-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-product-title {
  margin: 0;
  color: var(--yebgo-dark);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-product-text {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--yebgo-text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-product-text li {
  position: relative;
  padding-left: 14px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-product-text li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(17, 26, 0, 0.22);
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-product-copy .yg-badge {
  --yg-badge-height: 22px;
  --yg-badge-padding: 0 8px;
  --yg-badge-font-size: 10px;
  width: fit-content;
  align-self: flex-start;
  justify-self: flex-start;
  margin: 0;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-price {
  display: grid;
  gap: 4px;
  flex: 0 0 auto;
  text-align: right;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-price-value {
  margin: 0;
  color: var(--yebgo-dark);
  font-family: var(--font-heading);
  font-size: clamp(28px, 7.2vw, 36px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-price-note {
  margin: 0;
  color: var(--yebgo-text-secondary);
  font-size: 13px;
  line-height: 1.3;
}

.yebgo-landing.yg-checkout-page .yg-checkout__cart-label {
  margin: 0;
  color: var(--yebgo-dark);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: none;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-recurring {
  display: grid;
  gap: 6px;
  padding: 16px 0;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-recurring .yg-badge {
  --yg-badge-height: 22px;
  --yg-badge-padding: 0 8px;
  --yg-badge-font-size: 10px;
  width: fit-content;
  margin: 0;
  justify-self: flex-start;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-recurring-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-recurring-price {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  margin: 0;
  white-space: nowrap;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-recurring-price strong {
  color: var(--yebgo-dark);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-recurring-price span {
  color: var(--yebgo-text-secondary);
  font-size: 13px;
  line-height: 1;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-recurring-text {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--yebgo-text-secondary);
  font-size: 13px;
  line-height: 1.45;
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-recurring-text li {
  position: relative;
  padding-left: 14px;
}

.yebgo-landing.yg-checkout-page
  .yg-checkout__summary-recurring-text
  li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(17, 26, 0, 0.22);
}

.yebgo-landing.yg-checkout-page .yg-checkout__process-meta {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yebgo-landing.yg-checkout-page .yg-checkout__process-meta li {
  position: relative;
  padding-left: 16px;
  color: var(--yebgo-text);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.yebgo-landing.yg-checkout-page .yg-checkout__process-meta li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yebgo-violet);
}

.yebgo-landing.yg-checkout-page .yg-checkout__summary-note {
  margin: 0;
  color: var(--yebgo-text-secondary);
  font-size: 13px;
  line-height: 1.45;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(17, 26, 0, 0.04);
}

.yebgo-landing.yg-checkout-page .yg-checkout__totals {
  --yg-card-border: 0;
  --yg-card-radius: 22px;
  --yg-card-bg: linear-gradient(180deg, #182305 0%, #111a00 100%);
  --yg-card-shadow: 0 14px 30px rgba(17, 26, 0, 0.1);
  display: grid;
  gap: 16px;
  padding: 22px 20px;
  color: rgba(255, 255, 255, 0.92);
}

.yebgo-landing.yg-checkout-page
  .yg-checkout__totals
  .yg-checkout__section-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: none;
}

.yebgo-landing.yg-checkout-page .yg-checkout__totals-list {
  display: grid;
  gap: 12px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__totals-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.yebgo-landing.yg-checkout-page .yg-checkout__totals-row strong {
  color: var(--yebgo-white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.yebgo-landing.yg-checkout-page .yg-checkout__totals-row--total {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.yebgo-landing.yg-checkout-page .yg-checkout__totals-row--total strong {
  font-size: 24px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__totals-row--later strong {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.yebgo-landing.yg-checkout-page .yg-checkout__totals-row.is-hidden {
  display: none;
}

.yebgo-landing.yg-checkout-page .yg-checkout__payment-note,
.yebgo-landing.yg-checkout-page .yg-checkout__option-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  line-height: 1.5;
  text-align: center;
}

.yebgo-landing.yg-checkout-page .yg-checkout__option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.yebgo-landing.yg-checkout-page .yg-checkout__option.is-selected {
  background: transparent;
  box-shadow: none;
}

.yebgo-landing.yg-checkout-page .yg-checkout__option-control {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__option-input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
}

.yebgo-landing.yg-checkout-page .yg-checkout__option-box {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(17, 26, 0, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.76);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.yebgo-landing.yg-checkout-page .yg-checkout__option-box::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--yebgo-white);
  border-bottom: 2px solid var(--yebgo-white);
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity 0.2s ease;
}

.yebgo-landing.yg-checkout-page
  .yg-checkout__option-input:checked
  + .yg-checkout__option-box,
.yebgo-landing.yg-checkout-page
  .yg-checkout__option.is-selected
  .yg-checkout__option-box {
  border-color: var(--yebgo-dark);
  background: var(--yebgo-dark);
  box-shadow: none;
}

.yebgo-landing.yg-checkout-page
  .yg-checkout__option-input:checked
  + .yg-checkout__option-box::after,
.yebgo-landing.yg-checkout-page
  .yg-checkout__option.is-selected
  .yg-checkout__option-box::after {
  opacity: 1;
}

.yebgo-landing.yg-checkout-page
  .yg-checkout__option-input:focus-visible
  + .yg-checkout__option-box {
  outline: 2px solid var(--yebgo-violet);
  outline-offset: 3px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__option-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.yebgo-landing.yg-checkout-page .yg-checkout__option-title {
  color: var(--yebgo-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.yebgo-landing.yg-checkout-page .yg-checkout__option-text {
  color: var(--yebgo-text-secondary);
  font-size: 13px;
  line-height: 1.4;
}

.yebgo-landing.yg-checkout-page .yg-checkout__option-price {
  color: var(--yebgo-dark);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.yebgo-landing.yg-checkout-page .yg-checkout__stripe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  background: var(--yebgo-amber);
  color: var(--yebgo-dark);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(212, 224, 0, 0.2);
  cursor: pointer;
}

.yebgo-landing.yg-checkout-page .yg-checkout__stripe-button-label {
  display: inline-flex;
  align-items: center;
}

.yebgo-landing.yg-checkout-page .yg-checkout__stripe-button-arrow {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 18px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__stripe-button-arrow svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.yebgo-landing.yg-checkout-page .yg-checkout__stripe-button-arrow-line,
.yebgo-landing.yg-checkout-page .yg-checkout__stripe-button-arrow-head {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-box: fill-box;
  transition:
    transform 0.22s var(--yg-ease-smooth),
    opacity 0.18s var(--yg-ease-smooth);
}

.yebgo-landing.yg-checkout-page .yg-checkout__stripe-button-arrow-line {
  transform-origin: right center;
  transform: scaleX(0);
  opacity: 0;
}

.yebgo-landing.yg-checkout-page .yg-checkout__stripe-button-arrow-head {
  transform: translateX(-1px);
}

.yebgo-landing.yg-checkout-page
  .yg-checkout__stripe-button:is(:hover, :focus-visible, :active, .is-pressed)
  .yg-checkout__stripe-button-arrow-line {
  transform: scaleX(1);
  opacity: 1;
}

.yebgo-landing.yg-checkout-page
  .yg-checkout__stripe-button:is(:hover, :focus-visible, :active, .is-pressed)
  .yg-checkout__stripe-button-arrow-head {
  transform: translateX(0);
}

.yebgo-landing.yg-checkout-page .yg-checkout__stripe-button.is-loading {
  gap: 0;
}

.yebgo-landing.yg-checkout-page
  .yg-checkout__stripe-button.is-loading
  .yg-checkout__stripe-button-arrow {
  display: none;
}

.yebgo-landing.yg-checkout-page .yg-checkout__payment-trust {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  justify-content: center;
}

.yebgo-landing.yg-checkout-page .yg-checkout__payment-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.yebgo-landing.yg-checkout-page .yg-checkout__payment-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--yebgo-amber);
  flex: 0 0 auto;
}

.yebgo-landing.yg-checkout-page
  .yg-checkout__stripe-button[aria-disabled="true"] {
  cursor: default;
}

.yebgo-landing.yg-checkout-page .yg-checkout__process-title {
  margin: 0;
  color: var(--yebgo-dark);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.yebgo-landing.yg-checkout-page .yg-checkout__legal {
  padding: 0 0 28px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__legal-bar {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__payment-note a {
  color: #6c757d;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.yebgo-landing.yg-checkout-page .yg-checkout__legal-nav a {
  color: inherit;
  text-decoration: none;
}

.yebgo-landing.yg-checkout-page .yg-checkout__legal-nav a {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.5;
}

.yebgo-landing.yg-checkout-page .yg-checkout__payment-note a:focus-visible,
.yebgo-landing.yg-checkout-page .yg-checkout__legal-nav a:focus-visible,
.yebgo-landing.yg-checkout-page .yg-checkout__back:focus-visible,
.yebgo-landing.yg-checkout-page .yg-checkout__stripe-button:focus-visible {
  outline: 2px solid var(--yebgo-violet);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (min-width: 720px) {
  .yebgo-landing.yg-checkout-page .yg-checkout__shell {
    padding: 0 20px;
  }

  .yebgo-landing.yg-checkout-page .yg-checkout__header {
    padding: 18px 0 12px;
  }

  .yebgo-landing.yg-checkout-page .yg-checkout__logo img {
    height: 38px;
  }

  .yebgo-landing.yg-checkout-page .yg-checkout__steps {
    padding-bottom: 12px;
  }

  .yebgo-landing.yg-checkout-page .yg-checkout__card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .yebgo-landing.yg-checkout-page
    :is(.yg-checkout__summary, .yg-checkout__options, .yg-checkout__process) {
    padding: 22px;
  }

  .yebgo-landing.yg-checkout-page .yg-checkout__totals {
    padding: 22px;
  }

  .yebgo-landing.yg-checkout-page .yg-checkout__option {
    gap: 14px;
  }

  .yebgo-landing.yg-checkout-page .yg-checkout__summary-price-value {
    font-size: 44px;
  }
}

@media (min-width: 980px) {
  .yebgo-landing.yg-checkout-page
    :is(.yg-checkout__summary, .yg-checkout__options, .yg-checkout__process) {
    padding: 24px;
  }

  .yebgo-landing.yg-checkout-page .yg-checkout__totals {
    padding: 24px;
  }

  .yebgo-landing.yg-checkout-page .yg-checkout__summary-price-value {
    font-size: 48px;
  }

  .yebgo-landing.yg-checkout-page .yg-checkout__totals-row--total strong {
    font-size: 26px;
  }
}

@media (max-width: 359px) {
  .yebgo-landing.yg-checkout-page .yg-checkout__option {
    grid-template-columns: 20px minmax(0, 1fr);
  }

  .yebgo-landing.yg-checkout-page .yg-checkout__option-price {
    margin-left: 32px;
    grid-column: 2;
  }
}

@media (hover: hover) {
  .yebgo-landing.yg-checkout-page .yg-checkout__option:hover {
    opacity: 0.88;
  }

  .yebgo-landing.yg-checkout-page .yg-checkout__stripe-button:hover {
    background: var(--yebgo-amber-hover);
  }

  .yebgo-landing.yg-checkout-page .yg-checkout__payment-note a:hover,
  .yebgo-landing.yg-checkout-page .yg-checkout__legal-nav a:hover,
  .yebgo-landing.yg-checkout-page .yg-checkout__back:hover {
    color: var(--yebgo-violet);
  }

  .yebgo-landing.yg-checkout-page .yg-checkout__payment-note a:hover {
    color: #6c757d;
  }
}

@media (prefers-reduced-motion: reduce) {
  .yebgo-landing.yg-checkout-page .yg-checkout__option,
  .yebgo-landing.yg-checkout-page .yg-checkout__option-box,
  .yebgo-landing.yg-checkout-page .yg-checkout__option-box::after,
  .yebgo-landing.yg-checkout-page .yg-checkout__stripe-button,
  .yebgo-landing.yg-checkout-page .yg-checkout__payment-note a,
  .yebgo-landing.yg-checkout-page .yg-checkout__legal-nav a,
  .yebgo-landing.yg-checkout-page .yg-checkout__back {
    transition: none !important;
  }
}

/* ========= THANK YOU PAGE ========= */

.yebgo-landing.yg-thankyou-page {
  min-height: 100vh;
  background: #f8f9fa;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__shell {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 0 20px;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__header {
  padding: 16px 0;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(17, 26, 0, 0.08);
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__logo img {
  display: block;
  width: auto;
  height: 34px;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou {
  padding: 20px 0 24px;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__card {
  --yg-card-border: 1px solid #dee2e6;
  --yg-card-radius: 20px;
  --yg-card-shadow: 0 10px 24px rgba(17, 26, 0, 0.04);
  display: grid;
  gap: 16px;
  padding: 24px 20px;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__confirmation,
.yebgo-landing.yg-thankyou-page .yg-thankyou__next,
.yebgo-landing.yg-thankyou-page .yg-thankyou__steps-block,
.yebgo-landing.yg-thankyou-page .yg-thankyou__note,
.yebgo-landing.yg-thankyou-page .yg-thankyou__help {
  display: grid;
  gap: 10px;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(61, 98, 0, 0.12);
  color: var(--yebgo-dark-light);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__eyebrow {
  margin: 0;
  color: var(--yebgo-text-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__title,
.yebgo-landing.yg-thankyou-page .yg-thankyou__section-title {
  margin: 0;
  color: var(--yebgo-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__title {
  font-size: clamp(28px, 8vw, 34px);
  line-height: 1.05;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__section-title {
  font-size: 18px;
  line-height: 1.2;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__lead,
.yebgo-landing.yg-thankyou-page .yg-thankyou__text,
.yebgo-landing.yg-thankyou-page .yg-thankyou__help p {
  margin: 0;
  color: var(--yebgo-text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__next {
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.08);
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 16px;
  background: var(--yebgo-amber);
  color: var(--yebgo-dark);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(212, 224, 0, 0.2);
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__steps li {
  position: relative;
  padding-left: 16px;
  color: var(--yebgo-text);
  font-size: 14px;
  line-height: 1.5;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__steps li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yebgo-violet);
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__note {
  padding: 16px;
  border-radius: 16px;
  background: rgba(17, 26, 0, 0.04);
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__help {
  padding-top: 4px;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__help a,
.yebgo-landing.yg-thankyou-page .yg-thankyou__legal-nav a {
  color: inherit;
  text-decoration: none;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__help a {
  color: var(--yebgo-violet);
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__legal {
  padding: 0 0 28px;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__legal-bar {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__legal-nav a {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.5;
}

.yebgo-landing.yg-thankyou-page .yg-thankyou__cta:focus-visible,
.yebgo-landing.yg-thankyou-page .yg-thankyou__help a:focus-visible,
.yebgo-landing.yg-thankyou-page .yg-thankyou__legal-nav a:focus-visible {
  outline: 2px solid var(--yebgo-violet);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (min-width: 720px) {
  .yebgo-landing.yg-thankyou-page .yg-thankyou__header {
    padding: 18px 0 12px;
  }

  .yebgo-landing.yg-thankyou-page .yg-thankyou__logo img {
    height: 38px;
  }

  .yebgo-landing.yg-thankyou-page .yg-thankyou__card {
    padding: 28px 24px;
  }
}

@media (hover: hover) {
  .yebgo-landing.yg-thankyou-page .yg-thankyou__cta:hover {
    background: var(--yebgo-amber-hover);
  }

  .yebgo-landing.yg-thankyou-page .yg-thankyou__help a:hover {
    color: var(--yebgo-violet-hover);
  }
}

@media (prefers-reduced-motion: reduce) {
  .yebgo-landing.yg-thankyou-page .yg-thankyou__cta,
  .yebgo-landing.yg-thankyou-page .yg-thankyou__help a,
  .yebgo-landing.yg-thankyou-page .yg-thankyou__legal-nav a {
    transition: none !important;
  }
}

.yebgo-landing .yg-compare__header {
  --yg-section-head-max: 580px;
  --yg-section-head-margin: 0 auto 28px;
  --yg-section-head-title-max: 34ch;
  --yg-section-head-sub-max: 34ch;
}

.yebgo-landing .yg-compare__sub,
.yebgo-landing .yg-compare__title {
  max-width: 34ch;
}

.yebgo-landing .yg-compare__stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.yebgo-landing .yg-compare__card {
  --yg-card-border: 1px solid #e7eaf0;
  --yg-card-radius: 24px;
  --yg-card-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.yebgo-landing .yg-compare__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.yebgo-landing .yg-compare__card-price {
  color: var(--yebgo-text);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.yebgo-landing .yg-compare__card-price small {
  opacity: 0.5;
  font-size: 16px;
  font-weight: 500;
}

.yebgo-landing .yg-compare__card-price-alt {
  color: var(--yebgo-text-secondary);
  font-size: 14px;
  font-weight: 600;
}

.yebgo-landing .yg-compare__card-titlerow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.yebgo-landing .yg-compare__card-titlerow .yg-compare__card-ico {
  display: flex;
  align-items: center;
  line-height: 0;
}

.yebgo-landing .yg-compare__card-ico {
  opacity: 0.4;
}

.yebgo-landing .yg-compare__card-title {
  margin: 0;
  color: var(--yebgo-text);
  font-size: 20px;
  font-weight: 700;
}

.yebgo-landing .yg-compare__card-text {
  margin: 0;
  color: var(--yebgo-text-secondary);
  font-size: 15px;
  line-height: 1.45;
}

.yebgo-landing .yg-compare__card-weak {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.yebgo-landing .yg-compare__card-weak li {
  position: relative;
  padding-left: 16px;
  color: var(--yebgo-text);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}

.yebgo-landing .yg-compare__card-weak li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--yebgo-text-secondary);
  opacity: 0.4;
}

.yebgo-landing .yg-compare__ycard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(212, 224, 0, 0.1);
  border-radius: 28px;
  background: var(--yebgo-dark);
  box-shadow: 0 8px 22px rgba(17, 26, 0, 0.08);
  transform: translateY(0);
  transition:
    transform 0.36s var(--yg-ease-smooth),
    border-color 0.32s var(--yg-ease-smooth),
    box-shadow 0.36s var(--yg-ease-smooth),
    background-color 0.32s var(--yg-ease-smooth);
}

.yebgo-landing .yg-compare__ycard.is-emphasized {
  border-color: rgba(212, 224, 0, 0.3);
  background: #182600;
  box-shadow:
    0 22px 46px rgba(17, 26, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transform: translateY(-6px);
}

.yebgo-landing .yg-compare__ycard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.yebgo-landing .yg-compare__ycard-mention {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 0.28s var(--yg-ease-smooth),
    border-color 0.28s var(--yg-ease-smooth),
    background 0.28s var(--yg-ease-smooth);
}

.yebgo-landing .yg-compare__ycard.is-emphasized .yg-compare__ycard-mention {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.yebgo-landing .yg-compare__ycard-price {
  color: var(--yebgo-amber);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.yebgo-landing .yg-compare__ycard-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.5;
}

.yebgo-landing .yg-compare__ycard-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  list-style: none;
  transition:
    border-color 0.28s var(--yg-ease-smooth),
    background 0.28s var(--yg-ease-smooth),
    box-shadow 0.32s var(--yg-ease-smooth);
}

.yebgo-landing .yg-compare__ycard.is-emphasized .yg-compare__ycard-list {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.yebgo-landing .yg-compare__ycard-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}

.yebgo-landing .yg-compare__ycard-sub {
  margin-top: 4px;
  padding-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.5;
  transition:
    border-color 0.28s var(--yg-ease-smooth),
    background 0.28s var(--yg-ease-smooth);
}

.yebgo-landing .yg-compare__ycard.is-emphasized .yg-compare__ycard-sub {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
}

.yebgo-landing .yg-compare__ycard-list svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.yebgo-landing .yg-compare__ycard-sub-note {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.yebgo-landing .yg-compare__note {
  max-width: 34ch;
  margin: 22px auto 0;
  color: var(--yebgo-text-secondary);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .yebgo-landing .yg-compare__ycard,
  .yebgo-landing .yg-compare__ycard-mention,
  .yebgo-landing .yg-compare__ycard-list,
  .yebgo-landing .yg-compare__ycard-sub {
    transition: none !important;
  }

  .yebgo-landing .yg-compare__ycard,
  .yebgo-landing .yg-compare__ycard.is-emphasized {
    transform: none !important;
  }
}

/* ========= TÉMOIGNAGES ========= */

.yebgo-landing .yg-testimonials-v2 {
  padding: 72px 0;
  background: var(--yebgo-white);
  color: var(--yebgo-text);
}

.yebgo-landing .yg-testimonials-v2__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.yebgo-landing .yg-testimonials-v2__topbar {
  margin-bottom: 24px;
}

.yebgo-landing .yg-testimonials-v2__head {
  --yg-section-head-max: 580px;
  --yg-section-head-margin: 0 auto 28px;
  --yg-section-head-title-max: 34ch;
  --yg-section-head-sub-max: 34ch;
}

.yebgo-landing .yg-testimonials-v2__sub,
.yebgo-landing .yg-testimonials-v2__title {
  max-width: 34ch;
}

.yebgo-landing .yg-testimonials-v2__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}

.yebgo-landing .yg-testimonials-v2__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.yebgo-landing .yg-testimonials-v2__arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yebgo-landing .yg-testimonials-v2__arrow--prev {
  background: var(--yebgo-dark);
  color: var(--yebgo-white);
}

.yebgo-landing .yg-testimonials-v2__arrow--next {
  background: var(--yebgo-amber);
  color: var(--yebgo-dark);
}

.yebgo-landing .yg-testimonials-v2__arrow.is-disabled {
  pointer-events: none;
  background: var(--yebgo-surface);
  color: #adb5bd;
  cursor: default;
}

.yebgo-landing .yg-testimonials-v2__slider-wrap {
  overflow: hidden;
  padding: 10px 8px 24px;
  margin: 10px -8px 4px;
}

.yebgo-landing .yg-testimonials-v2__track {
  display: flex;
  gap: 14px;
  transition: transform 0.42s var(--yg-ease-smooth);
  will-change: transform;
}

.yebgo-landing .yg-testimonials-v2__slide {
  position: relative;
  display: flex;
  flex: 0 0 84%;
  flex-direction: column;
  justify-content: space-between;
  max-width: 84%;
  min-height: 460px;
  padding: 24px;
  overflow: hidden;
  border-radius: 32px;
  opacity: 0.9;
  transform: scale(0.97);
  transition:
    transform 0.42s var(--yg-ease-smooth),
    opacity 0.42s var(--yg-ease-smooth),
    box-shadow 0.42s var(--yg-ease-smooth);
  z-index: 1;
}

.yebgo-landing .yg-testimonials-v2__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.yebgo-landing .yg-testimonials-v2__slide.is-prev {
  opacity: 0.86;
  transform: scale(0.96);
  z-index: 0;
}

.yebgo-landing .yg-testimonials-v2__slide-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 25px;
}

.yebgo-landing .yg-testimonials-v2__sector {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.yebgo-landing .yg-testimonials-v2__quote {
  max-width: 18ch;
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.yebgo-landing .yg-testimonials-v2__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 14px;
  margin-top: 60px;
}

.yebgo-landing .yg-testimonials-v2__avatar {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 20px rgba(17, 26, 0, 0.1);
}

.yebgo-landing .yg-testimonials-v2__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.yebgo-landing .yg-testimonials-v2__avatar--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(124, 58, 237, 0.3);
  background: linear-gradient(180deg, #fbf8ff 0%, #f4eeff 100%);
  color: rgba(124, 58, 237, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
}

.yebgo-landing .yg-testimonials-v2__sig {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.yebgo-landing .yg-testimonials-v2__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.yebgo-landing .yg-testimonials-v2__role {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

/* DARK CARDS */

.yebgo-landing .yg-testimonials-v2__slide--dark {
  background: var(--yebgo-dark);
  color: #f8f9fa;
  box-shadow: 0 10px 22px rgba(17, 26, 0, 0.11);
}

.yebgo-landing .yg-testimonials-v2__slide--dark .yg-testimonials-v2__sector {
  border: 1px solid rgba(167, 139, 250, 0.16);
  background: rgba(124, 58, 237, 0.14);
  color: #c4b5fd;
}

.yebgo-landing .yg-testimonials-v2__slide--dark .yg-testimonials-v2__role {
  color: rgba(248, 249, 250, 0.72);
}

.yebgo-landing .yg-testimonials-v2__slide--dark .yg-testimonials-v2__avatar {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

/* LIGHT CARDS */

.yebgo-landing .yg-testimonials-v2__slide--white {
  border: 1px solid var(--yebgo-border);
  background: var(--yebgo-white);
  color: var(--yebgo-dark);
  box-shadow: 0 6px 16px rgba(17, 26, 0, 0.035);
}

.yebgo-landing .yg-testimonials-v2__slide--white .yg-testimonials-v2__sector {
  border: 1px solid rgba(124, 58, 237, 0.08);
  background: #f4eeff;
  color: var(--yebgo-violet);
}

.yebgo-landing .yg-testimonials-v2__slide--white .yg-testimonials-v2__role {
  color: var(--yebgo-text-secondary);
}

.yebgo-landing .yg-testimonials-v2__slide--white .yg-testimonials-v2__avatar {
  border-color: rgba(17, 26, 0, 0.08);
  background: rgba(245, 247, 250, 0.95);
  box-shadow: 0 8px 18px rgba(17, 26, 0, 0.06);
}

/* ============================================
   YEBGO — RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .yebgo-landing .yg-nav {
    top: 8px;
    padding: 0 12px;
  }

  .yebgo-landing .yg-nav__capsule {
    padding: 6px 6px 6px 16px;
    border-radius: 14px;
  }

  .yebgo-landing .yg-nav__links,
  .yebgo-landing .yg-nav__cta {
    display: none;
  }

  .yebgo-landing .yg-nav__mobile-right {
    display: flex;
  }

  .yebgo-landing .yg-nav__logo-default,
  .yebgo-landing .yg-nav__logo-scroll {
    height: 38px;
  }

  .yebgo-landing .yg-mobile-dd {
    margin: 8px 0 0;
  }

  .yebgo-landing .yg-hero__inner {
    gap: 40px;
  }

  .yebgo-landing .yg-carousel {
    max-width: 460px;
  }
}

@media (min-width: 900px) {
  .yebgo-landing .yg-realizations-v4__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yebgo-landing .yg-realizations-v4__meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .yebgo-landing .yg-realizations-v4__name {
    font-size: 18px;
  }

  .yebgo-landing .yg-realizations-v4__placeholder-sector {
    font-size: 32px;
  }

  .yebgo-landing .yg-realizations-v4__tech-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .yebgo-landing .yg-realizations-v4__tech-item {
    min-width: 0;
    min-height: 62px;
    padding: 12px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .yebgo-landing .yg-realizations-v4__tech-item:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.45);
  }

  .yebgo-landing
    .yg-realizations-v4__tech-item
    + .yg-realizations-v4__tech-item {
    border-left: 1px solid rgba(222, 226, 230, 0.9);
  }

  .yebgo-landing .yg-realizations-v4__tech-text {
    font-size: 14px;
  }

  .yebgo-landing .yg-compare__inner,
  .yebgo-landing .yg-testimonials-v2__inner,
  .yebgo-landing .yg-footer__inner {
    padding: 0 32px;
  }

  .yebgo-landing .yg-compare__inner {
    max-width: 1100px;
  }

  .yebgo-landing .yg-compare__stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .yebgo-landing .yg-compare__ycard {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.15fr);
    grid-template-areas:
      "top top"
      "price list"
      "text list"
      "sub list";
    gap: 16px 52px;
    align-items: start;
    padding: 40px 44px;
  }

  .yebgo-landing .yg-compare__ycard-top {
    grid-area: top;
    margin-bottom: 6px;
  }

  .yebgo-landing .yg-compare__ycard-price {
    grid-area: price;
    align-self: end;
    font-size: 56px;
  }

  .yebgo-landing .yg-compare__ycard-text {
    grid-area: text;
    max-width: 100%;
    margin-top: -2px;
    font-size: 16px;
    line-height: 1.55;
  }

  .yebgo-landing .yg-compare__ycard-list {
    grid-area: list;
    margin: 0;
    align-self: start;
    padding: 24px 26px;
    border-radius: 24px;
    gap: 0;
  }

  .yebgo-landing .yg-compare__ycard-list li {
    gap: 12px;
    align-items: flex-start;
    min-height: 24px;
    font-size: 15px;
    line-height: 1.5;
  }

  .yebgo-landing .yg-compare__ycard-list li + li {
    margin-top: 12px;
  }

  .yebgo-landing .yg-compare__ycard-list li:nth-child(3),
  .yebgo-landing .yg-compare__ycard-list li:nth-child(4),
  .yebgo-landing .yg-compare__ycard-list li:nth-child(7) {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .yebgo-landing .yg-compare__ycard-sub {
    grid-area: sub;
    max-width: none;
    margin-top: 2px;
    padding: 18px 20px;
    border-radius: 20px;
    font-size: 13.5px;
    line-height: 1.6;
  }

  .yebgo-landing .yg-compare__ycard-sub-note {
    margin-top: 12px;
    padding-top: 12px;
    color: rgba(255, 255, 255, 0.68);
  }

  .yebgo-landing .yg-compare__title,
  .yebgo-landing .yg-compare__sub {
    max-width: 580px;
  }

  .yebgo-landing .yg-testimonials-v2 {
    padding: 72px 0;
  }

  .yebgo-landing .yg-testimonials-v2__topbar {
    display: block;
    margin-bottom: 30px;
  }

  .yebgo-landing .yg-testimonials-v2__head {
    margin: 0 auto 24px;
  }

  .yebgo-landing .yg-testimonials-v2__nav {
    margin: 0;
  }

  .yebgo-landing .yg-testimonials-v2__slider-wrap {
    margin: -10px -8px 6px;
  }

  .yebgo-landing .yg-testimonials-v2__slide {
    flex: 0 0 48%;
    max-width: 48%;
    min-height: 430px;
  }

  .yebgo-landing .yg-testimonials-v2__quote {
    font-size: 34px;
  }
}

@media (min-width: 900px) and (max-width: 1024px) {
  .yebgo-landing .yg-compare__stack {
    gap: 12px;
  }

  .yebgo-landing .yg-compare__ycard {
    padding: 28px;
    gap: 8px 28px;
  }
}

@media (max-width: 899px) {
  .yebgo-landing .yg-realizations-v4 {
    padding: 80px 0 72px;
  }

  .yebgo-landing .yg-why {
    padding: 56px 0;
  }

  .yebgo-landing .yg-process {
    padding: 80px 0 72px;
  }

  .yebgo-landing .yg-compare {
    padding: 56px 0;
  }

  .yebgo-landing .yg-testimonials-v2 {
    padding: 56px 0;
  }

  .yebgo-landing .yg-faq {
    padding: 56px 0;
  }

  .yebgo-landing .yg-final-cta {
    padding: 80px 0 88px;
  }

  .yebgo-landing .yg-final-cta__grid {
    grid-template-columns: 1fr;
  }

  .yebgo-landing .yg-final-cta__offer {
    order: 1;
  }

  .yebgo-landing .yg-final-cta__content {
    order: 2;
    padding-top: 0;
  }

  .yebgo-landing .yg-final-cta__steps {
    grid-template-columns: 1fr 1fr;
  }

  .yebgo-landing .yg-final-cta__trust {
    grid-template-columns: 1fr 1fr;
  }

  .yebgo-landing .yg-faq__question {
    font-size: 18px;
  }

  .yebgo-landing .yg-compare__ycard-list {
    margin-top: 2px;
    padding: 16px;
    border-radius: 20px;
    gap: 12;
  }

  .yebgo-landing .yg-compare__ycard-sub {
    margin-top: 2px;
    padding: 16px;
    border-radius: 18px;
    font-size: 13.5px;
    line-height: 1.6;
  }

  .yebgo-landing .yg-testimonials-v2__topbar {
    display: block;
  }

  .yebgo-landing .yg-testimonials-v2__nav {
    justify-content: flex-start;
    margin: 0 0 20px;
  }

  .yebgo-landing .yg-footer__middle {
    gap: 24px 32px;
  }

  .yebgo-landing.yg-legal-page .yg-legal-shell {
    padding: 0 32px;
  }
}

@media (max-width: 768px) {
  .yebgo-landing .yg-btn:active {
    opacity: 0.9 !important;
    /* overrides lead translateY — scale is the intended mobile feedback */
    transform: scale(0.97) !important;
    transition: all 0.1s ease;
  }

  .yebgo-landing .yg-nav {
    top: 8px;
    padding: 0 12px;
  }

  .yebgo-landing .yg-nav__capsule {
    padding: 6px 6px 6px 16px;
    border-radius: 14px;
  }

  .yebgo-landing .yg-nav__links,
  .yebgo-landing .yg-nav__cta {
    display: none;
  }

  .yebgo-landing .yg-nav__mobile-right {
    display: flex;
  }

  .yebgo-landing .yg-nav__logo-default,
  .yebgo-landing .yg-nav__logo-scroll {
    height: 38px;
  }

  .yebgo-landing .yg-mobile-dd {
    margin: 8px 0 0;
  }

  .yebgo-landing .yg-hero {
    padding: 130px 0 0;
  }

  .yebgo-landing .yg-hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "actions";
    gap: 36px;
    padding: 0 20px;
    text-align: center;
  }

  .yebgo-landing .yg-hero__left,
  .yebgo-landing .yg-hero__actions {
    align-items: center;
  }

  .yebgo-landing .yg-hero__social {
    max-width: 100%;
    padding: 8px 12px 8px 10px;
  }

  .yebgo-landing .yg-hero__social-title {
    font-size: 12px;
  }

  .yebgo-landing .yg-hero__social-sub {
    font-size: 10px;
  }

  .yebgo-landing .yg-hero__sub,
  .yebgo-landing .yg-carousel {
    max-width: 100%;
  }

  .yebgo-landing .yg-hero__cta-group {
    width: 100%;
    flex-direction: column;
  }

  .yebgo-landing .yg-hero__cta,
  .yebgo-landing .yg-hero__cta-secondary {
    --yg-btn-width: 100%;
    --yg-btn-padding: 16px 24px;
  }

  .yebgo-landing .yg-hero__proof {
    justify-content: center;
    margin-top: -10px;
  }

  .yebgo-landing .yg-hero__selector {
    align-items: center;
  }

  .yebgo-landing .yg-hero__selector-list {
    justify-content: center;
  }

  .yebgo-landing .yg-hero__selector-text--mobile {
    display: inline-flex;
  }

  .yebgo-landing .yg-hero__selector-text--desktop {
    display: none;
  }

  .yebgo-landing .yg-hero__bar {
    margin-top: 28px;
    padding: 14px 16px 0;
  }

  .yebgo-landing .yg-stat {
    gap: 4px;
    padding: 16px 10px 15px;
  }

  .yebgo-landing .yg-hero__bar-inner {
    border-radius: 20px;
  }

  .yebgo-landing .yg-stat + .yg-stat::before {
    height: 38px;
  }

  .yebgo-landing .yg-stat__value {
    font-size: 22px;
  }

  .yebgo-landing .yg-stat__label {
    font-size: 11px;
    line-height: 1.15;
  }

  .yebgo-landing .yg-carousel__slide-label {
    display: none;
  }

  .yebgo-landing .yg-realizations-v4 {
    padding: 64px 0 56px;
  }

  .yebgo-landing .yg-realizations-v4__inner,
  .yebgo-landing .yg-why__inner,
  .yebgo-landing .yg-process__inner {
    padding: 0 20px;
  }

  .yebgo-landing .yg-why {
    padding: 44px 0;
  }

  .yebgo-landing .yg-why__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .yebgo-landing .yg-why__card {
    padding: 22px 18px 18px;
    border-radius: 22px;
  }

  .yebgo-landing .yg-why__card-title {
    font-size: 20px;
  }

  .yebgo-landing .yg-why__note {
    margin-top: 16px;
    padding: 15px 16px;
    font-size: 15px;
  }

  .yebgo-landing .yg-realizations-v4__grid {
    gap: 20px;
    margin-bottom: 24px;
  }

  .yebgo-landing .yg-realizations-v4__footer {
    padding: 14px 14px 16px;
  }

  .yebgo-landing .yg-realizations-v4__link-wrap {
    margin-top: 12px;
    padding-top: 12px;
  }

  .yebgo-landing .yg-process {
    margin-top: -24px;
    padding: 64px 0 56px;
    border-radius: 24px 24px 0 0;
  }

  .yebgo-landing .yg-process__panel {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 24px 18px;
  }

  .yebgo-landing .yg-process__step {
    align-items: center;
    gap: 12px;
    padding: 14px 10px;
    text-align: center;
  }

  .yebgo-landing .yg-process__num {
    font-size: 36px;
  }

  .yebgo-landing .yg-process__arrow {
    padding-top: 0;
    align-self: center;
    transform: rotate(90deg) scale(0.82);
  }

  .yebgo-landing .yg-process__callout {
    gap: 18px;
  }

  .yebgo-landing .yg-process__callout-text {
    font-size: 18px;
  }

  .yebgo-landing .yg-compare {
    padding: 44px 0;
  }

  .yebgo-landing .yg-testimonials-v2 {
    padding: 44px 0;
  }

  .yebgo-landing .yg-final-cta {
    padding: 64px 0 72px;
  }

  .yebgo-landing .yg-final-cta__head {
    --yg-section-head-margin: 0 auto 24px;
  }

  .yebgo-landing .yg-final-cta__inner {
    padding: 0 20px;
  }

  .yebgo-landing.yg-legal-page .yg-legal-shell {
    padding: 0 20px;
  }

  .yebgo-landing.yg-legal-page .yg-legal-header {
    padding: 14px 0;
  }

  .yebgo-landing.yg-legal-page .yg-legal-header__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .yebgo-landing.yg-legal-page .yg-legal-header__logo img {
    height: 36px;
  }

  .yebgo-landing.yg-legal-page .yg-legal-intro {
    padding: 40px 0 20px;
  }

  .yebgo-landing.yg-legal-page .yg-legal-intro__lead {
    font-size: 16px;
  }

  .yebgo-landing.yg-legal-page .yg-legal-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .yebgo-landing.yg-legal-page .yg-legal-prose h2 {
    margin-top: 28px;
    font-size: 21px;
  }

  .yebgo-landing.yg-legal-page .yg-legal-prose p,
  .yebgo-landing.yg-legal-page .yg-legal-prose li {
    font-size: 14.5px;
  }

  .yebgo-landing .yg-footer {
    padding-bottom: 24px;
  }

  .yebgo-landing .yg-footer__inner {
    padding: 0 20px;
  }

  .yebgo-landing .yg-footer__top {
    padding: 28px 0 20px;
  }

  .yebgo-landing .yg-footer__middle {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0 26px;
  }

  .yebgo-landing .yg-footer__nav a,
  .yebgo-landing .yg-footer__contact a {
    padding: 2px 0;
  }

  .yebgo-landing .yg-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 18px;
  }

  .yebgo-landing .yg-footer__legal {
    flex-direction: column;
    gap: 8px;
  }

  .yebgo-landing .yg-final-cta__trust {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .yebgo-landing .yg-final-cta__trust li {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 14px;
  }

  .yebgo-landing .yg-final-cta__flow {
    padding: 18px;
  }

  .yebgo-landing .yg-final-cta__steps {
    grid-template-columns: 1fr;
  }

  .yebgo-landing .yg-final-cta__offer {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .yebgo-landing .yg-final-cta__offer-top {
    gap: 14px;
  }

  .yebgo-landing .yg-final-cta__offer-name {
    font-size: 24px;
  }

  .yebgo-landing .yg-final-cta__group {
    padding: 15px 16px;
  }

  .yebgo-landing .yg-final-cta__price {
    font-size: 54px;
  }

  .yebgo-landing .yg-faq {
    padding: 44px 0;
  }

  .yebgo-landing .yg-faq__head {
    --yg-section-head-margin: 0 auto 20px;
  }

  .yebgo-landing .yg-faq__trigger {
    padding: 20px 18px;
    gap: 14px;
  }

  .yebgo-landing .yg-faq__question {
    font-size: 17px;
  }

  .yebgo-landing .yg-faq__answer {
    padding: 0 18px 20px;
  }

  .yebgo-landing .yg-compare__ycard {
    gap: 18px;
    padding: 24px 20px 20px;
    border-radius: 26px;
  }

  .yebgo-landing .yg-compare__ycard-top {
    align-items: flex-start;
    gap: 12px;
  }

  .yebgo-landing .yg-compare__ycard-price {
    font-size: 48px;
  }

  .yebgo-landing .yg-compare__ycard-text {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
  }

  .yebgo-landing .yg-compare__ycard-list li {
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    line-height: 1.5;
  }

  .yebgo-landing .yg-compare__ycard-list li + li {
    margin-top: 10px;
  }

  .yebgo-landing .yg-compare__ycard-list li:nth-child(3),
  .yebgo-landing .yg-compare__ycard-list li:nth-child(4),
  .yebgo-landing .yg-compare__ycard-list li:nth-child(7) {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .yebgo-landing .yg-compare__ycard-sub-note {
    margin-top: 12px;
    padding-top: 12px;
  }

  .yebgo-landing .yg-realizations-v4__cta,
  .yebgo-landing .yg-compare__cta,
  .yebgo-landing .yg-final-cta__cta {
    --yg-btn-width: 100%;
  }
}

@media (max-width: 480px) {
  .yebgo-landing .yg-hero__inner,
  .yebgo-landing .yg-realizations-v4__inner,
  .yebgo-landing .yg-why__inner,
  .yebgo-landing .yg-process__inner,
  .yebgo-landing .yg-compare__inner,
  .yebgo-landing .yg-testimonials-v2__inner {
    padding: 0 16px;
  }

  .yebgo-landing .yg-why__card {
    padding: 20px 16px 16px;
  }

  .yebgo-landing .yg-why__card-title {
    font-size: 18px;
  }

  .yebgo-landing .yg-why__card-text,
  .yebgo-landing .yg-why__note {
    font-size: 14px;
  }

  .yebgo-landing .yg-final-cta__inner {
    padding: 0 16px;
  }

  .yebgo-landing.yg-legal-page .yg-legal-shell {
    padding: 0 16px;
  }

  .yebgo-landing.yg-legal-page .yg-legal-intro__title {
    font-size: 30px;
  }

  .yebgo-landing.yg-legal-page .yg-legal-card {
    padding: 22px 18px;
  }

  .yebgo-landing .yg-footer__inner {
    padding: 0 16px;
  }

  .yebgo-landing .yg-footer__logo img {
    height: 34px;
  }

  .yebgo-landing .yg-footer__tagline,
  .yebgo-landing .yg-footer__nav a,
  .yebgo-landing .yg-footer__contact a {
    font-size: 14.5px;
  }

  .yebgo-landing .yg-final-cta__offer {
    padding: 22px 18px;
  }

  .yebgo-landing .yg-final-cta__offer-heading .yg-badge {
    width: auto;
    justify-content: flex-start;
  }

  .yebgo-landing .yg-final-cta__price {
    font-size: 48px;
  }

  .yebgo-landing .yg-final-cta__includes li {
    font-size: 14px;
  }

  .yebgo-landing .yg-final-cta__trust li,
  .yebgo-landing .yg-final-cta__step-text,
  .yebgo-landing .yg-final-cta__recurrence,
  .yebgo-landing .yg-final-cta__model-note,
  .yebgo-landing .yg-final-cta__domain-note,
  .yebgo-landing .yg-final-cta__card-note {
    font-size: 13.5px;
  }

  .yebgo-landing .yg-faq__inner {
    padding: 0 16px;
  }

  .yebgo-landing .yg-faq__shell {
    --yg-card-radius: 18px;
  }

  .yebgo-landing .yg-faq__trigger {
    padding: 18px 16px;
  }

  .yebgo-landing .yg-faq__question {
    font-size: 16px;
    line-height: 1.34;
  }

  .yebgo-landing .yg-faq__answer {
    padding: 0 16px 18px;
  }

  .yebgo-landing .yg-faq__answer p,
  .yebgo-landing .yg-faq__note {
    font-size: 14px;
  }

  .yebgo-landing .yg-compare__ycard {
    padding: 22px 18px 18px;
  }

  .yebgo-landing .yg-compare__ycard-price {
    font-size: 44px;
  }

  .yebgo-landing .yg-compare__ycard-list,
  .yebgo-landing .yg-compare__ycard-sub {
    padding: 14px;
  }

  .yebgo-landing .yg-carousel__arrow {
    display: none;
  }

  .yebgo-landing .yg-testimonials-v2__slide {
    flex: 0 0 90%;
    max-width: 90%;
    min-height: 420px;
    padding: 22px;
  }

  .yebgo-landing .yg-testimonials-v2__quote {
    font-size: 28px;
  }

  .yebgo-landing .yg-testimonials-v2__arrow {
    width: 46px;
    min-width: 46px;
    height: 46px;
  }
}

@media (max-width: 420px) {
  .yebgo-landing .yg-realizations-v4__placeholder-sector {
    font-size: 24px;
  }

  .yebgo-landing .yg-realizations-v4__tech-item {
    flex: 1 1 100%;
  }
}

@media (hover: hover) {
  .yebgo-landing .yg-final-cta__offer:hover {
    --yg-card-border: 1px solid rgba(212, 224, 0, 0.24);
    --yg-card-shadow:
      0 20px 42px rgba(17, 26, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transform: translateY(-4px);
  }

  .yebgo-landing .yg-faq__trigger:hover {
    background: #fafbfc;
  }

  .yebgo-landing .yg-footer__nav a:hover,
  .yebgo-landing .yg-footer__contact a:hover {
    color: var(--yebgo-white);
  }

  .yebgo-landing .yg-footer__legal a:hover {
    color: rgba(244, 246, 238, 0.86);
  }

  .yebgo-landing .yg-hero__selector-btn:hover {
    background: var(--yebgo-bg);
    border-color: #d4dae1;
  }

  .yebgo-landing .yg-hero__selector-btn.active:hover {
    border-color: var(--yebgo-dark);
    background: var(--yebgo-dark);
    color: var(--yebgo-white);
  }

  .yebgo-landing .yg-testimonials-v2__arrow:hover:not(.is-disabled) {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .yebgo-landing .yg-final-cta__offer,
  .yebgo-landing .yg-final-cta__offer.is-emphasized {
    transform: none !important;
  }

  .yebgo-landing .yg-process__step,
  .yebgo-landing .yg-process__num,
  .yebgo-landing .yg-process__ico,
  .yebgo-landing .yg-process__arrow,
  .yebgo-landing .yg-process__arrow svg,
  .yebgo-landing .yg-reveal,
  .yebgo-landing .yg-reveal.yg-reveal--pending,
  .yebgo-landing .yg-reveal.yg-reveal--pending.yg-reveal--armed,
  .yebgo-landing .yg-reveal.is-visible,
  .yebgo-landing .yg-footer__nav a,
  .yebgo-landing .yg-footer__contact a,
  .yebgo-landing .yg-footer__legal a,
  .yebgo-landing .yg-final-cta *,
  .yebgo-landing .yg-final-cta *::before,
  .yebgo-landing .yg-final-cta *::after,
  .yebgo-landing .yg-faq *,
  .yebgo-landing .yg-faq *::before,
  .yebgo-landing .yg-faq *::after,
  .yebgo-landing .yg-testimonials-v2,
  .yebgo-landing .yg-testimonials-v2 *,
  .yebgo-landing .yg-testimonials-v2 *::before,
  .yebgo-landing .yg-testimonials-v2 *::after,
  .yebgo-landing .yg-carousel__slide,
  .yebgo-landing .yg-carousel__slide.active,
  .yebgo-landing .yg-carousel__arrow,
  .yebgo-landing .yg-hero__selector-btn,
  .yebgo-landing .yg-realizations-v4 *,
  .yebgo-landing .yg-realizations-v4 *::before,
  .yebgo-landing .yg-realizations-v4 *::after {
    animation: none !important;
    transition: none !important;
  }

  .yebgo-landing .yg-reveal,
  .yebgo-landing .yg-reveal.yg-reveal--pending,
  .yebgo-landing .yg-reveal.yg-reveal--pending.yg-reveal--armed,
  .yebgo-landing .yg-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}
