/* ═══════════════════════════════════════════════════════════════
   Homepage — scoped under .ys-home
   Design-system values extracted from yield-studio-v2.webflow.css
   ─────────────────────────────────────────────────────────────
   Colors (CSS vars from Webflow :root):
     --blue-30: #3B82F6   (primary indigo)
     --blue-20: #60A5FA   (accent blue)
     --blue-50: #60A5FA   (gradient end)
     --blue-dark: #000b6d  (headings)
     --blue-40: #151d53    (dark navy)
     --blue-10: #d3e7ff    (light tint)
     --text-dark: #2f3133  (body text)
     --transparent: #badcff26 (glass bg)
   Typography:
     Primary: Plus Jakarta Sans, sans-serif (all text)
     Aligned with LP expertise pages
   Breakpoints:
     tablet: max-width 991px
     mobile-landscape: max-width 767px
     mobile-portrait: max-width 479px
   ═══════════════════════════════════════════════════════════════ */

/* ─── Global reset for .ys-home ─── */
.ys-home {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0f172a;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ys-home *,
.ys-home *::before,
.ys-home *::after {
  box-sizing: border-box;
}

/* ─────────────────────────────────────────────────────────────
   HERO — Premium centered hero
   ───────────────────────────────────────────────────────────── */
.ys-home .ys-hero {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

/* ── Decorative background layer ── */
.ys-home .ys-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Soft gradient glows */
.ys-home .ys-hero__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.ys-home .ys-hero__bg-glow--1 {
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
  top: -20%;
  left: -10%;
}

.ys-home .ys-hero__bg-glow--2 {
  width: 40%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06), transparent 70%);
  bottom: -15%;
  right: -5%;
}

/* Subtle dot grid */
.ys-home .ys-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #3B82F612 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

/* ── Tech curves ── */
.ys-home .ys-hero__curves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Inner wrapper ── */
.ys-home .ys-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 10rem 2.5rem 4rem;
}

/* ── Container — centered column ── */
.ys-home .ys-hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

/* ── Tag — subtle label ── */
.ys-home .ys-hero__tag {
  background: none;
  border: none;
  display: inline-block;
}

.ys-home .ys-hero__h1-tag {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #8d99ae;
}

/* ── Heading ── */
.ys-home .ys-hero__heading {
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 48rem;
}

/* ── Gradient text ── */
.ys-home .ys-hero__gradient {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ── Subtitle ── */
.ys-home .ys-hero__subtitle {
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  max-width: 38rem;
}

/* ── CTA buttons ── */
.ys-home .ys-hero__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: .5rem;
}

.ys-home .ys-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background-image: linear-gradient(135deg, #3B82F6, #60A5FA);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: .875rem 1.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.25);
}

.ys-home .ys-hero__btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}

.ys-home .ys-hero__btn-primary svg {
  transition: transform 0.2s ease;
}

.ys-home .ys-hero__btn-primary:hover svg {
  transform: translateX(3px);
}

.ys-home .ys-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  color: #3B82F6;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  padding: .875rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ys-home .ys-hero__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(59, 130, 246, 0.35);
}

/* ── Trust logos ── */
.ys-home .ys-hero__trust {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.ys-home .ys-hero__trust-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8d99ae;
}

.ys-home .ys-hero__logos {
  width: 100%;
}

.ys-home .ys-hero__logos-img {
  width: 100%;
  max-width: 860px;
  height: auto;
}


/* ─────────────────────────────────────────────────────────────
   PRESS — Parutions dans la presse
   ───────────────────────────────────────────────────────────── */
.ys-home .ys-press {
  padding: 5rem 0;
}

.ys-home .ys-press__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.ys-home .ys-press__tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #0f172a;
  border: 1px solid #0f172a;
  border-radius: 2rem;
  padding: .4rem 1rem;
  margin-bottom: 2.5rem;
}

.ys-home .ys-press__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.ys-home .ys-press__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  text-decoration: none;
}

.ys-home .ys-press__card-logo-wrap {
  height: 105px;
  display: flex;
  align-items: center;
}

.ys-home .ys-press__card-logo {
  height: 105px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .7;
  transition: filter .2s ease, opacity .2s ease;
}

.ys-home .ys-press__card-logo--small {
  height: 22px;
  margin: 0 auto;
}

.ys-home .ys-press__card:hover .ys-press__card-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.ys-home .ys-press__card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.55;
  color: #334155;
  margin: 0;
  flex: 1;
}

.ys-home .ys-press__card-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #0f172a;
  margin-top: auto;
}

.ys-home .ys-press__card-arrow {
  font-size: 1rem;
  color: #3B82F6;
}

/* ─────────────────────────────────────────────────────────────
   VIDEO — Full-width YouTube embed, autoplay muted + sound toggle
   ───────────────────────────────────────────────────────────── */
.ys-home .ys-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  overflow: hidden;
}

.ys-home .ys-video::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1%;
  background: linear-gradient(to bottom, transparent, #101010);
  pointer-events: none;
  z-index: 2;
}

.ys-home .ys-video__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.ys-home .ys-video__sound-btn {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.ys-home .ys-video__sound-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}

.ys-home .ys-video__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ys-home .ys-video__play-btn:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ─────────────────────────────────────────────────────────────
   TRUST / XP2 — Stats + expertise list + video
   Original: .section_xp2-trust .xp2_trust_component
   ───────────────────────────────────────────────────────────── */
.ys-home .ys-trust {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.ys-home .ys-trust__inner {
  z-index: 1;
  width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: relative;
}

.ys-home .ys-trust__container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.ys-home .ys-trust__component {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  display: flex;
  position: relative;
}

.ys-home .ys-trust__heading-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.ys-home .ys-trust__surheading {
  color: #60A5FA;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.5;
}

.ys-home .ys-trust__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.2;
}

.ys-home .ys-trust__paragraph {
  color: #64748b;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.5;
}

.ys-home .ys-trust__video-content {
  z-index: 1;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.ys-home .ys-trust__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ys-home .ys-trust__item {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.ys-home .ys-trust__item-top {
  border-left: 1px solid #60A5FA;
  color: #60A5FA;
  padding-left: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.ys-home .ys-trust__item-text {
  padding-left: 1rem;
  color: #64748b;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────────
   METHOD — "Un bon produit digital…"
   Bento-dark, minimal typographic layout
   ───────────────────────────────────────────────────────────── */
.ys-home .ys-method {
  position: relative;
  background: #101010;
  color: #fff;
  overflow: visible;
  padding: 0;
}

.ys-home .ys-method__inner {
  width: 100%;
  padding: 0;
}

.ys-home .ys-method__container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}

/* ── Section heading ── */
.ys-home .ys-method__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  text-align: center;
  margin: 0 0 4rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-transform: none;
  background-image: none;
  background-color: transparent;
  -webkit-text-fill-color: currentColor;
}

.ys-home .ys-method__highlight {
  color: transparent;
  background-image: linear-gradient(90deg, #3B82F6, #60A5FA);
  background-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  border-radius: 0;
  padding: 0;
  display: inline;
  transform: none;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
}

/* ── 3 columns ── */
.ys-home .ys-method__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.ys-home .ys-method__col {
  padding: 0 2.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ys-home .ys-method__col:first-child {
  padding-left: 0;
  border-left: none;
}

.ys-home .ys-method__col:last-child {
  padding-right: 0;
}

/* Stat accent — value + label inline */
.ys-home .ys-method__col-stat {
  display: flex;
  align-items: baseline;
  gap: .375rem;
}

.ys-home .ys-method__col-stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  background-image: linear-gradient(135deg, #3B82F6, #60A5FA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ys-home .ys-method__col-stat-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

/* Column title */
.ys-home .ys-method__col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  white-space: pre-line;
}

/* Column body text */
.ys-home .ys-method__col-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Discrete CTA */
.ys-home .ys-method__cta {
  margin-top: 3rem;
  text-align: center;
}

.ys-home .ys-method__cta-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color .2s ease;
}

.ys-home .ys-method__cta-link span {
  font-size: 1.125rem;
  color: #3B82F6;
  transition: transform .2s ease;
  display: inline-block;
}

.ys-home .ys-method__cta-link:hover {
  color: #fff;
}

.ys-home .ys-method__cta-link:hover span {
  transform: translateX(3px);
}

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS — "Ils nous font confiance"
   Editorial layout: video thumb left with logo badge, content right
   ───────────────────────────────────────────────────────────── */
.ys-home .ys-testimonials {
  position: relative;
}

.ys-home .ys-testimonials__inner {
  width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.ys-home .ys-testimonials__container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* ── Header: tag + heading, left-aligned ── */
.ys-home .ys-testimonials__header {
  text-align: left;
  margin-bottom: 3.5rem;
}

.ys-home .ys-testimonials__tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  color: #0f172a;
  border: 1px solid #e2e4e4;
  border-radius: 2rem;
  padding: .375rem .875rem;
  margin-bottom: 1rem;
}

.ys-home .ys-testimonials__heading {
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

/* ── List ── */
.ys-home .ys-testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* ── Row ── */
.ys-home .ys-testimonial-row {
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
}

/* ── Left: video thumbnail + logo badge ── */
.ys-home .ys-testimonial-row__left {
  flex: 0 0 50%;
  position: relative;
}

/* Video thumbnail button */
.ys-home .ys-testimonial-row__video-btn {
  display: block;
  width: 100%;
  position: relative;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

.ys-home .ys-testimonial-row__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%);
  transition: transform .3s ease, filter .3s ease;
}

.ys-home .ys-testimonial-row__video-btn:hover .ys-testimonial-row__thumb {
  filter: grayscale(0%);
  transform: scale(1.02);
}

/* Play button overlay */
.ys-home .ys-testimonial-row__play {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 56px;
  height: 56px;
  transition: transform .2s ease;
}

.ys-home .ys-testimonial-row__video-btn:hover .ys-testimonial-row__play {
  transform: scale(1.1);
}

.ys-home .ys-testimonial-row__play svg {
  width: 100%;
  height: 100%;
}

/* Logo badge — flush bottom-left corner of thumbnail */
.ys-home .ys-testimonial-row__badge {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: .75rem 1.25rem;
}

.ys-home .ys-testimonial-row__logo {
  height: 64px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.ys-home .ys-testimonial-row__badge-info {
  display: flex;
  flex-direction: column;
  gap: .1875rem;
}

.ys-home .ys-testimonial-row__badge-type {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  color: #0f172a;
}

.ys-home .ys-testimonial-row__badge-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .6875rem;
  font-weight: 500;
  color: #64748b;
  background: #f1f5f9;
  border-radius: 1rem;
  padding: .1875rem .5rem;
  width: fit-content;
}

/* ── Right: content ── */
.ys-home .ys-testimonial-row__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: .5rem;
}

.ys-home .ys-testimonial-row__quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.6;
  margin: 0;
  font-style: normal;
}

.ys-home .ys-testimonial-row__person {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8125rem;
  font-weight: 400;
  color: #64748b;
  margin: 0;
}

/* Stat — big number */
.ys-home .ys-testimonial-row__stat {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-top: .5rem;
}

.ys-home .ys-testimonial-row__stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ys-home .ys-testimonial-row__stat-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8125rem;
  font-weight: 400;
  color: #64748b;
}

/* Link */
.ys-home .ys-testimonial-row__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  margin-top: .5rem;
  -webkit-text-fill-color: currentColor;
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}

.ys-home .ys-testimonial-row__link span {
  -webkit-text-fill-color: currentColor;
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  font-size: 1.125rem;
}

.ys-home .ys-testimonial-row__link:hover {
  text-decoration: underline;
}

/* ── Video modal ── */
.ys-home .ys-testimonials__modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.ys-home .ys-testimonials__modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: .5rem;
}

.ys-home .ys-testimonials__modal-player {
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: .75rem;
  overflow: hidden;
}

.ys-home .ys-testimonials__modal-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─────────────────────────────────────────────────────────────
   CLIENTS — Editorial list of case studies
   ───────────────────────────────────────────────────────────── */
.ys-home .ys-clients {
  padding: 5rem 0 4rem;
}

.ys-home .ys-clients__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.ys-home .ys-clients__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e2e4e4;
}

.ys-home .ys-clients__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e2e4e4;
  text-decoration: none;
  transition: background .2s ease;
}

.ys-home .ys-clients__row:hover {
  opacity: .7;
}

.ys-home .ys-clients__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ys-home .ys-clients__sector {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #3B82F6;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ys-home .ys-clients__stat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.ys-home .ys-clients__arrow {
  font-size: 1.5rem;
  color: #0f172a;
  line-height: 1;
}

.ys-home .ys-clients__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.ys-home .ys-clients__all {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
}

.ys-home .ys-clients__all span {
  font-size: 1.25rem;
  color: #3B82F6;
}

.ys-home .ys-clients__all:hover {
  color: #3B82F6;
}

.ys-home .ys-clients__cta-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  transition: color .2s ease;
}

.ys-home .ys-clients__cta-link span {
  color: #3B82F6;
  transition: transform .2s ease;
  display: inline-block;
}

.ys-home .ys-clients__cta-link:hover {
  color: #0f172a;
}

.ys-home .ys-clients__cta-link:hover span {
  transform: translateX(3px);
}

/* ── Clients responsive ── */
@media screen and (max-width: 991px) {
  .ys-home .ys-clients__row {
    grid-template-columns: 1fr 1fr auto;
  }
  .ys-home .ys-clients__stat {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .ys-home .ys-clients {
    padding: 3rem 0 2.5rem;
  }
  .ys-home .ys-clients__container {
    padding: 0 1.5rem;
  }
  .ys-home .ys-clients__row {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }
  .ys-home .ys-clients__sector {
    display: none;
  }
  .ys-home .ys-clients__name {
    font-size: .75rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   ADVISORY — Yield Advisory cross-sell
   ───────────────────────────────────────────────────────────── */
.ys-home .ys-advisory {
  padding: 5rem 0;
  background: #f8f9fb;
}

.ys-home .ys-advisory__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.ys-home .ys-advisory__header {
  margin-bottom: 2.5rem;
}

.ys-home .ys-advisory__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  margin: 0;
}

.ys-home .ys-advisory__subheading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem;
  font-weight: 400;
  color: #64748b;
  margin: .25rem 0 0;
}

.ys-home .ys-advisory__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
}

.ys-home .ys-advisory__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ys-home .ys-advisory__text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #475569;
  margin: 0;
  max-width: 40rem;
}

.ys-home .ys-advisory__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.ys-home .ys-advisory__badge {
  display: inline-flex;
  align-items: center;
  padding: .4rem 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  color: #334155;
}

.ys-home .ys-advisory__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .875rem 2rem;
  background: #0f172a;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
  align-self: flex-start;
}

.ys-home .ys-advisory__btn:hover {
  background: #1e293b;
}

.ys-home .ys-advisory__visual {
  flex-shrink: 0;
}

.ys-home .ys-advisory__image {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center top;
}

/* ── Advisory responsive ── */
@media screen and (max-width: 991px) {
  .ys-home .ys-advisory__grid {
    gap: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .ys-home .ys-advisory {
    padding: 3.5rem 0;
  }
  .ys-home .ys-advisory__container {
    padding: 0 1.5rem;
  }
  .ys-home .ys-advisory__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ys-home .ys-advisory__heading {
    font-size: 1.75rem;
  }
  .ys-home .ys-advisory__image {
    width: 150px;
    height: 150px;
  }
}

/* ─────────────────────────────────────────────────────────────
   PODCAST — Hands-On section — deconstructed grid
   ───────────────────────────────────────────────────────────── */
.ys-home .ys-podcast {
  padding: 5rem 0;
}

.ys-home .ys-podcast__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.ys-home .ys-podcast__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.ys-home .ys-podcast__titles {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.ys-home .ys-podcast__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  margin: 0;
}

.ys-home .ys-podcast__subheading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem;
  font-weight: 400;
  color: #64748b;
  margin: 0;
}

.ys-home .ys-podcast__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #0f172a;
  text-decoration: none;
  white-space: nowrap;
}

.ys-home .ys-podcast__link span {
  font-size: 1.125rem;
  color: #3B82F6;
}

.ys-home .ys-podcast__link:hover {
  color: #3B82F6;
}

/* Deconstructed bento grid — 9 cards, varied sizes */
.ys-home .ys-podcast__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 1rem;
}

/* Featured card spans 2 cols */
.ys-home .ys-podcast__card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* Card base */
.ys-home .ys-podcast__card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ys-home .ys-podcast__card-thumb-wrap {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.ys-home .ys-podcast__card-thumb {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%);
  transition: filter .3s ease, transform .3s ease;
}

.ys-home .ys-podcast__card:hover .ys-podcast__card-thumb {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.ys-home .ys-podcast__card--featured .ys-podcast__card-thumb {
  min-height: 100%;
}

/* Play button on featured */
.ys-home .ys-podcast__card-play {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform .2s ease;
  z-index: 2;
}

.ys-home .ys-podcast__card-play:hover {
  transform: scale(1.1);
}

.ys-home .ys-podcast__card-play svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

/* Card info overlay at bottom */
.ys-home .ys-podcast__card-info {
  padding: .75rem 0 .25rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.ys-home .ys-podcast__card-company {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #0f172a;
}

.ys-home .ys-podcast__card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 400;
  color: #64748b;
  line-height: 1.4;
}

/* Podcast modal */
.ys-home .ys-podcast__modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.ys-home .ys-podcast__modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.ys-home .ys-podcast__modal-player {
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  cursor: default;
}

.ys-home .ys-podcast__modal-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Podcast responsive ── */
@media screen and (max-width: 991px) {
  .ys-home .ys-podcast__heading {
    font-size: 2.5rem;
  }
  .ys-home .ys-podcast__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ys-home .ys-podcast__card--featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media screen and (max-width: 767px) {
  .ys-home .ys-podcast {
    padding: 3.5rem 0;
  }
  .ys-home .ys-podcast__container {
    padding: 0 1.5rem;
  }
  .ys-home .ys-podcast__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .ys-home .ys-podcast__heading {
    font-size: 2rem;
  }
  .ys-home .ys-podcast__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ys-home .ys-podcast__card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .ys-home .ys-podcast__card-thumb {
    min-height: 140px;
  }
}

/* ─────────────────────────────────────────────────────────────
   CTA — "Échangeons sur votre projet !"
   Original: .cta_component.is-v3  — blue gradient banner
   ───────────────────────────────────────────────────────────── */
.ys-home .ys-cta {
  padding: 5rem 0;
  background: #f8f9fb;
}

.ys-home .ys-cta__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.ys-home .ys-cta__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #0f172a;
  overflow: hidden;
}

.ys-home .ys-cta__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 4rem;
  justify-content: center;
}

.ys-home .ys-cta__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}

.ys-home .ys-cta__subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.ys-home .ys-cta__expertises {
  display: flex;
  gap: 1.5rem;
}

.ys-home .ys-cta__expertise {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.ys-home .ys-cta__expertise-icon {
  width: 20px;
  height: 20px;
  opacity: .8;
}

.ys-home .ys-cta__expertise-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.ys-home .ys-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .875rem 2rem;
  background: #3B82F6;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
  align-self: flex-start;
}

.ys-home .ys-cta__btn:hover {
  background: #2563EB;
}

.ys-home .ys-cta__steps {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  letter-spacing: 0.01em;
}

.ys-home .ys-cta__visual {
  position: relative;
  min-height: 320px;
}

.ys-home .ys-cta__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ─────────────────────────────────────────────────────────────
   EXPERTISES — "Ce qu'on construit"
   Original: .section_home-expertises .home-expertises
   Blue gradient background, heading left + nav cards right
   ───────────────────────────────────────────────────────────── */
.ys-home .ys-expertises {
  padding: 5rem 0;
}

.ys-home .ys-expertises__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.ys-home .ys-expertises__header {
  margin-bottom: 2.5rem;
}

.ys-home .ys-expertises__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  margin: 0;
}

.ys-home .ys-expertises__highlight {
  color: #3B82F6;
}

.ys-home .ys-expertises__subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem;
  font-weight: 400;
  color: #64748b;
  margin: .25rem 0 0;
}

.ys-home .ys-expertises__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ys-home .ys-expertise-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.5rem;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.ys-home .ys-expertise-card:hover {
  border-color: #3B82F6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

.ys-home .ys-expertise-card__icon {
  width: 40px;
  height: 40px;
}

.ys-home .ys-expertise-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.ys-home .ys-expertise-card__desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

.ys-home .ys-expertise-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .5rem;
  border-top: 1px solid #f1f5f9;
}

.ys-home .ys-expertise-card__stat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.01em;
}

.ys-home .ys-expertise-card__link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  color: #3B82F6;
}

/* ─────────────────────────────────────────────────────────────
   VIDEO POPUP — Fullscreen modal
   ───────────────────────────────────────────────────────────── */
.ys-home .ys-video-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
}

.ys-home .ys-video-popup__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
}

.ys-home .ys-video-popup__player {
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
}

.ys-home .ys-video-popup__player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (max-width: 991px)
   ═══════════════════════════════════════════════════════════════ */
@media screen and (max-width: 991px) {
  /* Hero — tablet */
  .ys-home .ys-hero__inner {
    padding-top: 8rem;
    padding-bottom: 3rem;
  }

  .ys-home .ys-hero__heading {
    font-size: 2.25rem;
  }

  /* Method */
  .ys-home .ys-method__container {
    padding: 3.5rem 2.5rem;
  }

  .ys-home .ys-method__heading {
    font-size: 1.75rem;
  }

  .ys-home .ys-method__cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ys-home .ys-method__col {
    padding: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
  }

  .ys-home .ys-method__col:first-child {
    border-top: none;
    padding-top: 0;
  }

  /* Testimonials */
  .ys-home .ys-testimonials__inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .ys-home .ys-testimonial-row {
    gap: 2rem;
  }

  .ys-home .ys-testimonial-row__left {
    flex: 0 0 45%;
  }

  /* Expertises */
  .ys-home .ys-expertises__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA */
  .ys-home .ys-cta__card {
    grid-template-columns: 1fr;
  }
  .ys-home .ys-cta__visual {
    min-height: 250px;
  }

  /* Trust */
  .ys-home .ys-trust__video-content {
    flex-direction: column;
  }

  /* Press */
  .ys-home .ys-press__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile Landscape (max-width: 767px)
   ═══════════════════════════════════════════════════════════════ */
@media screen and (max-width: 767px) {
  /* Global padding — mobile landscape */
  .ys-home .ys-hero__padding-global,
  .ys-home .ys-video__wrap,
  .ys-home .ys-method__inner,
  .ys-home .ys-testimonials__wrap,
  .ys-home .ys-expertises__container,
  .ys-home .ys-trust__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Hero — mobile landscape */
  .ys-home .ys-hero__inner {
    padding: 7rem 1.25rem 2.5rem;
  }

  .ys-home .ys-hero__heading {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }

  .ys-home .ys-hero__subtitle {
    font-size: .9375rem;
  }

  .ys-home .ys-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .ys-home .ys-hero__btn-primary,
  .ys-home .ys-hero__btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Method */
  .ys-home .ys-method__container {
    padding: 2.5rem 1.5rem;
  }

  .ys-home .ys-method__heading {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
  }

  .ys-home .ys-method__cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ys-home .ys-method__col {
    padding: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
  }

  .ys-home .ys-method__col:first-child {
    border-top: none;
    padding-top: 0;
  }

  /* Testimonials */
  .ys-home .ys-testimonials__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .ys-home .ys-testimonials__container {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .ys-home .ys-testimonials__heading {
    font-size: 1.5rem;
  }

  .ys-home .ys-testimonials__list {
    gap: 3rem;
  }

  .ys-home .ys-testimonial-row {
    flex-direction: column;
    gap: 2.5rem;
  }

  .ys-home .ys-testimonial-row__left {
    flex: none;
    width: 100%;
  }

  .ys-home .ys-testimonial-row__stat-value {
    font-size: 2.25rem;
  }

  .ys-home .ys-testimonial-row__play {
    width: 44px;
    height: 44px;
  }

  /* CTA */
  .ys-home .ys-cta {
    padding: 3.5rem 0;
  }
  .ys-home .ys-cta__container {
    padding: 0 1.5rem;
  }
  .ys-home .ys-cta__content {
    padding: 2.5rem 1.5rem;
  }
  .ys-home .ys-cta__expertises {
    display: none;
  }
  .ys-home .ys-cta__heading {
    font-size: 1.5rem;
  }

  /* Expertises */
  .ys-home .ys-expertises {
    padding: 3.5rem 0;
  }
  .ys-home .ys-expertises__container {
    padding: 0 1.5rem;
  }
  .ys-home .ys-expertises__heading {
    font-size: 1.625rem;
    line-height: 1.13;
  }
  .ys-home .ys-expertises__grid {
    grid-template-columns: 1fr;
  }

  /* Press */
  .ys-home .ys-press__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .ys-home .ys-press {
    padding: 3rem 0;
  }
  .ys-home .ys-press__container {
    padding: 0 1.5rem;
  }

  /* Trust */
  .ys-home .ys-trust__container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile Portrait (max-width: 479px)
   ═══════════════════════════════════════════════════════════════ */
@media screen and (max-width: 479px) {
  /* Hero — mobile portrait */
  .ys-home .ys-hero__heading {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .ys-home .ys-hero__subtitle {
    font-size: .875rem;
  }

  /* Method */
  .ys-home .ys-method__heading {
    font-size: 1.25rem;
  }

  /* Testimonials */
  .ys-home .ys-testimonials__heading {
    font-size: 1.3rem;
  }

  .ys-home .ys-testimonial-row__stat-value {
    font-size: 2rem;
  }

  .ys-home .ys-testimonial-row__quote {
    font-size: 1rem;
  }

  .ys-home .ys-testimonial-row__badge {
    padding: .5rem .75rem;
    gap: .625rem;
  }

  .ys-home .ys-testimonial-row__logo {
    height: 28px;
  }

  /* Testimonials */
  .ys-home .ys-testimonial-row__stat-value {
    font-size: 1.5rem;
  }
}
