/* Quadro Extreme — страница подарочного сертификата (page-sertifikat.php).
   Фирменная палитра: тёмный фон + неоновый зелёный. Классы .cert-*.
   Форма-заявка переиспользует .booking-* из components.css. */

.cert-page { background: var(--black, #0d0d0d); }

/* ─── Общие блоки секций ─── */
.cert-section { padding: 72px 24px; }
.cert-container { max-width: 1100px; margin: 0 auto; }
.cert-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green, #6bff2a);
  margin-bottom: 10px;
}
.cert-h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white, #f0f0f0);
  margin: 0 0 14px;
}
.cert-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted, #a0a0a0);
  max-width: 620px;
  margin: 0 0 40px;
}

/* ─── Кнопки ─── */
.cert-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.14s ease, background 0.18s ease, color 0.18s ease;
}
.cert-btn--primary { background: var(--green, #6bff2a); color: #0d0d0d; }
.cert-btn--primary:hover { background: #7dff45; transform: translateY(-2px); }
.cert-btn--ghost { background: transparent; border-color: rgba(107,255,42,0.5); color: var(--green, #6bff2a); }
.cert-btn--ghost:hover { background: rgba(107,255,42,0.12); transform: translateY(-2px); }
.cert-btn--card {
  display: block;
  width: 100%;
  text-align: center;
  background: rgba(107,255,42,0.1);
  border-color: rgba(107,255,42,0.4);
  color: var(--green, #6bff2a);
  font-size: 16px;
  padding: 13px;
}
.cert-btn--card:hover { background: rgba(107,255,42,0.2); }

/* ─── HERO ─── */
.cert-hero {
  padding: 40px 24px 64px;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(107,255,42,0.1) 0%, transparent 60%),
    var(--black, #0d0d0d);
}
.cert-hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.cert-hero__text .breadcrumbs { margin-bottom: 20px; }
.cert-hero__badge {
  display: inline-block;
  background: rgba(107,255,42,0.14);
  color: var(--green, #6bff2a);
  border: 1px solid rgba(107,255,42,0.4);
  border-radius: 40px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cert-hero__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--white, #f0f0f0);
  margin: 0 0 18px;
}
.cert-hero__title span { color: var(--green, #6bff2a); }
.cert-hero__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted, #a0a0a0);
  max-width: 520px;
  margin: 0 0 28px;
}
.cert-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.cert-hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(107, 255, 42, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.cert-hero__trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: #e6e6e6;
}
.cert-hero__trust li + li { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.cert-hero__trust svg { flex: none; width: 20px; height: 20px; color: var(--green, #6bff2a); }
.cert-hero__media { position: relative; }
.cert-hero__media img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(107,255,42,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 6px rgba(107,255,42,0.04);
  display: block;
}

/* ─── EMOTIONS (галерея заездов) ─── */
.cert-emotions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.cert-emotions__item {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 1 / 1;
}
.cert-emotions__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.45s ease;
}
.cert-emotions__item:hover img { transform: scale(1.05); }
@media (max-width: 520px) {
  .cert-emotions__grid { grid-template-columns: 1fr; gap: 12px; }
  .cert-emotions__item { aspect-ratio: 4 / 3; }
}
.cert-emotions .cert-note a { color: var(--green, #6bff2a); }

/* ─── WHY ─── */
.cert-why { background: var(--dark, #141414); }
/* Bento-сетка выгод «Идеальный подарок» */
.cert-bento {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(180px, auto));
  grid-template-areas:
    "a a c stat"
    "d d e stat";
}
.cert-bento .is-a { grid-area: a; }
.cert-bento .is-c { grid-area: c; }
.cert-bento .is-d { grid-area: d; }
.cert-bento .is-e { grid-area: e; }
.cert-bento .is-stat { grid-area: stat; }

.cert-bento__tile {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
/* Тонкая неоновая хай-лайн сверху (не «чёрточка») */
.cert-bento__tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 255, 42, 0.55), transparent);
  opacity: 0.55;
}
/* Мягкая подсветка за курсором */
.cert-bento__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, -20%), rgba(107, 255, 42, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cert-bento__tile:hover {
  border-color: rgba(107, 255, 42, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
.cert-bento__tile:hover::after { opacity: 1; }

.cert-bento__title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white, #f0f0f0);
  margin: 0;
}
.cert-bento__text { font-size: 16.5px; line-height: 1.55; color: #e4e4e4; margin: 0; }

/* Feature-плитка — крупнее + мягкое свечение в углу */
.cert-bento__tile--feature {
  background:
    radial-gradient(620px circle at 12% 0%, rgba(107, 255, 42, 0.12), transparent 55%),
    linear-gradient(158deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012));
}
.cert-bento__tile--feature .cert-bento__title { font-size: clamp(28px, 3vw, 36px); }
.cert-bento__tile--feature .cert-bento__text { font-size: 17.5px; max-width: 40ch; }

/* Stat-плитка — крупная цифра */
.cert-bento__tile--stat { justify-content: center; gap: 12px; }
.cert-bento__num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(58px, 6vw, 92px);
  line-height: 0.85;
  color: var(--green, #6bff2a);
}
.cert-bento__num span { color: #fff; opacity: 0.45; font-size: 0.55em; padding: 0 0.06em; }
.cert-bento__num-label { font-size: 15.5px; line-height: 1.45; color: #e4e4e4; margin: 0; max-width: 24ch; }

/* Появление (progressive enhancement — класс вешает JS) */
.cert-bento--anim .cert-bento__tile { opacity: 0; translate: 0 18px; }
.cert-bento--anim .cert-bento__tile.is-in {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.55s ease, translate 0.55s ease;
}

@media (max-width: 900px) {
  .cert-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-template-areas:
      "a a"
      "stat d"
      "stat c"
      "e e";
  }
}
@media (max-width: 560px) {
  .cert-bento {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "stat" "d" "c" "e";
  }
  .cert-bento__tile { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .cert-bento--anim .cert-bento__tile { opacity: 1; translate: none; }
  .cert-bento__tile::after { display: none; }
}

/* ─── VARIANTS ─── */
.cert-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.cert-card {
  position: relative;
  background: var(--card, #1a1a1a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.cert-card:hover { transform: translateY(-4px); }
.cert-card--hit { border-color: var(--green, #6bff2a); box-shadow: 0 0 0 1px var(--green, #6bff2a), 0 20px 50px rgba(0,0,0,0.5); }
.cert-card__badge {
  position: absolute;
  top: -12px;
  left: 26px;
  background: var(--green, #6bff2a);
  color: #0d0d0d;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.cert-card__head { border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 18px; margin-bottom: 18px; }
.cert-card__type {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #a0a0a0);
  margin-bottom: 12px;
}
.cert-card__price { display: flex; align-items: baseline; gap: 6px; }
.cert-card__num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  color: var(--green, #6bff2a);
}
.cert-card__cur { font-size: 18px; font-weight: 700; color: #cfcfcf; }
.cert-card__list { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.cert-card__list li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 14px;
  line-height: 1.5;
  color: #d0d0d0;
}
.cert-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--green, #6bff2a);
  font-weight: 800;
}
.cert-note {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
  color: var(--muted, #a0a0a0);
}
.cert-note--link {
  display: block;
  font-size: 17px;
  color: #e4e4e4;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s ease;
}
.cert-note--link span {
  color: var(--green, #6bff2a);
  border-bottom: 1px solid rgba(107, 255, 42, 0.4);
  padding-bottom: 1px;
  transition: border-color 0.18s ease;
}
.cert-note--link:hover { color: #fff; }
.cert-note--link:hover span { border-bottom-color: var(--green, #6bff2a); }

/* ─── ROUTES (видео заезда + карта-трек в углу) ─── */
.cert-routes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 760px) {
  .cert-routes__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
.cert-route {
  background: var(--card, #1a1a1a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.cert-route:hover { border-color: rgba(107, 255, 42, 0.3); transform: translateY(-3px); }
.cert-route__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}
.cert-route__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.cert-route__map {
  position: absolute;
  right: 10px;
  bottom: 10px;
  box-sizing: border-box;
  width: 104px;
  height: 100px;
  object-fit: contain;
  background: rgba(8, 8, 8, 0.85);
  padding: 3px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}
.cert-route__body { padding: 16px 16px 18px; }
.cert-route__head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.cert-route__name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1;
  color: #fff;
  margin: 0;
}
.cert-route__name span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted, #a0a0a0);
  margin-top: 3px;
}
.cert-route__price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--green, #6bff2a);
  white-space: nowrap;
}
.cert-route__specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 10px; }
.cert-route__specs span {
  font-size: 13px;
  font-weight: 600;
  color: #d0d0d0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px 11px;
}
.cert-route__desc { font-size: 14.5px; line-height: 1.55; color: #cfcfcf; margin: 0; }
.cert-routes__cta { text-align: center; margin-top: 26px; }

/* ─── SHOWCASE (видео сертификата) ─── */
.cert-showcase { background: var(--dark, #141414); }
.cert-showcase__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}
.cert-showcase__video {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(107,255,42,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  background: #000;
  line-height: 0;
}
.cert-showcase__video video { width: 100%; height: auto; display: block; }
.cert-showcase__list { list-style: none; padding: 0; margin: 8px 0 28px; }
.cert-showcase__list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 15px;
  line-height: 1.55;
  color: #d0d0d0;
}
.cert-showcase__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--green, #6bff2a);
  font-weight: 800;
}
.cert-showcase__list strong { color: var(--white, #f0f0f0); }

/* ─── OCCASION TAGS (в блоке «Идеальный подарок») ─── */
.cert-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
.cert-tags__label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted, #a0a0a0);
  margin-right: 4px;
}
.cert-tag {
  font-size: 14px;
  font-weight: 600;
  color: #e4e4e4;
  padding: 7px 15px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.cert-tag:hover { border-color: rgba(107, 255, 42, 0.5); color: #fff; }

/* ─── REVIEWS (виджет Яндекс.Бизнеса) ─── */
.cert-reviews__rating { margin-bottom: 22px; min-height: 50px; }
.cert-reviews__widget {
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #fff;
}
.cert-reviews__widget iframe { width: 100%; height: 100%; border: 0; display: block; }
.cert-reviews__more { margin-top: 24px; text-align: center; }

/* ─── HOW IT WORKS ─── */
.cert-steps { display: grid; gap: 4px; max-width: 720px; }
.cert-step { display: flex; gap: 20px; align-items: flex-start; position: relative; padding-bottom: 28px; }
.cert-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 46px;
  bottom: 0;
  width: 2px;
  background: rgba(107,255,42,0.2);
}
.cert-step__num {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(107,255,42,0.12);
  border: 1px solid rgba(107,255,42,0.5);
  color: var(--green, #6bff2a);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cert-step__body h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white, #f0f0f0);
  margin: 8px 0 6px;
}
.cert-step__body p { font-size: 14px; line-height: 1.55; color: var(--muted, #a0a0a0); margin: 0; }

/* ─── FORM ─── */
.cert-form-section {
  background:
    radial-gradient(700px 400px at 20% 0%, rgba(107,255,42,0.08) 0%, transparent 60%),
    var(--dark, #141414);
}
.cert-form-wrap { max-width: 640px; }
.cert-form-intro { text-align: center; margin-bottom: 8px; }
.cert-form-intro .cert-lead { margin-left: auto; margin-right: auto; }
.cert-form {
  background: var(--black, #0d0d0d);
  border: 1px solid rgba(107,255,42,0.2);
  border-radius: 18px;
  padding: 32px 30px;
}
@media (max-width: 600px) { .cert-form { padding: 22px 18px; } }


/* Способ получения (радио-карточки) */
.cert-delivery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 640px) { .cert-delivery { grid-template-columns: 1fr; } }
#certTechBlock.is-hidden { display: none; }
.cert-delivery__opt { display: block; cursor: pointer; }
.cert-delivery__opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cert-delivery__box {
  display: block;
  height: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.16s ease, background 0.16s ease;
}
/* Вариант «скоро появится» (онлайн-сертификат в разработке) */
.cert-delivery__opt--soon { cursor: default; }
.cert-delivery__opt--soon .cert-delivery__box { position: relative; opacity: 0.5; }
.cert-delivery__soon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d0d0d;
  background: var(--green, #6bff2a);
  padding: 2px 9px;
  border-radius: 20px;
}
.cert-delivery__opt input:checked + .cert-delivery__box {
  border-color: var(--green, #6bff2a);
  background: rgba(107,255,42,0.08);
}
.cert-delivery__opt input:focus-visible + .cert-delivery__box { outline: 2px solid var(--green, #6bff2a); outline-offset: 2px; }
.cert-delivery__t {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white, #f0f0f0);
  margin-bottom: 4px;
}
.cert-delivery__d { display: block; font-size: 12.5px; line-height: 1.4; color: var(--muted, #a0a0a0); }

/* Адрес для отправки Почтой */
.cert-postal { margin-top: 4px; }
.cert-postal.is-hidden { display: none; }
.cert-postal__fields { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.cert-postal__row { display: grid; grid-template-columns: 130px 1fr; gap: 10px; }
@media (max-width: 480px) { .cert-postal__row { grid-template-columns: 1fr; } }

/* Удобный способ связи (мессенджер) */
.cert-messenger .booking-field__cap { display: block; margin-bottom: 8px; }
.cert-messenger__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .cert-messenger__row { grid-template-columns: 1fr; } }
/* Тёмный фон и светлый текст выпадающего списка (иначе бело-на-белом) */
select.booking-input { color: #fff; }
select.booking-input option { background: #1a1a1a; color: #fff; }

/* ─── FAQ ─── */
.cert-faq__list { list-style: none; padding: 0; margin: 0; max-width: 760px; }
.cert-faq__item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.cert-faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white, #f0f0f0);
}
.cert-faq__q span { color: var(--green, #6bff2a); font-size: 24px; transition: transform 0.2s ease; flex: none; }
.cert-faq__q.is-open span { transform: rotate(45deg); }
.cert-faq__a {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted, #a0a0a0);
  max-width: 680px;
}
.cert-faq__q.is-open + .cert-faq__a { display: block; }

/* ─── FOOTER CTA ─── */
.cert-cta { text-align: center; background: var(--dark, #141414); }
.cert-cta .cert-h2 { margin-bottom: 12px; }
.cert-cta__lead { margin: 0 auto 28px; }
.cert-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── АДАПТИВ ─── */
@media (max-width: 900px) {
  .cert-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .cert-hero__media { max-width: 440px; }
  .cert-showcase__inner { grid-template-columns: 1fr; gap: 28px; justify-items: center; text-align: center; }
  .cert-showcase__video { max-width: 280px; }
  .cert-showcase__list { text-align: left; display: inline-block; }
  .cert-showcase__list li { padding-left: 26px; }
}
@media (max-width: 600px) {
  .cert-section { padding: 52px 20px; }
  .cert-hero { padding: 28px 20px 48px; }
  .cert-delivery { grid-template-columns: 1fr; }
  .cert-hero__actions .cert-btn,
  .cert-cta__btns .cert-btn { flex: 1 1 auto; }
}
