/* ==========================================================================
   Variables & reset
   ========================================================================== */
:root{
  --teal: #2f6f7a;
  --teal-dark: #24565f;
  --teal-light: #4a8e97;
  --page-bg: #f4f4f4;
  --white: #ffffff;
  --text-dark: #29302f;
  --text-muted: #6b7472;
  --border-light: #e6e6e6;
  --gold: #f5a623;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container-w: 1300px;
  --ff-base: 'Montserrat', Arial, sans-serif;
}

*,*::before,*::after{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: var(--ff-base);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}
h1,h2,h3,p,figure{ margin:0; }
a{ color: inherit; text-decoration:none; }
button{ font-family: inherit; cursor:pointer; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }

.container{
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* Placeholders for images */
.placeholder-img{
  position: relative;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(135deg, #d7e2e0, #d7e2e0 14px, #cddbd9 14px, #cddbd9 28px);
  display:flex;
  align-items:center;
  justify-content:center;
  color: #7e928f;
  font-size: 13px;
  text-align:center;
  overflow:hidden;
}
.placeholder-img::after{
  content: attr(aria-label);
  font-size: 13px;
  color:#8a9c99;
  padding: 4px 10px;
  text-align:center;
}
.mos-fill-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  z-index:0;
}
/* .placeholder-img.is-filled{ background:none; }
.placeholder-img.is-filled::after{ content:none; } */
.placeholder-img--doctor::after{
  content: '';
  font-size: 13px;
  color: #8a9c99;
  padding: 4px 10px;
  text-align: center;
  position: absolute;
  width: 105%;
  top: -115px;
  left: -30px;
  right: -10px;
  bottom: 0;
  background-image: url(../images/doc.png);
  background-size: contain;
  background-position-y: bottom;
  background-repeat: no-repeat;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding: 14px 16px 14px 26px;
  border-radius: 40px;
  font-weight:600;
  font-size:15px;
  border:none;
  white-space:nowrap;
  background: var(--white);
  color: var(--teal);
}
.btn--arrow::after{
  content:"→";
  flex-shrink:0;
  width:30px; height:30px;
  border-radius:50%;
  background: var(--teal);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}
.btn--primary{
  background: var(--teal);
  color:#fff;
}
.btn--primary.btn--arrow::after{ background: rgba(255,255,255,.22); }
.btn--outline{
  background: var(--page-bg);
  color: var(--text-dark);
}
.btn--sm{ padding: 11px 12px 11px 20px; font-size:13.5px; }
.btn--sm.btn--arrow::after{ width:26px; height:26px; font-size:12px; }

.icon{ flex-shrink:0; }
.icon-circle{
  width:30px; height:30px;
  border-radius:50%;
  border: 1.4px solid currentColor;
  display:flex;
  align-items:center;
  justify-content:center;
  color: inherit;
  flex-shrink:0;
}
.icon-circle img{
  width: 38px;
  height: 38px;
}
.icon-circle--telegram{ border:none; }
.icon-circle--max{ background: var(--teal); border-color: var(--teal); }
.footer__messengers .icon-circle--max{ background: var(--teal); border-color: var(--teal); }

/* ==========================================================================
   Header
   ========================================================================== */
.header{
  background: var(--teal);
  color:#fff;
  padding: 16px 0;
  margin: 0 0 15px;
  border-radius: 0 0 20px 20px;
}
.header__inner{
  display:flex;
  align-items:center;
  gap: 28px;
}
.header__address{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13.5px;
  line-height:1.3;
  flex-shrink:0;
}
.header__phones{
  display:flex;
  flex-direction:column;
  gap:2px;
  flex-shrink:0;
  font-size:14px;
  font-weight:600;
}
.header__messengers{
  display:flex;
  gap:10px;
  margin-right:auto;
}
.header__cta{ flex-shrink:0; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  /* background: var(--teal); */
  background: #427479;
  color:#fff;
  padding-top: 44px;
  overflow:visible;
  border-radius: 20px;
}
.hero__bg{
  position: absolute;
  inset: 0;
  background-image: url(../images/hero_bg.png);
  background-position: center;
  background-repeat: no-repeat;
}
.hero__inner{
  position:relative;
  display:flex;
  gap:40px;
  align-items:flex-end;
}
.hero__text{ flex:1.05; padding-bottom:56px; }
.hero__title{
  font-size:42px;
  font-weight:800;
  line-height:1.22;
  margin-bottom:26px;
}
.hero__subtitle{
  font-size:17px;
  opacity:.95;
  line-height:1.5;
}
.hero__photo-wrap{
  flex:1;
  display:flex;
  align-items:flex-end;
  gap:24px;
}
.hero__photo-wrap .placeholder-img--doctor{
  flex:1;
  aspect-ratio: 4/3.2;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.placeholder-img--doctor{ 
  background: none;
  color: #eef4f3;
  overflow: visible;
}
.hero__doctor-card{
  flex-shrink:0;
  width:220px;
  padding-bottom:20px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.hero__doctor-name{ font-size:16px; font-weight:700; line-height:1.35; }
.hero__doctor-role{ font-size:13px; opacity:.85; line-height:1.4; }

.stats-wrap{
  background: var(--page-bg);
  padding: 25px 0 56px;
  position: relative;
  z-index: 2;
}
.hero__stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat{
  background:#fff;
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.stat__icon{
  color: var(--teal);
  width:44px; height:44px;
  border-radius:50%;
  background: var(--page-bg);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.stat__icon--badge{ font-size:16px; font-weight:800; }
.stat__text{
  font-size:14px;
  line-height:1.3;
  color: var(--text-dark);
  font-weight:500;
}

/* ==========================================================================
   Section generic
   ========================================================================== */
.section{ padding: 64px 0; background: var(--white); }
.section__title{
  font-size: 32px;
  font-weight:800;
  color: var(--teal);
  margin-bottom: 36px;
  line-height:1.25;
}
.section__title--center{ text-align:center; }
.section__title--left{ text-align:left; }

/* WHY */
.why{ background: var(--page-bg); padding-top:0; }
.why__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
}
.why__card{
  position: relative;
  background: #2F6F7A;
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why__card h3 {
    position: relative;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.32;
    padding: 25px 30px;
    background: #2e818f;
    border-radius: var(--radius-lg);
}
.why__card p {
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    opacity: .95;
    padding: 0 30px 20px;
}

/* CASE */
.case__inner{ display:flex; gap:40px; align-items:flex-start; }
.case__text-col{ flex: 0 0 30%; }
.case__title{
  font-size:32px;
  font-weight:800;
  color: var(--teal);
  margin-bottom:22px;
  line-height:1.2;
}
.case__text{
  font-size:15px;
  color: var(--text-dark);
  line-height:1.65;
}
.case__gallery{
  display:flex;
  gap:20px;
  flex:1;
}
.case__photo{ flex:1; min-width:0; }
.case__photo figcaption{
  margin-top:12px;
  text-align:center;
}
.case__photo figcaption b{
  display:block;
  font-size:15px;
  color: var(--text-dark);
  margin-bottom:2px;
}
.case__photo figcaption span{
  display:block;
  font-size:12.5px;
  color: var(--text-muted);
}
.placeholder-img--case{ aspect-ratio: 3/4; border-radius: var(--radius-md); }
.case__arrow{
  position:relative;
  z-index:1;
  font-size:40px;
  color: #d33;
  transform: rotate(-30deg);
}
.case__tag{
  position:absolute;
  background: rgba(255,255,255,.92);
  color: var(--text-dark);
  font-size:12px;
  font-weight:600;
  padding:8px 14px;
  border-radius:10px;
  text-align:center;
}

/* BEFORE / AFTER */
.before-after{ background: var(--page-bg); }
.ba-slider{
  position:relative;
  display:flex;
  align-items:center;
  gap: 14px;
}
.ba-swiper{
  flex:1;
  min-width:0;
  padding: 4px 4px 10px;
}
.ba-card{ height:auto; }
.ba-card--has-gallery .placeholder-img--ba{ cursor:pointer; }
.placeholder-img--ba{ aspect-ratio: 3/4; border-radius: var(--radius-md); position:relative; background-color:#c7b299; }
.placeholder-img--ba::after{ display:none; }
.ba-card__view{
  position:relative;
  z-index:1;
  color:#fff;
  font-size:15px;
  font-weight:600;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.placeholder-img--ba-split{ display:flex; align-items:flex-end; padding:0; }
.ba-card__split-labels{
  position:absolute;
  left:0; right:0; bottom:0;
  display:flex;
}
.ba-card__split-label{
  flex:1;
  text-align:center;
  padding:10px 0;
  font-size:13px;
  font-weight:600;
}
.ba-card__split-label--before{ background: var(--teal); color:#fff; }
.ba-card__split-label--after{ background: rgba(255,255,255,.9); color: var(--text-dark); }
.ba-card__caption{
  text-align:center;
  font-size:16px;
  font-weight:600;
  margin-top:14px;
  color: var(--text-dark);
}
.ba-slider__arrow{
  flex-shrink:0;
  background:none;
  border:none;
  color: var(--teal);
  font-size:30px;
  line-height:1;
}

/* TIMELINE */
.timeline{ background: var(--white); }
.timeline__badge{
  display:inline-block;
  border: 2px solid var(--teal);
  border-radius: 50% 50% 45% 55% / 60% 55% 45% 40%;
  padding: 2px 16px;
  color: var(--teal);
}
.timeline__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
  align-items:stretch;
}
.timeline__card{
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px 26px 28px;
  display:flex;
  flex-direction:column;
}
.timeline__card--active{ border: 2px solid var(--teal); }
.timeline__step{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:600;
  color: var(--text-muted);
  margin-bottom:14px;
}
.timeline__num{
  font-style:normal;
  width:24px; height:24px;
  border-radius:50%;
  background: var(--border-light);
  color: var(--text-dark);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:700;
}
.timeline__num--active{ background: var(--teal); color:#fff; }
.timeline__days{
  display:block;
  font-size:30px;
  font-weight:800;
  color: var(--teal-dark);
  margin-bottom:18px;
}
.timeline__desc{
  font-size:14.5px;
  color:var(--text-dark);
  line-height:1.7;
}
.timeline__note{
  font-size:13.5px;
  color: var(--teal);
  margin-top:auto;
  padding-top:16px;
  border-top: 1px solid var(--border-light);
}

/* GUARANTEE */
.guarantee{
  position:relative;
  background: var(--teal);
  color:#fff;
  padding: 60px 0 70px;
  margin-top: 60px;
}
.guarantee__wave{
  position:absolute;
  top:-59px; left:0; right:0;
  height:60px;
  background: var(--teal);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.guarantee__inner{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap: 40px;
}
.guarantee__title{
  flex: 0 0 30%;
  font-size:32px;
  font-weight:800;
}
.guarantee__title span{
  display:block;
  font-size:15px;
  font-weight:500;
  opacity:.8;
  margin-top:10px;
}
.guarantee__text-col{ flex:1; padding-top:6px; }
.guarantee__text-col p{ font-size:15px; line-height:1.65; margin-bottom:14px; }
.guarantee__badge{
  flex-shrink:0;
  width:84px; height:84px;
  border-radius:50%;
  background: rgba(255,255,255,.15);
  display:flex;
  align-items:center;
  justify-content:center;
}

/* PRICING */
.pricing{ background: var(--page-bg); padding: 60px 0; }
.pricing__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:0;
  max-width: var(--container-w);
  margin: 0 auto 32px;
  padding: 0 32px;
  gap:20px;
}
.pricing__card{
  background:#fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
}
.pricing__card--active{ border: 2px solid var(--teal); }
.pricing__label{ display:block; font-size:14px; color: var(--text-muted); margin-bottom:14px; }
.pricing__name{ font-size:18px; font-weight:700; margin-bottom:16px; }
.pricing__price{ display:block; font-size:34px; font-weight:800; color: var(--text-dark); }
.pricing__divider{ border:none; border-top:1px solid var(--border-light); margin: 20px 0; }
.pricing__note{ font-size:14px; color: var(--teal); line-height:1.55; }
.pricing__cta-wrap{ text-align:center; }

/* REVIEWS */
.reviews{ background: var(--white); }
.reviews__head{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:32px;
  justify-content:space-between;
}
.reviews__head .section__title{ margin-bottom:0; }
.reviews__actions{ display:flex; align-items:center; gap: 14px; }
.reviews-swiper{
  padding: 4px 4px 20px;
}
.review-card{
  height:auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.review-card__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}
.review-card__date{ font-size:12.5px; color: var(--text-muted); }
.review-card__platform{
  font-size:11px;
  font-weight:700;
  color: var(--teal);
  background: var(--page-bg);
  padding:4px 10px;
  border-radius:10px;
}
.review-card__stars{ display:block; color: var(--gold); font-size:16px; letter-spacing:2px; margin-bottom:12px; }
.review-card__text{ font-size:13.5px; line-height:1.65; color: var(--text-dark); }
.reviews__nav{ display:flex; align-items:center; justify-content:center; gap:16px; }
.reviews__arrow{
  width:38px; height:38px;
  border-radius:50%;
  border: 1px solid var(--border-light);
  background:#fff;
  color: var(--teal);
  font-size:18px;
}
.reviews__dots{ display:flex; align-items:center; gap:6px; position:static; width:auto; }
.reviews__dots .swiper-pagination-bullet{ width:6px; height:6px; margin:0; background: var(--border-light); opacity:1; }
.reviews__dots .swiper-pagination-bullet-active{ background: var(--teal); }

/* FAQ */
.faq{ background: var(--page-bg); }
.faq__list{ display:flex; flex-direction:column; gap:16px; }
.faq__item{
  background:#fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  padding: 22px 26px;
}
.faq__question{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  font-size:16px;
  font-weight:700;
  color: var(--text-dark);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.faq__item--open .faq__question{ margin-bottom:14px; }
.faq__icon{
  flex-shrink:0;
  width:32px; height:32px;
  border-radius:50%;
  border: 1px solid var(--border-light);
  color: var(--teal);
  font-style:normal;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  transition: transform .2s ease;
  background-image: url(/wp-content/themes/mos-surgery/img/arr.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.faq__item--open .faq__icon {
    transform: rotate(90deg);
    color: #fff;
}
.faq__answer{
  display:none;
  overflow:hidden;
}
.faq__item--open .faq__answer{ display:block; }
.faq__answer p{
  font-size:14px;
  color: var(--text-muted);
  line-height:1.7;
  margin-bottom:10px;
}
.faq__answer p:last-child{ margin-bottom:0; }

/* OTHER CITY */
.other-city{ background: var(--page-bg); }
.other-city__card{
  background:#fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  display:flex;
  gap:40px;
  align-items:center;
}
.other-city__card .placeholder-img--city{ flex: 0 0 34%; aspect-ratio: 16/11; border-radius: var(--radius-md); }
.other-city__text{ flex:1; min-width:0; }
.other-city__text .section__title{ margin-bottom:16px; }
.other-city__text p{ font-size:15px; color: var(--text-dark); line-height:1.6; margin-bottom:12px; }
.other-city__highlight{ font-weight:700; }
.other-city__highlight span{ color: var(--teal); }

/* BOOKING */
.booking{ background: var(--page-bg); }
.booking__inner{ display:flex; gap:50px; align-items:flex-start; }
.booking__text-col{ flex: 0 0 30%; }
.booking__subtitle{ font-size:15px; color: var(--text-dark); margin-top:-14px; }
.booking__widget{ flex:1; }
.booking__dates, .booking__times{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}
.booking__arrow{
  flex-shrink:0;
  background:none;
  border:none;
  color: var(--teal);
  font-size:22px;
}
.booking__dates-list, .booking__times-list{
  display:flex;
  gap:12px;
  overflow-x:auto;
  flex:1;
  scrollbar-width:none;
}
.booking__dates-list::-webkit-scrollbar, .booking__times-list::-webkit-scrollbar{ display:none; }
.date-chip, .time-chip{
  flex-shrink:0;
  border: 1px solid var(--border-light);
  background:#fff;
  border-radius: 12px;
  padding: 12px 22px;
  font-size:15px;
  font-weight:600;
  color: var(--text-dark);
}
.date-chip span{ display:block; font-size:12px; font-weight:400; color: var(--text-muted); }
.date-chip--active{ background: var(--teal); color:#fff; border-color: var(--teal); }
.date-chip--active span{ color: rgba(255,255,255,.8); }
.time-chip--active{ border: 2px solid var(--teal); color: var(--teal); }
.booking__widget > .btn{ margin-top:20px; }

/* FOOTER */
.footer{ background:#fff; padding: 50px 0; }
.footer__grid{
  display:grid;
  grid-template-columns: 1.1fr 1.3fr 1fr 1.2fr;
  gap: 30px;
  align-items:center;
}
.footer__title{ font-size:26px; font-weight:800; color: var(--teal); margin-bottom:18px; }
.footer__messengers .icon-circle{ color: var(--teal); }
.footer__contacts{ display:flex; flex-direction:column; gap:14px; }
.footer__row{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14.5px;
  font-weight:600;
  color: var(--text-dark);
  line-height:1.4;
}
.footer__legal{ display:flex; flex-direction:column; gap:10px; }
.footer__legal a{ font-size:13.5px; color: var(--text-muted); }
.footer__map{ position:relative; }
.placeholder-img--map{ aspect-ratio: 16/9; border-radius: var(--radius-md); }
.footer__map-btn{
  position:absolute;
  bottom:0; left:0; right:0;
  display:block;
  text-align:center;
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 12px;
  font-size:13.5px;
  font-weight:600;
  color: var(--text-dark);
}

/* ==========================================================================
   Responsive — breakpoints: 1199 / 991 / 768 / 551
   ========================================================================== */

/* ---------- ≤1199px : small desktop / large tablet ---------- */
@media (max-width: 1199px){
  .container{ padding: 0 24px; }
  .pricing__grid{ padding: 0 24px; }

  .hero__title{ font-size:36px; }
  .hero__inner{ gap:28px; }
  .hero__doctor-card{ width:190px; }

  .section{ padding:56px 0; }
  .section__title{ font-size:28px; margin-bottom:30px; }

  .why__grid{ gap:18px; }
  .why__card{ padding:26px 24px 28px; }

  .case__inner{ gap:28px; }
  .case__text-col{ flex-basis:34%; }

  .timeline__grid{ gap:18px; }
  .timeline__card{ padding:22px 20px; }

  .guarantee__inner{ gap:28px; }
  .guarantee__title{ flex-basis:32%; }

  .booking__inner{ gap:32px; }
  .booking__text-col{ flex-basis:32%; }

  .footer__grid{ grid-template-columns: 1fr 1fr; gap:24px; }
}

/* ---------- ≤991px : tablet ---------- */
@media (max-width: 991px){
  .why__grid{ grid-template-columns: 1fr 1fr; }

  .timeline__grid{ grid-template-columns: 1fr 1fr; }
  .timeline__grid .timeline__card:last-child{ grid-column: 1 / -1; }

  .case__inner{ flex-direction:column; }
  .case__text-col{ flex-basis:auto; }

  .guarantee__inner{ flex-direction:column; }
  .guarantee__title{ flex-basis:auto; }

  .booking__inner{ flex-direction:column; }
  .booking__text-col{ flex-basis:auto; }
  .booking__subtitle{ margin-top:8px; }

  .other-city__card{ gap:28px; }

  .hero__stats{ grid-template-columns: repeat(2,1fr); }

  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

/* ---------- ≤768px : mobile landscape / small tablet ---------- */
@media (max-width: 768px){
  .header__inner{ flex-wrap:wrap; gap:14px; }
  .header__messengers{ margin-right:0; order:2; }
  .header__phones{ order:1; }
  .header__cta{ order:3; margin-left:auto; }

  .hero{ padding-top:32px; }
  .hero__inner{ flex-direction:column; align-items:stretch; gap:24px; }
  .hero__title{ font-size:28px; margin-bottom:16px; }
  .hero__text{ padding-bottom:0; }
  .hero__photo-wrap{ flex-direction:column; align-items:stretch; }
  .hero__doctor-card{ width:auto; padding-bottom:0; }

  .section{ padding:44px 0; }
  .section__title{ font-size:24px; margin-bottom:24px; }

  .why__grid{ grid-template-columns: 1fr; }

  .case__gallery{ flex-direction:column; }

  .timeline__grid{ grid-template-columns: 1fr; }
  .timeline__grid .timeline__card:last-child{ grid-column: auto; }

  .pricing__grid{ grid-template-columns: 1fr; }

  .other-city__card{ flex-direction:column; }
  .other-city__card .placeholder-img--city{ flex-basis:auto; width:100%; }

  .footer__grid{ grid-template-columns: 1fr; }
}

/* ---------- ≤551px : mobile portrait ---------- */
@media (max-width: 551px){
  .container{ padding: 0 16px; }
  .pricing__grid{ padding: 0 16px; }

  .header__address{ font-size:12px; }
  .header__phones{ font-size:12px; }
  .header__cta{ padding:12px 14px 12px 20px; font-size:13px; }

  .hero__title{ font-size:24px; }
  .hero__subtitle{ font-size:14px; }
  .hero__stats{ grid-template-columns: 1fr; }

  .section{ padding:36px 0; }
  .section__title{ font-size:21px; margin-bottom:20px; }

  .why__card h3{ font-size:17px; }
  .case__title{ font-size:26px; }
  .guarantee__title{ font-size:26px; }
  .pricing__price{ font-size:28px; }

  .reviews__head{ flex-direction:column; align-items:flex-start; gap:12px; }

  .booking__times{ flex-wrap:wrap; }

  .footer__grid{ grid-template-columns: 1fr; gap:28px; }
}

/* ==========================================================================
   Plain pages / posts (page.php, single.php, index.php fallback) —
   everything outside the ACF landing (front-page.php / template-landing.php)
   ========================================================================== */
.mos-basic-content{
  max-width: 860px;
  padding-top: 56px;
  padding-bottom: 56px;
}
.mos-basic-content__title{
  font-size: 34px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 24px;
}
.mos-basic-content__body{
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}
.mos-basic-content__body p{ margin-bottom: 16px; }
.mos-basic-content__body img{ max-width: 100%; height: auto; border-radius: var(--radius-md); }
