/* ================================================================
   VIDEOS + REAL RESULTS pages — full redesign 2026-05-09
   Brand: peach #DF7D6F + dark #150e0e
   Reuses .about-hero / .about-* classes from about.css for the hero
   shells; adds page-specific patterns below.
   ================================================================ */

/* ============ Generic page hero (reused on both) ============ */
.media-hero {
  background: linear-gradient(135deg, #150e0e 0%, #1f1413 60%, #2a1814 100%);
  padding: 160px 0 70px;  /* top padding clears the ~116px absolute site header */
  border-bottom: 3px solid #DF7D6F;
  position: relative;
  overflow: hidden;
}
.media-hero::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(223,125,111,.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.media-breadcrumb {
  font-size: 13px;
  color: #b8a89c;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.media-breadcrumb a { color: #DF7D6F; text-decoration: none; }
.media-breadcrumb a:hover { opacity: .75; }
.media-breadcrumb span[aria-hidden] { margin: 0 8px; opacity: .4; }

.media-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(223,125,111,.14);
  border: 1px solid rgba(223,125,111,.4);
  color: #DF7D6F;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.media-h1 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.media-h1 .peach-color { color: #DF7D6F; }
.media-sub {
  color: #d6c5b8;
  font-size: 17px;
  max-width: 760px;
  line-height: 1.65;
  margin: 0 0 26px;
  position: relative;
  z-index: 2;
}
.media-sub strong { color: #fff; font-weight: 600; }

.media-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.media-trust .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(223,125,111,.4);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.media-trust .pill svg { color: #DF7D6F; font-size: 14px; }

/* ============ Section wrapper ============ */
.media-section {
  background: #0a0606;
  padding: 70px 0;
}
.media-section.alt {
  background: linear-gradient(180deg, #0a0606 0%, #150e0e 100%);
}
.media-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.media-section-head .media-eyebrow { margin-bottom: 12px; }
.media-section-h2 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 12px;
}
.media-section-h2 .peach-color { color: #DF7D6F; }
.media-section-sub {
  color: #b8a89c;
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============ VIDEO GRID (reels) ============ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.video-card {
  background: linear-gradient(160deg, #1a0e0d 0%, #0f0807 100%);
  border: 1px solid rgba(223,125,111,.14);
  border-radius: 14px;
  padding: 12px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: #DF7D6F;
  box-shadow: 0 14px 32px rgba(223,125,111,.18);
}
.video-card-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  margin-bottom: 12px;
}
.video-card-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(223,125,111,.12);
  border: 1px solid rgba(223,125,111,.3);
  color: #DF7D6F;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.video-card-tag svg { font-size: 11px; }
.video-card-title {
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.4;
  margin: 0 0 4px;
}
.video-card-desc {
  color: #8a7a6e;
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0;
}

/* Filter chips */
.media-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.media-chip {
  padding: 8px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(223,125,111,.2);
  color: #d6c5b8;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
}
.media-chip:hover {
  background: rgba(223,125,111,.1);
  color: #fff;
  border-color: #DF7D6F;
}
.media-chip.active {
  background: linear-gradient(135deg, #DF7D6F 0%, #c8634f 100%);
  color: #fff;
  border-color: #DF7D6F;
}

/* ============ FOLLOW BANNER ============ */
.follow-banner {
  background: linear-gradient(135deg, #1a0e0d 0%, #0f0807 100%);
  border: 1px solid rgba(223,125,111,.2);
  border-radius: 18px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 50px;
}
.follow-banner-text { flex: 1; min-width: 280px; }
.follow-banner h3 {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 8px;
}
.follow-banner p {
  color: #b8a89c;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}
.follow-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.follow-btn:hover { transform: translateY(-2px); text-decoration: none; }
.follow-btn-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.follow-btn-youtube {
  background: #ff0000;
  color: #fff;
}
.follow-btn-instagram:hover, .follow-btn-youtube:hover { color: #fff; }

/* ============ BEFORE/AFTER (Real Results) ============ */
.results-treatment-section {
  background: #0a0606;
  padding: 50px 0 70px;
}
.results-treatment-section.alt {
  background: linear-gradient(180deg, #0a0606 0%, #150e0e 100%);
}
.treatment-card {
  background: linear-gradient(160deg, #1a0e0d 0%, #0f0807 100%);
  border: 1px solid rgba(223,125,111,.18);
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 30px;
}
.treatment-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.treatment-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, #DF7D6F 0%, #c8634f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}
.treatment-title {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 4px;
}
.treatment-meta {
  color: #DF7D6F;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  margin: 0;
}
.treatment-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.treatment-comparison {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(223,125,111,.2);
}
.treatment-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.treatment-info p {
  color: #c8b9ad;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.treatment-info ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.treatment-info ul li {
  color: #b8a89c;
  font-size: 14px;
  padding: 7px 0 7px 26px;
  position: relative;
}
.treatment-info ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px; height: 16px;
  background: rgba(223,125,111,.18);
  border: 1px solid #DF7D6F;
  border-radius: 50%;
}
.treatment-info ul li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 17px;
  width: 6px; height: 4px;
  border-left: 2px solid #DF7D6F;
  border-bottom: 2px solid #DF7D6F;
  transform: rotate(-45deg);
}

/* Tweak the existing .comparison swiper card so it fits the new card.
   The global .comparison rule (style.css) forces a 1:1 padding-bottom
   square — that's wrong for our card layout where we want a fixed-
   height landscape slider. Drop the padding-ratio and use an explicit
   aspect-ratio so the figure fills the box without empty letterboxing. */
.treatment-card .comparison,
.treatment-comparison .comparison {
  margin: 0;
  padding-bottom: 0 !important;
  aspect-ratio: 4 / 3;
  height: auto;
  border: 0;
  border-radius: 14px;
}
.treatment-card .comparison figure,
.treatment-comparison .comparison figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;          /* defeat any inline height: 340px */
  margin: 0;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}
.treatment-card .comparison .divisor,
.treatment-comparison .comparison .divisor {
  background-size: cover;
  background-position: center;
}

/* ============ HOW IT WORKS (steps) ============ */
.how-it-works {
  background: linear-gradient(180deg, #0a0606 0%, #150e0e 100%);
  padding: 70px 0;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.how-card {
  background: linear-gradient(160deg, #1a0e0d 0%, #0f0807 100%);
  border: 1px solid rgba(223,125,111,.15);
  border-radius: 14px;
  padding: 30px 26px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}
.how-card:hover {
  transform: translateY(-4px);
  border-color: #DF7D6F;
}
.how-step-num {
  position: absolute;
  top: 18px;
  right: 18px;
  font-weight: 800;
  font-size: 56px;
  color: rgba(223,125,111,.15);
  line-height: 1;
}
.how-icon {
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, #DF7D6F 0%, #c8634f 100%);
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
}
.how-card h3 {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 8px;
}
.how-card p {
  color: #b8a89c;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ============ Mobile ============ */
@media (max-width: 1199px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .treatment-body { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .follow-banner { padding: 28px; }
}
@media (max-width: 575px) {
  .media-hero { padding: 120px 0 50px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card { padding: 10px; }
  .media-section { padding: 50px 0; }
  .treatment-card { padding: 22px 18px; }
  .treatment-head { gap: 12px; }
  .treatment-title { font-size: 18px; }
  .how-it-works { padding: 50px 0; }
  .follow-banner { flex-direction: column; align-items: stretch; }
  .follow-banner-actions { flex-direction: column; }
  .follow-btn { justify-content: center; }
}
