:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #1b2330;
  --muted: #5c6a7d;
  --blue: #3c4f9a;
  --blue-2: #2f3f82;
  --red: #d94b3f;
  --orange: #e07a2f;
  --border: rgba(27, 35, 48, 0.12);
  --shadow: 0 18px 50px rgba(10, 18, 35, 0.12);
  --shadow-sm: 0 4px 12px rgba(10, 18, 35, 0.08);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1200px;
  --transition: all 0.2s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Skip link for accessibility */
.skip {
  position: absolute;
  left: -9999px;
  top: 10px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  z-index: 100;
}

.skip:focus {
  left: 12px;
  z-index: 100;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 248, 251, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 35, 48, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.header__stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red), var(--orange));
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid rgba(217, 75, 63, 0.18);
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(10, 18, 35, 0.1);
  background: #fff;
}

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

.brand__name {
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--blue);
  font-size: 18px;
}

.brand__tag {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.nav__link {
  font-weight: 600;
  font-size: 13px;
  color: rgba(27, 35, 48, 0.78);
  padding: 8px 14px;
  border-radius: 999px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  background: rgba(60, 79, 154, 0.1);
  color: var(--blue);
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.mobile-menu-toggle:hover {
  background: rgba(60, 79, 154, 0.1);
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

/* Chips & Badges */
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(217, 75, 63, 0.22);
  background: rgba(217, 75, 63, 0.08);
  color: rgba(27, 35, 48, 0.82);
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 13px;
}

.chip--small {
  height: 28px;
  font-size: 12px;
  padding: 0 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(27, 35, 48, 0.12);
  background: rgba(60, 79, 154, 0.08);
  color: rgba(27, 35, 48, 0.82);
  font-weight: 700;
  font-size: 12px;
}

.badge--accent {
  background: rgba(217, 75, 63, 0.1);
  border-color: rgba(217, 75, 63, 0.22);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 12px 28px rgba(60, 79, 154, 0.22);
}

.btn--primary:hover {
  box-shadow: 0 16px 36px rgba(60, 79, 154, 0.28);
  transform: translateY(-1px);
}

.btn--secondary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  box-shadow: 0 12px 28px rgba(217, 75, 63, 0.18);
}

.btn--secondary:hover {
  box-shadow: 0 16px 36px rgba(217, 75, 63, 0.24);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(27, 35, 48, 0.12);
  color: rgba(27, 35, 48, 0.86);
}

.btn--ghost:hover {
  border-color: rgba(60, 79, 154, 0.25);
  background: rgba(60, 79, 154, 0.08);
}

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

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

.btn--small {
  height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 60px 0 50px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(60, 79, 154, 0.03) 0%, rgba(217, 75, 63, 0.03) 100%);
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(27, 35, 48, 0.1);
  color: rgba(27, 35, 48, 0.78);
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 20px;
}

.hero__title {
  margin: 0 0 16px;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  font-weight: 800;
}

.hero__subtitle {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  max-width: 54ch;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* Hero Card */
.hero__card {
  position: relative;
  z-index: 2;
}

.hero-card {
  background: var(--surface);
  border: 2px solid rgba(217, 75, 63, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.hero-card__title {
  font-weight: 800;
  font-size: 20px;
  color: var(--blue);
}

.hero-card__text {
  color: var(--muted);
  margin-top: 8px;
  font-size: 15px;
}

.hero-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Stats */
.stat {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.stat__num {
  font-weight: 800;
  color: var(--blue);
  font-size: 22px;
  letter-spacing: 0.2px;
}

.stat__label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* Quick Contact */
.contact-quick {
  display: grid;
  gap: 10px;
}

.contact-quick__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(60, 79, 154, 0.18);
  background: rgba(60, 79, 154, 0.06);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.contact-quick__item:hover {
  background: rgba(60, 79, 154, 0.12);
  border-color: rgba(60, 79, 154, 0.25);
}

/* Links */
.link {
  font-weight: 700;
  color: rgba(27, 35, 48, 0.82);
  transition: var(--transition);
}

.link:hover {
  color: var(--blue);
}

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

.section--alt {
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(27, 35, 48, 0.06);
  border-bottom: 1px solid rgba(27, 35, 48, 0.06);
}

.section--sm {
  padding: 50px 0;
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section__head--center {
  text-align: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.section__title {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.3px;
  font-weight: 800;
  line-height: 1.2;
}

.section__desc {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 60ch;
  font-size: 16px;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs__link {
  color: var(--blue);
  font-weight: 600;
  transition: var(--transition);
}

.breadcrumbs__link:hover {
  text-decoration: underline;
}

.breadcrumbs__current {
  color: var(--text);
  font-weight: 500;
}

.breadcrumbs__sep {
  color: rgba(27, 35, 48, 0.3);
}

/* Grids */
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

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

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

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 10px 24px rgba(217, 75, 63, 0.18);
  font-size: 20px;
}

.card__title {
  margin: 16px 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.card__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Service Cards */
.service-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(60, 79, 154, 0.2);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(60, 79, 154, 0.2);
}

.service-card__title {
  margin: 16px 0 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: rgba(27, 35, 48, 0.92);
}

.service-card__lead {
  margin: 8px 0 0;
  font-weight: 700;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.4;
}

.service-card__text {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card__cta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Split Layout */
.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.split--reverse {
  grid-template-columns: 0.9fr 1fr;
}

.split__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Pills */
.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(27, 35, 48, 0.12);
  background: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  color: rgba(27, 35, 48, 0.82);
  font-size: 13px;
  transition: var(--transition);
}

.pill:hover {
  background: rgba(60, 79, 154, 0.1);
  border-color: rgba(60, 79, 154, 0.2);
}

.pill--accent {
  border-color: rgba(217, 75, 63, 0.22);
  background: rgba(217, 75, 63, 0.08);
}

/* Panel */
.panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.panel__title {
  font-weight: 800;
  color: var(--blue);
  font-size: 20px;
}

.panel__text {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.panel__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Bullets */
.bullets {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(27, 35, 48, 0.1);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

.bullet__dot {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--red));
  flex: 0 0 auto;
}

.bullet__text {
  font-size: 15px;
  line-height: 1.6;
}

/* Doctors */
.doctors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.doctor {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.doctor__photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(27, 35, 48, 0.1);
  box-shadow: 0 10px 24px rgba(10, 18, 35, 0.1);
}

.doctor__name {
  margin-top: 16px;
  font-weight: 800;
  font-size: 18px;
  color: rgba(27, 35, 48, 0.92);
}

.doctor__role {
  margin-top: 6px;
  font-weight: 700;
  color: var(--blue);
  font-size: 13px;
}

.doctor__text {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.doctor__tags {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Tags */
.tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(27, 35, 48, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(27, 35, 48, 0.8);
  font-weight: 600;
  font-size: 12px;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.review {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.review:hover {
  box-shadow: var(--shadow);
}

.review__stars {
  color: rgba(224, 122, 47, 0.95);
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 18px;
}

.review__text {
  margin-top: 14px;
  color: rgba(27, 35, 48, 0.84);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
}

.review__author {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

/* FAQ */
.faq {
  display: grid;
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
}

.qa {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}

.qa__q {
  font-weight: 800;
  color: rgba(27, 35, 48, 0.9);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qa__q::after {
  content: '+';
  font-size: 20px;
  color: var(--blue);
  font-weight: 400;
}

.qa__a {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  display: none;
}

.qa--open .qa__a {
  display: block;
}

.qa--open .qa__q::after {
  content: '−';
}

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

.contact__items {
  display: grid;
  gap: 14px;
}

.contact__map {
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.contact__map iframe {
  flex: 1;
  min-height: 350px;
  border: none;
}

.contact__map-link {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--surface);
  border-top: 1px solid rgba(27, 35, 48, 0.1);
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.contact__map-link:hover {
  background: rgba(60, 79, 154, 0.1);
}

.contact-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius-sm);
  padding: 18px;
  transition: var(--transition);
}

.contact-item:hover {
  box-shadow: var(--shadow-sm);
}

.contact-item__label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.contact-item__value {
  margin-top: 6px;
  font-weight: 700;
  font-size: 16px;
}

.contact-link {
  color: rgba(27, 35, 48, 0.88);
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--blue);
}

.sep {
  margin: 0 8px;
  color: rgba(27, 35, 48, 0.35);
}

/* Form */
.form {
  background: var(--surface);
  border: 2px solid rgba(60, 79, 154, 0.15);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.form__title {
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 20px;
  font-size: 22px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field__label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.field__input,
.field__textarea {
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(27, 35, 48, 0.14);
  background: rgba(255, 255, 255, 0.9);
  outline: none;
  font-weight: 500;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
}

.field__textarea {
  height: auto;
  padding: 14px 16px;
  min-height: 120px;
  resize: vertical;
}

.field__input:focus,
.field__textarea:focus {
  border-color: rgba(60, 79, 154, 0.4);
  box-shadow: 0 0 0 4px rgba(60, 79, 154, 0.1);
}

.form__hint {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(27, 35, 48, 0.08);
  background: rgba(255, 255, 255, 0.6);
  padding: 50px 0 30px;
}

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

.footer__brand {
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 0.4px;
  font-size: 24px;
  margin-bottom: 12px;
}

.footer__tagline {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__title {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
  color: rgba(27, 35, 48, 0.9);
}

.footer__links {
  display: grid;
  gap: 10px;
}

.footer__link {
  color: var(--muted);
  font-size: 14px;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--blue);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(27, 35, 48, 0.08);
  flex-wrap: wrap;
}

.footer__copy {
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(27, 35, 48, 0.1);
  transition: var(--transition);
  font-size: 18px;
}

.footer__social:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.blog-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.blog-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card__category {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.3;
  color: rgba(27, 35, 48, 0.92);
}

.blog-card__excerpt {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

/* Price Table */
.price-table {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table__header {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  padding: 20px 24px;
  font-weight: 800;
  font-size: 18px;
}

.price-table__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(27, 35, 48, 0.06);
  align-items: center;
}

.price-table__row:last-child {
  border-bottom: none;
}

.price-table__row:nth-child(even) {
  background: rgba(60, 79, 154, 0.03);
}

.price-table__name {
  font-weight: 600;
  font-size: 15px;
}

.price-table__price {
  font-weight: 800;
  color: var(--blue);
  font-size: 16px;
  white-space: nowrap;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(60, 79, 154, 0.1), rgba(217, 75, 63, 0.1));
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

/* Article Content */
.article {
  max-width: 800px;
  margin: 0 auto;
}

.article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.article__content {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(27, 35, 48, 0.85);
}

.article__content h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 40px 0 20px;
  color: var(--text);
}

.article__content h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 32px 0 16px;
  color: var(--text);
}

.article__content p {
  margin: 0 0 20px;
}

.article__content ul,
.article__content ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.article__content li {
  margin-bottom: 8px;
}

/* Page Header */
.page-header {
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(60, 79, 154, 0.05), rgba(217, 75, 63, 0.05));
  border-bottom: 1px solid rgba(27, 35, 48, 0.06);
}

.page-header__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.2;
}

.page-header__desc {
  font-size: 18px;
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  padding: 60px 0;
  color: #fff;
  text-align: center;
}

.cta-section__title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  margin: 0 0 16px;
}

.cta-section__text {
  font-size: 17px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 28px;
}

.cta-section__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cta-section .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Note/Alert */
.note {
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(217, 75, 63, 0.18);
  background: rgba(217, 75, 63, 0.06);
  color: rgba(27, 35, 48, 0.78);
  font-weight: 600;
  font-size: 15px;
}

.note--info {
  border-color: rgba(60, 79, 154, 0.18);
  background: rgba(60, 79, 154, 0.06);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero__card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .split,
  .split--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-grid,
  .doctors,
  .reviews,
  .blog-grid,
  .grid,
  .grid--3,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .contact {
    grid-template-columns: 1fr;
  }
  
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header__actions .chip {
    display: none;
  }
  
  .hero__meta {
    grid-template-columns: 1fr;
  }
  
  .hero__title {
    font-size: 32px;
  }
  
  .hero__cta {
    flex-direction: column;
  }
  
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .services-grid,
  .doctors,
  .reviews,
  .blog-grid,
  .grid,
  .grid--3,
  .grid--2,
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .price-table__row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .breadcrumbs {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }
  
  .brand__logo {
    width: 40px;
    height: 40px;
  }
  
  .brand__name {
    font-size: 16px;
  }
  
  .hero {
    padding: 30px 0;
  }
  
  .hero-card {
    padding: 18px;
  }
  
  .card,
  .service-card,
  .panel,
  .doctor,
  .review {
    padding: 18px;
  }
}
