:root {
  --primary: #5b17a8;
  --primary-dark: #3d0e75;
  --primary-light: #7c3aed;
  --accent: #10b981;
  --accent-dark: #059669;
  --text: #1f2937;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f8f5ff;
  --bg-section: #f3f0ff;
  --border: #e5e7eb;
  --radius: 16px;
  --shadow: 0 10px 40px rgba(91, 23, 168, 0.08);
  --shadow-lg: 0 20px 60px rgba(91, 23, 168, 0.12);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Top bar */
.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.topbar span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar .live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar .dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

header.scrolled {
  box-shadow: var(--shadow);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
}

.brand strong {
  display: block;
  font-size: 1.15rem;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.brand small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all 0.2s;
}

nav a:hover,
nav a.active {
  color: var(--primary);
  background: var(--bg-soft);
}

nav .btn {
  background: var(--primary);
  color: #fff !important;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  margin-left: 0.5rem;
}

nav .btn:hover {
  background: var(--primary-dark);
}

.hamb {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
  padding: 0.25rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

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

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

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

.btn-accent:hover {
  background: var(--accent-dark);
}

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

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

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

.btn-green {
  background: #25d366;
  color: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #f8f5ff 0%, #ede9fe 50%, #f0fdf4 100%);
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.stat {
  background: #fff;
  padding: 1.15rem 0.75rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid #ede9fe;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.stat strong {
  display: block;
  font-size: 1.65rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.stat span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Section common */
section {
  padding: 4.5rem 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

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

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

.service-card {
  background: var(--bg-soft);
  border: 1px solid #ede9fe;
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.25s;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

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

/* About */
.about {
  background: var(--bg-section);
}

.about .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.25rem;
  align-items: center;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin-top: 1.5rem;
}

.about-features li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.about-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #e8f4fc;
  height: 100%;
  min-height: 350px;
  max-width: 560px;
  margin-left: auto;
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center;
}

/* Doctors */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.doctor-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}

.doctor-card:hover {
  transform: translateY(-6px);
}

.doctor-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.doctor-info {
  padding: 1.25rem;
  text-align: center;
}

.doctor-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.doctor-info .role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.doctor-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Gallery */
.gallery {
  background: var(--bg-section);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  padding: 1.5rem 1rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid #ede9fe;
}

.review-card .stars {
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-card p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.review-card strong {
  display: block;
  font-size: 0.95rem;
}

.review-card small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.intro-copy {
  margin-bottom: 1rem;
}

.about-copy-subtext {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.homepage-blog {
  margin-top: 2rem;
}

.blog-teaser {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.blog-teaser label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

.blog-teaser h2 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin: 0.4rem 0 0.6rem;
  line-height: 1.3;
}

.blog-teaser p {
  opacity: 0.9;
  font-size: 0.95rem;
  max-width: 520px;
}

.blog-teaser a {
  background: #fff;
  color: var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.blog-teaser a:hover {
  transform: translateY(-1px);
}

.article-page {
  padding: 3rem 0 4rem;
}

.article-shell {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.article-header {
  padding: 2.25rem 2.25rem 1rem;
  border-bottom: 1px solid var(--border);
}

.article-kicker {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--primary);
  font-size: 0.75rem;
  letter-spacing: 1.1px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-header h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-body {
  padding: 2rem 2.25rem 2.5rem;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 1.8rem 0 0.8rem;
  color: var(--text);
}

.article-body h2 {
  font-size: clamp(1.5rem, 2.3vw, 2rem);
}

.article-body h3 {
  font-size: 1.25rem;
}

.article-body p,
.article-body li {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

.article-body p {
  margin-bottom: 1rem;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--border);
}

.article-body th,
.article-body td {
  border: 1px solid var(--border);
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: var(--bg-soft);
  color: var(--primary);
  font-weight: 700;
}

.article-body tr:nth-child(even) td {
  background: #faf7ff;
}

.info-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.75rem 0;
}

.info-card {
  background: linear-gradient(180deg, #f8f5ff, #ffffff);
  border: 1px solid #e9d5ff;
  border-radius: 16px;
  padding: 1.25rem 1rem;
  box-shadow: 0 8px 20px rgba(91, 23, 168, 0.04);
}

.info-card.warning {
  border-color: #fcd34d;
  background: linear-gradient(180deg, #fff7ed, #ffffff);
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(91, 23, 168, 0.08);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.info-card h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.info-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.quick-answer-box {
  background: linear-gradient(135deg, #f5f3ff, #eefcf6);
  border: 1px solid #ddd6fe;
  border-left: 5px solid var(--primary);
  border-radius: 18px;
  padding: 1.25rem 1.4rem;
  margin: 1rem 0 1.5rem;
}

.quick-answer-box p {
  margin: 0;
}

.quick-answer-box p + p {
  margin-top: 0.8rem;
}

.pet-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.pet-image-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.pet-image-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.difference-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(180deg, #ffffff, #f8f5ff);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}

.diff-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-soft);
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.difference-card h4 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.difference-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.article-body ul,
.article-body ol {
  margin: 1rem 0 1.5rem 1.25rem;
}

.article-body li + li {
  margin-top: 0.4rem;
}

.article-body blockquote {
  border-left: 4px solid var(--primary);
  background: var(--bg-soft);
  padding: 1rem 1rem 1rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--text);
  border-radius: 0 12px 12px 0;
}

.article-body a {
  color: var(--primary);
  text-decoration: underline;
}

.article-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.article-return {
  text-align: center;
  margin-top: 1.5rem;
}

/* Contact CTA */
.contact-cta {
  background: var(--bg-soft);
  text-align: center;
  padding-bottom: 4rem;
}

.contact-cta h2 {
  margin-bottom: 0.5rem;
}

.contact-cta p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contact-map-wrap {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}

.contact-map-card,
.contact-location-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.contact-location-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-location-card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.contact-location-card p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  text-align: left;
}

.contact-location-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.6rem;
  color: var(--text);
}

.contact-location-card li {
  position: relative;
  padding-left: 1.2rem;
}

.contact-location-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .contact-map-wrap {
    grid-template-columns: 1fr;
  }

  .contact-map-card iframe {
    min-height: 280px;
  }
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: #e9d5ff;
  padding: 3rem 0 1.5rem;
}

footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

footer .brand-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

footer .brand-footer img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

footer .brand-footer strong {
  color: #fff;
}

.brand-footer-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
}

.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 280px;
}

footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 0.4rem;
}

footer a {
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}

footer a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* FAQ page */
.page-hero {
  background: linear-gradient(135deg, #f8f5ff, #ede9fe);
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq-item button:hover {
  background: var(--bg-soft);
}

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

.faq-item.active .answer {
  max-height: 200px;
}

.faq-item .answer p {
  padding: 0 1.25rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item .chevron {
  transition: transform 0.3s;
  color: var(--primary);
}

.faq-item.active .chevron {
  transform: rotate(180deg);
}

/* Career page */
.career-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.job-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.25s;
}

.job-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}

.job-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.job-card .meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.job-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.benefit {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: 14px;
}

.benefit .icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.benefit h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.benefit p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container,
  .about .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }

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

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

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

  footer .container {
    grid-template-columns: 1fr 1fr;
  }

  .career-grid,
  .benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hamb {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  nav.open {
    display: flex;
  }

  nav a {
    width: 100%;
    padding: 0.75rem;
  }

  nav .btn {
    margin-left: 0;
    text-align: center;
    justify-content: center;
  }

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

  .blog-teaser {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-highlight,
  .difference-grid,
  .pet-image-grid {
    grid-template-columns: 1fr;
  }

  footer .container {
    grid-template-columns: 1fr;
  }

  .topbar .container {
    gap: 0.75rem;
    font-size: 0.8rem;
  }
}
