:root {
  --primary: #0b6f8a;
  --primary-dark: #07546a;
  --secondary: #2aa889;
  --ink: #17313a;
  --muted: #61747b;
  --surface: #ffffff;
  --surface-soft: #eef8f8;
  --border: #dce9eb;
  --shadow: 0 18px 48px rgba(20, 67, 80, .12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--surface); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.screen-reader-text, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed; z-index: 9999; top: 10px; left: 10px; background: #fff; padding: 10px 14px; border-radius: 8px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(220,233,235,.8); }
.header-inner { min-height: 80px; display: flex; align-items: center; gap: 28px; }
.brand { margin-right: auto; }
.custom-logo { max-height: 54px; width: auto; }
.brand-text { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; background: var(--primary); color: #fff; border-radius: 12px; font-size: 26px; }
.primary-nav ul { display: flex; gap: 24px; list-style: none; padding: 0; margin: 0; }
.primary-nav a { color: #344e57; font-weight: 650; }
.primary-nav a:hover { color: var(--primary); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle span:not(.screen-reader-text) { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 14px; border: 1px solid var(--primary); background: var(--primary); color: #fff; font-weight: 750; transition: .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); background: var(--primary-dark); box-shadow: 0 10px 24px rgba(11,111,138,.2); }
.button-secondary { background: transparent; color: var(--primary); }
.button-secondary:hover { color: #fff; }
.button-small { min-height: 42px; padding: 0 16px; border-radius: 12px; }
.text-link { color: var(--primary); font-weight: 750; }

.hero { position: relative; overflow: hidden; padding: 92px 0 70px; background: radial-gradient(circle at 90% 10%, rgba(42,168,137,.17), transparent 32%), linear-gradient(140deg, #f6fcfc 0%, #eef8fb 100%); }
.hero::before { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 50%; border: 75px solid rgba(11,111,138,.05); right: -120px; bottom: -190px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.eyebrow { display: inline-block; color: var(--secondary); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 850; margin-bottom: 12px; }
.eyebrow-light { color: #a8f0dc; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.035em; margin-top: 0; }
.hero h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); margin-bottom: 22px; max-width: 12ch; }
.hero-copy > p { font-size: 1.12rem; color: var(--muted); max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; color: #38545d; font-size: .93rem; }
.hero-card { position: relative; min-height: 470px; padding: 30px; border-radius: 34px; background: linear-gradient(145deg, #0d7692, #0b596f); color: #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.hero-card::after { content: ""; position: absolute; width: 320px; height: 320px; background: rgba(255,255,255,.07); border-radius: 50%; top: -90px; right: -90px; }
.hero-visual { min-height: 270px; display: grid; place-items: center; text-align: center; position: relative; z-index: 1; }
.medical-symbol { font-size: 7rem; font-weight: 300; line-height: .8; color: #b8f5e3; }
.hero-visual p { font-weight: 850; letter-spacing: .12em; font-size: 1.15rem; }
.schedule-card { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; padding: 18px 20px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22); border-radius: 18px; backdrop-filter: blur(10px); }

.quick-info { background: var(--surface); border-bottom: 1px solid var(--border); }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-grid > div { padding: 25px 22px; display: flex; flex-direction: column; border-right: 1px solid var(--border); }
.quick-grid > div:first-child { border-left: 1px solid var(--border); }
.quick-grid span { color: var(--muted); font-size: .92rem; }
.section { padding: 90px 0; }
.section-soft { background: var(--surface-soft); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 38px; }
.section-heading h2, .split-grid h2, .cta-section h2 { font-size: clamp(2rem, 4vw, 3.25rem); max-width: 15ch; margin-bottom: 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: #e3f5f2; color: var(--secondary); font-weight: 850; font-size: 1.15rem; margin-bottom: 22px; }
.service-card h3, .service-card h2 { font-size: 1.28rem; margin-bottom: 12px; }
.service-card p { color: var(--muted); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.media-placeholder { min-height: 500px; border-radius: 34px; background: linear-gradient(145deg, #d8f2ef, #bedfe9); position: relative; display: grid; place-items: center; overflow: hidden; }
.media-placeholder::before, .media-placeholder::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.45); }
.media-placeholder::before { width: 280px; height: 280px; top: -80px; right: -60px; }
.media-placeholder::after { width: 180px; height: 180px; bottom: -40px; left: -40px; }
.media-cross { font-size: 10rem; color: rgba(11,111,138,.55); font-weight: 250; }
.media-badge { position: absolute; z-index: 2; left: 24px; bottom: 24px; padding: 12px 16px; background: #fff; border-radius: 14px; font-weight: 750; box-shadow: var(--shadow); }
.check-list { padding: 0; list-style: none; margin: 28px 0; }
.check-list li { position: relative; padding-left: 30px; margin: 12px 0; color: #38545d; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--secondary); font-weight: 900; }
.doctor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.doctor-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.doctor-photo { aspect-ratio: 4 / 3; background: #eaf4f5; display: grid; place-items: center; }
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-photo span { font-size: 3rem; font-weight: 850; color: var(--primary); }
.doctor-content { padding: 24px; }
.doctor-content h3 { margin-bottom: 6px; }
.doctor-role { color: var(--primary); font-weight: 750; }
.cta-section { padding: 76px 0; background: linear-gradient(135deg, #07546a, #0b6f8a); color: #fff; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-section p { color: rgba(255,255,255,.78); }
.sm-booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px; border-radius: 22px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); }
.sm-booking-form label { display: grid; gap: 6px; font-size: .86rem; font-weight: 700; }
.sm-booking-form input, .sm-booking-form select { width: 100%; min-height: 48px; padding: 0 13px; border: 0; border-radius: 12px; background: #fff; color: var(--ink); }
.sm-booking-form .form-wide { grid-column: 1 / -1; }
.sm-booking-form .button { grid-column: 1 / -1; background: var(--secondary); border-color: var(--secondary); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.post-thumb { display: block; aspect-ratio: 16/10; background: #eaf4f5; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-content { padding: 24px; }
.post-content > span { color: var(--secondary); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.post-content h3, .post-content h2 { margin: 10px 0; font-size: 1.25rem; }
.post-content p { color: var(--muted); }
.page-header { max-width: 820px; margin-bottom: 42px; }
.page-header h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); margin-bottom: 16px; }
.article-shell { max-width: 880px; }
.featured-image { border-radius: 28px; overflow: hidden; margin-bottom: 32px; }
.prose { font-size: 1.06rem; }
.prose > * { margin-top: 0; margin-bottom: 1.25em; }
.info-box { margin: 28px 0; padding: 22px; border-radius: 18px; background: var(--surface-soft); border-left: 4px solid var(--secondary); }
.site-footer { padding: 65px 0 24px; background: #102c35; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 35px; }
.site-footer p { color: rgba(255,255,255,.68); }
.footer-link { color: #b8f5e3; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); margin-top: 45px; padding-top: 22px; }
.footer-bottom ul { display: flex; gap: 16px; list-style: none; margin: 0; padding: 0; }
.floating-wa { position: fixed; right: 22px; bottom: 22px; z-index: 999; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #22b573; color: #fff; font-weight: 900; box-shadow: 0 14px 30px rgba(0,0,0,.2); }

@media (max-width: 960px) {
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .primary-nav { display: none; position: absolute; top: 80px; left: 20px; right: 20px; padding: 18px; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 12px; }
  .hero-grid, .split-grid, .cta-inner { grid-template-columns: 1fr; }
  .hero h1 { max-width: 15ch; }
  .hero-card { min-height: 380px; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .doctor-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero { padding-top: 66px; }
  .hero h1 { font-size: 2.55rem; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .schedule-card { grid-template-columns: 1fr; }
  .quick-grid, .card-grid, .doctor-grid, .post-grid, .footer-grid { grid-template-columns: 1fr; }
  .quick-grid > div, .quick-grid > div:first-child { border-left: 1px solid var(--border); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .section { padding: 66px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .media-placeholder { min-height: 350px; }
  .sm-booking-form { grid-template-columns: 1fr; }
  .sm-booking-form .form-wide, .sm-booking-form .button { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
