:root {
  --ink: #0f2d3f;
  --muted: #4b6777;
  --paper: #f6f7f8;
  --accent: #2f6f88;
  --accent-2: #7fb3c9;
  --soft: #e6eef2;
  --shadow: 0 12px 30px rgba(15, 45, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 45, 63, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brand img {
  width: 120px;
  object-fit: contain;
}

.brand span {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-size: 15px;
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.section-band {
  padding: 32px 0 40px;
}

.band-soft {
  background: #ffffff;
}

.hero-section {
  position: relative;
}

.hero-section .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.hero-section.section-band {
  padding: 0;
}

.hero-card {
  border-radius: 24px;
  overflow: hidden;
  background: #d6e6ee;
  box-shadow: var(--shadow);
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #a5c9d9 0%, #7fb3c9 55%, #6aa1ba 100%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -40% 10% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy {
  color: #ffffff;
  animation: fadeUp 0.8s ease-out;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 12px;
  letter-spacing: 0.5px;
}

.hero-copy p {
  margin: 0 0 22px;
  line-height: 1.6;
  max-width: 380px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button.primary {
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 10px 20px rgba(15, 45, 63, 0.2);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.button:hover {
  transform: translateY(-2px);
}

.video-placeholder {
  height: clamp(200px, 36vw, 320px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeUp 0.9s ease-out 0.1s both;
}

.section {
  padding: 36px 0;
  background: #ffffff;
}

.section:nth-of-type(even) {
  background: #ffffff;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 16px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

.symptom-title {
  text-align: center;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.symptom-title span {
  color: var(--accent-2);
}

.symptom-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 400;
}

.symptom-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
}

.symptom-grid-secondary {
  margin-top: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.symptom-card {
  text-align: center;
  padding: 8px 4px;
}

.symptom-card h3 {
  margin: 8px 0 6px;
  font-size: 18px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
}

.symptom-card p {
  margin: 0;
  color: var(--muted);
  font-family: "Work Sans", "Segoe UI", sans-serif;
}

.symptom-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.symptom-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.symptom-note {
  margin: 36px auto 0;
  padding: 14px 18px;
  background: #7fb3c9;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  max-width: 980px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
}

.autoimmune-title {
  text-align: center;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
}

.autoimmune-title span {
  color: var(--accent-2);
}

.autoimmune-text {
  max-width: 860px;
  margin: 20px auto 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.7;
}

.autoimmune-text p {
  margin: 0 0 16px;
}

.autoimmune-emphasis {
  font-weight: 600;
}

.autoimmune-media {
  margin: 28px auto 0;
  max-width: 980px;
}

.autoimmune-media img,
.autoimmune-media video {
  width: 100%;
  height: auto;
  display: block;
}

.section.analogy-section {
  background: linear-gradient(180deg, #ffffff 0%, #cfe2ef 100%);
}

.analogy-title {
  text-align: center;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
}

.analogy-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
}

.analogy-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.analogy-text {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.7;
}

.analogy-text h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.analogy-text ul {
  margin: 0 0 16px;
  padding-left: 18px;
}

.analogy-text p {
  margin: 0 0 16px;
}

.analogy-emphasis {
  font-weight: 600;
}

.analogy-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.analogy-card img {
  width: 100%;
  height: auto;
  display: block;
}

.danger-section {
  background: linear-gradient(180deg, #cfe2ef 0%, #f5fafc 100%);
}

.danger-title {
  text-align: center;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
}

.danger-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
}

.danger-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: start;
}

.danger-left h3,
.danger-right h3 {
  margin: 0 0 6px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-size: 20px;
}

.danger-left p,
.danger-right p {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: "Work Sans", "Segoe UI", sans-serif;
}

.danger-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 16px;
  max-width: 360px;
}

.danger-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 14px;
  display: grid;
  place-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  text-align: center;
}

.danger-card img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .danger-card {
    text-align: center;
  }
}

.danger-card span {
  font-weight: 600;
  color: #2b5c82;
}

.danger-figure {
  border-radius: 22px;
  padding: 16px;
}

.danger-figure img {
  border-radius: 22px;
  width: 100%;
  height: auto;
  display: block;
}

.sle-banner {
  background: #7fb3c9;
  color: #ffffff;
  text-align: center;
  padding: 14px 18px;
  font-weight: 600;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  border-radius: 12px;
  max-width: 980px;
  margin: 0 auto 28px;
}

.sle-card {
  background: transparent;
  border-radius: 26px;
  padding: 18px;
  border: none;
  max-width: 980px;
  margin: 0 auto;
}

.sle-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.cause-section {
  background: linear-gradient(
    90deg,
    #cfe2ef 0%,
    #cfe2ef 50%,
    #ffffff 50%,
    #ffffff 100%
  );
}

.cause-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: start;
}

.cause-title {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.cause-title span {
  color: var(--accent-2);
}

.cause-lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: "Work Sans", "Segoe UI", sans-serif;
  line-height: 1.7;
}

.cause-card {
  max-width: 520px;
}

.cause-card img {
  border-radius: 22px;
  width: 100%;
  height: auto;
  display: block;
}

.cause-tests {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(180px, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.cause-tests img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.cause-tests ul {
  margin: 0;
  padding-left: 18px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  line-height: 1.7;
}

.cause-note {
  margin: 18px 0 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 600;
  color: var(--ink);
}

.treatment-title {
  text-align: center;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
}

.treatment-title span {
  color: var(--accent-2);
}

.treatment-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.treatment-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.treatment-block p {
  margin: 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  line-height: 1.7;
  color: var(--ink);
  text-align: justify;
}

.treatment-media {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.treatment-media img {
  width: 100%;
  height: auto;
  display: block;
}

.treatment-section .text {
  margin-top: 16px;
  text-align: justify;
}

.treatment-note {
  margin: 28px auto 0;
  padding: 14px 18px;
  background: #7fb3c9;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  max-width: 980px;
}

.program-section {
  background: linear-gradient(180deg, #f5f9fc 0%, #cfe2ef 100%);
}

.program-title {
  text-align: center;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
}

.program-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  line-height: 1.7;
}

.program-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.program-card {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  display: grid;
  gap: 10px;
  padding: 0 6px;
}

.program-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.program-card h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  text-align: left;
  padding: 0 6px;
}

.program-note {
  margin: 26px auto 0;
  max-width: 900px;
  text-align: center;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 600;
}

.section.mechanism-section {
  background: linear-gradient(180deg, #cfe2ef 0%, #ffffff 100%);
}

.mechanism-title {
  text-align: center;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
}

.mechanism-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  line-height: 1.7;
}

.mechanism-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: start;
}

.mechanism-label {
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 600;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  margin-bottom: 18px;
  display: inline-block;
}

.mechanism-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 18px;
  align-items: start;
}

.mechanism-item {
  display: grid;
  gap: 12px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 600;
  color: var(--ink);
  max-width: 220px;
}

.mechanism-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.mechanism-item h3 {
  margin: 0;
  font-size: 15px;
}

.mechanism-item-wide {
  grid-column: span 1;
}

.mechanism-right p {
  margin: 0 0 16px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  line-height: 1.7;
  color: var(--ink);
}

.mechanism-video {
  margin-top: 18px;
  background: #7fb3c9;
  color: #ffffff;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 600;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.mechanism-video iframe,
.mechanism-video video,
.mechanism-video .mechanism-video-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.klinis-title {
  text-align: center;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
}

.klinis-title span {
  color: var(--accent-2);
}

.klinis-tag {
  margin: 18px auto 0;
  background: #7fb3c9;
  color: #ffffff;
  display: block;
  width: fit-content;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 8px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
}

.klinis-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  align-items: start;
}

/* .klinis-card {
  background: #f4f7f9;
  border: none;
  border-radius: 24px;
  padding: 16px;
} */

.klinis-card h3 {
  border-radius: 24px;
  margin: 0 0 12px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  text-align: center;
}

.klinis-card h3 span {
  font-weight: 600;
  color: var(--muted);
  margin-left: 6px;
}

.klinis-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}


.klinis-info h3 {
  margin: 0 0 8px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
}

.klinis-info p,
.klinis-info ul {
  margin: 0 0 10px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  line-height: 1.7;
}

.klinis-info ul {
  padding-left: 18px;
}

.tujuan-section {
  background: #ffffff;
}

.tujuan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.tujuan-title {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
}

.tujuan-title span {
  color: var(--accent-2);
}

.tujuan-lead {
  margin: 0 0 18px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
}

.tujuan-label {
  margin: 0 0 8px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
}

.tujuan-text ul {
  margin: 0 0 18px;
  padding-left: 18px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  line-height: 1.7;
}

.tujuan-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.doctors-section {
  background: #f7f1e8;
  padding: 84px 0 96px;
}

.doctors-section__container {
  width: min(1220px, 92vw);
}

.doctors-section__layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}

.doctors-section__heading {
  display: flex;
  align-items: center;
}

.doctors-section__heading h2 {
  margin: 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-size: clamp(54px, 5.6vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #111936;
}

.doctors-section__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 690px);
  gap: 22px;
  justify-content: end;
  justify-self: end;
}

.doctor-card {
  margin: 0;
  padding: 4px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(17, 25, 54, 0.1);
  aspect-ratio: 1;
  overflow: hidden;
}

.doctor-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}

.faq-section {
  background: #ffffff;
}

.faq-title {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

.faq-item h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
}

.faq-item p {
  margin: 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  line-height: 1.7;
}

.banner-section {
  background: #ffffff;
  padding: 0;
}

.banner-full {
  width: 100%;
  height: auto;
  display: block;
}

.section.footer-section {
  background: #2f6f88;
  color: #ffffff;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-brand img {
  width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand span {
  font-size: 18px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ffffff;
  color: #21556d;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.footer-socials svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin: 18px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 16px;
  display: block;
}

.footer-info h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.footer-info p {
  margin: 0 0 18px;
  line-height: 1.7;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #2bd14d;
  color: #ffffff;
  font-weight: 700;
}

.footer-wa img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: auto;
  height: auto;
  border-radius: 0;
  display: block;
  box-shadow: none;
  z-index: 50;
  background: transparent;
  border: none;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.wa-float img {
  width: 200px;
  height: auto;
  padding: 0;
  object-fit: contain;
  display: block;
}

@media (min-width: 900px) {
  .klinis-grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "pre before"
      "after post";
    gap: 34px 40px;
    align-items: start;
  }

  .klinis-pre {
    grid-area: pre;
  }

  .klinis-before {
    grid-area: before;
  }

  .klinis-after {
    grid-area: after;
  }

  .klinis-post {
    grid-area: post;
  }
}

.card-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s ease-out;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
}

.steps {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.step span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-2);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.contact {
  background: var(--soft);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: start;
}

.contact form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  font-family: inherit;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 45, 63, 0.15);
  background: #ffffff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 24px 0 40px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .navbar-inner {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 50px;
  }

  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .program-card img {
    height: 130px;
  }

  .doctors-section {
    padding: 64px 0 72px;
  }

  .doctors-section__layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .doctors-section__heading {
    justify-content: center;
  }

  .doctors-section__gallery {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    justify-content: center;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 28px 0;
  }

  .section-band {
    padding: 24px 0 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-video {
    height: auto;
  }

  .video-placeholder {
    letter-spacing: 1px;
  }

  .symptom-grid {
    gap: 20px;
  }

  .cause-section {
    background: #f3f7fa;
  }

  .cause-tests {
    grid-template-columns: 1fr;
  }

  .cause-tests img {
    max-width: 260px;
    margin: 0 auto;
  }

  .mechanism-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mechanism-item {
    max-width: none;
  }

  .mechanism-item-wide {
    grid-column: span 2;
  }

  .mechanism-video {
    aspect-ratio: 16 / 9;
  }

  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .program-card img {
    height: 120px;
  }

  .doctors-section {
    padding: 56px 0 64px;
  }

  .doctors-section__heading h2 {
    font-size: clamp(44px, 15vw, 64px);
  }

  .doctors-section__gallery {
    grid-template-columns: 1fr;
    max-width: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
.footer-top {
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .footer-map iframe {
    height: 220px;
  }
}
