/* Reset — scoped, excludes WP admin bar and header */
*:where(:not(#wpadminbar):not(#wpadminbar *):not(.liv-header):not(.liv-header *)) {
  box-sizing: border-box;
}
/* WordPress admin bar spacing */
html.wp-toolbar { margin-top: 32px !important; }
@media screen and (max-width: 782px) { html.wp-toolbar { margin-top: 46px !important; } }

/* Yatay scroll engelleme — son güvence (sticky/fixed kullanan element'leri etkilemez) */
html, body { overflow-x: clip; max-width: 100%; }

/* =============================
   HEADER
   ============================= */
.liv-header {
  position: sticky;
  top: 0;
  z-index: 9990;
  width: 100%;
  background: #1c92e9;
  font-family: 'Poppins', sans-serif;
}
.liv-header, .liv-header * { box-sizing: border-box; }

/* Row 1: Logo + CTA */
.liv-header-row1 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.liv-header-logo { flex-shrink: 0; text-decoration: none; }
.liv-header-logo img { height: 52px; display: block; }

.liv-header-cta { display: flex; align-items: center; gap: 10px; }

.liv-hbtn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 20px 5px 5px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  transition: background .2s;
}
.liv-hbtn--border {
  border: 1.5px solid rgba(255,255,255,.35);
  background: transparent;
}
.liv-hbtn--border:hover { background: rgba(255,255,255,.1); }

.liv-hbtn--solid {
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.15);
  font-weight: 700;
}
.liv-hbtn--solid:hover { background: rgba(255,255,255,.25); }

.liv-hbtn-ico {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.liv-hbtn-ico svg { width: 15px; height: 15px; }

/* Row 2: Nav */
.liv-header-row2 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}
.liv-header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  height: 38px;
}
.liv-header-nav-link {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  text-decoration: none;
  transition: background .2s;
}
.liv-header-nav-link:hover { background: rgba(255,255,255,.1); }
.liv-header-nav-link--active { background: rgba(255,255,255,.15); }
.liv-header-nav-empty { color: rgba(255,255,255,.5); font-size: 13px; }

/* Hamburger */
.liv-header-hamburger {
  display: none;
  background: none; border: none;
  color: #fff; padding: 8px; cursor: pointer;
  margin-left: auto;
}

/* Mobile */
.liv-header-mobile {
  display: none;
  background: #0a6dc2;
  padding: 0 16px 16px;
}
.liv-header-mob-link {
  display: block; color: #fff; font-size: 14px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
}
.liv-header-mob-link:hover { background: rgba(255,255,255,.05); }
.liv-header-mob-link--active { background: rgba(255,255,255,.1); }
.liv-header-mobile-phone {
  display: block; text-align: center; margin-top: 16px;
  background: #fff; color: #1c92e9; border-radius: 999px;
  padding: 12px; font-weight: 700; font-size: 14px; text-decoration: none;
}

@media (max-width: 1023px) {
  .liv-header-row2, .liv-header-cta { display: none; }
  .liv-header-hamburger { display: flex; }
  .liv-header-row1 { height: 60px; padding: 0 16px; }
  .liv-header-logo img { height: 40px; }
}

/* 1024-1399px: ekran kenarına yapışmasın — yatay padding */
@media (max-width: 1399px) and (min-width: 1024px) {
  .liv-header-row1 { padding: 0 16px; }
  .liv-header-row2 { padding: 0 16px; }
}

/* 1024-1199px: dar masaüstü — call center butonu ikon-only, daha küçük metrik */
@media (max-width: 1199px) and (min-width: 1024px) {
  .liv-header-cta { gap: 8px; }
  .liv-header-nav-link { font-size: 12px; padding: 6px 10px; }
  .liv-hbtn { font-size: 12px; padding: 4px 14px 4px 4px; gap: 6px; }
  .liv-hbtn-ico { width: 28px; height: 28px; }
  .liv-hbtn-ico svg { width: 13px; height: 13px; }
  .liv-hbtn--border { padding: 4px; }
  .liv-hbtn--border .liv-hbtn-text { display: none; }
}

/* 1200-1279px: hafif küçültme, iki buton da metinli */
@media (max-width: 1279px) and (min-width: 1200px) {
  .liv-header-nav-link { font-size: 12px; padding: 6px 10px; }
  .liv-hbtn { font-size: 12px; padding: 4px 16px 4px 4px; gap: 6px; }
  .liv-hbtn-ico { width: 28px; height: 28px; }
  .liv-hbtn-ico svg { width: 13px; height: 13px; }
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #1a1a2e;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input {
  font-family: inherit;
  outline: none;
}

/* =============================
   HERO BANNER
   ============================= */
.hero-banner {
  position: relative;
  min-height: 223px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(169.8deg, #0a6dc2 0%, #1c92e9 100%);
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.11) 100%);
  z-index: 1;
}

.hero-circle {
  position: absolute;
  width: 466px;
  height: 400px;
  right: -60px;
  top: -60px;
  border-radius: 200px;
  background: rgba(255,255,255,0.04);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

a.hero-eyebrow-text {
  text-decoration: none;
  transition: opacity .2s;
}
a.hero-eyebrow-text:hover {
  opacity: .8;
}

.hero-eyebrow-text {
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1.61px;
  text-transform: uppercase;
  line-height: 20.16px;
}

.hero-title {
  font-weight: 800;
  font-size: 41.6px;
  color: #fff;
  line-height: 49.09px;
  letter-spacing: -0.3px;
  margin-top: 5px;
  margin-bottom: 0px;
}

.hero-lead {
  font-weight: 400;
  font-size: 15.52px;
  color: #fff;
  opacity: 0.85;
  line-height: 26.38px;
  max-width: 500px;
  margin-top: 10px;
  margin-bottom: 10px;
}


.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  line-height: 15.6px;
  text-shadow: 0px 1px 2px rgba(0,0,0,0.1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50px;
  background: linear-gradient(169deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
}

.hero-badge:hover {
  background: rgba(255,255,255,0.15);
}

.hero-badge.active {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  font-weight: 700;
}

/* =============================
   BREADCRUMB
   ============================= */
.breadcrumb {
  background: #f8f9fa;
  height: 36px;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 6px;
}

.breadcrumb a {
  font-size: 13px;
  color: #6b7b8d;
  white-space: nowrap;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #1c92e9;
}

.breadcrumb-sep {
  font-size: 13px;
  color: #9bcbdd;
}

.breadcrumb-active {
  font-weight: 700;
  font-size: 13px;
  color: #1c92e9;
  white-space: nowrap;
}

/* =============================
   PAGE LAYOUT
   ============================= */
.page-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.main-content {
  flex: 1;
  min-width: 0;
  padding-top: 20px;
  padding-bottom: 60px;
}

/* =============================
   ARTICLE TITLE
   ============================= */
.article-title {
  font-weight: 700;
  font-size: 30.26px;
  color: #1c92e9;
  line-height: normal;
  margin-bottom: 20px;
}

/* =============================
   TOOLBAR ROW (AI Summary + Stats)
   ============================= */
.toolbar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  max-width: 100%;
  overflow: hidden;
}

.aisumm {
  display: flex;
  align-items: center;
  height: 42px;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.18);
  padding: 0 16px;
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.aisumm::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  pointer-events: none;
}

.aisumm-label {
  font-weight: 600;
  font-size: 11.52px;
  color: #78716c;
  text-transform: uppercase;
  letter-spacing: 0.69px;
  white-space: nowrap;
  margin-right: 10px;
}

.aisumm-links {
  display: flex;
  align-items: center;
}

.aisumm-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 100px;
  transition: background 0.2s;
  white-space: nowrap;
}

.aisumm-link:hover {
  background: #f5f5f4;
}

.aisumm-icon {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  object-fit: contain;
}

.aisumm-link span {
  font-weight: 500;
  font-size: 12px;
  color: #a8a29e;
}

.aisumm-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d6d3d1;
  flex-shrink: 0;
}

/* Post Stats */
.pst-stats {
  display: flex;
  align-items: center;
  height: 44px;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 100px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.04);
  padding: 0 25px;
  gap: 20px;
  flex-shrink: 0;
}

.pst-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pst-stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pst-stat-icon--views { background: #ebf5ff; }
.pst-stat-icon--time { background: #f0fdf4; }

.pst-icon-img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.pst-stat-number {
  font-weight: 700;
  font-size: 15px;
  color: #64748b;
  line-height: 18px;
}

.pst-stat-label {
  font-weight: 500;
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  line-height: 11px;
}

.pst-stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pst-stat-divider {
  width: 1px;
  height: 28px;
  background: #e2e8f0;
}

/* =============================
   HERO IMAGE
   ============================= */
.hero-figure {
  margin-bottom: 24px;
}

.hero-image {
  border-radius: 16px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 543.86px;
  object-fit: cover;
}

.hero-caption {
  margin-top: 9px;
  font-weight: 400;
  font-size: 16px;
  color: #6b7280;
}

/* =============================
   ARTICLE BODY
   ============================= */
.article-body {
  margin-bottom: 40px;
  padding: 0 16px;
  background: #fff;
}
/* İçerik alt boşluğu toggle — Sayfa Görünümü metabox'tan kapatılabilir
   Hem üst hem alt boşluğu sıfırlar (custom HTML / LP sayfaları için) */
body.liv-no-content-spacing .article-body {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
body.liv-no-content-spacing .max-w-layout {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Full-width sayfalarda (Sayfa Görünümü > Sayfa Genişliği = Tam Genişlik)
   Custom HTML içeriğin tam viewport'tan başlaması için tüm üst boşlukları sıfırla */
body.liv-pw-full .max-w-layout,
body.liv-pw-full main,
body.liv-pw-full .article-body {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
}
body.liv-pw-full .max-w-layout { max-width: 100% !important; }

/* A11y: Mobile touch target ≥44px (Lighthouse target-size fix)
   Sadece <700px mobil ekranda — desktop'a etki etmez */
@media (max-width: 700px) {
  .liv-mob-nav-link,
  .liv-mob-close,
  .liv-mob-cta,
  .liv-mob-contact,
  .liv-mob-social a,
  .ft-contact-item,
  .ft-social-icon,
  .breadcrumb a,
  .liv-sb-btn {
    min-height: 44px;
  }
  .liv-mob-social a { min-width: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .breadcrumb a { padding: 4px 6px; display: inline-flex; align-items: center; }
}
/* Tablet/mobil — header pill ile hizalı (header .liv-h-wrap padding 16px) */
@media (max-width: 1024px) {
  .article-body { padding-left: 16px; padding-right: 16px; }
}

.article-body svg:not(.faq-arrow):not(.aisumm-icon):not(.pst-icon-img) {
  max-width: 50px !important;
  max-height: 50px !important;
}
/* Widget ikonları (Liv widget render edilen tüm SVG'ler) muaf */
.article-body .liv-w svg,
.article-body [class*="liv-w-"] svg {
  max-width: none !important;
  max-height: none !important;
}

.article-body h2 {
  font-size: clamp(22px, 3vw, 30.26px);
  font-weight: 700;
  color: #1c92e9;
  line-height: 1.3;
  margin: 32px 0 20px;
}

.article-body h3 {
  font-size: clamp(18px, 2.4vw, 21.61px);
  font-weight: 700;
  color: #1c92e9;
  line-height: 1.3;
  margin: 24px 0 16px;
}

.article-body h4 {
  font-size: clamp(16px, 2vw, 18.37px);
  font-weight: 700;
  color: #64748b;
  line-height: 1.4;
  margin: 20px 0 12px;
}

.article-body h5, .article-body h6 {
  font-size: 16px;
  font-weight: 700;
  color: #64748b;
  margin: 16px 0 8px;
}

.article-body p {
  font-weight: 400;
  font-size: 17.29px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 18px;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-body strong, .article-body b {
  font-weight: 700;
  color: #334155;
}

.article-body ul {
  list-style: disc;
  padding-left: 45px;
  margin: 12px 0 18px;
}

.article-body ol {
  list-style: decimal;
  padding-left: 45px;
  margin: 12px 0 18px;
}

/* Gutenberg image block — margin sıfırla (post içindekiler de) */
.article-body .wp-block-image,
.article-body figure.wp-block-image {
  margin: 0 !important;
}
.article-body .wp-block-image img {
  margin: 0 !important;
}

.article-body li {
  font-size: 17.29px;
  line-height: 1.7;
  color: #64748b;
  margin: 8px 0;
}

.article-body li strong {
  font-weight: 700;
  color: #334155;
}

/* =============================
   WORLD-CLASS CARE SECTION
   ============================= */
.world-class-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.section-title {
  font-weight: 700;
  font-size: 30.26px;
  color: #1c92e9;
  line-height: normal;
  margin-bottom: 24px;
}

.world-class-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.world-class-image img {
  width: 100%;
  height: 525px;
  object-fit: cover;
}

.world-class-body p {
  font-weight: 400;
  font-size: 17.29px;
  color: #64748b;
  line-height: normal;
  margin-bottom: 18px;
}

.world-class-body p:last-child {
  margin-bottom: 0;
}

/* =============================
   KEY TREATMENT MECHANISMS
   ============================= */
.treatment-mechanisms {
  margin-top: 0;
  margin-bottom: 0;
}

.mechanism-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.mechanism-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 30px 40px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s, transform 0.3s;
}

.mechanism-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.mechanism-icon {
  margin-bottom: 24px;
}

.mechanism-icon-img {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain !important;
}

.mechanism-card-title {
  font-weight: 700;
  font-size: 18.37px;
  color: #64748b;
  line-height: normal;
  margin-bottom: 14px;
}

.mechanism-card-desc {
  font-weight: 400;
  font-size: 12.72px;
  color: #94a3b8;
  line-height: 1.5;
}

/* =============================
   NICU SECTION
   ============================= */
.nicu-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.nicu-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.nicu-image img {
  width: 100%;
  height: 525px;
  object-fit: cover;
}

.nicu-body p {
  font-weight: 400;
  font-size: 17.29px;
  color: #64748b;
  line-height: normal;
  margin-bottom: 18px;
}

.nicu-body ul,
.growth-body ul {
  list-style: disc;
  padding-left: 26px;
  margin-bottom: 18px;
}

.nicu-body ul li,
.growth-body ul li {
  font-weight: 400;
  font-size: 17.29px;
  color: #64748b;
  line-height: normal;
  margin-bottom: 10px;
}

.nicu-body ul li:last-child,
.growth-body ul li:last-child {
  margin-bottom: 0;
}

.nicu-body ul li strong,
.growth-body ul li strong {
  font-weight: 700;
}

/* =============================
   GROWTH & PREVENTION SECTION
   ============================= */
.growth-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.subsection-title {
  font-weight: 700;
  font-size: 21.61px;
  color: #1c92e9;
  line-height: normal;
  margin-bottom: 20px;
}

.growth-body p {
  font-weight: 400;
  font-size: 17.29px;
  color: #64748b;
  line-height: normal;
  margin-bottom: 18px;
}

/* =============================
   YOUR TREATMENT JOURNEY
   ============================= */
.journey-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.journey-steps-wrapper {
  position: relative;
}

/* Blue connecting line behind cards */
.journey-line {
  position: absolute;
  top: 44px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #c5dff4;
  z-index: 0;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

.journey-step {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 28px 22px 30px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
}

.journey-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #3b9de9;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0px 3px 10px rgba(59, 157, 233, 0.35);
}

.journey-step-title {
  font-weight: 600;
  font-size: 19.06px;
  color: #64748b;
  line-height: normal;
  margin-bottom: 8px;
}

.journey-step-desc {
  font-weight: 400;
  font-size: 12.72px;
  color: #94a3b8;
  line-height: normal;
}

/* =============================
   WHO CAN BENEFIT
   ============================= */
.benefit-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.benefit-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.benefit-tab {
  height: 50px;
  padding: 0 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 15.13px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.benefit-tab.active {
  background: #1c92e9;
  color: #fff;
  border: none;
}

.benefit-tab:not(.active) {
  background: #fff;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.benefit-tab:not(.active):hover {
  border-color: #1c92e9;
  color: #1c92e9;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 253px;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.benefit-card-icon {
  margin-bottom: 20px;
}

.benefit-icon-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.benefit-card-name {
  font-weight: 700;
  font-size: 18.37px;
  color: #64748b;
  line-height: normal;
  margin-bottom: 4px;
}

.benefit-card-desc {
  font-weight: 400;
  font-size: 15.13px;
  color: #94a3b8;
  line-height: normal;
  margin-bottom: 0;
  flex: 1;
}

.benefit-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
}

.benefit-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 12.39px;
  text-align: center;
}

.benefit-tag--ear {
  background: #1c92e9;
  color: #fff;
}

.benefit-tag--nose {
  background: #1c92e9;
  color: #fff;
}

.benefit-learn-more {
  font-weight: 600;
  font-size: 12.38px;
  color: #1c92e9;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.benefit-learn-more:hover {
  gap: 8px;
}

.benefit-learn-more span {
  font-size: 14px;
}

/* =============================
   CONDITION CTA
   ============================= */
.condition-cta {
  margin-top: 40px;
  margin-bottom: 50px;
}

.condition-cta-inner {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.condition-cta-icon-img {
  width: 72px;
  height: 72px !important;
  object-fit: cover !important;
  flex-shrink: 0;
}

.condition-cta-text h3 {
  font-weight: 700;
  font-size: 26.64px;
  color: #64748b;
  margin-bottom: 4px;
}

.condition-cta-text p {
  font-weight: 400;
  font-size: 12.67px;
  color: #64748b;
}

.condition-cta-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  padding: 0;
  background: #34a853;
  border-radius: 34px;
  font-weight: 700;
  font-size: 16.9px;
  color: #fff !important;
  white-space: nowrap;
  transition: background 0.2s;
  text-decoration: none !important;
}

.condition-cta-btn:hover {
  background: #2d9249;
}

/* =============================
   FAQ SECTION
   ============================= */
.faq-section {
  margin-top: 50px;
  margin-bottom: 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-weight: 700;
  font-size: 19.45px;
  color: #64748b;
  background: #fff;
  text-align: left;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-arrow {
  width: 14px;
  height: 9px;
  color: #64748b;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item--open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item--open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-weight: 400;
  font-size: 15.13px;
  color: #64748b;
  line-height: normal;
}

/* =============================
   INFO CARDS (Two Column)
   ============================= */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.info-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 36px 32px 40px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.info-card-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.info-card-icon-img {
  width: 75px !important;
  height: 75px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}

.info-card-visual {
  display: none;
}

.info-card-title {
  font-weight: 700;
  font-size: 21.61px;
  color: #1c92e9;
  margin-bottom: 20px;
  text-align: center;
}

.info-card-body {
  text-align: left;
}

.info-card-body p {
  font-weight: 400;
  font-size: 15.13px;
  color: #64748b;
  line-height: normal;
  margin-bottom: 14px;
}

.info-card-body p:last-child {
  margin-bottom: 0;
}

.info-card-body strong {
  font-weight: 600;
}

/* =============================
   SIDEBAR
   ============================= */
.sidebar-column {
  width: 408px;
  flex-shrink: 0;
}

.sidebar-column > .trusted-card {
  margin-bottom: 16px;
}

.sidebar {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}

/* Trusted Worldwide */
.trusted-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  background: linear-gradient(135deg, #0284c7 0%, #1c92e9 100%);
  min-height: 200px;
}

.trusted-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  background: rgba(0,0,0,0.15);
  color: #fff;
  padding: 20px 10px;
  font-weight: 500;
  font-size: 19.62px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.trusted-content {
  padding: 24px 20px;
  color: #fff;
  flex: 1;
}

.trusted-stats {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.trusted-number {
  font-weight: 700;
  font-size: 30.39px;
  color: #fff;
  line-height: 1;
}

.trusted-text {
  font-weight: 700;
  font-size: 30.39px;
  color: #fff;
  line-height: 1.15;
}

.trusted-badge-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.trusted-desc {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: normal;
  opacity: 0.9;
}

/* Review Card */
.review-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
  padding: 7px 24px;
  min-height: 110px;
}

.review-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f4fc 0%, #d0eafa 100%);
  flex-shrink: 0;
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-info {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-weight: 700;
  font-size: 15px;
  color: #1f274b;
  line-height: 19.5px;
}

.review-dept {
  font-weight: 500;
  font-size: 12px;
  color: #0095c8;
  line-height: 15.6px;
}

.review-right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.review-badge img {
  height: 50px;
  object-fit: contain;
}

.review-source {
  font-weight: 600;
  font-size: 14.18px;
  color: #1c92e9;
  white-space: nowrap;
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-rating {
  font-weight: 600;
  font-size: 16.21px;
  color: #4b5563;
}

.review-stars {
  font-size: 12px;
  color: #facc15;
  letter-spacing: 1px;
}

/* Quote Card */
.quote-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.quote-header {
  background: linear-gradient(165.3deg, #0284c7 0%, #1c92e9 100%);
  padding: 25px 24px 20px;
}

.quote-header h3 {
  font-weight: 600;
  font-size: 22px;
  color: #fff;
}

.quote-header p {
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

.quote-form {
  padding: 24px;
}

.quote-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.quote-field label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 6px;
  line-height: 18.2px;
}

.quote-field input {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  background: #f0f2f5;
  border: none;
  border-radius: 28px;
  font-size: 14px;
  color: #333;
}

.quote-field input::placeholder {
  color: #757575;
}

.quote-phone {
  display: flex;
  align-items: center;
  height: 48px;
  background: #f0f2f5;
  border-radius: 28px;
  overflow: hidden;
}

.quote-phone-prefix {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px 0 16px;
  flex-shrink: 0;
}

.flag-icon {
  width: 16px;
  height: 12px;
  border-radius: 1px;
  box-shadow: 0 0 1px #888;
  object-fit: cover;
}

.quote-phone input {
  flex: 1;
  height: 100%;
  background: transparent;
  border: none;
  padding: 0 12px;
  font-size: 14px;
  color: #333;
}

.quote-phone input::placeholder {
  color: #757575;
}

.quote-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 20px;
  font-size: 11px;
  line-height: 15.4px;
  color: #777;
}

.quote-gdpr input[type="checkbox"] {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0;
  border-radius: 5px;
  background: #f8fafc;
  border: 1px solid #000;
  accent-color: #34a853;
  cursor: pointer;
}
/* Touch area genişlet — label tıklanabilir alan */
.quote-gdpr label {
  cursor: pointer;
  padding: 8px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.gdpr-link {
  color: #00e;
}

.quote-submit {
  width: 100%;
  height: 56px;
  background: #34a853;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  line-height: 21.6px;
  cursor: pointer;
  box-shadow: 0px 4px 16px rgba(52,168,83,0.3);
  transition: background 0.2s;
}

.quote-submit:hover {
  background: #2d9249;
}

/* Feedback Card */
.feedback-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  box-shadow: 0px 1px 4px rgba(0,0,0,0.04), 0px 4px 24px rgba(0,0,0,0.07);
  padding: 20px 19px;
}

.feedback-card h4 {
  font-weight: 700;
  font-size: 16px;
  color: #64748b;
  line-height: 22.4px;
  margin-bottom: 2px;
}

.feedback-card > p {
  font-weight: 400;
  font-size: 13px;
  color: #6b7280;
  line-height: 19.5px;
  margin-bottom: 12px;
}

.feedback-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feedback-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  background: #fff;
  font-weight: 500;
  font-size: 13px;
  color: #64748b;
  transition: all 0.2s;
}

.feedback-btn:hover {
  border-color: #1c92e9;
  color: #1c92e9;
}

.feedback-icon {
  width: 26px;
  height: 26px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-icon--like {
  background: #dcfce7;
}

.feedback-icon--dislike {
  background: #fef2f2;
}

.feedback-icon-img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.feedback-btn--dislike span:last-child {
  color: #6b7280;
}

/* Worth a Look */
.worth-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.07), 0px 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  margin-bottom: 20px;
}

.worth-card h4 {
  font-weight: 700;
  font-size: 19.57px;
  color: #1c92e9;
  margin-bottom: 14px;
}

.worth-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.worth-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  background: #f0f5fa;
  border: 1px solid #e4edf5;
  border-radius: 20px;
  font-weight: 400;
  font-size: 13.7px;
  color: #1c92e9;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.2s;
}

.worth-link:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  box-shadow: 0px 2px 8px rgba(28, 146, 233, 0.12);
}

.worth-link-icon {
  width: 16px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
}

/* =============================
   OUR DOCTORS (Full Width Carousel)
   ============================= */
.doctors-section {
  padding: 60px 0;
}

.doctors-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Carousel wrapper */
.doctors-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.doctors-carousel {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.doctors-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

/* Arrows */
.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  z-index: 2;
}

.carousel-arrow:hover {
  background: #1c92e9;
  color: #fff;
  border-color: #1c92e9;
  box-shadow: 0 4px 14px rgba(28,146,233,0.3);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* Doctor Card */
/* Doctor Card */
.doctor-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eef2f6;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  width: calc((100% - 48px) / 3);
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}

.doctor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Image area */
.doctor-card-image {
  background: #d4eaf7;
  border-radius: 16px 16px 0 0;
  margin: 0;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.doctor-card-image img {
  width: auto;
  height: 95%;
  object-fit: contain;
  display: block;
}

/* Card body */
.doctor-card-body {
  padding: 18px 20px 24px;
}

.doctor-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.doctor-card-header h4 {
  font-weight: 700;
  font-size: 16px;
  color: #334155;
  line-height: 1.35;
}

.doctor-card-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  padding-top: 2px;
}

.rating-star {
  font-size: 13px;
  color: #facc15;
}

.rating-value {
  font-weight: 600;
  font-size: 14px;
  color: #f59e0b;
}

.doctor-card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
}

.doctor-card-location svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.doctor-card-location span {
  font-weight: 400;
  font-size: 14px;
  color: #94a3b8;
}

/* View Doctor button — Figma: filled light blue pill */
.doctor-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 26px;
  border: none;
  border-radius: 21px;
  font-weight: 700;
  font-size: 14px;
  color: #1c92e9;
  background: #e8f4fc;
  transition: all 0.2s;
}

.doctor-view-btn:hover {
  background: #1c92e9;
  color: #fff;
}

/* =============================
   CONTACT BANNER (Full Width)
   ============================= */
.contact-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0;
  background: linear-gradient(135deg, #e8f4fc 0%, #dbeafe 50%, #c3dffe 100%);
  border-radius: 24px;
}

.contact-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-banner-wave {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 16px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.contact-banner-left {
  flex: 1;
  min-width: 0;
}

.contact-banner-title {
  font-weight: 700;
  font-size: 36.48px;
  color: #1c92e9;
  line-height: normal;
  margin-bottom: 12px;
}

.contact-banner-desc {
  font-weight: 400;
  font-size: 16px;
  color: #64748b;
  line-height: normal;
  margin-bottom: 16px;
}

.contact-arrow-img {
  width: 26px;
  height: 25px;
  object-fit: contain;
}

.contact-banner-right {
  flex: 1;
  min-width: 0;
}

.contact-banner-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cb-field label {
  display: block;
  font-weight: 700;
  font-size: 12px;
  color: #334155;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cb-field input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
}

.cb-field input::placeholder {
  color: #6b7280;
}

.cb-phone {
  display: flex;
  align-items: center;
  height: 44px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.cb-phone-prefix {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  border-right: 1px solid #e2e8f0;
  font-size: 10px;
  color: #6b7280;
  white-space: nowrap;
  flex-shrink: 0;
}

.cb-flag {
  width: 15px;
  height: 12px;
  object-fit: cover;
  border-radius: 1px;
}

.cb-phone input {
  flex: 1;
  height: 100%;
  border: none;
  padding: 0 10px;
  font-size: 10px;
  color: #333;
  background: transparent;
}

.cb-phone input::placeholder {
  color: #6b7280;
}

.cb-submit {
  width: 100%;
  height: 48px;
  background: #34a853;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.cb-submit:hover {
  background: #2d9249;
}

.cb-disclaimer {
  font-weight: 400;
  font-size: 9px;
  color: #94a3b8;
  text-align: center;
  line-height: normal;
  margin-top: 2px;
}

/* =============================
   RESPONSIVE
   ============================= */

/* ---------- 1400px ---------- */
/* ---------- 1200px ---------- */
@media (max-width: 1200px) {
  .page-layout {
    flex-direction: column;
  }

  .main-content {
    max-width: 100%;
  }

  .sidebar-column {
    width: 100%;
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- 1024px (Tablet Landscape) — header pill 16px ile hizalı ---------- */
@media (max-width: 1024px) {
  .hero-inner,
  .breadcrumb-inner,
  .page-layout,
  .contact-banner-inner,
  .doctors-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 42px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-badge {
    font-size: 12px;
    height: 38px;
    padding: 0 16px;
  }

  .toolbar-row {
    flex-wrap: wrap;
  }

  .aisumm {
    height: auto;
    flex-wrap: wrap;
    padding: 10px 16px;
    gap: 6px;
  }

  .aisumm-links {
    flex-wrap: wrap;
  }

  .pst-stats {
    width: 100%;
    justify-content: center;
  }

  .contact-banner-inner {
    gap: 40px;
  }

  .contact-banner-title {
    font-size: 30px;
  }

  .mechanism-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .journey-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .condition-cta-inner {
    padding: 24px 28px;
    gap: 20px;
  }

  .condition-cta-text h3 {
    font-size: 22px;
  }

  .condition-cta-btn {
    height: 56px;
    padding: 0 28px;
    font-size: 14px;
  }
}

/* ---------- 900px (Tablet ara breakpoint — 3/4-col gridler 2-col'a iner) ---------- */
@media (max-width: 900px) {
  .mechanism-cards { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .journey-steps   { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .benefit-grid    { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .testimonials    { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .related-videos  { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .info-cards      { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ---------- 768px (Tablet Portrait) ---------- */
@media (max-width: 768px) {
  .hero-inner,
  .breadcrumb-inner,
  .page-layout,
  .contact-banner-inner,
  .doctors-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .doctor-card {
    width: calc((100% - 24px) / 2);
  }

  .doctor-card-header h4 {
    font-size: 16px;
  }

  .hero-banner {
    height: auto;
    min-height: 280px;
  }

  .hero-inner {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 34px;
  }

  .hero-lead {
    font-size: 13px;
    line-height: 22px;
  }

  .hero-badges {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-badge {
    font-size: 11px;
    height: 34px;
    padding: 0 14px;
  }

  .hero-circle {
    display: none;
  }

  .breadcrumb-inner {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
    max-width: 100%;
    mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent 100%);
  }
  .breadcrumb-inner::-webkit-scrollbar {
    height: 4px;
  }
  .breadcrumb-inner::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
  }

  .page-layout {
    gap: 24px;
  }

  .contact-banner-inner {
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 24px;
  }

  .article-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .subsection-title {
    font-size: 18px;
  }

  .hero-image img {
    height: 260px;
  }

  .world-class-image img,
  .nicu-image img {
    height: 240px;
  }

  .article-body p,
  .world-class-body p,
  .nicu-body p,
  .growth-body p,
  .nicu-body ul li,
  .growth-body ul li {
    font-size: 15px;
  }

  .info-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mechanism-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .benefit-tabs {
    gap: 8px;
  }

  .benefit-tab {
    height: 42px;
    padding: 0 20px;
    font-size: 13px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .benefit-card {
    padding: 18px;
  }

  .benefit-card-name {
    font-size: 16px;
  }

  .benefit-card-desc {
    font-size: 13px;
  }

  .condition-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .condition-cta-btn {
    margin-left: 0;
    width: 100%;
    height: 52px;
  }

  .condition-cta-text h3 {
    font-size: 20px;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px 20px;
  }

  .faq-answer p {
    font-size: 14px;
    padding: 0 20px 18px;
  }

  .contact-banner-title {
    font-size: 28px;
  }

  .contact-banner-desc {
    font-size: 14px;
  }

  .sidebar-column {
    width: 100%;
  }

  .sidebar {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trusted-card {
    min-height: auto;
  }

  .trusted-number,
  .trusted-text {
    font-size: 24px;
  }

  .review-card {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
  }

  .quote-row {
    grid-template-columns: 1fr;
  }

  .quote-header h3 {
    font-size: 18px;
  }

  .worth-links {
    grid-template-columns: 1fr 1fr;
  }

  .feedback-buttons {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- 576px (Mobile Large) ---------- */
@media (max-width: 576px) {
  .doctor-card {
    width: calc(100% - 24px);
    min-width: calc(100% - 24px);
  }

  .doctors-track {
    gap: 16px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .doctors-section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 24px;
    line-height: 30px;
  }

  .hero-eyebrow-text {
    font-size: 13px;
  }

  .hero-lead {
    font-size: 12px;
    line-height: 20px;
  }

  .hero-badge {
    font-size: 11px;
    height: 38px;
    padding: 0 14px;
  }

  .article-title {
    font-size: 20px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .subsection-title {
    font-size: 16px;
  }

  .aisumm-label {
    font-size: 10px;
  }

  .aisumm-link span {
    font-size: 11px;
  }

  .pst-stats {
    padding: 0 14px;
    gap: 12px;
  }

  .pst-stat-number {
    font-size: 13px;
  }

  .hero-image img {
    height: 200px;
  }

  .world-class-image img,
  .nicu-image img {
    height: 200px;
  }

  .article-body p,
  .world-class-body p,
  .nicu-body p,
  .growth-body p,
  .nicu-body ul li,
  .growth-body ul li {
    font-size: 14px;
  }

  .info-card {
    padding: 20px;
  }

  .info-card-title {
    font-size: 18px;
  }

  .info-card-body p {
    font-size: 13px;
  }

  .mechanism-card {
    padding: 20px;
  }

  .mechanism-card-title {
    font-size: 16px;
  }

  .journey-steps {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .journey-step {
    padding: 18px 14px;
  }

  .journey-step-title {
    font-size: 16px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-card {
    padding: 16px;
  }

  .benefit-card-name {
    font-size: 15px;
  }

  .condition-cta-icon-img {
    width: 56px;
    height: 56px;
  }

  .condition-cta-text h3 {
    font-size: 18px;
  }

  .condition-cta-btn {
    height: 48px;
    font-size: 13px;
    padding: 0 20px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px;
  }

  .faq-answer p {
    font-size: 13px;
    padding: 0 16px 16px;
  }

  .contact-banner-title {
    font-size: 24px;
  }

  .contact-banner-desc {
    font-size: 13px;
  }

  .trusted-label {
    font-size: 14px;
    padding: 12px 8px;
  }

  .trusted-number,
  .trusted-text {
    font-size: 20px;
  }

  .trusted-desc {
    font-size: 12px;
  }

  .review-name {
    font-size: 13px;
  }

  .review-source {
    font-size: 12px;
  }

  .quote-submit {
    height: 48px;
    font-size: 15px;
  }

  .feedback-btn {
    height: 42px;
    font-size: 12px;
  }

  .worth-card h4 {
    font-size: 16px;
  }

  .worth-links {
    grid-template-columns: 1fr;
  }
}

/* ---------- 640px (Mobile) — hero badges sıkıştır ---------- */
@media (max-width: 640px) {
  .hero-badges {
    gap: 6px;
  }
  .hero-badge {
    font-size: 10px;
    height: 38px;
    padding: 0 14px;
    line-height: 1.2;
    white-space: normal; /* uzun text taşmasın */
    text-align: center;
  }
}

/* ---------- 360px (Galaxy Fold / küçük telefon — sıkı sıkı) ---------- */
@media (max-width: 360px) {
  .hero-title { font-size: 20px; line-height: 26px; }
  .hero-badge { font-size: 10px; height: 36px; padding: 0 12px; }
  .hero-badges { gap: 6px; }
  .breadcrumb-inner { font-size: 11px; }
  .article-title { font-size: 20px; }
  body, .article-body p { font-size: 14px; line-height: 1.5; }
}

/* ---------- 400px (Mobile Small) ---------- */
@media (max-width: 400px) {
  .hero-inner {
    padding: 16px 12px 16px;
  }

  .hero-title {
    font-size: 22px;
    line-height: 28px;
  }

  .hero-eyebrow-text {
    font-size: 11px;
  }

  .hero-badges {
    gap: 6px;
  }

  .hero-badge {
    font-size: 10px;
    height: 36px;
    padding: 0 12px;
  }

  .page-layout {
    padding-left: 12px;
    padding-right: 12px;
  }

  .breadcrumb-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .article-title {
    font-size: 18px;
  }

  .section-title {
    font-size: 18px;
  }

  .aisumm {
    padding: 8px 12px;
  }

  .aisumm-label {
    font-size: 9px;
    margin-right: 8px;
  }

  .aisumm-link {
    padding: 3px 8px;
  }

  .aisumm-link span {
    font-size: 10px;
  }

  .pst-stats {
    height: 38px;
    padding: 0 10px;
    gap: 8px;
  }

  .pst-stat-icon {
    width: 26px;
    height: 26px;
  }

  .pst-stat-number {
    font-size: 12px;
  }

  .pst-stat-label {
    font-size: 9px;
  }

  .hero-image img {
    height: 160px;
  }

  .world-class-image img,
  .nicu-image img {
    height: 160px;
  }

  .article-body p,
  .world-class-body p,
  .nicu-body p,
  .growth-body p,
  .nicu-body ul li,
  .growth-body ul li {
    font-size: 13px;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .journey-step-title {
    font-size: 15px;
  }

  .benefit-tabs {
    gap: 6px;
  }

  .benefit-tab {
    height: 36px;
    padding: 0 14px;
    font-size: 11px;
  }

  .benefit-card-name {
    font-size: 14px;
  }

  .benefit-card-desc {
    font-size: 12px;
  }

  .condition-cta-text h3 {
    font-size: 16px;
  }

  .condition-cta-text p {
    font-size: 11px;
  }

  .condition-cta-btn {
    height: 44px;
    font-size: 12px;
  }

  .faq-question {
    font-size: 13px;
    padding: 14px 12px;
  }

  .faq-answer p {
    font-size: 12px;
    padding: 0 12px 14px;
  }

  .contact-banner-inner {
    padding: 30px 12px;
    gap: 20px;
  }

  .contact-banner-title {
    font-size: 20px;
  }

  .quote-form {
    padding: 16px;
  }

  .quote-header {
    padding: 18px 16px 14px;
  }

  .quote-header h3 {
    font-size: 16px;
  }

  .quote-submit {
    height: 44px;
    font-size: 14px;
  }

  .review-card {
    padding: 12px;
  }

  .review-photo {
    width: 56px;
    height: 56px;
  }

  .feedback-buttons {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ---------- Landscape mobile fix ---------- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-banner {
    height: auto;
    min-height: 200px;
  }

  .hero-inner {
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .hero-title {
    font-size: 22px;
    line-height: 28px;
  }

  .hero-lead {
    font-size: 11px;
    line-height: 18px;
    margin-bottom: 10px;
  }

  .hero-badges {
    gap: 6px;
    margin-bottom: 6px;
  }

  .hero-badge {
    height: 36px;
    font-size: 10px;
    padding: 0 12px;
  }

  .page-layout {
    flex-direction: column;
  }

  .sidebar-column {
    width: 100%;
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mechanism-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .info-cards {
    grid-template-columns: 1fr 1fr;
  }

  .contact-banner-inner {
    flex-direction: row;
    gap: 40px;
  }
}


/* ═══════════════════════════════════════════════════════
   WORDPRESS OVERRIDES
   ═══════════════════════════════════════════════════════ */

/* Admin bar: protected by :where() scoped reset above */

/* SVG constraint — Elementor toggle/accordion leftover icons (duplicate kaldırıldı, üstte 50px tanımlı) */
.article-body details svg,
.article-body summary svg,
.article-body summary ~ svg {
  display: none !important;
}

/* Native <details><summary> → aa.zip FAQ birebir */
.article-body details {
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  margin-bottom: 12px !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  overflow: hidden !important;
  box-shadow: none !important;
}
.article-body details[open] {
  background: #ffffff !important;
  background-color: #ffffff !important;
}
.article-body summary {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 22px 24px !important;
  font-size: 19.45px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  cursor: pointer !important;
  list-style: none !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: none !important;
  margin: 0 !important;
  gap: 0 !important;
}
.article-body summary:hover { background: #f8fafc !important; background-color: #f8fafc !important; }
.article-body summary::-webkit-details-marker { display: none !important; }
.article-body summary::marker { content: '' !important; display: none !important; }
.article-body summary::before { display: none !important; content: none !important; }
.article-body summary::after {
  content: '' !important;
  display: block !important;
  width: 14px !important;
  height: 9px !important;
  min-width: 14px !important;
  flex-shrink: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 14px 9px !important;
  transition: transform 0.3s !important;
}
.article-body details[open] > summary::after {
  transform: rotate(180deg) !important;
}
.article-body details > div,
.article-body details > p:not(:first-child) {
  padding: 0 24px 22px !important;
  font-size: 15.13px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  background: #ffffff !important;
}
.article-body details > div > p {
  font-size: 15.13px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* Tables */
.article-body table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 0 !important;
  font-size: 14px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 1px solid #e2e8f0 !important;
}
/* WP core .wp-block-table background ezme + margin sıfır */
.article-body .wp-block-table,
.wp-block-table {
  background: transparent !important;
  margin: 0 !important;
}
.article-body .wp-block-table table,
.wp-block-table table { background: transparent !important; }
.article-body table th {
  background: #f8fafc !important;
  font-weight: 600 !important;
  color: #1a1a2e !important;
  padding: 14px 18px !important;
  border: 1px solid #e2e8f0 !important;
  text-align: left !important;
}
.article-body table td {
  padding: 14px 18px !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
  background: #fff !important;
}
/* Mobile — tablo cell padding sıkı */
@media (max-width: 480px) {
  .article-body table th,
  .article-body table td {
    padding: 10px 8px !important;
    font-size: 13px !important;
  }
}
.article-body table tr:nth-child(even) td { background: #fafbfc !important; }

/* Content typography */
.article-body img:not(.info-card-icon-img):not(.mechanism-icon-img):not(.benefit-icon-img) { border-radius: 0; max-width: 100%; height: auto; }
.article-body a { color: #1c92e9; }
.article-body blockquote { border-left: 4px solid #1c92e9; padding: 16px 24px; background: #f8fafc; border-radius: 0 12px 12px 0; }

/* Broken/unwanted images */
.article-body img[src=''],
.article-body img:not([src]) { display: none !important; }

/* Formidable Forms sidebar */
.quote-card .frm_forms input { width:100%!important; height:48px!important; padding:0 16px!important; border:1px solid #e5e7eb!important; border-radius:10px!important; font-size:14px!important; }
.quote-card .frm_forms .frm_submit button { width:100%!important; height:56px!important; background:#1c92e9!important; color:#fff!important; border:none!important; border-radius:12px!important; font-weight:600!important; }

/* Elementor wrapper overrides (if Elementor still active) */
.elementor-page-content,
.elementor-location-single,
.elementor-theme-builder,
#content, .site-content, .site-main, #primary {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}



/* Fix: SVG aisumm icons */
svg.aisumm-icon {
  width: 15px !important;
  height: 15px !important;
  border-radius: 50% !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
}
.pst-stat-icon svg {
  display: inline-block !important;
  max-width: 16px !important;
  max-height: 16px !important;
}


/* Widget Text Block — full typography support */
/* Widget Text Block — aa.zip exact article body typography */
.widget-text-block { margin: 16px 0; }
.widget-text-block h1 { font-size: 30.26px !important; font-weight: 700 !important; color: #1c92e9 !important; line-height: normal !important; margin: 32px 0 20px !important; display: block !important; }
.widget-text-block h2 { font-size: 30.26px !important; font-weight: 700 !important; color: #1c92e9 !important; line-height: normal !important; margin: 32px 0 20px !important; display: block !important; }
.widget-text-block h3 { font-size: 21.61px !important; font-weight: 700 !important; color: #1c92e9 !important; line-height: normal !important; margin: 24px 0 16px !important; display: block !important; }
.widget-text-block h4 { font-size: 18.37px !important; font-weight: 700 !important; color: #64748b !important; line-height: normal !important; margin: 20px 0 12px !important; display: block !important; }
.widget-text-block h5 { font-size: 16px !important; font-weight: 700 !important; color: #64748b !important; margin: 16px 0 8px !important; display: block !important; }
.widget-text-block p { font-size: 17.29px !important; font-weight: 400 !important; line-height: normal !important; color: #64748b !important; margin: 0 0 18px !important; display: block !important; }
.widget-text-block strong, .widget-text-block b { font-weight: 700 !important; color: #334155 !important; }
.widget-text-block em, .widget-text-block i { font-style: italic !important; }
.widget-text-block u { text-decoration: underline !important; }
.widget-text-block s, .widget-text-block strike { text-decoration: line-through !important; }
.widget-text-block ul { list-style: disc !important; padding-left: 28px !important; margin: 12px 0 18px !important; }
.widget-text-block ol { list-style: decimal !important; padding-left: 28px !important; margin: 12px 0 18px !important; }
.widget-text-block li { font-size: 17.29px !important; line-height: normal !important; color: #64748b !important; margin: 8px 0 !important; display: list-item !important; }
.widget-text-block li strong { font-weight: 700 !important; color: #334155 !important; }
.widget-text-block a { color: #1c92e9 !important; text-decoration: underline !important; }
.widget-text-block blockquote { border-left: 4px solid #1c92e9 !important; padding: 12px 20px !important; margin: 16px 0 !important; background: #f0f9ff !important; border-radius: 0 12px 12px 0 !important; font-style: italic !important; color: #475569 !important; }
.widget-text-block hr { border: none !important; border-top: 2px solid #e5e7eb !important; margin: 24px 0 !important; }
.widget-text-block img { max-width: 100% !important; height: auto !important; border-radius: 16px !important; margin: 16px 0 !important; display: block !important; }
.widget-text-block table { width: 100% !important; border-collapse: collapse !important; margin: 16px 0 !important; }
.widget-text-block th, .widget-text-block td { padding: 12px 16px !important; border: 1px solid #e2e8f0 !important; font-size: 15px !important; color: #64748b !important; }
.widget-text-block th { background: #f8fafc !important; font-weight: 700 !important; color: #334155 !important; }


/* ═══ PROSE OVERRIDE — widget icons must NOT be affected by Tailwind prose ═══ */
.prose .mechanism-icon-img,
.prose .info-card-icon-img,
.prose .benefit-icon-img,
.prose .condition-cta-icon-img,
.article-body .mechanism-icon-img,
.article-body .info-card-icon-img,
.article-body .benefit-icon-img {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  object-fit: contain !important;
  margin: 0 !important;
}
.prose .info-card-icon-img,
.article-body .info-card-icon-img {
  width: 75px !important;
  height: 75px !important;
  max-width: 75px !important;
  max-height: 75px !important;
}
/* Mechanism section — no side padding */
.treatment-mechanisms {
  padding: 0 !important;
}

/* =============================
   TESTIMONIALS (Figma exact)
   ============================= */
.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c92e9, #0c2340);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20.7px;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-name {
  font-size: 20.7px;
  font-weight: 700;
  color: #0c2340;
}
.testimonial-location {
  font-size: 15.1px;
  color: #64748b;
}
.testimonial-date {
  font-size: 12px;
  color: #94a3b8;
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 15.1px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* =============================
   RELATED VIDEOS (Figma exact)
   ============================= */
.related-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-video-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: box-shadow .2s;
  cursor: pointer;
}
.related-video-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.related-video-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #0c2340;
}
.related-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
}
.related-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(28, 146, 233, .9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.related-video-title {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #0c2340;
  margin: 0;
}

/* =============================
   FOOTER (eski sürüm) — REMOVED, Figma-exact block en sonda
   .ft-cta, .ft-newsletter, .ft-main, .ft-copyright eski tanımları silindi
   ============================= */
.liv-footer-old-removed {
  /* placeholder — eski blok kaldırıldı, çakışma engellemek için */
}
/* Eski footer blok #1 silindi — Figma-exact final block dosyanın sonunda */

/* Widgets-only responsive (eski footer rule'ları temizlendi) */
@media (max-width: 1024px) {
  .testimonials-carousel { grid-template-columns: 1fr 1fr; }
  .related-videos-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .testimonials-carousel { grid-template-columns: 1fr; }
  .related-videos-grid { grid-template-columns: 1fr; }
  .testimonial-name { font-size: 16px; }
}

/* =============================
   STICKY BUTTONS
   ============================= */
.liv-sticky-bar {
  position: fixed;
  z-index: 9999;
  transition: transform .3s ease, opacity .3s ease;
}
.liv-sb-pos-bottom {
  bottom: 16px;
  left: 16px;
  right: 16px;
}
.liv-sb-pos-top {
  top: 16px;
  left: 16px;
  right: 16px;
}
.liv-sb-pos-bottom-right {
  bottom: 16px;
  right: 16px;
}
.liv-sb-pos-bottom-left {
  bottom: 16px;
  left: 16px;
}
.liv-sb-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.liv-sb-pos-bottom-right .liv-sb-inner,
.liv-sb-pos-bottom-left .liv-sb-inner {
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  border-radius: 16px;
  max-width: 280px;
}
.liv-sb-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  min-width: 140px;
}
.liv-sb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  opacity: .95;
}
.liv-sb-btn:active {
  transform: translateY(0);
}
.liv-sb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.liv-sb-icon svg {
  width: 18px;
  height: 18px;
}
.liv-sb-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}
.liv-sb-text {
  font-family: inherit;
}

/* Hide on scroll */
.liv-sb-hidden {
  transform: translateY(calc(100% + 30px));
  opacity: 0;
}
.liv-sb-pos-top.liv-sb-hidden {
  transform: translateY(calc(-100% - 30px));
}

/* Device targeting */
@media (max-width: 767px) {
  .liv-sb-dev-desktop { display: none !important; }
  .liv-sb-pos-bottom,
  .liv-sb-pos-top {
    left: 8px;
    right: 8px;
  }
  .liv-sb-inner {
    gap: 8px;
    padding: 8px;
  }
  .liv-sb-btn {
    padding: 12px 14px;
    font-size: 13px;
    min-width: auto;
    gap: 6px;
  }
  .liv-sb-btn .liv-sb-text {
    display: none;
  }
  .liv-sb-btn .liv-sb-icon svg {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 768px) {
  .liv-sb-dev-mobile { display: none !important; }
}

/* Admin bar offset */
.admin-bar .liv-sb-pos-top { top: 48px; }
@media (min-width: 783px) {
  .admin-bar .liv-sb-pos-top { top: 48px; }
}

/* =============================
   HOMEPAGE (Front Page)
   ============================= */

/* ---- Container ---- */
.hp-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Common: Section title / description ---- */
.hp-section-title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: #1c92e9;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.hp-section-desc {
  max-width: 800px;
  margin: 0 auto 48px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

/* ---- Common: Buttons ---- */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.hp-btn-solid {
  background: #1c92e9;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(28,146,233,.28);
}
.hp-btn-solid:hover {
  background: #0a6dc2;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(10,109,194,.35);
  color: #fff;
}
.hp-btn-green {
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(34,197,94,.28);
}
.hp-btn-green:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22,163,74,.35);
  color: #fff;
}
.hp-btn-outline {
  border: 2px solid #1c92e9;
  color: #1c92e9;
  background: transparent;
}
.hp-btn-outline:hover {
  background: #1c92e9;
  color: #fff;
  transform: translateY(-2px);
}
.hp-center-cta {
  text-align: center;
  margin-top: 40px;
}

/* =============================
   SECTION 1: HERO
   ============================= */
.hp-hero {
  position: relative;
  background: linear-gradient(135deg, #0a6dc2 0%, #1c92e9 100%);
  padding: 80px 0 100px;
  overflow: hidden;
  color: #fff;
}
.hp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,.06), transparent 45%);
  pointer-events: none;
}
.hp-hero-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 40px;
}
.hp-hero-text { padding-right: 20px; }
.hp-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hp-hero-title {
  font-size: 56px;
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.hp-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin: 0 0 32px;
}
.hp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hp-hero-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hp-hero-img img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  object-fit: cover;
}

/* =============================
   SECTION 2: WHY CHOOSE LIV
   ============================= */
.hp-why {
  background: #ffffff;
  padding: 80px 0;
}
.hp-why-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
}
.hp-why-img {
  position: relative;
}
.hp-why-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(12,35,64,.12);
}
.hp-why-text .hp-section-title {
  text-align: left;
  margin-bottom: 8px;
}
.hp-why-sub {
  font-size: 18px;
  font-weight: 600;
  color: #0c2340;
  margin: 0 0 24px;
}
.hp-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hp-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #334155;
}
.hp-why-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  background: #e8f4fd;
  border-radius: 50%;
  padding: 4px;
  box-sizing: content-box;
}

/* =============================
   SECTION 3: TREATMENTS
   ============================= */
.hp-treatments {
  background: #f8fafc;
  padding: 80px 0;
}
.hp-treat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hp-treat-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(12,35,64,.06);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.hp-treat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(12,35,64,.15);
}
.hp-treat-img {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eef2f7;
}
.hp-treat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.hp-treat-card:hover .hp-treat-img img {
  transform: scale(1.08);
}
.hp-treat-body { padding: 24px; }
.hp-treat-name {
  font-size: 20px;
  font-weight: 700;
  color: #0c2340;
  margin: 0 0 10px;
  line-height: 1.3;
}
.hp-treat-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* =============================
   SECTION 4: DOCTORS
   ============================= */
.hp-doctors {
  background: #ffffff;
  padding: 80px 0;
}
.hp-doc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hp-doc-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(12,35,64,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.hp-doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(12,35,64,.15);
}
.hp-doc-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #eef2f7;
}
.hp-doc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.hp-doc-card:hover .hp-doc-img img {
  transform: scale(1.05);
}
.hp-doc-body {
  padding: 18px 20px 22px;
  text-align: center;
}
.hp-doc-name {
  font-size: 17px;
  font-weight: 700;
  color: #0c2340;
  margin: 0 0 4px;
  line-height: 1.3;
}
.hp-doc-dept {
  display: block;
  font-size: 13px;
  color: #1c92e9;
  font-weight: 600;
}

/* =============================
   SECTION 5: COMMENTS / TESTIMONIALS
   ============================= */
.hp-comments {
  position: relative;
  background: #1c92e9;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}
.hp-comments::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,.06), transparent 45%);
  pointer-events: none;
}
.hp-comments > .hp-container { position: relative; }
.hp-comments .hp-section-title { color: #ffffff; }
.hp-comments .hp-section-desc { color: rgba(255,255,255,.85); }
.hp-comments-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
  align-items: start;
}
.hp-comments-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hp-comment-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  color: #334155;
  box-shadow: 0 12px 30px rgba(10,109,194,.25);
  transition: transform .25s ease;
}
.hp-comment-card:hover { transform: translateY(-4px); }
.hp-comment-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.hp-comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c92e9, #0a6dc2);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.hp-comment-name {
  font-size: 15px;
  font-weight: 700;
  color: #0c2340;
  line-height: 1.2;
}
.hp-comment-loc {
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}
.hp-comment-text {
  font-size: 15px;
  line-height: 1.65;
  color: #334155;
  margin: 0;
  font-style: italic;
}
.hp-comments-media {
  position: sticky;
  top: 20px;
}
.hp-comments-media img,
.hp-comments-media video {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  display: block;
}

/* =============================
   SECTION 6: VIRTUAL TOUR
   ============================= */
.hp-tour {
  position: relative;
  padding: 100px 0;
  min-height: 400px;
  background-color: #0c2340;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}
.hp-tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,35,64,.78), rgba(10,109,194,.55));
}
.hp-tour-inner {
  position: relative;
  text-align: center;
}
.hp-tour-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hp-tour-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  max-width: 700px;
  margin: 0 auto 32px;
}
.hp-tour .hp-btn svg { margin-right: 2px; }

/* =============================
   SECTION 7: CONCIERGE
   ============================= */
.hp-concierge {
  background: #f8fafc;
  padding: 80px 0;
}
.hp-conc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hp-conc-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(12,35,64,.06);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hp-conc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(12,35,64,.15);
}
.hp-conc-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f4fd, #d0e9fc);
  color: #1c92e9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hp-conc-icon svg { width: 36px; height: 36px; }
.hp-conc-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.hp-conc-name {
  font-size: 17px;
  font-weight: 700;
  color: #0c2340;
  margin: 0 0 10px;
  line-height: 1.3;
}
.hp-conc-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* =============================
   SECTION 8: CONTACT BANNER
   ============================= */
.hp-contact {
  background: linear-gradient(135deg, #0a6dc2 0%, #1c92e9 100%);
  padding: 80px 0;
  color: #fff;
}
.hp-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hp-contact-inner:has(.hp-contact-img) {
  grid-template-columns: 1fr 1fr 1fr;
}
.hp-contact-title {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hp-contact-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  margin: 0;
}
.hp-contact-form-wrap {
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.hp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hp-contact-form input,
.hp-contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.92);
  color: #0c2340;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  box-sizing: border-box;
}
.hp-contact-form input::placeholder,
.hp-contact-form textarea::placeholder {
  color: #64748b;
}
.hp-contact-form input:focus,
.hp-contact-form textarea:focus {
  background: #ffffff;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.25);
}
.hp-contact-form textarea {
  resize: vertical;
  min-height: 96px;
}
.hp-contact-form button {
  margin-top: 6px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 6px 18px rgba(34,197,94,.28);
}
.hp-contact-form button:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22,163,74,.35);
}
.hp-contact-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

/* =============================
   SECTION 9: VALUE BADGES
   ============================= */
.hp-badges {
  position: relative;
  padding: 100px 0;
  background-color: #0c2340;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.hp-badges-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,35,64,.82), rgba(10,109,194,.55));
}
.hp-badges-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
}
.hp-badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  max-width: 220px;
}
.hp-badge-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c92e9, #0a6dc2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(10,109,194,.4), inset 0 0 0 4px rgba(255,255,255,.12);
  transition: transform .3s ease;
}
.hp-badge-card:hover .hp-badge-icon {
  transform: translateY(-6px) scale(1.04);
}
.hp-badge-icon svg,
.hp-badge-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.hp-badge-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* =============================
   SECTION 10: NEWSLETTER
   ============================= */
.hp-newsletter {
  position: relative;
  padding: 100px 0;
  background-color: #0a6dc2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.hp-newsletter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,35,64,.78), rgba(10,109,194,.55));
}
.hp-newsletter-inner {
  position: relative;
  text-align: center;
  max-width: 760px !important;
  margin: 0 auto;
}
.hp-newsletter-title {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hp-newsletter-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  margin: 0 auto 36px;
  max-width: 640px;
}
.hp-newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px;
  max-width: 540px;
  margin: 0 auto;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.hp-newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 20px;
  font-size: 15px;
  color: #0c2340;
  font-family: inherit;
}
.hp-newsletter-form input::placeholder { color: #94a3b8; }
.hp-newsletter-form button {
  border: none;
  background: #22c55e;
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 6px 18px rgba(34,197,94,.28);
}
.hp-newsletter-form button:hover {
  background: #16a34a;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(22,163,74,.35);
}

/* =============================
   RESPONSIVE — Homepage
   ============================= */

/* -- Tablet / small laptop (≤1024px) -- */
@media (max-width: 1024px) {
  .hp-container { padding: 0 28px; }

  /* Hero stacks */
  .hp-hero { padding: 64px 0 80px; }
  .hp-hero-inner {
    grid-template-columns: 1fr;
    padding: 0 28px;
    gap: 40px;
    text-align: center;
  }
  .hp-hero-text { padding-right: 0; }
  .hp-hero-desc { margin-left: auto; margin-right: auto; }
  .hp-hero-ctas { justify-content: center; }
  .hp-hero-title { font-size: 44px; }
  .hp-hero-img img { max-width: 440px; }

  /* Why stacks */
  .hp-why-inner {
    grid-template-columns: 1fr;
    padding: 0 28px;
    gap: 40px;
  }
  .hp-why-text .hp-section-title { text-align: center; }
  .hp-why-list { align-items: flex-start; }

  /* Grids become 2 cols */
  .hp-treat-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-doc-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-conc-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-badges-inner { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }

  /* Comments stacks */
  .hp-comments-grid { grid-template-columns: 1fr; }
  .hp-comments-media { position: static; }

  /* Contact stacks */
  .hp-contact-inner,
  .hp-contact-inner:has(.hp-contact-img) {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hp-contact-title { font-size: 36px; }

  .hp-tour-title { font-size: 38px; }
  .hp-newsletter-title { font-size: 36px; }
}

/* -- Mobile (≤768px) -- */
@media (max-width: 768px) {
  .hp-container { padding: 0 20px; }

  .hp-section-title { font-size: 28px; }
  .hp-section-desc { font-size: 15px; margin-bottom: 36px; }

  .hp-hero { padding: 56px 0 64px; }
  .hp-hero-inner { padding: 0 20px; gap: 32px; }
  .hp-hero-title { font-size: 36px; }
  .hp-hero-desc { font-size: 16px; }
  .hp-hero-eyebrow { font-size: 11px; padding: 6px 12px; }

  .hp-why { padding: 60px 0; }
  .hp-why-inner { padding: 0 20px; gap: 32px; }

  .hp-treatments,
  .hp-doctors,
  .hp-comments,
  .hp-concierge,
  .hp-contact {
    padding: 60px 0;
  }

  /* All grids become 1 col */
  .hp-treat-grid,
  .hp-doc-grid,
  .hp-conc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hp-badges { padding: 70px 0; }
  .hp-badges-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .hp-badge-icon { width: 100px; height: 100px; }
  .hp-badge-icon svg,
  .hp-badge-icon img { width: 44px; height: 44px; }

  .hp-tour { padding: 72px 0; min-height: 340px; }
  .hp-tour-title { font-size: 30px; }
  .hp-tour-desc { font-size: 16px; }

  .hp-contact-title { font-size: 30px; }
  .hp-contact-form-wrap { padding: 22px; }

  .hp-newsletter { padding: 72px 0; }
  .hp-newsletter-title { font-size: 30px; }
  .hp-newsletter-desc { font-size: 15px; }

  /* Newsletter form: stack input + button on mobile */
  .hp-newsletter-form {
    flex-direction: column;
    border-radius: 20px;
    padding: 14px;
    gap: 10px;
  }
  .hp-newsletter-form input {
    width: 100%;
    padding: 12px 16px;
    text-align: center;
  }
  .hp-newsletter-form button {
    width: 100%;
    padding: 14px 24px;
  }

  .hp-btn { padding: 12px 22px; font-size: 13px; }
}

/* -- Small mobile (≤480px) -- */
@media (max-width: 480px) {
  .hp-container { padding: 0 16px; }

  .hp-section-title { font-size: 24px; }
  .hp-section-desc { font-size: 14px; margin-bottom: 28px; }

  .hp-hero { padding: 44px 0 52px; }
  .hp-hero-inner { padding: 0 16px; gap: 26px; }
  .hp-hero-title { font-size: 28px; }
  .hp-hero-desc { font-size: 15px; }
  .hp-hero-ctas { gap: 10px; flex-direction: column; align-items: stretch; }
  .hp-hero-ctas .hp-btn { width: 100%; }

  .hp-why,
  .hp-treatments,
  .hp-doctors,
  .hp-comments,
  .hp-concierge,
  .hp-contact {
    padding: 48px 0;
  }
  .hp-why-inner { padding: 0 16px; gap: 26px; }

  .hp-treat-body,
  .hp-doc-body { padding: 18px; }
  .hp-treat-name { font-size: 18px; }
  .hp-doc-name { font-size: 16px; }

  .hp-comment-card { padding: 22px; }
  .hp-comment-avatar { width: 44px; height: 44px; font-size: 14px; }
  .hp-comment-text { font-size: 14px; }

  .hp-tour { padding: 56px 0; min-height: 300px; }
  .hp-tour-title { font-size: 24px; }
  .hp-tour-desc { font-size: 14px; }

  .hp-badges { padding: 56px 0; }
  .hp-badges-inner { grid-template-columns: 1fr; gap: 32px; }
  .hp-badge-icon { width: 96px; height: 96px; }

  .hp-contact-title { font-size: 24px; }
  .hp-contact-desc { font-size: 15px; }
  .hp-contact-form-wrap { padding: 18px; border-radius: 16px; }

  .hp-newsletter { padding: 56px 0; }
  .hp-newsletter-title { font-size: 24px; }
  .hp-newsletter-desc { font-size: 14px; }

  .hp-btn { padding: 12px 20px; font-size: 13px; }
  .hp-center-cta { margin-top: 28px; }
}

/* ═══════════════════════════════════════════════════════════════════
   TAILWIND REPLACEMENT UTILITIES
   CDN kaldırıldı — sadece template'lerde kullanılan utility'lerin
   karşılığı buraya yazıldı. Yeni utility eklemeden önce gerçekten
   gerekli mi diye düşün — tercih: liv-* prefix'li semantic class.
   ═══════════════════════════════════════════════════════════════════ */

/* Layout */
.max-w-layout {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}
@media (max-width: 1024px) { .max-w-layout { padding-left: 24px; padding-right: 24px; } }
@media (max-width: 640px)  { .max-w-layout { padding-left: 16px; padding-right: 16px; } }
.max-w-none { max-width: none; }
.mx-auto { margin-left: auto; margin-right: auto; }
.block { display: block; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-6 { gap: 1.5rem; }
.min-w-0 { min-width: 0; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }

/* Sizing */
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-48 { height: 12rem; }
.min-h-\[60vh\] { min-height: 60vh; }

/* Spacing */
.p-5 { padding: 1.25rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pb-6 { padding-bottom: 1.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* Typography */
.font-poppins { font-family: 'Poppins', sans-serif; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-\[120px\] { font-size: 120px; }
.text-center { text-align: center; }
.leading-none { line-height: 1; }
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

/* Colors */
.text-white { color: #fff; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-500 { color: #6b7280; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.text-liv-blue { color: #1c92e9; }
.bg-white { background-color: #fff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-liv-blue { background-color: #1c92e9; }

/* Border / Radius / Shadow */
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-gray-100 { border-color: #f3f4f6; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }

/* Transition / Effects */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

/* Hover states */
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:bg-liv-dark:hover { background-color: #0a6dc2; }
.hover\:text-liv-blue:hover { color: #1c92e9; }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }

/* Group hover */
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:text-liv-blue { color: #1c92e9; }

/* Minimal prose substitute (Tailwind Typography yok)
   article-body zaten tipografi sağlıyor — prose utility'leri var olsun
   diye no-op ya da hafif varsayılanla bırakıldı. */
.prose { color: #374151; line-height: 1.75; }
.prose p { margin: 1em 0; }
.prose-lg { font-size: 1.125rem; line-height: 1.7777778; }

/* Responsive: md (≥768px) */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-\[180px\] { font-size: 180px; }
}

/* Responsive: lg (≥1024px) */
@media (min-width: 1024px) {
  .lg\:flex-row { flex-direction: row; }
  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:w-\[380px\] { width: 380px; }
}

/* ═══════════════════════════════════════════════════════════
   POST-RECOVERY ADDITIONS — sohbet boyunca eklenen güncellemeler
   ═══════════════════════════════════════════════════════════ */

/* Hero banner padding — eski duplicate rule kaldırıldı, FINAL kural aşağıda (line ~4683) */
body:has(.hero-banner) { padding-top: 0; }

/* Header sticky/floating — absolute pozisyonla */
.liv-h-wrap {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 16px 0;
}

/* Widget text overflow fix */
.liv-w,
.article-body,
.widget-text-block {
    min-width: 0;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

/* Hero title margin fix */
.hero-title { margin: 0; }

/* Hero inner + breadcrumb inner — desktop 16px padding */
.hero-inner,
.breadcrumb-inner { padding-left: 16px; padding-right: 16px; }
/* Tablet/mobile padding ≤1024px/768px rule'ları (line 2086/2166) zaten 24/16px veriyor */

/* Pending content placeholder (approval workflow) */
.liv-pending-content {
    padding: 40px;
    text-align: center;
    color: #64748b;
    background: #f8fafc;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 800px;
}

/* ═══════════════════════════════════════════════════════════
   FIGMA HEADER (.liv-h-*) — Sohbette tasarlanan floating card
   ═══════════════════════════════════════════════════════════ */

.liv-h-wrap {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 16px 0;
}

.liv-header {
    background: #1C92E9;
    border-radius: 16px;
    height: 99px;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.liv-header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 50px;
    gap: 24px;
}

.liv-h-logo {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}
.liv-h-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.liv-h-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.liv-h-row1 {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

.liv-h-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 99px;
    color: #fff;
    font: 600 12px Poppins, sans-serif;
    text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
}
.liv-h-pill:hover { background: rgba(255, 255, 255, 0.28); }
.liv-h-pill-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 99px;
    flex-shrink: 0;
}
.liv-h-pill-ico img { display: block; max-width: 100%; height: auto; }
.liv-h-pill-ico--emergency {
    background: transparent !important;
    box-shadow: none !important;
}
.liv-h-pill-ico--emergency .liv-h-dot {
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: livEmergPulse 1.5s ease-in-out infinite;
}
@keyframes livEmergPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.25); }
}
.liv-h-pill-text { color: #fff; }
.liv-h-pill-text strong { font-weight: 700; }
.liv-h-pill--emergency .liv-h-pill-text strong { color: #fff; }

.liv-h-nav {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    align-items: center;
}
.liv-h-nav ul { display: flex; gap: 5px; list-style: none; margin: 0; padding: 0; }
.liv-h-nav li { list-style: none; }
.liv-h-nav a {
    color: #fff;
    text-decoration: none;
    font: 600 14px Poppins, sans-serif;
    transition: opacity .15s;
}
.liv-h-nav a:hover { opacity: 0.85; }
.liv-h-nav-empty { color: rgba(255,255,255,0.7); font-size: 12px; font-style: italic; }

.liv-h-burger {
    display: none;
    background: rgba(255,255,255,0.18);
    border: none;
    width: 40px; height: 40px;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
}
.liv-h-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .2s;
}
.liv-h-burger.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.liv-h-burger.is-active span:nth-child(2) { opacity: 0; }
.liv-h-burger.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV — Stitch "Clinical Serenity" tasarımı (drawer)
   ═══════════════════════════════════════════════════════════ */
.liv-h-mobile{
    /* Drawer container — backdrop + panel position:fixed kendi z-index'lerini taşıyor */
    pointer-events: none !important;
}
.liv-h-mobile .liv-mob-backdrop,
.liv-h-mobile .liv-mob-panel{
    pointer-events: none !important;
}
.liv-h-mobile.is-open .liv-mob-backdrop,
.liv-h-mobile.is-open .liv-mob-panel{
    pointer-events: auto !important;
}
.liv-h-mobile:not(.is-open) .liv-mob-backdrop{ opacity: 0 !important; visibility: hidden !important; }
.liv-h-mobile:not(.is-open) .liv-mob-panel{ transform: translateX(110%) !important; visibility: hidden !important; }
/* A11y: Drawer kapalıyken içerideki link/button tab-lanamasın (aria-hidden-focus fix) */
.liv-h-mobile:not(.is-open) .liv-mob-panel a,
.liv-h-mobile:not(.is-open) .liv-mob-panel button,
.liv-h-mobile:not(.is-open) .liv-mob-panel input{ visibility: hidden; }
/* Backdrop */
.liv-mob-backdrop{
    position: fixed !important;
    inset: 0 !important;
    background: rgba(11,28,48,0.4) !important;
    opacity: 0 !important;
    transition: opacity .3s ease !important;
    cursor: pointer !important;
    z-index: 99999 !important;
}
.liv-h-mobile.is-open .liv-mob-backdrop{ opacity: 1 !important; }

/* Drawer panel */
.liv-mob-panel{
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 100vh !important;
    width: 85% !important;
    max-width: 380px !important;
    background: #f8f9ff !important;
    border-left: 1px solid rgba(191,199,212,0.3) !important;
    box-shadow: -8px 0 32px rgba(11,28,48,0.18) !important;
    border-top-left-radius: 16px !important;
    border-bottom-left-radius: 16px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transform: translateX(100%) !important;
    transition: transform .3s cubic-bezier(.4,0,.2,1) !important;
    font-family: Inter, -apple-system, 'Segoe UI', sans-serif !important;
    z-index: 100000 !important;
    color: #0b1c30 !important;
}
.liv-h-mobile.is-open .liv-mob-panel{ transform: translateX(0) !important; }

/* Header */
.liv-mob-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px 16px;
    flex-shrink: 0;
}
.liv-mob-brand{
    display: inline-flex !important;
    align-items: center;
    text-decoration: none !important;
    line-height: 1;
}
.liv-mob-brand img{
    height: 32px !important;
    width: auto !important;
    max-height: 32px !important;
    max-width: none !important;
    display: block !important;
}
.liv-mob-close{
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(28,146,233,0.1);
    border: 0;
    color: #1c92e9;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.liv-mob-close:hover{ background: rgba(28,146,233,0.2); }
.liv-mob-close .material-symbols-outlined{ font-size: 20px !important; font-variation-settings: 'wght' 600; }
/* Material Symbols fallback — font yüklenince fallback gizlenir */
.liv-mob-icon-fallback{
    display: none;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}
/* Font yüklenmediyse Material span'i 0 genişlikte kalır → fallback'i göster */
.liv-mob-close .material-symbols-outlined:empty + .liv-mob-icon-fallback,
.liv-mob-close .material-symbols-outlined:not(:defined) + .liv-mob-icon-fallback{
    display: inline-block;
}

/* Search */
.liv-mob-search{
    margin: 0 20px 16px;
    position: relative;
    display: flex;
    align-items: center;
    height: 48px;
    background: #eff4ff;
    border: 1px solid #eaf5fd;
    border-radius: 999px;
    padding: 0 16px;
    transition: background .2s, border-color .2s;
    flex-shrink: 0;
}
.liv-mob-search:focus-within{
    background: #fff;
    border-color: #1c92e9;
}
.liv-mob-search-ico{
    color: #005f9d !important;
    font-size: 20px !important;
    flex-shrink: 0;
}
.liv-mob-search-input{
    width: 100%;
    border: 0 !important;
    background: transparent !important;
    outline: 0 !important;
    box-shadow: none !important;
    font: 400 14px Inter, sans-serif;
    color: #0b1c30;
    padding: 0 0 0 12px !important;
    margin: 0 !important;
    height: 100% !important;
}
.liv-mob-search-input::placeholder{ color: #404752; }

/* Nav list scrollable area */
.liv-mob-nav-wrap{
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain; /* iOS body bounce'unu engelle */
    -webkit-overflow-scrolling: touch;
    padding: 0 12px 24px;
}
.liv-mob-nav-wrap::-webkit-scrollbar{ display: none; }
.liv-mob-nav-wrap{ scrollbar-width: none; }
.liv-mob-nav-list{
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.liv-mob-nav-item{ list-style: none !important; position: relative; }
.liv-mob-nav-item + .liv-mob-nav-item::before{
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 1px;
    background: rgba(191,199,212,0.18);
}
.liv-mob-nav-link{
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px !important;
    margin: 0 8px !important;
    border-radius: 12px !important;
    color: #404752 !important;
    text-decoration: none !important;
    font: 600 14px/16px Inter, sans-serif !important;
    letter-spacing: 0.02em;
    transition: background .2s;
    border: 0 !important;
}
.liv-mob-nav-link:hover,
.liv-mob-nav-link:focus{
    background: #dce9ff;
    color: #404752 !important;
    text-decoration: none !important;
}
.liv-mob-nav-item.is-active .liv-mob-nav-link{
    background: rgba(28,146,233,0.1) !important;
    color: #1c92e9 !important;
}
.liv-mob-nav-left{
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.liv-mob-nav-ico{
    font-size: 22px !important;
    font-variation-settings: 'wght' 300;
    flex-shrink: 0;
}
.liv-mob-nav-item.is-active .liv-mob-nav-ico{ font-variation-settings: 'FILL' 1, 'wght' 400; }
.liv-mob-nav-chev{
    font-size: 18px !important;
    opacity: 0.5;
    flex-shrink: 0;
}
.liv-mob-nav-item.is-active .liv-mob-nav-chev{ opacity: 1; }

/* Bottom fixed: CTA + Contact + Footer */
.liv-mob-bottom{
    padding: 16px 20px 32px;
    background: rgba(248,249,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(191,199,212,0.25);
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}
.liv-mob-cta{
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #1c92e9 !important;
    color: #fff !important;
    font: 600 14px/16px Inter, sans-serif !important;
    letter-spacing: 0.02em;
    padding: 16px 24px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(28,146,233,0.2);
    transition: opacity .2s, transform .1s;
    border: 0 !important;
}
.liv-mob-cta:hover{ opacity: .9; color: #fff !important; }
.liv-mob-cta:active{ transform: scale(.98); }

.liv-mob-contact{
    display: flex !important;
    align-items: center;
    gap: 12px;
    background: #eaf5fd !important;
    border-radius: 12px;
    padding: 12px 16px !important;
    text-decoration: none !important;
    color: #0b1c30 !important;
    border: 0 !important;
}
.liv-mob-contact-ico{
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #1c92e9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.liv-mob-contact-ico .material-symbols-outlined{ font-size: 20px !important; font-variation-settings: 'FILL' 1; }
.liv-mob-contact-text{
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.liv-mob-contact-label{
    font: 500 12px/16px Inter, sans-serif;
    color: #404752;
}
.liv-mob-contact-number{
    font: 600 14px/16px Inter, sans-serif;
    color: #005f9d !important;
}

.liv-mob-foot-row{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
}
.liv-mob-lang{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 0;
    color: #404752;
    font: 500 12px/16px Inter, sans-serif;
    cursor: pointer;
    padding: 4px 0;
    transition: color .2s;
}
.liv-mob-lang:hover{ color: #1c92e9; }
.liv-mob-lang-flag{
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(191,199,212,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
}
.liv-mob-lang .material-symbols-outlined{ font-size: 16px !important; }

.liv-mob-social{
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.liv-mob-social a{
    color: #707883;
    transition: color .2s;
    display: inline-flex;
    text-decoration: none;
}
.liv-mob-social a:hover{ color: #1c92e9; }

/* Material symbols base */
.liv-mob-panel .material-symbols-outlined,
.liv-h-mobile .material-symbols-outlined{
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    font-variation-settings: 'opsz' 24, 'wght' 400, 'FILL' 0, 'GRAD' 0;
}

/* Eski stiller — legacy class'lar artık kullanılmıyor ama bırakıyoruz */
.liv-h-mobile ul { list-style: none; margin: 0; padding: 0; }
.liv-h-mobile li { list-style: none; }
.liv-h-mobile-foot {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.liv-h-mobile-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1C92E9;
    font: 600 14px Poppins, sans-serif;
    text-decoration: none;
}
.liv-h-mobile-emergency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ef4444;
    font: 600 13px Poppins, sans-serif;
}
.liv-h-mobile-emergency .liv-h-dot {
    width: 8px; height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: livEmergPulse 1.5s ease-in-out infinite;
}

/* 1199px ve altı — desktop nav 9 menu item sığmaz, burger geçsin */
@media (max-width: 1199px) {
    .liv-h-content { display: none; }
    .liv-h-burger { display: inline-flex; margin-left: auto; }
}
/* 1024px ve altı — header compact mod (liv-h-wrap padding her ekranda 28px 16px 0 — override yok) */
@media (max-width: 1024px) {
    .liv-header { height: auto; padding: 14px 0; }
    .liv-header-inner { padding: 0 20px; }
    .liv-h-logo img { height: 36px; }
}

/* Hero banner header overlap düzeltme — header absolute olduğu için hero üstte */
/* body:has(.liv-h-wrap) padding-top override — kaldırıldı, final clamp(160px, 14vw, 130px) kuralı geçerli */

/* ═══════════════════════════════════════════════════════════
   FINAL OVERRIDES — sohbet boyunca onaylanmış son ayarlar
   ═══════════════════════════════════════════════════════════ */

/* mx-auto + max-w-layout — 1400px container GUARANTEED, padding sıfır */
.max-w-layout.mx-auto,
.max-w-layout {
    width: 100% !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
}

/* Hero — başlık + lead + buton olan (full) */
.hero-banner,
.hero-banner--archive,
body .hero-banner,
body:has(.liv-h-wrap) .hero-banner,
body:has(.hero-banner) .hero-banner {
    padding: clamp(140px, 14vw, 160px) 0 clamp(20px, 2vw, 40px) !important;
}
/* Mobile (≤700px) — kompakt hero padding */
@media (max-width: 700px) {
    .hero-banner,
    .hero-banner--archive,
    body .hero-banner,
    body:has(.liv-h-wrap) .hero-banner,
    body:has(.hero-banner) .hero-banner {
        padding: clamp(10px, 32vw, 160px) 0 clamp(20px, 2vw, 40px) !important;
    }
}
/* Hero — sadece başlık (lead yok) */
.hero-banner:not(:has(.hero-lead)),
body .hero-banner:not(:has(.hero-lead)),
body:has(.liv-h-wrap) .hero-banner:not(:has(.hero-lead)) {
    padding: clamp(100px, 14vw, 160px) 0 clamp(20px, 2vw, 40px) !important;
}

/* Custom sidebar — sticky (scroll YOK), header height kadar offset */
.liv-sidebar,
.liv-sidebar--sticky {
    position: sticky;
    top: 20px;
    align-self: flex-start;
    overflow: visible;
}
/* Sidebar masaüstü harici görünmesin */
@media (max-width: 1024px) {
    .liv-sidebar,
    .liv-sidebar--sticky,
    .sidebar-column,
    aside.liv-sidebar {
        display: none !important;
    }
}

/* Footer icon fix — Font Awesome 6 brand prefix uyumu */
.ft-social-icon { display: inline-flex; align-items: center; justify-content: center; }
.ft-social-icon i { font-size: 18px; }
.ft-social-icon .fa-x-twitter::before { content: "\e61b"; }
.ft-contact-item i, .ft-cta-field i, .ft-cta-submit i { display: inline-block; }
.ft-value-icon i { font-size: 20px; }

/* Footer responsive guarantee */
@media (max-width: 768px) {
    .ft-cta-inner { flex-direction: column; }
    .ft-building { flex-direction: column; }
    .ft-main-inner { flex-direction: column; gap: 24px; }
}

/* Eski footer override blok #2 silindi — Figma-exact final block dosyanın sonunda */

/* liv-video-section padding fix */
.liv-video-section,
.liv-video-section .max-w-layout,
.liv-w-video-section {
    padding: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   FIGMA-EXACT FINAL — Header (node 2858:659) + Footer (2892:1673)
   Cascade en sona koyuldu — önceki kısmi rule'ları override eder
   ═══════════════════════════════════════════════════════════ */

/* ─── HEADER: solid blue pill (Figma 2858:659) ─── */
.liv-h-wrap {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 16px 0;
}
.liv-header {
    background: #1C92E9;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 14.7px;
    height: 99px;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(0, 49, 85, 0.18);
}
.liv-header-inner { padding: 0 28px; gap: 20px; border: none; }
.liv-h-logo img { height: 56px; filter: brightness(0) invert(1); }
.liv-h-row1 { gap: 10px; }
.liv-h-pill {
    margin-top: 5px;
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    background: rgba(255, 255, 255, 0.18);
    border: none;
    border-radius: 99px;
    font: 600 12.5px Poppins, sans-serif;
}
.liv-h-pill-ico {
    width: 24px; height: 24px;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}
.liv-h-pill-ico--emergency {
    background: transparent !important;
    box-shadow: none !important;
}
.liv-h-pill-ico--emergency .liv-h-dot {
    width: 9px;
    height: 9px;
    background: #fff;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    animation: livEmergPulse 1.5s ease-in-out infinite;
}
.liv-h-nav { gap: 5px; }
.liv-h-nav ul { gap: 5px; }
.liv-h-nav a {
    font: 600 14px Poppins, sans-serif;
    padding: 8px 12px;
    border-radius: 8px;
    color: #fff;
    transition: background .15s;
}
.liv-h-nav a:hover {
    background: rgba(255, 255, 255, 0.18);
    opacity: 1;
}

/* ─── FOOTER SECTION 1: CTA — Figma 2892:1673 (Blue bg, big title, form card) ─── */
.ft-cta {
    position: relative;
    background: #1C92E9;
    overflow: hidden;
    padding: 80px 0 80px;
    margin-top: 60px;
}
.ft-cta-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 85% 60%, rgba(0, 49, 85, 0.35), transparent 55%),
        linear-gradient(180deg, rgba(28,146,233,0) 0%, rgba(0,49,85,0.15) 100%);
    pointer-events: none;
    z-index: 1;
}
.ft-cta-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    align-items: center;
}
.ft-cta-left { padding: 0; }
.ft-cta-title {
    color: #fff;
    font: 800 clamp(36px, 5.2vw, 72px)/1.05 Poppins, sans-serif;
    margin: 0 0 22px;
    letter-spacing: -1.2px;
}
.ft-cta-desc {
    color: rgba(255, 255, 255, 0.92);
    font: 400 17px/1.55 Poppins, sans-serif;
    margin: 0;
    max-width: 520px;
}
.ft-cta-doctor {
    position: absolute;
    right: 42%;
    bottom: 0;
    max-height: 540px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}
.ft-cta-form-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
}
.ft-cta-form-card {
    background: rgba(28, 146, 233, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 25.44px;
    padding: 32px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 22px 60px rgba(0, 49, 85, 0.25);
}
.ft-cta-form-title {
    font: 700 22px/1.3 Poppins, sans-serif;
    color: #fff;
    text-align: center;
    margin: 0 0 22px;
}
.ft-cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ft-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.ft-cta-field {
    display: flex; align-items: center; gap: 10px;
    background: #FAFAFA;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 13px 16px;
    transition: border-color .15s, box-shadow .15s;
}
.ft-cta-field:focus-within {
    border-color: #1C92E9;
    box-shadow: 0 0 0 3px rgba(28, 146, 233, 0.15);
}
.ft-cta-field i { color: #1C92E9; font-size: 14px; }
.ft-cta-field input {
    flex: 1;
    border: none; outline: none; background: transparent;
    font: 400 14px Poppins, sans-serif;
    color: #003155;
}
.ft-cta-field input::placeholder { color: #94a3b8; }
.ft-cta-gdpr {
    display: flex; align-items: flex-start; gap: 10px;
    font: 400 12px/1.5 Poppins, sans-serif;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 4px;
}
.ft-cta-gdpr a { color: #fff; text-decoration: underline; font-weight: 600; }
.ft-cta-gdpr input { margin-top: 2px; flex-shrink: 0; accent-color: #16AC4E; }
.ft-cta-submit {
    background: #16AC4E;
    color: #fff;
    border: none;
    padding: 16px 28px;
    border-radius: 12px;
    font: 700 15px Poppins, sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .15s, transform .15s;
    margin-top: 6px;
    align-self: stretch;
}
.ft-cta-submit:hover { background: #129241; transform: translateY(-1px); }

/* ─── FOOTER SECTION 2: Building + W-Mask + 5 Values (navy bg) ─── */
.ft-building {
    background: #003155;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: none;
    margin: 0;
    padding: 70px 40px;
    gap: 60px;
    color: #fff;
    overflow: hidden; /* absolute .ft-value icon'ları viewport'tan taşmasın */
}
.ft-w-figure { overflow: visible; } /* parent ediyor, kendisi taşabilir */
.ft-building-left { display: flex; justify-content: center; }
.ft-building-left-img {
    max-width: 540px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}
.ft-w-figure {
    position: relative;
    width: 100%;
    aspect-ratio: 720/370;
    max-width: 720px;
}
.ft-w-mask { width: 100%; height: 100%; object-fit: contain; }
.ft-value {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}
.ft-value-icon {
    width: 78px; height: 78px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    color: #1C92E9;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}
.ft-value-icon i { font-size: 30px; }
.ft-value-label {
    font: 600 15px/1.3 Poppins, sans-serif;
    color: #1C92E9;
    white-space: pre-line;
}
.ft-value--left .ft-value-label { text-align: right; }

/* ─── FOOTER SECTION 3: Main Menu (navy bg) ─── */
.ft-main {
    background: #003155;
    color: #fff;
    padding: 70px 0 0;
}
.ft-main-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px 50px;
}
.ft-col { display: flex; flex-direction: column; gap: 8px; }
.ft-col-brand .ft-logo,
.ft-col-brand .custom-logo,
.ft-col-brand .custom-logo-link img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 8px;
}
.ft-col-title {
    color: #fff;
    font: 500 22px/1.3 Poppins, sans-serif;
    text-transform: none;
    letter-spacing: 0;
    margin: 0 0 18px;
    padding-bottom: 0;
    border-bottom: none;
}
.ft-link {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font: 400 14px/1.7 Inter, Poppins, sans-serif;
    padding: 3px 0;
    transition: color .15s;
}
.ft-link:hover { color: #1C92E9; }
.ft-col-contact { gap: 14px; }
.ft-contact-list { display: flex; flex-direction: column; gap: 12px; }
.ft-contact-item {
    display: inline-flex; align-items: center; gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font: 400 14px Inter, Poppins, sans-serif;
    transition: color .15s;
}
.ft-contact-item:hover { color: #1C92E9; }
.ft-contact-item i {
    width: 28px; height: 28px;
    background: rgba(28, 146, 233, 0.18);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #1C92E9;
    font-size: 13px;
    flex-shrink: 0;
}
.ft-socials { display: flex; gap: 10px; margin-top: 10px; }
.ft-social-icon {
    width: 36px; height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all .15s;
}
.ft-social-icon i { font-size: 15px; }
.ft-social-icon:hover {
    background: #1C92E9;
    border-color: #1C92E9;
    color: #fff;
    transform: translateY(-2px);
}

/* ─── COPYRIGHT BAR ─── */
.ft-copyright {
    background: #000;
    border-top: none;
    padding: 16px 0;
    margin-top: 0;
}
.ft-copyright-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font: 400 13.1px/1.5 Inter, Poppins, sans-serif;
    color: rgba(255, 255, 255, 0.55);
    flex-wrap: wrap;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
    .ft-cta-doctor { right: 50%; max-height: 460px; }
    .ft-cta-title { font-size: clamp(32px, 5vw, 56px); }
    /* Footer 4-col → 2-col + brand kolonu tam genişlik (asymmetry fix) */
    .ft-main-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
    .ft-col-brand { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
    .liv-header-inner { padding: 0 18px; }
    .liv-h-content { display: none; }
    .ft-cta-inner { grid-template-columns: 1fr; gap: 28px; padding: 0 16px; }
    .ft-cta-doctor { display: none; }
    .ft-building { grid-template-columns: 1fr; padding: 50px 16px; }
    .ft-w-figure { display: none; }
    .ft-main-inner { padding: 0 16px 36px; }
    .ft-copyright-inner { padding: 0 16px; }
}
@media (max-width: 700px) {
    /* ≤700px: hero/breadcrumb/article/footer hepsi 20px (header .liv-h-wrap ile aynı) */
    .hero-inner,
    .breadcrumb-inner,
    .page-layout,
    .contact-banner-inner,
    .doctors-inner,
    .article-body,
    .ft-cta-inner,
    .ft-main-inner,
    .ft-copyright-inner {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}
/* Footer form 2-kolon → 1-kolon — 768px altında kompakt */
@media (max-width: 768px) {
    .ft-cta-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .liv-header { height: 72px; border-radius: 12px; }
    .ft-cta { padding: 50px 0; }
    .ft-cta-title { font-size: 30px; }
    .ft-cta-form-card { padding: 22px; }
    .ft-main-inner { grid-template-columns: 1fr; gap: 28px; }
    .ft-copyright-inner { flex-direction: column; text-align: center; font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   WIDGET WRAPPER — display conditions + entrance animations
   ═══════════════════════════════════════════════════════════ */

/* Cihaz bazlı gizleme — widget settings'ten Tema Paneli aracılığıyla */
@media (max-width: 767px)  { .liv-hide-mobile  { display: none !important; } }
@media (min-width: 768px) and (max-width: 1024px) { .liv-hide-tablet  { display: none !important; } }
@media (min-width: 1025px) { .liv-hide-desktop { display: none !important; } }

/* Entrance animations — IntersectionObserver ile .is-visible class'ı eklenir */
.liv-anim {
    opacity: 0;
    transition: opacity .7s ease, transform .7s cubic-bezier(.16,.84,.44,1);
    will-change: opacity, transform;
}
.liv-anim[data-liv-anim="fade-in"]    { opacity: 0; }
.liv-anim[data-liv-anim="fade-up"]    { opacity: 0; transform: translateY(40px); }
.liv-anim[data-liv-anim="fade-down"]  { opacity: 0; transform: translateY(-40px); }
.liv-anim[data-liv-anim="fade-left"]  { opacity: 0; transform: translateX(40px); }
.liv-anim[data-liv-anim="fade-right"] { opacity: 0; transform: translateX(-40px); }
.liv-anim[data-liv-anim="zoom-in"]    { opacity: 0; transform: scale(0.85); }
.liv-anim[data-liv-anim="zoom-out"]   { opacity: 0; transform: scale(1.15); }
.liv-anim[data-liv-anim="slide-up"]   { opacity: 0; transform: translateY(80px); }

.liv-anim.is-visible {
    opacity: 1 !important;
    transform: translateX(0) translateY(0) scale(1) !important;
}

/* Reduce motion — accessibility */
@media (prefers-reduced-motion: reduce) {
    .liv-anim { transition: none; opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE FIXES — tablet boşluklarını kapat
   (768-900px arası 3-4 sütun grid'ler taşıyordu)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    /* Legacy 3-4 sütun grid'ler tablet'te 2 sütun olsun */
    .mechanism-cards,
    .journey-steps,
    .benefit-grid,
    .info-cards,
    .doctor-cards,
    .testimonials,
    .related-videos {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Sidebar masaüstü altına in */
    .sidebar-column {
        width: 100% !important;
    }

    /* Article body padding küçük */
    .article-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Sayfa layout dikey */
    .page-layout {
        flex-direction: column !important;
    }
}

@media (max-width: 600px) {
    /* Mobilde TÜM grid'ler tek sütun */
    .mechanism-cards,
    .journey-steps,
    .benefit-grid,
    .info-cards,
    .doctor-cards,
    .testimonials,
    .related-videos,
    .growth-stats-grid {
        grid-template-columns: 1fr !important;
    }

    /* Hero başlık iyice küçül */
    .hero-title {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }
    .hero-lead {
        font-size: 13px !important;
    }
    .hero-banner {
        min-height: 200px !important;
    }
    .hero-inner {
        padding-top: 20px !important;
        padding-bottom: 16px !important;
    }

    /* Tüm container'lar mobil padding */
    .max-w-layout,
    .hero-inner,
    .breadcrumb-inner {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Tablo & embed'ler taşmaz */
    .article-body table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .article-body iframe {
        max-width: 100% !important;
    }

    /* Yatay scroll önle (html/body level) */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
}

/* Görsel her zaman taşmaz — global garanti */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* ═══════════════════════════════════════════════════════════
   PAGE WIDTH — page edit metabox'tan seçilen genişlik
   ═══════════════════════════════════════════════════════════ */
body.liv-pw-wide   .max-w-layout,
body.liv-pw-wide   .max-w-layout.mx-auto { max-width: 1600px !important; }

body.liv-pw-xwide  .max-w-layout,
body.liv-pw-xwide  .max-w-layout.mx-auto { max-width: 1800px !important; }

body.liv-pw-boxed  .max-w-layout,
body.liv-pw-boxed  .max-w-layout.mx-auto { max-width: 1200px !important; }

body.liv-pw-narrow .max-w-layout,
body.liv-pw-narrow .max-w-layout.mx-auto { max-width: 900px !important; }

/* ─── FULL WIDTH — agresif, tüm container'ları zorla 100% ─── */
body.liv-pw-full .max-w-layout,
body.liv-pw-full .max-w-layout.mx-auto {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
body.liv-pw-full .max-w-layout > main,
body.liv-pw-full .max-w-layout > .flex-1 {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}
body.liv-pw-full .article-body,
body.liv-pw-full .article-body.max-w-none {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/* ⚠ KRİTİK: Widget wrapper'ı (.liv-w) varsayılan 1400px sınırı zorluyor.
   Full mode'da bu sınırı kaldır — text_block, custom_html dahil tüm widget'lar 100% genişler. */
body.liv-pw-full .liv-w,
body.liv-pw-full .article-body .liv-w,
body.liv-pw-full [class*="liv-w-"] {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
/* Full mode'da bile hero ve breadcrumb 1400px kalsın (header/footer ile hizalı) */
body.liv-pw-full .hero-inner,
body.liv-pw-full .breadcrumb-inner {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ─── nosidebar (full + narrow) → aside gizle, main 100% ─── */
body.liv-pw-nosidebar .max-w-layout {
    flex-direction: column !important;
}
body.liv-pw-nosidebar .max-w-layout > main,
body.liv-pw-nosidebar .max-w-layout > .flex-1 {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}
body.liv-pw-nosidebar aside:not(.liv-mob-panel),
body.liv-pw-nosidebar .liv-sidebar,
body.liv-pw-nosidebar .liv-sidebar--sticky { display: none !important; }

/* Narrow modunda article-like görünüm */
body.liv-pw-narrow .article-body {
    font-size: 16px;
    line-height: 1.7;
}
body.liv-pw-narrow .hero-title,
body.liv-pw-narrow .hero-inner { text-align: center; }

/* ═══════════════════════════════════════════════════════════
   AREA-SPECIFIC MOBILE FIXES — sidebar form, review card, pst-stats
   ═══════════════════════════════════════════════════════════ */

/* Review card (doktor yıldız + fotoğraf) — dikey stack mobilde */
@media (max-width: 700px) {
  .review-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 14px !important;
    gap: 10px !important;
  }
  .review-photo { width: 56px !important; height: 56px !important; }
  .review-right { text-align: center !important; }
}

/* Views/Read time bar — mobilde compact */
@media (max-width: 700px) {
  .pst-stats {
    gap: 10px !important;
    padding: 0 12px !important;
    flex-wrap: wrap;
    height: auto !important;
    min-height: 38px;
  }
  .pst-stat-divider { display: none !important; }
}

/* Hero lead mobilde küçük */
@media (max-width: 700px) {
  .hero-lead {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
  }
  .hero-eyebrow {
    font-size: 11px !important;
  }
}

/* Header pill butonlar (7/24 call center + phone) mobilde gizle veya küçült */
@media (max-width: 480px) {
  .liv-h-row1 .liv-h-pill-247 { display: none !important; } /* 7/24 yazılı pill mobilde */
}

/* Footer CTA form input'ları mobilde stack */
@media (max-width: 600px) {
  .ft-cta-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .ft-cta-form-card input,
  .ft-cta-form-card textarea {
    width: 100% !important;
  }
}

/* Aside sidebar mobilde tam genişlik */
@media (max-width: 1024px) {
  aside.w-full.lg\:w-\[380px\] {
    width: 100% !important;
    max-width: 100% !important;
  }
}
