:root {
  --bg: #fafbfc;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --accent: #6f8539;
  --accent-soft: #f1f3e8;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.3);
  --font: "Outfit", system-ui, -apple-system, sans-serif;
  --sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --max: 1180px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background-color: var(--bg);
  background-image: radial-gradient(
    ellipse 120% 85% at 0% 0%,
    rgba(111, 133, 57, 0.14) 0%,
    rgba(111, 133, 57, 0.05) 10%,
    transparent 50%
  );
  background-repeat: no-repeat;
  background-attachment: fixed;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--accent);
  text-decoration: none;
}
h1,
h2,
h3 {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
  overflow-wrap: break-word;
	word-break: break-word;
}
h1 {
  font-size: clamp(1.375rem, 4.2vw, 60px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}
h3 {
  font-size: 1.15rem;
}
p {
  margin: 0 0 1em;
}
ul {
  margin: 0 0 1em;
  padding-left: 1.2em;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wrap {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo:hover {
  color: var(--ink);
}
.logo__mark {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
@media (max-width: 1220px) {
  .burger {
    display: flex;
  }
  .site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 62px;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 24px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
}
.hero {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: clamp(36px, 5vw, 56px);
  min-height: clamp(360px, 62vh, 680px);
  background: #020617;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #020617;
  background-size: cover;
  background-position: center 22%;
  background-repeat: no-repeat;
  transform: scale(1.02);
  opacity: 1;
  transition: opacity 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
      ellipse 125% 95% at 50% 20%,
      rgba(2, 6, 23, 0.38) 0%,
      rgba(2, 6, 23, 0.62) 40%,
      rgba(2, 6, 23, 0.97) 100%
    ),
    linear-gradient(180deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.42) 28%, rgba(2, 6, 23, 0.48) 44%, rgba(2, 6, 23, 0.98) 100%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.82) 0%, rgba(2, 6, 23, 0.28) 16%, rgba(2, 6, 23, 0.28) 84%, rgba(2, 6, 23, 0.82) 100%);
  pointer-events: none;
}
.hero-strip {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;
  width: clamp(48px, 7.5vw, 100px);
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  color: rgba(248, 250, 252, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.28s ease;
}
.hero-strip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -4px;
  z-index: 6;
}
.hero-strip--prev {
  left: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.5) 58%, rgba(2, 6, 23, 0) 100%);
}
.hero-strip--next {
  right: 0;
  background: linear-gradient(270deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.5) 58%, rgba(2, 6, 23, 0) 100%);
}
.hero-strip:hover {
  color: #fff;
}
.hero-strip--prev:hover {
  background: linear-gradient(90deg, rgb(0 0 0 / 73%) 0%, rgb(0 0 0 / 0%) 100%);
}
.hero-strip--next:hover {
  background: linear-gradient(270deg, rgb(0 0 0 / 73%) 0%, rgb(0 0 0 / 0%) 100%);
}
.hero-strip__ico {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
  transition: transform 0.22s ease;
}
.hero-strip--prev:hover .hero-strip__ico {
  transform: translateX(-4px);
}
.hero-strip--next:hover .hero-strip__ico {
  transform: translateX(4px);
}
.hero-slider {
  position: relative;
  z-index: 2;
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  min-height: clamp(360px, 62vh, 680px);
  isolation: isolate;
}
.hero .slider-viewport {
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
}
.hero .slider-track {
  display: block;
  position: relative;
  flex: 1;
  min-height: clamp(360px, 62vh, 680px);
}
.hero .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  min-width: unset;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 40px clamp(52px, 9vw, 120px) calc(52px + 3rem) clamp(52px, 9vw, 120px);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.85s cubic-bezier(0.33, 1, 0.68, 1);
}
.hero .slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
  transition: opacity 0.85s cubic-bezier(0.33, 1, 0.68, 1);
}
.slide-body {
  width: min(36rem, 100%);
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(0.5rem, 2vw, 1rem);
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero .slide .slide-body {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  filter: blur(12px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
  transition-delay: 0s;
}
.hero .slide.is-active .slide-body {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: 0.32s, 0.32s, 0.28s;
}
.hero .slide:not(.is-active) .slide-body {
  transition-duration: 0.35s, 0.4s, 0.3s;
  transition-delay: 0s;
}
@media (prefers-reduced-motion: reduce) {
  .hero .slide {
    transition-duration: 0.2s;
  }
  .hero .slide.is-active {
    transition-duration: 0.2s;
  }
  .hero .slide .slide-body,
  .hero .slide.is-active .slide-body {
    filter: none;
    transition-duration: 0.2s;
    transition-delay: 0s !important;
  }
  .hero-bg {
    transition-duration: 0.15s;
  }
}
.hero .slider-controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 6;
  width: min(calc(100% - 32px), 380px);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 26px;
  margin: 0;
  pointer-events: auto;
}
.hero .slider-dot {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  height: 4px;
  border-radius: 999px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(248, 250, 252, 0.22);
  transition: background 0.45s cubic-bezier(0.33, 1, 0.68, 1), height 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.45s ease, flex 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.hero .slider-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #6f8539;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  opacity: 0;
}
.hero .slider-dot:hover {
  background: rgba(248, 250, 252, 0.38);
}
.hero .slider-dot.is-active {
  flex: 1.45;
  height: 5px;
  box-shadow: 0 0 18px rgba(111, 133, 57, 0.35);
}
.hero .slider-dot.is-active::after {
  opacity: 1;
  transform: scaleX(0);
}
.hero .slider-dot.is-active.slider-dot--fill::after {
  animation: hero-slider-dot-fill var(--hero-slide-ms, 8200ms) linear forwards;
}
@keyframes hero-slider-dot-fill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero .slider-dot.is-active::after {
    transform: scaleX(1);
  }
  .hero .slider-dot.is-active.slider-dot--fill::after {
    animation: none;
  }
}
@media (max-width: 720px) {
  .hero {
    min-height: clamp(300px, 52vh, 520px);
  }
  .hero-slider {
    min-height: clamp(300px, 52vh, 520px);
  }
  .hero .slider-track {
    min-height: clamp(300px, 52vh, 520px);
  }
  .hero-bg::before {
    background: radial-gradient(ellipse 100% 85% at 50% 18%, rgba(2, 6, 23, 0.4) 0%, rgba(2, 6, 23, 0.65) 46%, rgba(2, 6, 23, 0.98) 100%),
      linear-gradient(180deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.48) 24%, rgba(2, 6, 23, 0.52) 42%, rgba(2, 6, 23, 0.99) 100%),
      linear-gradient(90deg, rgba(2, 6, 23, 0.78) 0%, rgba(2, 6, 23, 0.32) 12%, rgba(2, 6, 23, 0.32) 88%, rgba(2, 6, 23, 0.78) 100%);
  }
  .hero-strip {
    width: clamp(40px, 11vw, 72px);
  }
  .hero .slide {
    padding: 28px clamp(40px, 11vw, 72px) calc(40px + 2.35rem) clamp(40px, 11vw, 72px);
    justify-content: center;
  }
  .hero .slider-controls {
    width: min(calc(100% - 24px), 320px);
    padding-bottom: 18px;
  }
}
.slide-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  padding: 7px 14px;
  border-radius: 999px;
  color: rgba(248, 250, 252, 0.95);
  background: rgba(248, 250, 252, 0.1);
  border: 1px solid rgba(248, 250, 252, 0.14);
  text-shadow: none;
}
.hero .slide-body h1 {
  color: #fff;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.65), 0 4px 40px rgba(0, 0, 0, 0.45);
}
.slide-body p {
  color: #f1f5f9;
  margin-bottom: 22px;
  max-width: 44ch;
  margin-inline: auto;
  font-size: 1.02rem;
  line-height: 1.58;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55), 0 2px 28px rgba(0, 0, 0, 0.35);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: #f8fafc;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover {
  color: var(--accent);
}
.btn-ghost {
  background: transparent;
  color: #f8fafc;
  border: 1px solid rgba(248, 250, 252, 0.35);
}
.hero .slide-body .btn-primary {
  background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.hero .slide-body .btn-ghost {
  border-color: rgba(248, 250, 252, 0.28);
  background: rgba(248, 250, 252, 0.06);
}
.hero .slide-body .btn-ghost:hover {
  background: rgba(248, 250, 252, 0.12);
  border-color: rgba(248, 250, 252, 0.45);
}
.section {
  padding: 20px 0 48px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
  font-size: 0.95rem;
}
.carousel-wrap {
  position: relative;
}
.carousel {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.carousel::-webkit-scrollbar {
  height: 6px;
}
.carousel::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 99px;
}
.carousel-nav {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.carousel-nav button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card-poster {
  display: block;
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #e2e8f0;
}
.card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.section-posters-low .card-poster {
  aspect-ratio: 4 / 5;
}
.section-posters-low .carousel .card-promo {
  aspect-ratio: 4 / 5;
  max-height: 280px;
}
.card:hover .card-poster img {
  transform: scale(1.04);
}
.card-body {
  flex: 0 1 auto;
  min-width: 0;
  padding: 14px 16px 16px;
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.ratings {
  display: flex;
  gap: 10px;
  align-items: center;
}
.ratings span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  text-decoration: none;
}
.tag-muted {
  background: #f1f5f9;
  color: var(--muted);
}
.card-promo {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: #f8fafc;
  min-width: 260px;
  scroll-snap-align: start;
  flex: 0 0 auto;
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 2 / 3;
  max-height: 420px;
}
.card-promo h3 {
  color: #fff;
  margin-bottom: 8px;
}
.card-promo p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.grid-4 {
  display: grid;
  align-items: start;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.grid-3 {
  display: grid;
  align-items: start;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.pick-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 200px;
  border: 1px solid var(--line);
}
.pick-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.pick-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.88));
}
.pick-card .pick-body {
  position: relative;
  z-index: 1;
  padding: 20px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
}
.pick-card h3 {
  color: #fff;
  margin-bottom: 6px;
}
.pick-card p {
  color: #e2e8f0;
  font-size: 0.88rem;
  margin: 0;
}
.article-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  transition: box-shadow 0.2s;
}
.article-row:hover {
  box-shadow: var(--shadow);
}
.article-row img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}
.subscribe-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.subscribe-block h2 {
  margin-bottom: 8px;
}
.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
}
.subscribe-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font: inherit;
}
.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}
.checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.site-footer {
  margin-top: 56px;
  padding: 40px 0 28px;
  background: #0f172a;
  color: #cbd5e1;
  font-size: 0.9rem;
}
.site-footer a {
  color: #e2e8f0;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
}
.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 1fr 1fr;
}
.footer-brand {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.38rem;
  color: #6f8539;
  margin-bottom: 10px;
}
.footer-contact {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}
.footer-contact--addr {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 0.85em;
}
.footer-contact__ico {
  flex-shrink: 0;
  display: flex;
  margin-top: 2px;
}
.footer-contact__ico img {
  display: block;
  width: 20px;
  height: 20px;
}
.footer-contact--telmail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.footer-contact__line--phone,
.footer-contact__line--mail {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-disclaimer {
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-top: 12px;
  max-width: 40ch;
}
.site-footer h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  font-family: var(--sans);
  font-weight: 600;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-external {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 8px;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px;
  background: rgba(15, 23, 42, 0.96);
  color: #e2e8f0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.9rem;
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner p {
  margin: 0;
  max-width: 640px;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}
.filters {
  position: sticky;
  top: 80px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.filters h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.filter-group {
  margin-bottom: 20px;
}
.filter-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
}
select,
input[type="range"] {
  width: 100%;
  font: inherit;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f8fafc;
  cursor: pointer;
  font-family: inherit;
}
.chip.is-on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.results-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-bottom: 16px;
}
.results-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.results-chips button {
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
}
.results-chips button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.catalog-empty {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: var(--muted);
}
.card-catalog .card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.pop-tags a {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
}
.pop-tags a:hover {
  border-color: var(--accent);
}
.page-hero {
  padding: 32px 0 8px;
}
.page-hero h1 {
  margin-bottom: 8px;
}
.page-hero p {
  color: var(--muted);
  max-width: 60ch;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}
.sidebar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 80px;
}
.sidebar a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}
.sidebar a:hover,
.sidebar a.is-active {
  color: var(--accent);
}
.sidebar .article-rubric {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 0;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
.sidebar .article-rubric:hover,
.sidebar .article-rubric.is-active {
  color: var(--accent);
}
.article-rubrics-nav .article-rubric:last-child {
  border-bottom: none;
}
.article-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article-card .thumb {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article-card .pad {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  width: fit-content;
}
.badge-vrai {
  background: #dbeafe;
  color: #1d4ed8;
}
.badge-reel {
  background: #eef1e4;
  color: #55682d;
}
.badge-psy {
  background: #fce7f3;
  color: #be185d;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 16px;
  aspect-ratio: 16 / 9;
  max-height: 320px;
}
.map-embed iframe,
.map-embed img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.map-embed iframe {
  display: block;
  min-height: 240px;
}
.contact-map-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  margin-top: 16px;
}
.contact-map-form .map-embed {
  flex: 1.15 1 260px;
  margin-top: 0;
  min-width: 0;
  min-height: 0;
  aspect-ratio: unset;
  max-height: none;
  display: flex;
  flex-direction: column;
}
.contact-map-form .map-embed iframe {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
}
.contact-form {
  flex: 1 1 260px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin: 0;
  min-width: 0;
}
.contact-form h3:first-of-type {
  margin-top: 0;
}
@media (max-width: 820px) {
  .contact-map-form {
    flex-direction: column;
  }
  .contact-map-form .map-embed {
    flex: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: min(360px, 55vh);
  }
  .contact-map-form .map-embed iframe {
    flex: none;
    min-height: 220px;
    height: 100%;
  }
}
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 0 56px;
}
.legal-page h1 {
  margin-bottom: 16px;
}
.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 28px;
}
.banner-week {
  background: linear-gradient(90deg, #0f172a, #334155);
  color: #f8fafc;
  border-radius: var(--radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
}
.banner-week h2 {
  color: #fff;
}
.banner-week p {
  color: #cbd5e1;
  margin: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
}
.team-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.step strong {
  display: block;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 8px;
}
@media (max-width: 1220px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .filters {
    position: static;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 820px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .article-row {
    grid-template-columns: 1fr;
  }
  .article-row img {
    height: 180px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .banner-week {
    grid-template-columns: 1fr;
  }
}
.carousel .card,
.carousel .card-promo {
  flex: 0 0 200px;
  scroll-snap-align: start;
  max-width: 200px;
  min-width: 0;
}
@media (min-width: 821px) {
  .carousel .card,
  .carousel .card-promo {
    flex-basis: 220px;
    max-width: 220px;
  }
}
.section-posters-low .carousel .card-body {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.section-posters-low .carousel .card-body h3 {
  font-size: clamp(0.92rem, 3.4vw, 1.05rem);
  line-height: 1.28;
  margin-bottom: 6px;
}
.section-posters-low .carousel .card-body h3 a {
  display: inline;
}
.section-posters-low .carousel .card-meta {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
}
.section-posters-low .carousel .ratings {
  flex-wrap: wrap;
  gap: 6px 10px;
}
.section-posters-low .carousel .tags {
  gap: 5px;
}
@media (max-width: 720px) {
  .carousel .card,
  .carousel .card-promo {
    flex: 0 0 min(228px, 86vw);
    max-width: min(228px, 86vw);
  }
  .section-posters-low .carousel .card-body {
    padding: 12px 12px 14px;
  }
}

/* Page Meilleures Plateformes (/top) — partenaires */
.top-page h1,
.top-page h2,
.top-page h3 {
  overflow-wrap: break-word;
  word-break: break-word;
}
.top-page__hero-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.top-page__hero-intro {
  min-width: 0;
}
.top-page__hero-intro h1 {
  margin: 0;
}
.top-page .c8SSpq__top {
  width: 100%;
  min-width: 0;
}
.top-page .c8SSpq__top .c8SSpq__container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.top-page__top-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.top-page__top-list > li {
  margin: 0;
  padding: 0;
}
.top-page .c8SSpq__top .c8SSpq__article {
  border-radius: 18px;
  border: 1px solid #0d5c3a;
  background: linear-gradient(180deg, #f4f6f0 0%, var(--surface) 55%);
  padding: 22px 18px;
  display: grid;
  grid-template-columns: minmax(100px, 0.95fr) minmax(0, 1.2fr) auto minmax(130px, 1fr);
  align-items: center;
  gap: 12px clamp(10px, 2vw, 28px);
  width: 100%;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.top-page .c8SSpq__top .c8SSpq__article > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}
.top-page .c8SSpq__top .c8SSpq__img-container {
  align-items: center;
  justify-content: center;
  height: 100%;
}
.top-page .c8SSpq__top .c8SSpq__img-container img {
  object-fit: contain;
  width: 100%;
  max-width: 200px;
  height: auto;
  max-height: 56px;
}
.top-page .c8SSpq__top .c8SSpq__bonus {
  font-size: clamp(0.88rem, 0.78rem + 0.45vw, 1.2rem);
  line-height: 1.25;
  text-align: center;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--sans);
}
.top-page .c8SSpq__top .c8SSpq__bonus a {
  color: inherit;
  text-decoration: none;
}
.top-page .c8SSpq__top .c8SSpq__bonus a:hover {
  text-decoration: underline;
}
.top-page .c8SSpq__top .c8SSpq__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  color: var(--ink);
  font-family: var(--font);
  font-weight: 600;
}
.top-page .c8SSpq__top .c8SSpq__rating .c8SSpq__score {
  font-size: clamp(1.35rem, 1rem + 1.5vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.top-page .c8SSpq__top .c8SSpq__rating .c8SSpq__score-suffix {
  font-size: 0.52em;
  font-weight: 600;
  opacity: 0.72;
  margin-left: 0.06em;
}
.top-page .c8SSpq__top .c8SSpq__stars {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}
.top-page .c8SSpq__top .c8SSpq__stars--10 {
  gap: 3px;
  max-width: 11.5rem;
}
.top-page .c8SSpq__top .c8SSpq__stars img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.top-page .c8SSpq__top .c8SSpq__stars--10 img {
  width: 14px;
  height: 14px;
}
.top-page .c8SSpq__top .c8SSpq__btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.top-page .c8SSpq__top .c8SSpq__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-page .c8SSpq__top .c8SSpq__pay li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 22px;
  padding: 2px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid var(--line);
}
.top-page .c8SSpq__top .c8SSpq__pay li img {
  object-fit: contain;
  width: 26px;
  height: 16px;
}
.top-page .c8SSpq__top .c8SSpq__top-cta {
  width: 100%;
  max-width: 220px;
}
@media (hover: hover) {
  .top-page .c8SSpq__top .c8SSpq__article:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  }
}
@media (max-width: 820px) {
  .top-page .c8SSpq__top .c8SSpq__article {
    grid-template-columns: 1fr;
    padding: 18px 14px;
    justify-items: center;
    text-align: center;
  }
  .top-page .c8SSpq__top .c8SSpq__rating {
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top-page .c8SSpq__top .c8SSpq__pay {
    display: none;
  }
  .top-page .c8SSpq__top .c8SSpq__top-cta {
    max-width: none;
  }
}
.top-page__section {
  margin-bottom: 40px;
}
.top-page__how-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 40px;
  align-items: start;
}
.top-page__how-benefits-col {
  min-width: 0;
}
.top-page__bullets,
.top-page__steps,
.top-page__benefits {
  margin: 0;
  padding-left: 1.25rem;
  max-width: 72ch;
}
.top-page__how-benefits-col .top-page__steps,
.top-page__how-benefits-col .top-page__benefits {
  max-width: none;
}
.top-page__bullets li,
.top-page__steps li,
.top-page__benefits li {
  margin-bottom: 10px;
}
.top-page__muted {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 65ch;
}
.top-page__trust {
  padding: 24px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.top-page__disclaimer {
  padding: 20px 22px;
  background: var(--accent-soft);
  border: 1px solid rgba(111, 133, 57, 0.25);
  border-radius: var(--radius);
  max-width: 72ch;
}
.top-page__disclaimer h2 {
  margin: 0 0 14px;
  font-size: 1.15rem;
}
.top-page__disclaimer p {
  margin: 0 0 12px;
}
.top-page__disclaimer p:last-child {
  margin-bottom: 0;
}
.top-page__disclaimer-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.top-page__disclaimer-form-row .top-page__disclaimer {
  max-width: none;
  margin: 0;
}
.top-page__partner-form-col {
  min-width: 0;
}
.top-page__partner-form-col .partner-form > h2 {
  margin: 0 0 14px;
  font-size: 1.15rem;
}
.top-page__disclaimer-form-row .partner-form {
  max-width: none;
}
.partner-form {
  max-width: 560px;
}
.c8SSpq__logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 28px;
}
.c8SSpq__logos li {
  margin: 0;
  padding: 0;
}
.c8SSpq__logos a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.c8SSpq__logos img {
  display: block;
  width: auto;
  height: auto;
  max-height: 44px;
}
@media (max-width: 820px) {
  .top-page__hero-intro {
    text-align: center;
  }
  .top-page__how-benefits-grid {
    grid-template-columns: 1fr;
  }
  .top-page__disclaimer-form-row {
    grid-template-columns: 1fr;
  }
}

/* Toasts formulaires */
.vc-toast-host {
  position: fixed;
  top: 88px;
  left: 16px;
  right: 16px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.vc-toast {
  max-width: min(100%, 400px);
  width: 100%;
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
  filter: blur(2px);
  transition: none;
  will-change: transform, opacity, filter;
}
.vc-toast--in {
  animation: vc-toast-enter 0.58s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.vc-toast--out {
  animation: vc-toast-leave 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;
}
@keyframes vc-toast-enter {
  0% {
    opacity: 0;
    transform: translateY(-14px) scale(0.94);
    filter: blur(3px);
  }
  55% {
    opacity: 1;
    transform: translateY(3px) scale(1.02);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes vc-toast-leave {
  to {
    opacity: 0;
    transform: translateY(-10px) scale(0.96);
    filter: blur(2px);
  }
}
.vc-toast__inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  border-radius: 14px;
  background: linear-gradient(155deg, #1e293b 0%, #0f172a 55%, #0f172a 100%);
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(111, 133, 57, 0.28);
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: left;
}
.vc-toast__ico {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e8eed3;
  background: rgba(111, 133, 57, 0.35);
  border: 1px solid rgba(111, 133, 57, 0.45);
}
.vc-toast__txt {
  flex: 1;
  min-width: 0;
  padding-top: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .vc-toast {
    filter: none;
    transition: opacity 0.2s ease;
  }
  .vc-toast--in {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .vc-toast--out {
    animation: none;
    opacity: 0;
    transform: none;
  }
}

/* Assistant IA (panneau flottant) */
.vc-ai-chat-root[hidden] {
  display: none !important;
}
.vc-ai-chat-root:not([hidden]) {
  display: block;
}
.vc-ai-chat-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(15, 23, 42, 0.4);
  cursor: pointer;
}
.vc-ai-chat-panel {
  position: fixed;
  right: 16px;
  bottom: 152px;
  z-index: 56;
  width: min(100vw - 32px, 400px);
  max-height: min(70vh, 520px);
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: var(--shadow), 0 0 0 1px rgba(15, 23, 42, 0.3);
  font-family: var(--sans);
  overflow: hidden;
}
.vc-ai-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--accent-soft);
}
.vc-ai-chat-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--sans);
}
.vc-ai-chat-x {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vc-ai-chat-x:hover {
  background: rgba(111, 133, 57, 0.16);
  color: var(--accent);
}
.vc-ai-chat-msgs {
  flex: 1;
  min-height: 120px;
  max-height: 340px;
  overflow-y: auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vc-ai-chat-msg {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 95%;
  word-break: break-word;
}
.vc-ai-chat-msg--assistant {
  align-self: flex-start;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
}
.vc-ai-chat-msg--user {
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
}
.vc-ai-chat-typing {
  font-style: italic;
  color: var(--muted);
}
.vc-ai-chat-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 14px 12px;
  border-top: 1px solid var(--line);
  align-items: flex-end;
}
.vc-ai-chat-form textarea {
  flex: 1 1 200px;
  min-height: 44px;
  max-height: 120px;
  resize: vertical;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
}
.vc-ai-chat-form textarea:focus {
  outline: 2px solid rgba(111, 133, 57, 0.42);
  outline-offset: 1px;
}
.vc-ai-chat-send {
  flex-shrink: 0;
}
.vc-ai-chat-foot {
  margin: 0;
  padding: 0 14px 12px;
  font-size: 0.8rem;
  color: var(--muted);
}
.vc-ai-chat-foot a {
  color: var(--accent);
  font-weight: 600;
}
@media (max-width: 520px) {
  .vc-ai-chat-panel {
    right: 16px;
    left: 16px;
    width: auto;
    bottom: 148px;
  }
}
