:root {
  --primary: #6b7280;
  --primary-dark: #1f2937;
  --accent: #e5e7eb;
  --bg: #f3f4f6;
  --text: #111827;
  --muted: #6b7280;
  --white: #ffffff;
  --steel: #71797e;
  --steel-light: #d1d5db;
  --black: #0a0a0a;
  --shadow: 0 10px 30px rgba(17, 24, 39, .08);
  --radius: 14px;
  --max: 1140px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6
}

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

a {
  color: var(--primary-dark);
  text-decoration: none
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
  z-index: 50
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  max-width: var(--max);
  margin: 0 auto
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-dark)
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800
}

.site-header .logo-img {
  max-height: 70px;
  width: auto;
  max-width: none
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center
}

.nav-links a {
  color: var(--text);
  font-weight: 500
}

.nav-links a:not(.btn-primary):hover,
.nav-links a.active {
  color: var(--primary-dark)
}

.nav-links a.btn-primary:hover {
  color: #fff
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: .2s;
  cursor: pointer;
  border: none
}

.btn-primary {
  background: var(--primary);
  color: #fff
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px)
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary)
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary-dark);
  cursor: pointer
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, .82), rgba(55, 65, 81, .72)), url('../assets/hero.jpg') center/cover no-repeat;
  z-index: -1
}

.hero-inner {
  padding: 90px 20px 110px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px
}

.hero p {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 30px;
  opacity: .95
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.hero-cta .btn-outline {
  color: #fff;
  border-color: #fff
}

.hero-cta .btn-outline:hover {
  background: #fff;
  color: var(--primary-dark)
}

/* Sections */
section {
  padding: 70px 0
}

.section-title {
  text-align: center;
  margin-bottom: 50px
}

.section-title h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--primary-dark);
  margin-bottom: 10px
}

.section-title p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto
}

/* Services grid */
.grid {
  display: grid;
  gap: 24px
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: .25s;
  border: 1px solid rgba(107, 114, 128, .15)
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(17, 24, 39, .12)
}

.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: var(--primary-dark)
}

.card h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 1.2rem
}

.card p {
  color: var(--muted);
  font-size: .96rem
}

/* About / split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.split h2 {
  color: var(--primary-dark);
  font-size: 2rem;
  margin-bottom: 16px
}

.split p {
  color: var(--muted);
  margin-bottom: 14px
}

.checklist {
  list-style: none;
  margin-top: 14px
}

.checklist li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--text)
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 700
}

/* Stats */
.stats {
  background: var(--primary-dark);
  color: #fff
}

.stats .grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center
}

.stat-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white)
}

.stat-label {
  opacity: .9;
  margin-top: 4px
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px
}

.testi {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative
}

.testi::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 18px;
  font-size: 4rem;
  color: var(--primary);
  opacity: .18;
  line-height: 1
}

.testi p {
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
  position: relative
}

.testi .who {
  display: flex;
  align-items: center;
  gap: 12px
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700
}

.who small {
  color: var(--muted)
}

.google-reviews-section {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  padding: 70px 0
}

.google-reviews-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 10px
}

.google-reviews-title {
  text-align: left;
  margin-bottom: 0
}

.google-reviews-title p {
  margin-bottom: 0
}

.google-rating-summary {
  background: #fff;
  border: 1px solid rgba(107, 114, 128, .2);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  min-width: 280px
}

.google-rating-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px
}

.google-rating-score {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1
}

.google-rating-count {
  font-size: .92rem;
  color: var(--muted);
  margin-top: 4px
}

.google-rating-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.google-rating-actions .btn {
  flex: 1;
  min-width: 140px;
  text-align: center;
  justify-content: center
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 1.05rem;
  line-height: 1;
  margin: 4px 0
}

.star-empty {
  opacity: .35
}

.google-review-card .stars {
  margin-bottom: 10px
}

.google-review-card p {
  margin-top: 4px
}

.avatar-photo {
  object-fit: cover;
  background: #e5e7eb
}

.google-review-card .who a {
  color: var(--primary-dark);
  text-decoration: none
}

.google-review-card .who a:hover {
  text-decoration: underline
}

@media (max-width:900px) {
  .google-reviews-header {
    grid-template-columns: 1fr
  }

  .google-rating-summary {
    min-width: 0
  }
}

.instagram-section {
  background: #fff
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px
}

.insta-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(107, 114, 128, .2);
  display: flex;
  flex-direction: column;
  gap: 18px
}

.insta-preview {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  transition: .2s;
  border: 2px solid transparent;
  cursor: pointer
}

.insta-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0
}

.insta-preview:hover {
  border-color: rgba(55, 65, 81, .45);
  transform: translateY(-2px)
}

.insta-preview span {
  padding: 0 18px
}

.insta-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  box-shadow: 0 14px 30px rgba(17, 24, 39, .2)
}

.insta-footer {
  margin-top: 32px;
  text-align: center;
  padding: 26px 22px;
  border-radius: var(--radius);
  background: rgba(107, 114, 128, .1);
  border: 1px solid rgba(107, 114, 128, .2)
}

.insta-footer p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1rem
}

.insta-footer strong {
  color: var(--primary-dark)
}

/* Clinic photos gallery */
.clinic-photos-section {
  background: #f8fafc;
  padding: 70px 0
}

.clinic-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 30px
}

.clinic-photo-card {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  background: #e5e7eb;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s
}

.clinic-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease
}

.clinic-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(17, 24, 39, .18)
}

.clinic-photo-card:hover img {
  transform: scale(1.04)
}

.clinic-photo-card::after {
  content: "⤢";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .15)
}

.clinic-photos-footer {
  margin-top: 32px;
  text-align: center;
  padding: 26px 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(107, 114, 128, .2);
  box-shadow: var(--shadow)
}

.clinic-photos-footer p {
  margin: 0 0 18px;
  color: var(--text)
}

.clinic-photos-footer strong {
  color: var(--primary-dark)
}

.photo-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1250;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.photo-modal.open {
  display: flex
}

.photo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 17, .9)
}

.photo-modal-content {
  position: relative;
  z-index: 1;
  width: min(96vw, 1100px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.photo-modal-content img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  object-fit: contain
}

.photo-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  display: grid;
  place-items: center
}

.photo-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--primary-dark);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

.photo-modal-prev {
  left: -62px
}

.photo-modal-next {
  right: -62px
}

body.photo-modal-open {
  overflow: hidden
}

@media (max-width:900px) {
  .photo-modal-prev {
    left: 8px
  }

  .photo-modal-next {
    right: 8px
  }

  .photo-modal-close {
    top: 8px;
    right: 8px
  }
}

.insta-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1200
}

.insta-modal.open {
  display: flex;
  align-items: center;
  justify-content: center
}

.insta-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 17, .85)
}

.insta-modal-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
  z-index: 1;
  display: grid;
  gap: 0;
  padding: 0
}

.insta-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  display: grid;
  place-items: center;
  z-index: 2
}

.insta-modal-content h2 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.4rem;
  padding: 22px 22px 12px 22px
}

.insta-modal-body {
  position: relative;
  background: #000;
  overflow: hidden;
  height: 500px;
  width: 100%
}

.insta-modal-body iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none
}

.insta-modal-note {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  text-align: center;
  padding: 16px 22px 20px 22px;
  background: rgba(255, 255, 255, .95)
}

.insta-modal-note a {
  color: var(--primary-dark);
  font-weight: 700
}

/* First-visit offer popup */
.offer-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1300;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.offer-modal.open {
  display: flex
}

.offer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 17, .88)
}

.offer-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  overflow-y: auto;
  z-index: 1;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35)
}

.offer-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2)
}

.offer-modal-close:hover {
  background: var(--steel-light)
}

.offer-modal .offer-banner {
  margin: 0
}

body.offer-modal-open {
  overflow: hidden
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius);
  padding: 50px;
  text-align: center;
  margin: 0 20px
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 12px
}

.cta-banner p {
  margin-bottom: 22px;
  opacity: .95
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary-dark)
}

.cta-banner .btn-primary:hover {
  background: var(--steel-light);
  color: var(--black)
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px
}

.contact-info .info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start
}

.info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e5e7eb;
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0
}

.info-item h4 {
  margin-bottom: 2px;
  color: var(--primary-dark)
}

.info-item p {
  color: var(--muted)
}

form {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.field {
  margin-bottom: 16px
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text)
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: #f9fafb;
  transition: .2s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary-dark);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(107, 114, 128, .2)
}

.field textarea {
  min-height: 110px;
  resize: vertical
}

.g-recaptcha {
  margin: 16px 0;
  min-height: 78px
}

.form-success {
  display: none;
  margin-top: 14px;
  padding: 12px;
  background: #e5e7eb;
  color: var(--primary-dark);
  border-radius: 10px;
  font-weight: 500
}

/* Pricing */
.price-card {
  text-align: center
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 10px 0
}

.price small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500
}

/* Footer */
footer {
  background: var(--black);
  color: #d1d5db;
  padding: 60px 0 20px;
  margin-top: 60px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px
}

.footer-grid h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 1.05rem
}

.footer-grid a {
  color: #d1d5db;
  display: block;
  padding: 4px 0
}

.footer-grid a:hover {
  color: var(--white)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 20px;
  text-align: center;
  font-size: .9rem;
  opacity: .7
}

/* Hero variants for sub-pages */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 70px 20px;
  text-align: center
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 10px
}

.page-hero p {
  opacity: .95
}

/* Responsive */
@media(max-width:820px) {
  .nav-links {
    position: fixed;
    top: 68px;
    right: -100%;
    flex-direction: column;
    background: #fff;
    width: 75%;
    max-width: 300px;
    height: calc(100vh - 68px);
    padding: 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .08);
    transition: .3s;
    align-items: flex-start;
    gap: 18px
  }

  .nav-links.open {
    right: 0
  }

  .menu-toggle {
    display: block
  }

  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .cta-banner {
    padding: 36px 20px
  }
}

/* Logo image */
.logo-img {
  height: auto;
  max-height: 70px;
  width: auto;
  display: block;
  max-width: 400px
}

.footer .logo-img,
footer .logo-img {
  max-height: 70px;
  max-width: none;
  filter: none
}

/* Offer Banner */
.offer-section {
  padding: 50px 0;
  background: #ffffff
}

.offer-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(17, 24, 39, .25);
  position: relative;
  overflow: hidden
}

.offer-banner::before {
  content: "LIMITED PERIOD OFFER";
  position: absolute;
  top: 42px;
  right: -62px;
  background: var(--white);
  color: var(--black);
  padding: 6px 60px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1px;
  transform: rotate(35deg)
}

.offer-banner h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 8px;
  color: #fff
}

.offer-banner .offer-sub {
  opacity: .92;
  margin-bottom: 14px;
  font-size: 1.05rem
}

.offer-price {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin: 10px 0 18px
}

.offer-price small {
  font-size: 1rem;
  color: #fff;
  opacity: .85;
  font-weight: 500;
  display: block;
  margin-top: 4px
}

.offer-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  margin: 18px 0
}

.offer-benefits li {
  padding-left: 26px;
  position: relative;
  font-weight: 500
}

.offer-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 800;
  top: 4px
}

.offer-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px
}

.offer-cta .btn-primary {
  background: var(--white);
  color: var(--black)
}

.offer-cta .btn-primary:hover {
  background: var(--steel-light);
  color: var(--black)
}

.offer-cta .btn-outline {
  color: #fff;
  border-color: #fff
}

.offer-cta .btn-outline:hover {
  background: #fff;
  color: var(--primary-dark)
}

.offer-side {
  background: rgba(255, 255, 255, .1);
  border: 2px dashed rgba(255, 255, 255, .4);
  border-radius: 16px;
  padding: 24px;
  text-align: center
}

.offer-side h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--steel-light);
  letter-spacing: 1px
}

.offer-side ul {
  list-style: none;
  text-align: left;
  font-size: .95rem;
  line-height: 1.9
}

.offer-side ul li::before {
  content: "🦷 "
}

@media (max-width:760px) {
  .offer-banner {
    grid-template-columns: 1fr;
    padding: 28px
  }

  .offer-benefits {
    grid-template-columns: 1fr
  }
}

/* Doctor card */
.doctor-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 340px;
  margin: 0 auto
}

.doctor-card .doc-photo {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  padding: 0
}

.doctor-card .doc-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  display: block
}

.doctor-card .doc-info {
  padding: 22px
}

.doctor-card h3 {
  color: var(--primary-dark);
  margin-bottom: 4px
}

.doctor-card .doc-role {
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: .85rem
}