/* =============================================
   WHITE LINE CLINIC — Premium Medical Website
   Design: sterile white + teal #1A6B60
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #1A6B60;
  --teal-mid:    #2D8B7E;
  --teal-light:  #E8F5F3;
  --teal-pale:   #F0F9F8;
  --rose:        #C2445A;
  --rose-light:  #FDF0F3;
  --blue:        #2B5FC4;
  --blue-light:  #EEF3FD;
  --slate:       #475569;
  --slate-light: #F1F5F9;
  --amber:       #D97706;
  --amber-light: #FEF9EE;
  --purple:      #6D28D9;
  --purple-light:#F5F0FF;
  --red:         #DC2626;
  --red-light:   #FEF2F2;

  --text-dark:   #0C1F1C;
  --text-body:   #354040;
  --text-muted:  #6B7A7A;
  --text-light:  #9CA3A3;

  --bg:          #FFFFFF;
  --bg-soft:     #F8FAFA;
  --bg-section:  #F4F9F8;
  --border:      #E5ECEB;
  --border-soft: #EEF3F2;

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:      0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.05);
  --shadow-teal: 0 8px 32px rgba(26,107,96,.18);

  --container:   1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

em { font-style: italic; color: var(--teal); }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
  flex-shrink: 0;
}

.logo-cross {
  width: 34px;
  height: 34px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--text-dark);
}

.logo-sub {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--teal);
  font-style: italic;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}

.nav a:hover { color: var(--teal); }

.btn-header {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  background: var(--teal);
  color: white;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}

.btn-header:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #F8FAFA 0%, #FFFFFF 50%, var(--teal-pale) 100%);
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero left */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  background: var(--teal);
  color: white;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(26,107,96,.28);
}

.btn-primary.large {
  height: 58px;
  font-size: 16px;
  padding: 0 36px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 52px;
  padding: 0 24px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1.5px solid var(--teal-light);
  background: transparent;
  transition: background .2s, border-color .2s;
}

.btn-ghost:hover {
  background: var(--teal-pale);
  border-color: var(--teal);
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-body);
  box-shadow: var(--shadow-sm);
}

.badge svg { color: var(--teal); flex-shrink: 0; }

/* Hero right / visual */
.hero-visual {
  position: relative; /* for hero-bg-cross */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-wrap {
  display: grid;
  grid-template-areas:
    ". stat"
    "card card"
    "review .";
  grid-template-columns: 1fr auto;
  gap: 12px;
  width: 100%;
  max-width: 460px;
}

.hero-card {
  grid-area: card;
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.hero-card-photo {
  flex-shrink: 0;
}

.hero-card-info {
  flex: 1;
  min-width: 0;
}

.hero-card-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-card-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-card-exp {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 4px;
}

.hero-card-status {
  position: absolute;
  top: -10px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-body);
  box-shadow: var(--shadow-sm);
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}

/* Floating review card */
.hero-float-review {
  grid-area: review;
  background: white;
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  max-width: 220px;
  align-self: start;
}

.float-stars {
  color: #FBBF24;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.float-text {
  font-size: 12.5px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}

.float-author {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* Floating stat */
.hero-float-stat {
  grid-area: stat;
  background: var(--teal);
  color: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-teal);
  text-align: center;
  align-self: end;
}

.float-num {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.float-label {
  font-size: 11px;
  opacity: .85;
  margin-top: 3px;
  line-height: 1.3;
}

/* Decorative cross */
.hero-bg-cross {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 240px;
  height: 240px;
  color: var(--teal-light);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-cross svg { width: 100%; height: 100%; }

/* =============================================
   DOCTOR AVATARS
   ============================================= */
.doctor-avatar {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Sizes */
.doctor-avatar.large { width: 72px; height: 72px; }
.doctor-avatar.xl    { width: 100px; height: 100px; }

/* Colors */
.doctor-avatar.teal  { background: var(--teal-light); color: var(--teal); }
.doctor-avatar.rose  { background: var(--rose-light); color: var(--rose); }
.doctor-avatar.blue  { background: var(--blue-light); color: var(--blue); }
.doctor-avatar.slate { background: var(--slate-light); color: var(--slate); }

/* Real photos */
.doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: inherit;
  display: block;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--text-dark);
  padding: 40px 0;
}

.trust-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  padding: 8px 48px;
  flex: 1;
  min-width: 160px;
}

.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.trust-num span {
  font-size: 22px;
  color: var(--teal-mid);
}

.trust-label {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  margin-top: 6px;
  line-height: 1.4;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* =============================================
   SECTIONS — shared
   ============================================= */
.section { padding: 96px 0; }

.section-head {
  margin-bottom: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.section-head.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}

.section-desc {
  font-size: 16.5px;
  color: var(--text-muted);
  max-width: 520px;
  margin-top: 14px;
  line-height: 1.7;
}

.section-head.centered .section-desc { margin: 14px auto 0; }

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--bg); }

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

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon.teal   { background: var(--teal-light);   color: var(--teal); }
.service-icon.red    { background: var(--red-light);    color: var(--red); }
.service-icon.blue   { background: var(--blue-light);   color: var(--blue); }
.service-icon.purple { background: var(--purple-light); color: var(--purple); }
.service-icon.amber  { background: var(--amber-light);  color: var(--amber); }

.service-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-price {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 4px 12px;
  border-radius: 20px;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  font-size: 15px;
  color: var(--text-muted);
}

.link-arrow {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  transition: gap .15s;
}

.link-arrow:hover { text-decoration: underline; }

/* =============================================
   DOCTORS
   ============================================= */
.doctors-section { background: var(--bg-soft); }

.doctors-lead {
  max-width: 360px;
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 16px;
}

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

.doctor-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .2s, box-shadow .2s;
}

.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.doctor-photo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
}

.doctor-exp-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

.doctor-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.doctor-spec {
  font-size: 13.5px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 6px;
}

.doctor-edu {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 14px;
}

.doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.doctor-tags span {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-body);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 20px;
}

.doctor-info { flex: 1; }

.doctor-btn {
  display: block;
  text-align: center;
  padding: 11px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  margin-top: auto;
  transition: background .2s, color .2s;
}

.doctor-btn:hover {
  background: var(--teal);
  color: white;
}

/* =============================================
   APPROACH
   ============================================= */
.approach-section { background: var(--bg); }

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.approach-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0 32px;
}

.approach-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.approach-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-soft);
}

.approach-item:first-child { padding-top: 0; }
.approach-item:last-child  { border-bottom: none; padding-bottom: 0; }

.approach-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  padding-top: 2px;
}

.approach-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.approach-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews-section { background: var(--bg-section); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
}

.review-card.featured {
  background: var(--text-dark);
  border-color: var(--text-dark);
}

.review-card.featured .review-text,
.review-card.featured .review-name {
  color: white;
}

.review-card.featured .review-stars { color: #FBBF24; }
.review-card.featured .review-meta  { color: rgba(255,255,255,.5); }

.review-stars {
  color: #FBBF24;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: normal;
  quotes: none;
}

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

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.review-avatar.teal  { background: var(--teal); }
.review-avatar.rose  { background: var(--rose); }
.review-avatar.blue  { background: var(--blue); }
.review-avatar.slate { background: var(--slate); }

.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.review-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
}

.reviews-footer {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rating-stars { color: #FBBF24; font-size: 22px; }
.rating-num   { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--text-dark); }
.rating-source { font-size: 13px; color: var(--text-muted); max-width: 160px; line-height: 1.4; }

/* =============================================
   PROCESS
   ============================================= */
.process-section { background: var(--bg); }

.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
}

.process-step {
  flex: 1;
  padding: 32px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  font-size: 22px;
  color: var(--text-light);
  padding-top: 72px;
  flex-shrink: 0;
}

.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: 12px;
}

.process-icon {
  width: 60px;
  height: 60px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--teal);
}

.process-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.process-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.process-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 4px 12px;
  border-radius: 20px;
}

.process-cta {
  text-align: center;
}

.process-cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.process-cta-note a {
  color: var(--text-body);
  font-weight: 600;
  text-decoration: none;
}

.process-cta-note a:hover { color: var(--teal); }

/* =============================================
   FINAL CTA
   ============================================= */
.cta-section {
  background: var(--bg-section);
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--teal) 0%, #0E4D45 100%);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 0; /* creates stacking context so children's z-index works */
  overflow: hidden;
}

.cta-cross-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  color: rgba(255,255,255,.07);
  pointer-events: none;
  z-index: 0;
}

.cta-cross-bg svg { width: 100%; height: 100%; }

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-title em { color: rgba(255,255,255,.75); }

.cta-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  background: white;
  color: var(--teal);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  transition: transform .15s, box-shadow .2s;
  white-space: nowrap;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,.35);
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}

.btn-cta-outline:hover {
  border-color: white;
  background: rgba(255,255,255,.08);
}

.cta-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.cta-info-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 14px 16px;
  min-width: 220px;
}

.cta-info-card svg { color: rgba(255,255,255,.7); flex-shrink: 0; margin-top: 1px; }

.cta-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 3px;
}

.cta-info-val {
  font-size: 14px;
  color: white;
  font-weight: 500;
  line-height: 1.4;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--text-dark);
  padding: 64px 0 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-main { color: white; }
.footer-brand .logo-cross { background: var(--teal-mid); }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  max-width: 240px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

.footer-links-col,
.footer-contacts-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-links-col a,
.footer-contacts-col a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  padding: 5px 0;
  transition: color .2s;
}

.footer-links-col a:hover,
.footer-contacts-col a:hover { color: white; }

.footer-address,
.footer-hours {
  font-size: 13.5px;
  color: rgba(255,255,255,.35);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,.5), 0 4px 12px rgba(0,0,0,.15);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card.featured { grid-column: span 2; }

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

  .cta-box {
    grid-template-columns: 1fr;
    padding: 48px 40px;
    gap: 36px;
  }

  .cta-info-cards { flex-direction: row; flex-wrap: wrap; }
  .cta-info-card  { min-width: 0; flex: 1; }
}

@media (max-width: 768px) {
  .hero {
    padding: 56px 0 72px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual { order: -1; }
  .hero-card-wrap { max-width: 100%; }

  .hero-desc { font-size: 15px; }
  .hero-actions { gap: 12px; }
  .btn-primary, .btn-ghost { height: 48px; font-size: 14px; padding: 0 20px; }

  .nav { display: none; }
  .btn-header { display: none; }
  .burger { display: flex; }

  .trust-bar-inner { gap: 0; }
  .trust-item { padding: 12px 20px; min-width: 120px; }
  .trust-divider { height: 32px; }
  .trust-num { font-size: 28px; }

  .section { padding: 64px 0; }

  .section-head {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
  }

  .services-grid { grid-template-columns: 1fr; }
  .doctors-grid  { grid-template-columns: 1fr; }

  .approach-inner { grid-template-columns: 1fr; gap: 40px; }

  .reviews-grid { grid-template-columns: 1fr; }
  .review-card.featured { grid-column: span 1; }

  .process-grid {
    flex-direction: column;
    gap: 16px;
  }

  .process-arrow {
    transform: rotate(90deg);
    padding-top: 0;
    align-self: center;
  }

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

  .footer-brand { grid-column: span 2; }

  .cta-box { padding: 36px 24px; }
  .cta-info-cards { flex-direction: column; }

  .ratings-row { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 34px; }

  .hero-float-review { max-width: 180px; }
  .hero-float-stat   { padding: 10px 14px; }
  .float-num { font-size: 18px; }
  .float-label { font-size: 10px; }

  .trust-item { padding: 10px 12px; min-width: 0; }
  .trust-num  { font-size: 24px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-actions { flex-direction: column; }
  .btn-cta-white, .btn-cta-outline { width: 100%; justify-content: center; }
}
