:root {
  --teal: #0b7f82;
  --teal-dark: #076f73;
  --teal-soft: #e7f4f4;
  --heading: #30445a;
  --text: #6f7a8b;
  --navy: #24364d;
  --line: #e5eaee;
  --soft-bg: #f8fafb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Poppins", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container,
.hero-inner,
.about-inner,
.cancer-support-inner {
  width: min(1166px, calc(100% - 116px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  display: grid;
  grid-template-columns: 235px 1fr 150px;
  align-items: center;
  gap: 24px;
  padding: 0 30px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 1px 0 rgba(30, 49, 66, .08);
  backdrop-filter: blur(8px);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 205px;
}
.brand img { width: 190px; height: auto; object-fit: contain; }
.main-nav {
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 31px;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  color: #304156;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.nav-label {
  position: relative;
  display: inline-block;
  line-height: 1.2;
}
.nav-label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.nav-link:hover,
.nav-link.active,
.has-dropdown:hover > .nav-link { color: var(--teal); }
.nav-link:hover .nav-label::after,
.nav-link.active .nav-label::after,
.has-dropdown:hover > .nav-link .nav-label::after { transform: scaleX(1); }
.chevron {
  position: relative;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffead0;
  transition: transform .18s ease;
}
.chevron::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-right: 1.8px solid #f18845;
  border-bottom: 1.8px solid #f18845;
  transform: rotate(45deg);
}
.has-dropdown:hover .chevron { transform: rotate(180deg); }
.appointment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 38px;
  padding: 0 17px;
  border-radius: 6px;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 7px 15px rgba(10, 115, 119, .22);
  font-size: 13px;
  font-weight: 700;
  transition: background .16s ease, transform .16s ease;
}
.appointment-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.desktop-cta { justify-self: end; }
.mobile-menu-toggle { display: none; }

/* Desktop dropdowns */
.dropdown {
  position: absolute;
  top: 64px;
  left: 50%;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  border: 1px solid #e1e5e9;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 16px 28px rgba(32, 50, 66, .14);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.dropdown::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 13px;
  height: 13px;
  background: #fff;
  border-left: 1px solid #e1e5e9;
  border-top: 1px solid #e1e5e9;
  transform: translateX(-50%) rotate(45deg);
}
.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -15px;
  height: 16px;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-title {
  margin-bottom: 10px;
  color: #98a2b0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}
.services-dropdown { width: 576px; padding: 18px 19px 19px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.service-card {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid #dce2e7;
  border-radius: 8px;
  background: #fff;
  color: #39495e;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.18;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.service-card:hover {
  border-color: #a7cfd0;
  box-shadow: 0 5px 12px rgba(29, 58, 70, .08);
  transform: translateY(-1px);
}
.service-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
}
.service-icon.teal { background: #0c8f94; }
.service-icon.green { background: #0aa477; }
.service-icon.pink { background: #f33f66; }
.service-icon.blue { background: #119de9; }
.service-icon.amber { background: #f4a300; }
.service-icon.purple { background: #7e38e8; }
.service-icon.indigo { background: #5045df; }
.service-icon.magenta { background: #e53d9f; }
.cancer-dropdown { width: 574px; padding: 18px 18px 20px; }
.cancer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.cancer-grid a {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid #dce2e7;
  border-radius: 8px;
  background: #fff;
  color: #3d4d61;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.15;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.cancer-grid a:hover { border-color: #9cc8ca; background: #f4fbfb; color: var(--teal); }

/* Mobile menu */
.mobile-menu[hidden] { display: none !important; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 28, 36, .2);
}
.mobile-menu-inner {
  width: min(100%, 500px);
  height: 100%;
  padding: 10px 13px 18px;
  overflow: auto;
  background: #fff;
  box-shadow: 12px 0 30px rgba(19, 41, 54, .1);
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eef2f4;
}
.mobile-brand { width: 195px; }
.mobile-brand img { width: 180px; }
.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 27px;
  cursor: pointer;
}
.mobile-nav-links { display: grid; padding-top: 7px; }
.mobile-nav-links > a,
.mobile-accordion-head > a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  color: #34485e;
  font-size: 15px;
  font-weight: 500;
}
.mobile-nav-links > a:first-child { color: var(--teal); }
.mobile-accordion { border-bottom: 1px solid #f1f4f6; }
.mobile-accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-submenu-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: #f18845;
  background: var(--teal-soft);
  font-size: 23px;
  cursor: pointer;
}
.mobile-submenu-toggle i { transition: transform .18s ease; }
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s ease;
}
.mobile-submenu a {
  display: block;
  padding: 9px 10px 9px 14px;
  color: #697789;
  font-size: 13px;
}
.mobile-accordion.open .mobile-submenu { max-height: 850px; padding-bottom: 7px; }
.mobile-accordion.open .mobile-submenu-toggle i { transform: rotate(180deg); }
.mobile-cta { width: 100%; margin-top: 18px; }

/* Hero */
.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: url("assets/doctor-hero.png") center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 31, 42, .76) 0%, rgba(16, 37, 47, .48) 44%, rgba(20, 43, 52, .14) 100%),
    linear-gradient(180deg, rgba(22, 42, 51, .08), rgba(12, 36, 44, .18));
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr 560px;
  align-items: center;
  gap: 65px;
  padding: 32px 0 38px;
}
.hero-copy { color: #fff; }
.expert-badge {
  width: fit-content;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 18px;
  color: rgba(255, 255, 255, .94);
  background: rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 600;
}
.expert-badge i { width: 8px; height: 8px; border-radius: 50%; background: #35a9a7; }
.hero-copy h1 {
  margin: 15px 0 12px;
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(43px, 3.3vw, 58px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.018em;
}
.hero-copy h1 em { color: #039b9b; font-style: normal; }
.hero-copy p {
  max-width: 570px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.58;
}
.social-proof { display: flex; align-items: center; gap: 13px; }
.avatars { display: flex; }
.avatars span {
  width: 38px;
  height: 38px;
  margin-left: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.62);
  border-radius: 50%;
  color: #fff;
  background: #17898c;
  font-size: 11px;
  font-weight: 600;
}
.avatars span:first-child { margin-left: 0; }
.avatars span.light { color: #47707a; background: #fff; }
.social-proof strong { color: #fff; font-size: 13px; }
.social-proof small { font-size: 12px; font-weight: 500; }
.rating { margin-top: 7px; color: rgba(255,255,255,.83); font-size: 12px; }
.rating span { margin-right: 8px; color: #ffc400; font-size: 17px; letter-spacing: 1px; }
.rating strong { color: #fff; margin-right: 3px; }
.hero-actions {
  max-width: 590px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 13px;
}
.btn {
  height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: transform .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: #078b91; box-shadow: 0 9px 20px rgba(0, 131, 137, .25); }
.btn-outline { color: #fff; border: 1px solid rgba(255,255,255,.44); background: rgba(20,35,45,.25); }
.question-card {
  width: 100%;
  min-height: 430px;
  padding: 26px 24px 20px;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.question-card h2 {
  margin: 0 0 6px;
  color: #1e2634;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  text-align: center;
  line-height: 1.23;
}
.question-card label { display: block; margin-top: 10px; }
.question-card input,
.question-card textarea {
  width: 100%;
  border: 1px solid #d8dee5;
  border-radius: 7px;
  color: #26394e;
  background: #fff;
  outline: none;
}
.question-card input { height: 49px; padding: 0 15px; }
.question-card textarea { height: 97px; padding: 13px 15px; resize: none; }
.question-card input::placeholder,
.question-card textarea::placeholder { color: #a0a9b7; }
.question-card input:focus,
.question-card textarea:focus { border-color: #77b9bb; box-shadow: 0 0 0 3px rgba(13,124,128,.09); }
.textarea-wrap { position: relative; }
.counter { position: absolute; right: 5px; bottom: -24px; color: #a1a9b7; font-size: 12px; }
.question-card button {
  width: 100%;
  height: 43px;
  margin-top: 42px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.privacy { margin-top: 14px; color: #a1a8b3; font-size: 12px; text-align: center; }
.decor { position: absolute; z-index: 1; display: block; border-radius: 50%; }
.decor-one { left: 40px; top: 30px; width: 40px; height: 40px; background: rgba(0,127,134,.18); border: 1px solid rgba(0,181,187,.22); }
.decor-two { left: 64px; top: 390px; width: 64px; height: 64px; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.12); }
.decor-three { right: 82px; top: 45px; width: 94px; height: 94px; background: rgba(0,139,146,.25); border: 1px solid rgba(0,181,187,.18); }

/* Shared section styling */
.section-pill {
  height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border-radius: 18px;
  color: #147f82;
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 600;
}
.section-pill i { font-size: 9px; }

/* About */
.about-preview { padding: 42px 0 76px; background: #fff; }
.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 120px;
}
.about-preview h2 {
  margin: 11px 0 16px;
  color: #35465d;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.2;
}
.about-preview h2 em { color: var(--teal); font-style: normal; }
.about-copy { max-width: 620px; color: #798395; font-size: 15.4px; line-height: 1.68; }
.about-copy p { margin: 0; }
.about-copy p + p { margin-top: 21px; }
.about-stats {
  max-width: 554px;
  min-height: 104px;
  margin-top: 27px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-top: 1px solid #edf0f2;
  border-bottom: 1px solid #edf0f2;
}
.about-stat { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.about-stat strong { color: var(--teal); font-size: 28px; font-weight: 700; line-height: 1; }
.about-stat span { margin-top: 10px; color: #8a91a0; font-size: 12px; }
.about-more {
  width: 165px;
  height: 40px;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 5px;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 7px 14px rgba(8,103,107,.25);
  font-size: 12px;
  font-weight: 600;
}
.about-portrait {
  position: relative;
  width: 330px;
  height: 404px;
  margin-top: 54px;
  padding: 16px;
  border-radius: 30px;
  background: linear-gradient(145deg, #f2f8f8, #e6f0f0);
  box-shadow: 0 18px 34px rgba(30, 80, 84, .13);
  transform: rotate(1.5deg);
}
.about-portrait::before {
  content: "";
  position: absolute;
  inset: 13px;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, .94);
  border-radius: 22px;
  pointer-events: none;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  border: 2px solid #fff;
  border-radius: 22px;
  object-fit: cover;
  object-position: center 36%;
  box-shadow: 0 8px 18px rgba(35, 65, 69, .16);
}

/* Cancer cards */
.cancer-support { padding: 24px 0 78px; background: #fff; }
.cancer-support-heading { text-align: center; }
.cancer-support-heading h2 {
  margin: 10px 0 10px;
  color: #3c4e63;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.18;
}
.cancer-support-heading h2 em { color: var(--teal); font-style: normal; }
.cancer-support-heading p {
  width: min(770px, 100%);
  margin: 0 auto 40px;
  color: #717c8b;
  font-size: 15px;
  line-height: 1.6;
}
.cancer-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.cancer-card {
  min-height: 388px;
  padding: 18px 17px 16px;
  border: 1px solid #e8edf1;
  border-radius: 13px;
  background: #fbfcfc;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.cancer-card:hover { transform: translateY(-2px); border-color: #dce6ea; box-shadow: 0 14px 32px rgba(29,55,74,.06); }
.card-head { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 13px; }
.card-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: var(--icon-color);
  background: var(--accent-soft);
  font-size: 18px;
}
.card-head h3 { margin: 2px 0 0; color: #243955; font-size: 14px; font-weight: 700; line-height: 1.35; }
.card-desc {
  min-height: 76px;
  margin: 0 0 13px;
  display: -webkit-box;
  overflow: hidden;
  color: #5b6678;
  font-size: 12.8px;
  line-height: 1.52;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.symptoms-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}
.symptoms-chevron { color: #c6ced9; font-size: 16px; }
.symptoms-list { margin: 0; padding-left: 16px; color: #4d5b70; font-size: 11.4px; line-height: 1.43; }
.symptoms-list li { margin-bottom: 3px; }
.symptoms-list li::marker { color: var(--accent); }
.more-symptoms { margin-top: 3px; color: #c3cbd6; font-size: 11.5px; }
.card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid #edf1f4;
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
}
.cancer-support-actions { display: flex; justify-content: center; margin-top: 30px; }
.cancer-more-btn {
  min-width: 205px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 6px;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 18px rgba(8,103,107,.2);
  font-size: 13px;
  font-weight: 600;
}

/* Services - comes after cancer cards */
.services-showcase { padding: 34px 0 74px; background: #fff; }
.section-split-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 27px;
}
.section-split-header h2,
.process-heading h2,
.reviews-heading h2,
.articles-header h2 {
  margin: 0;
  color: var(--heading);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.18;
}
.section-split-header h2 em,
.process-heading h2 em { color: var(--teal); font-style: normal; }
.section-side-copy {
  width: min(100%, 440px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 22px;
}
.section-side-copy p { margin: 0; color: #758091; font-size: 14px; line-height: 1.55; }
.section-side-btn {
  min-width: 136px;
  height: 38px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border-radius: 6px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 700;
}
.service-feature-card {
  display: grid;
  grid-template-columns: 480px 1fr;
  min-height: 274px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.service-feature-media,
.service-mini-media { background-position: center; background-size: cover; background-repeat: no-repeat; }
.service-media-main { min-height: 274px; background-image: url("assets/service-main.png"); }
.service-media-1 { background-image: url("assets/service-1.png"); }
.service-media-2 { background-image: url("assets/service-2.png"); }
.service-media-3 { background-image: url("assets/service-3.png"); }
.service-media-4 { background-image: url("assets/service-4.png"); }
.service-feature-content {
  display: flex;
  flex-direction: column;
  padding: 23px 24px 21px 21px;
}
.service-feature-content h3,
.service-mini-content h3,
.process-card h3 {
  margin: 0 0 10px;
  color: #2f4259;
  font-size: 16px;
  font-weight: 700;
}
.service-feature-content p,
.service-mini-content p,
.process-card p { margin: 0; color: #687489; line-height: 1.58; }
.service-feature-content p { font-size: 13px; }
.service-feature-content > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
}
.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 19px;
}
.service-mini-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}
.service-mini-media { height: 145px; flex: 0 0 auto; }
.service-mini-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 17px 17px;
}
.service-mini-content h3 { font-size: 14px; line-height: 1.35; }
.service-mini-content p {
  display: -webkit-box;
  overflow: hidden;
  color: #718095;
  font-size: 12.5px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.service-mini-footer {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}
.service-mini-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  line-height: 28px;
}
.service-mini-footer button {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 7px;
  color: var(--teal);
  background: #eaf5f4;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
}

/* Process */
.process-section { padding: 25px 0 76px; background: #fff; }
.process-container { position: relative; }
.process-heading { max-width: 760px; margin: 0 auto; text-align: center; }
.process-heading h2 { margin-top: 17px; }
.process-heading p { margin: 9px 0 0; color: #778294; font-size: 15px; }
.process-track {
  position: absolute;
  left: 140px;
  right: 140px;
  top: 151px;
  height: 1px;
  background: #9cc7ca;
}
.process-track::before,
.process-track::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.process-track::before { left: 32%; }
.process-track::after { left: 66%; }
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 39px;
}
.process-step { text-align: center; }
.process-marker { position: relative; width: 78px; height: 78px; margin: 0 auto 27px; }
.process-icon {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 0 0 6px #edf5f5, 0 0 0 1px #b6d2d3;
  font-size: 27px;
}
.process-count {
  position: absolute;
  right: -6px;
  top: -6px;
  z-index: 2;
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #243c57;
  font-size: 10px;
  font-weight: 700;
}
.process-card {
  min-height: 170px;
  padding: 27px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.process-card p { max-width: 300px; margin-inline: auto; font-size: 13px; }
.process-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  margin-top: 31px;
  color: #9299ad;
  font-size: 13px;
}
.process-footer span { position: relative; display: inline-flex; align-items: center; gap: 8px; }
.process-footer span + span::before {
  content: "";
  position: absolute;
  left: -17px;
  width: 1px;
  height: 18px;
  background: #d9dee5;
}
.process-footer i { color: var(--teal); }

/* Reviews */
.reviews-section { padding: 25px 0 82px; background: #fff; }
.reviews-heading { text-align: center; }
.reviews-heading .section-pill { margin-bottom: 13px; }
.reviews-heading h2 { font-size: 36px; }
.reviews-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  padding: 8px 17px;
  border: 1px solid #dce3e8;
  border-radius: 999px;
  color: #627286;
  background: #fff;
  font-size: 12px;
}
.reviews-rating-pill .stars { color: #f0b323; letter-spacing: 1px; }
.reviews-rating-pill strong { color: #23384f; }
.reviews-rating-pill .divider { width: 1px; height: 18px; margin-inline: 3px; background: #dce3e8; }
.reviews-rating-pill i { color: var(--teal); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 29px;
}
.review-card {
  min-height: 264px;
  padding: 20px 20px 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 13px; }
.review-stars { color: #f0b323; letter-spacing: 1px; font-size: 14px; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #2a8a3c;
  background: #eff8ef;
  font-size: 8px;
  font-weight: 700;
}
.review-text { min-height: 142px; margin: 0; color: #334e69; font-size: 13px; line-height: 1.52; }
.review-user {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 11px;
  padding-top: 13px;
  border-top: 1px solid #eef2f4;
}
.review-avatar {
  width: 39px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 700;
}
.review-user strong { display: block; color: #223751; font-size: 12px; }
.review-user span { display: block; color: #8b95a5; font-size: 10px; }
.reviews-slider-ui { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 37px; }
.slider-arrow {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8dde4;
  border-radius: 50%;
  color: #96a1ae;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
}
.slider-arrow.active { color: #fff; border-color: var(--teal); background: var(--teal); }
.slider-dots { display: flex; align-items: center; gap: 8px; }
.slider-dots span { width: 8px; height: 8px; display: block; border-radius: 50%; background: #d0d6dd; }
.slider-dots span.active { width: 23px; border-radius: 999px; background: var(--teal); }

/* Health articles */
.health-articles { padding: 50px 0 36px; background: #f7f9fa; }
.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}
.articles-header h2 { margin-top: 13px; font-size: 35px; }
.articles-all { margin-bottom: 1px; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.article-card {
  overflow: hidden;
  border: 1px solid #e5eaee;
  border-radius: 13px;
  background: #fff;
}
.article-image-wrap { position: relative; height: 174px; overflow: hidden; }
.article-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.article-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 5px;
  color: var(--teal);
  background: rgba(255,255,255,.94);
  font-size: 12px;
  font-weight: 500;
}
.article-content { padding: 17px 18px 18px; }
.article-meta { display: flex; align-items: center; gap: 8px; color: #9ba5b4; font-size: 11px; }
.article-meta span { display: inline-flex; align-items: center; gap: 5px; }
.article-meta b { color: #cdd3da; font-size: 10px; }
.article-content h3 {
  min-height: 48px;
  margin: 11px 0 8px;
  display: -webkit-box;
  overflow: hidden;
  color: #32445a;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.article-content p {
  min-height: 45px;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  color: #7b8494;
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.article-content > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
}

/* CTA */
.contact-cta {
  position: relative;
  overflow: hidden;
  padding: 54px 0;
  color: #fff;
  background: linear-gradient(90deg, #0d7d80, #159094);
}
.contact-cta::before,
.contact-cta::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.contact-cta::before { left: -75px; top: 28px; }
.contact-cta::after { right: -20px; top: -105px; }
.contact-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.contact-cta h2 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
}
.contact-cta p { max-width: 520px; margin: 0; color: rgba(255,255,255,.9); font-size: 13px; line-height: 1.55; }
.contact-cta-actions { display: flex; align-items: center; gap: 12px; }
.cta-whatsapp,
.cta-appointment {
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.cta-whatsapp { min-width: 196px; color: var(--teal); background: #fff; }
.cta-appointment { min-width: 148px; color: #fff; border: 1px solid rgba(255,255,255,.45); }

/* Footer */
.site-footer {
  position: relative;
  background-color: #f8fbfb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath d='M14 10v8M10 14h8' stroke='%23e5f0f0' stroke-width='1'/%3E%3C/svg%3E");
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr .75fr .85fr .9fr .8fr;
  gap: 35px;
  align-items: start;
  padding-top: 26px;
  padding-bottom: 36px;
}
.footer-about-card {
  padding: 21px;
  border: 1px solid #e6ecef;
  border-radius: 11px;
  background: rgba(255,255,255,.93);
}
.footer-about-card img { width: 235px; margin-bottom: 15px; }
.footer-about-card p { margin: 0; color: #607085; font-size: 12px; line-height: 1.65; }
.social-links { display: flex; gap: 9px; margin-top: 18px; }
.social-links a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #fff;
  font-size: 18px;
}
.social-links .whatsapp { background: #10b981; }
.social-links .instagram { background: linear-gradient(135deg, #f04a78, #8a3ffc); }
.social-links .facebook { background: #1877f2; }
.social-links .tiktok { background: #111; }
.social-links .youtube { background: #e52d27; }
.footer-column { display: flex; flex-direction: column; gap: 9px; }
.footer-column h3 {
  position: relative;
  margin: 0 0 10px;
  padding-left: 14px;
  color: #24364d;
  font-size: 12px;
  font-weight: 700;
}
.footer-column h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(11,127,130,.1);
}
.footer-column a { color: #647286; font-size: 12px; line-height: 1.45; }
.footer-column a:hover { color: var(--teal); }
.footer-cancer-column { gap: 7px; }
.footer-contact { gap: 13px; }
.contact-row { display: flex; align-items: flex-start; gap: 10px; color: #657286; font-size: 11px; line-height: 1.45; }
.contact-row i {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: var(--teal);
  background: #e8f3f3;
  font-size: 15px;
}
.footer-bottom { border-top: 1px solid #e4ebee; background: rgba(255,255,255,.55); }
.footer-bottom .container {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8994a2;
  font-size: 10px;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 150;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #18c45e;
  box-shadow: 0 7px 18px rgba(14,101,50,.28);
  font-size: 27px;
}

@media (max-width: 1280px) {
  .site-header { grid-template-columns: 210px 1fr 130px; padding-inline: 22px; gap: 14px; }
  .brand img { width: 184px; }
  .main-nav { gap: 20px; }
  .nav-link { font-size: 13px; }
  .hero-inner { grid-template-columns: 1fr 500px; gap: 40px; }
  .about-inner { gap: 70px; }
  .footer-grid { gap: 24px; }
}

@media (max-width: 1080px) {
  .site-header {
    height: 70px;
    grid-template-columns: 1fr auto;
    padding-inline: 17px;
  }
  .main-nav,
  .desktop-cta { display: none; }
  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: var(--teal-soft);
    cursor: pointer;
  }
  .mobile-menu-toggle span { width: 19px; height: 2px; display: block; border-radius: 99px; background: var(--teal); }
  .container,
  .hero-inner,
  .about-inner,
  .cancer-support-inner { width: min(790px, calc(100% - 48px)); }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; padding-block: 46px; }
  .question-card { width: 100%; }
  .about-inner { grid-template-columns: 1fr 290px; gap: 38px; }
  .about-portrait { width: 290px; height: 355px; }
  .cancer-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-split-header { display: block; }
  .section-side-copy { width: 100%; margin-top: 14px; justify-content: space-between; }
  .service-feature-card { grid-template-columns: 1fr; }
  .service-media-main { min-height: 250px; }
  .service-feature-content { padding: 20px; }
  .service-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-track { display: none; }
  .process-grid { grid-template-columns: 1fr; gap: 50px; }
  .process-card p { max-width: 100%; }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .articles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-about-card { grid-row: span 2; }
}

@media (max-width: 720px) {
  .brand { width: 180px; }
  .brand img { width: 175px; }
  .container,
  .hero-inner,
  .about-inner,
  .cancer-support-inner { width: min(100% - 30px, 560px); }
  .hero { min-height: unset; }
  .hero-inner { min-height: unset; }
  .hero-copy h1 { font-size: 40px; line-height: 1.02; }
  .hero-copy p { font-size: 14px; }
  .hero-copy p br { display: none; }
  .hero-actions { grid-template-columns: 1fr; }
  .question-card { padding: 23px 17px 19px; }
  .about-preview { padding: 42px 0 58px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-preview h2,
  .cancer-support-heading h2,
  .section-split-header h2,
  .process-heading h2,
  .reviews-heading h2,
  .articles-header h2 { font-size: 31px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .about-stat strong { font-size: 24px; }
  .about-portrait {
    width: min(290px, 100%);
    height: auto;
    aspect-ratio: 330 / 404;
    margin: 0 auto;
  }
  .cancer-cards,
  .service-mini-grid,
  .reviews-grid,
  .articles-grid { grid-template-columns: 1fr; }
  .cancer-card { min-height: auto; }
  .section-side-copy { display: block; }
  .section-side-btn { margin-top: 14px; }
  .service-feature-media { min-height: 210px; }
  .service-mini-media { height: 178px; }
  .process-footer { flex-direction: column; align-items: center; gap: 13px; }
  .process-footer span + span::before { display: none; }
  .reviews-rating-pill { flex-wrap: wrap; justify-content: center; }
  .articles-header { align-items: flex-start; }
  .articles-all { flex: 0 0 auto; }
  .article-image-wrap { height: 210px; }
  .contact-cta { padding: 42px 0; }
  .contact-cta-inner { display: block; }
  .contact-cta-actions { margin-top: 23px; flex-wrap: wrap; }
  .cta-whatsapp,
  .cta-appointment { flex: 1 1 190px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 22px; }
  .footer-about-card { grid-column: 1 / -1; grid-row: auto; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom .container { padding-block: 13px; flex-direction: column; justify-content: center; text-align: center; }
  .floating-whatsapp { right: 17px; bottom: 17px; width: 50px; height: 50px; }
}

@media (max-width: 480px) {
  .site-header { padding-inline: 13px; }
  .brand img { width: 165px; }
  .mobile-menu-toggle { width: 41px; height: 41px; }
  .hero-copy h1 { font-size: 35px; }
  .about-stats { grid-template-columns: 1fr; gap: 17px; padding-block: 20px; }
  .articles-header { display: block; }
  .articles-all { margin-top: 16px; }
  .article-image-wrap { height: 184px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about-card,
  .footer-contact { grid-column: auto; }
}


/* =========================================================
   HAKKIMIZDA SAYFASI
   ========================================================= */
.about-page { background: #fff; }
.about-page .site-header { position: sticky; top: 0; }
.about-page .mobile-nav-links .mobile-current { color: var(--teal); }

.about-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background:
    linear-gradient(108deg, rgba(25,46,58,.94) 0%, rgba(58,89,93,.82) 48%, rgba(151,211,203,.67) 100%),
    url("assets/clinic-bg.svg") center 48% / cover no-repeat;
}
.about-page-hero::before,
.about-page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.about-page-hero::before { width: 90px; height: 90px; right: 8%; top: 38px; background: rgba(21,151,153,.18); }
.about-page-hero::after { width: 54px; height: 54px; left: 4%; bottom: 34px; border: 1px solid rgba(255,255,255,.24); }
.about-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    radial-gradient(circle at 32% 45%, transparent 0 34px, rgba(255,255,255,.22) 35px 37px, transparent 38px),
    radial-gradient(circle at 48% 57%, transparent 0 54px, rgba(0,114,117,.32) 55px 58px, transparent 59px),
    linear-gradient(23deg, transparent 45%, rgba(13,124,128,.35) 46% 47%, transparent 48%);
}
.about-page-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: center;
  gap: 80px;
  padding: 32px 0;
}
.about-page-hero-copy { max-width: 620px; color: #fff; }
.about-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.about-page-hero h1 {
  margin: 16px 0 10px;
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(42px, 4vw, 61px);
  font-weight: 400;
  line-height: 1.03;
}
.about-page-hero h1 em { color: #05a2a2; font-style: normal; }
.about-page-hero-copy p { margin: 0; max-width: 600px; color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.7; }
.about-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.about-hero-actions .btn { min-width: 166px; padding-inline: 18px; }
.about-page-hero-portrait { position: relative; display: flex; justify-content: center; align-items: flex-end; height: 290px; }
.about-page-hero-portrait .portrait-glow {
  position: absolute;
  width: 280px;
  height: 265px;
  border-radius: 24px;
  background: rgba(13,132,134,.22);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 40px rgba(255,255,255,.06);
}
.about-page-hero-portrait img { position: relative; z-index: 2; width: 235px; height: auto; object-fit: contain; filter: drop-shadow(0 20px 22px rgba(10,33,38,.22)); }

.about-page-stats { background: #fff; border-bottom: 1px solid #edf1f3; }
.about-page-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); min-height: 104px; }
.about-page-stats-grid > div { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; text-align: center; }
.about-page-stats-grid > div + div::before { content: ""; position: absolute; left: 0; width: 1px; height: 48px; background: #edf0f2; }
.about-page-stats strong { color: var(--teal); font-size: 28px; font-weight: 700; line-height: 1; }
.about-page-stats span { margin-top: 10px; color: #8b94a2; font-size: 12px; }

.about-copy-container { width: min(790px, calc(100% - 40px)); margin: 0 auto; }
.about-biography { padding: 62px 0 70px; }
.about-biography h2,
.about-section-heading h2 {
  margin: 12px 0 20px;
  color: #34475d;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
}
.about-biography h2 em,
.about-section-heading h2 em { color: var(--teal); font-style: normal; }
.about-biography-text { color: #536174; font-size: 14.5px; line-height: 1.82; }
.about-biography-text p { margin: 0 0 15px; }
.about-biography-text strong { color: #263a50; }

.about-section-heading { text-align: center; max-width: 770px; margin: 0 auto 34px; }
.about-section-heading .section-pill { margin-inline: auto; }
.about-section-heading p { margin: -9px auto 0; color: #7a8594; font-size: 14px; line-height: 1.65; }

.career-section { padding: 62px 0 74px; background: #f7f9fa; }
.career-timeline { position: relative; width: min(900px,100%); margin: 0 auto; }
.career-timeline::before { content: ""; position: absolute; top: 8px; bottom: 8px; left: 50%; width: 2px; transform: translateX(-50%); background: #c9e4e3; }
.career-item { position: relative; width: 50%; min-height: 208px; padding: 0 34px 32px 0; }
.career-item:nth-child(even) { margin-left: 50%; padding: 0 0 32px 34px; }
.career-dot { position: absolute; right: -6px; top: 75px; width: 12px; height: 12px; border-radius: 50%; background: var(--teal); border: 4px solid #f7f9fa; box-shadow: 0 0 0 1px #8cc4c3; z-index: 2; }
.career-item:nth-child(even) .career-dot { left: -6px; right: auto; }
.career-card { position: relative; padding: 22px 24px; border: 1px solid #edf0f2; border-radius: 10px; background: #fff; box-shadow: 0 8px 22px rgba(36,54,77,.05); }
.career-item:nth-child(odd) .career-card { text-align: right; }
.career-icon { position: absolute; top: 19px; right: 18px; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 7px; color: var(--teal); background: #e8f5f4; font-size: 17px; }
.career-item:nth-child(odd) .career-icon { left: 18px; right: auto; }
.career-year { display: block; color: var(--teal); font-size: 13px; font-weight: 700; }
.career-card h3 { margin: 5px 42px 10px 0; color: #263a50; font-size: 15px; line-height: 1.35; }
.career-item:nth-child(odd) h3 { margin: 5px 0 10px 42px; }
.career-card p { margin: 0; color: #657284; font-size: 12.5px; line-height: 1.65; }

.about-areas-section { padding: 64px 0 72px; }
.about-areas-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.about-area-card { min-height: 185px; padding: 20px 18px; border: 1px solid #edf1f3; border-radius: 10px; background: #fff; }
.about-area-card > span { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 7px; color: var(--teal); background: #e8f5f4; font-size: 18px; }
.about-area-card h3 { margin: 14px 0 8px; color: #293d53; font-size: 14px; }
.about-area-card p { margin: 0; color: #748092; font-size: 12px; line-height: 1.62; }

.competencies-section { padding: 62px 0 72px; background: #f2fafa; }
.competencies-card { width: min(780px,100%); margin: 0 auto; padding: 30px 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 38px; border: 1px solid #e7efef; border-radius: 11px; background: #fff; list-style: none; }
.competencies-card li { display: flex; align-items: flex-start; gap: 10px; color: #4f5e70; font-size: 13px; line-height: 1.45; }
.competencies-card i { width: 20px; height: 20px; flex: 0 0 20px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--teal); background: #e7f5f4; font-size: 13px; }

.about-faq-section { padding: 62px 0 38px; }
.about-faq-list { border-top: 1px solid #edf1f3; }
.about-faq-item { border-bottom: 1px solid #edf1f3; }
.about-faq-item button { width: 100%; min-height: 55px; padding: 13px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; background: transparent; color: #2f4257; text-align: left; cursor: pointer; font-size: 14px; font-weight: 600; }
.about-faq-item button i { width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--teal); background: #ecf7f6; font-size: 17px; transition: transform .18s; }
.about-faq-answer { max-height: 0; overflow: hidden; transition: max-height .24s ease; }
.about-faq-answer p { margin: 0; padding: 0 50px 17px 4px; color: #6a7687; font-size: 13px; line-height: 1.65; }
.about-faq-item.open .about-faq-answer { max-height: 220px; }
.about-faq-item.open button i { transform: rotate(45deg); }
.doctor-expertise { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 34px; padding: 22px 0; border-top: 1px solid #edf1f3; }
.doctor-expertise strong { color: #2e4358; font-size: 14px; }
.doctor-expertise p { margin: 5px 0 0; color: #8b94a3; font-size: 11px; }
.expertise-tags { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.expertise-tags span { padding: 7px 11px; border: 1px solid #e1e7ea; border-radius: 999px; color: #657284; background: #fff; font-size: 10px; }
.expertise-tags .filled { color: #fff; background: var(--teal); border-color: var(--teal); }

@media (max-width: 1080px) {
  .about-page-hero-inner { grid-template-columns: 1fr 290px; gap: 38px; }
  .about-page-hero-portrait img { width: 215px; }
  .about-areas-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .about-page-hero-inner { grid-template-columns: 1fr; padding: 42px 0 26px; text-align: center; }
  .about-page-hero-copy { margin: 0 auto; }
  .about-hero-pill,
  .about-hero-actions { justify-content: center; }
  .about-page-hero-portrait { height: 240px; }
  .about-page-hero-portrait .portrait-glow { width: 240px; height: 220px; }
  .about-page-hero-portrait img { width: 190px; }
  .about-page-stats-grid { grid-template-columns: repeat(2,1fr); padding: 10px 0; }
  .about-page-stats-grid > div { min-height: 84px; }
  .about-page-stats-grid > div:nth-child(3)::before { display: none; }
  .career-timeline::before { left: 15px; }
  .career-item,
  .career-item:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 30px 44px; }
  .career-dot,
  .career-item:nth-child(even) .career-dot { left: 9px; right: auto; top: 72px; }
  .career-item:nth-child(odd) .career-card { text-align: left; }
  .career-item:nth-child(odd) .career-icon { left: auto; right: 18px; }
  .career-item:nth-child(odd) h3 { margin: 5px 42px 10px 0; }
  .about-areas-grid,
  .competencies-card { grid-template-columns: 1fr; }
  .competencies-card { padding: 26px 22px; }
  .doctor-expertise { align-items: flex-start; flex-direction: column; }
  .expertise-tags { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .about-page-hero h1 { font-size: 37px; }
  .about-hero-actions { display: grid; grid-template-columns: 1fr; }
  .about-page-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-page-stats strong { font-size: 24px; }
  .about-biography h2,
  .about-section-heading h2 { font-size: 31px; }
  .about-areas-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Tıbbi Hizmetler sayfası
   ========================================================= */
.medical-services-page { background: #fff; }
.medical-services-hero {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13,39,49,.86), rgba(3,91,94,.70)),
    url("assets/service-2.png") center 48% / cover no-repeat;
}
.medical-services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(17,175,177,.20), transparent 27%),
    linear-gradient(90deg, rgba(10,41,51,.45), transparent 55%);
}
.medical-services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,44,53,.10), rgba(4,49,57,.18));
}
.medical-services-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 0 30px;
  text-align: center;
  color: #fff;
}
.medical-services-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.medical-services-hero h1 {
  margin: 14px 0 10px;
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(40px, 4.1vw, 59px);
  font-weight: 400;
  line-height: 1.06;
}
.medical-services-hero h1 em { color: #06a1a2; font-style: normal; }
.medical-services-hero p {
  width: min(740px, 100%);
  margin: 0 auto;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.68;
}
.medical-services-notice {
  min-height: 34px;
  margin-top: 18px;
  padding: 7px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.27);
  border-radius: 6px;
  color: #22c0bd;
  background: rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 600;
}

.medical-services-listing {
  padding: 48px 0 62px;
  background: #f7f9fa;
}
.medical-featured-service {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 380px;
  border: 1px solid #cfe1e2;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.medical-featured-image {
  position: relative;
  display: block;
  min-height: 380px;
  overflow: hidden;
}
.medical-featured-image > span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: #0e7d80;
  font-size: 11px;
  font-weight: 600;
}
.medical-featured-image img,
.medical-service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}
.medical-featured-image:hover img,
.medical-service-image:hover img { transform: scale(1.025); }
.medical-featured-body {
  padding: 28px 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.medical-featured-title,
.medical-service-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.medical-featured-title > span {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #fff;
  background: #0c8f94;
  font-size: 18px;
}
.medical-featured-title h2 {
  margin: 5px 0 0;
  color: #34475d;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.25;
}
.medical-featured-body > p {
  margin: 14px 0 12px;
  color: #667386;
  font-size: 13.5px;
  line-height: 1.67;
}
.medical-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.medical-service-tags span {
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border: 1px solid #e2ebed;
  border-radius: 999px;
  color: #66808a;
  background: #f7fafb;
  font-size: 10.5px;
  line-height: 1.2;
}
.featured-tags span {
  color: #18898a;
  border-color: #cfe9e8;
  background: #eff9f8;
}
.medical-featured-button {
  min-width: 126px;
  height: 38px;
  margin-top: 17px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  color: #fff;
  background: #0d7f82;
  box-shadow: 0 7px 14px rgba(8,103,107,.18);
  font-size: 12px;
  font-weight: 700;
}
.medical-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}
.medical-service-card {
  min-width: 0;
  min-height: 366px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5ebee;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.medical-service-card:hover {
  transform: translateY(-2px);
  border-color: #cfe2e3;
  box-shadow: 0 12px 28px rgba(35,60,76,.06);
}
.medical-service-image {
  display: block;
  height: 132px;
  overflow: hidden;
  background: #eaf0f1;
}
.medical-service-body {
  flex: 1;
  padding: 16px 17px 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.medical-service-title {
  width: 100%;
  align-items: center;
  gap: 9px;
}
.medical-service-title > span {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #fff;
  background: var(--service-color);
  font-size: 15px;
}
.medical-service-title h3 {
  margin: 0;
  color: #2f4359;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}
.medical-service-body > p {
  min-height: 58px;
  margin: 12px 0 11px;
  color: #718094;
  font-size: 11.5px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.medical-service-card .medical-service-tags {
  gap: 6px;
  margin-bottom: 12px;
}
.medical-service-card .medical-service-tags span {
  padding: 2px 7px;
  min-height: 20px;
  font-size: 9.5px;
}
.medical-detail-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0b7d80;
  font-size: 11.5px;
  font-weight: 600;
}
.medical-detail-link i,
.medical-featured-button i { transition: transform .16s ease; }
.medical-detail-link:hover i,
.medical-featured-button:hover i { transform: translateX(3px); }

.medical-services-faq {
  padding: 68px 0 64px;
  background: #fff;
}
.medical-services-faq-inner {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
}
.medical-services-heading { text-align: center; margin-bottom: 32px; }
.medical-services-heading .section-pill { margin-inline: auto; }
.medical-services-heading h2 {
  margin: 13px 0 0;
  color: #34475d;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 37px;
  font-weight: 400;
}
.medical-services-heading h2 em { color: var(--teal); font-style: normal; }
.services-faq-list { display: grid; gap: 9px; }
.services-faq-item {
  border: 1px solid #e7ecef;
  border-radius: 9px;
  background: #fff;
  overflow: hidden;
}
.services-faq-item button {
  width: 100%;
  min-height: 54px;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  color: #304359;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}
.services-faq-item button i {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0b7f82;
  background: #eaf6f5;
  font-size: 17px;
}
.services-faq-answer { max-height: 0; overflow: hidden; transition: max-height .23s ease; }
.services-faq-answer p {
  margin: 0;
  padding: 0 50px 18px 17px;
  color: #6e7a8b;
  font-size: 12px;
  line-height: 1.7;
}
.services-faq-item.open .services-faq-answer { max-height: 240px; }

.service-placeholder-hero {
  min-height: 460px;
  padding: 95px 0;
  display: flex;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg,#f4fafa,#fff);
}
.service-placeholder-hero .container { max-width: 760px; }
.service-placeholder-hero h1 {
  margin: 15px 0 10px;
  color: #31465c;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
}
.service-placeholder-hero p { margin: 0 0 24px; color: #728092; }
.service-placeholder-hero > .container > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b7d80;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .medical-featured-service { grid-template-columns: 46% 54%; }
  .medical-services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .medical-service-image { height: 170px; }
}
@media (max-width: 720px) {
  .medical-services-hero-inner { min-height: 365px; padding-block: 44px; }
  .medical-services-hero h1 { font-size: 39px; }
  .medical-services-hero p { font-size: 13px; }
  .medical-services-notice { align-items: flex-start; text-align: left; }
  .medical-services-listing { padding: 32px 0 48px; }
  .medical-featured-service { grid-template-columns: 1fr; }
  .medical-featured-image { min-height: 250px; }
  .medical-featured-body { padding: 24px 20px; }
  .medical-services-grid { grid-template-columns: 1fr; }
  .medical-service-card { min-height: 0; }
  .medical-service-image { height: 205px; }
  .medical-service-body > p { min-height: 0; }
  .medical-services-heading h2 { font-size: 32px; }
}
@media (max-width: 460px) {
  .medical-featured-image { min-height: 210px; }
  .medical-featured-title h2 { font-size: 23px; }
  .medical-service-image { height: 185px; }
  .service-placeholder-hero h1 { font-size: 37px; }
}

/* ==========================
   Kanser Desteği detay sayfası
   ========================== */
.cancer-detail-page { background: #fff; }
.cancer-detail-page .cancer-nav > .nav-link .nav-label::after { transform: scaleX(1); }

.cancer-detail-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 35%, rgba(7,130,126,.32), transparent 26%),
    radial-gradient(circle at 15% 78%, rgba(228,105,60,.18), transparent 26%),
    url("assets/clinic-bg.svg") center/cover no-repeat;
}
.cancer-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27,22,35,.96) 0%, rgba(64,28,38,.91) 42%, rgba(20,78,77,.80) 100%);
}
.cancer-detail-overlay {
  position: absolute;
  inset: 0;
  opacity: .24;
  background:
    radial-gradient(circle at 18% 20%, #ff9b71 0 2px, transparent 3px),
    radial-gradient(circle at 35% 64%, #f3c86d 0 2px, transparent 3px),
    radial-gradient(circle at 73% 32%, #8ee4df 0 2px, transparent 3px);
  background-size: 135px 135px, 180px 180px, 220px 220px;
}
.cancer-detail-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0,1fr) 520px;
  gap: 66px;
  align-items: center;
  padding-block: 54px;
}
.cancer-detail-copy { color: #fff; }
.dark-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 5px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.11);
  font-size: 12px;
  font-weight: 600;
}
.cancer-detail-copy h1 {
  margin: 18px 0 18px;
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(46px,4.1vw,66px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
}
.cancer-detail-copy h1 em { color: #20aaa6; font-style: normal; }
.cancer-detail-copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.72;
}
.cancer-proof { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.cancer-proof > div { display: flex; }
.cancer-proof span {
  width: 37px; height: 37px; margin-left: -7px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,.7); border-radius: 50%;
  color: #fff; background: #148c8c; font-size: 11px; font-weight: 700;
}
.cancer-proof span:first-child { margin-left: 0; }
.cancer-proof strong { color: #fff; font-size: 13px; }
.cancer-proof small { font-weight: 500; }
.cancer-rating { margin-top: 7px; color: rgba(255,255,255,.8); font-size: 12px; }
.cancer-rating > span { color: #f7c548; letter-spacing: 1px; font-size: 16px; }
.cancer-rating strong { margin-left: 8px; color: #fff; }
.cancer-hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.whatsapp-green,
.hero-ghost {
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}
.whatsapp-green { color: #fff; background: #17bc5f; box-shadow: 0 8px 18px rgba(16,175,82,.22); }
.hero-ghost { color: #fff; border: 1px solid rgba(255,255,255,.32); background: rgba(255,255,255,.06); }
.cancer-question-card { box-shadow: 0 24px 48px rgba(0,0,0,.30); }

.cancer-intro-section { padding: 76px 0 68px; }
.cancer-intro-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 360px;
  gap: 88px;
  align-items: center;
}
.cancer-intro-copy h2,
.center-heading h2,
.center-heading.left h2 {
  margin: 12px 0 16px;
  color: #34475d;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.17;
}
.cancer-intro-copy h2 em,
.center-heading h2 em { color: var(--teal); font-style: normal; }
.cancer-intro-copy p {
  margin: 0 0 16px;
  color: #687588;
  font-size: 14.5px;
  line-height: 1.82;
}
.cancer-intro-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}
.cancer-intro-visual {
  position: relative;
  min-height: 430px;
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(145deg,#eef6f6,#e7f0f1);
}
.cancer-intro-visual::before {
  content: "";
  position: absolute;
  inset: 38px 24px 22px;
  border: 1px solid rgba(12,124,128,.13);
  border-radius: 20px;
}
.cancer-intro-visual img { position: relative; z-index: 1; width: 100%; display: block; }
.cancer-intro-visual > span {
  position: absolute;
  left: 50%; bottom: 18px; z-index: 2;
  transform: translateX(-50%);
  min-width: 220px;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  color: #3f566c;
  background: #fff;
  box-shadow: 0 10px 22px rgba(36,58,75,.12);
  font-size: 12px;
  font-weight: 600;
}
.cancer-intro-visual > span i { color: var(--teal); }

.center-heading { max-width: 780px; margin: 0 auto 34px; text-align: center; }
.center-heading.left { max-width: 100%; text-align: left; margin-inline: 0; }
.center-heading p { margin: 0; color: #758193; font-size: 14.5px; line-height: 1.7; }
.center-heading .section-pill { margin-inline: auto; }
.center-heading.left .section-pill { margin-inline: 0; }

.cancer-stages-section { padding: 70px 0 64px; background: #f8fbfb; }
.cancer-stage-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.cancer-stage-card {
  min-height: 245px;
  padding: 20px;
  border: 1px solid #e7edef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(30,57,75,.03);
}
.cancer-stage-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cancer-stage-no {
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; background: var(--stage); font-size: 17px; font-weight: 700;
}
.cancer-stage-rate {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--stage);
  background: color-mix(in srgb, var(--stage) 10%, white);
  font-size: 10px;
  font-weight: 700;
}
.cancer-stage-card h3 { margin: 20px 0 9px; color: #304359; font-size: 16px; }
.cancer-stage-card p { margin: 0; color: #6d798b; font-size: 12.5px; line-height: 1.65; }
.stage-line { height: 4px; margin-top: 22px; border-radius: 99px; background: var(--stage); opacity: .75; }
.stage-summary {
  margin-top: 20px;
  padding: 20px 22px;
  border: 1px solid #e4ebed;
  border-radius: 13px;
  background: #fff;
}
.stage-summary > strong { display: block; color: #33475d; font-size: 14px; margin-bottom: 14px; }
.stage-summary > div { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.stage-summary span { color: #7a8798; font-size: 12px; text-align: center; }
.stage-summary b { display: block; color: var(--teal); font-size: 22px; }

.support-methods-section { padding: 70px 0; }
.support-method-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.support-method-card {
  min-height: 205px;
  padding: 24px;
  border: 1px solid #e8edef;
  border-radius: 14px;
  background: #fff;
  transition: .18s ease;
}
.support-method-card:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(33,61,78,.06); }
.support-method-card > span {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; color: var(--teal); background: #eaf6f5; font-size: 21px;
}
.support-method-card h3 { margin: 18px 0 8px; color: #32465b; font-size: 15px; }
.support-method-card p { margin: 0; color: #707c8f; font-size: 12.5px; line-height: 1.68; }

.metastasis-section { padding: 70px 0; background: #f8fbfb; }
.metastasis-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6,minmax(0,1fr));
  gap: 10px;
  padding-top: 32px;
}
.metastasis-track::before {
  content: "";
  position: absolute;
  left: 8%; right: 8%; top: 54px;
  height: 2px;
  background: #c7dcde;
}
.metastasis-step { position: relative; z-index: 1; text-align: center; opacity: .55; transition: .22s ease; }
.metastasis-step.active { opacity: 1; transform: translateY(-4px); }
.meta-icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--teal); background: #fff;
  border: 2px solid #b9d7d8; box-shadow: 0 0 0 6px #edf5f5;
}
.metastasis-step.active .meta-icon { color: #fff; background: var(--teal); border-color: var(--teal); }
.metastasis-step strong { display: block; color: #2e4459; font-size: 12px; }
.metastasis-step h3 { margin: 7px 0 5px; color: #32465b; font-size: 12px; }
.metastasis-step p { margin: 0; color: #7b8798; font-size: 10px; line-height: 1.45; }
.metastasis-controls { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.metastasis-controls button {
  min-height: 36px; padding: 0 14px; border-radius: 6px; border: 1px solid #d9e4e5; cursor: pointer;
  color: #607286; background: #fff; font-size: 11px; font-weight: 600;
}
.metastasis-controls .meta-start { color: #fff; border-color: var(--teal); background: var(--teal); }

.screening-section { padding: 72px 0; }
.screening-tool {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 22px 26px;
  border: 1px solid #e5ebed;
  border-radius: 15px;
  background: #fbfcfc;
}
.age-box { display: grid; grid-template-columns: 55px 1fr; gap: 0 16px; align-items: center; }
.age-box > strong { grid-row: 1/3; width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--teal); font-size: 19px; }
.age-box > span { color: #607084; font-size: 11px; }
.age-box input { width: 100%; accent-color: var(--teal); }
.age-box > div { grid-column: 2; display: flex; justify-content: space-between; color: #9aa4b1; }
.gender-filter { display: flex; align-items: center; gap: 7px; }
.gender-filter > span { margin-right: 5px; color: #607084; font-size: 12px; }
.gender-filter button { border: 0; border-radius: 999px; padding: 8px 13px; color: #6e7b8c; background: #eef3f4; cursor: pointer; font-size: 11px; }
.gender-filter button.active { color: #fff; background: var(--teal); }
.screening-result-line { margin: 18px 0 13px; color: #33475d; font-size: 13px; }
.screening-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.screening-card {
  min-height: 230px; padding: 18px;
  border: 1px solid #e8edef; border-top: 4px solid #d8a1ba;
  border-radius: 12px; background: #fff;
}
.screening-card:nth-child(3n+2) { border-top-color: #7dbac9; }
.screening-card:nth-child(3n+3) { border-top-color: #e9b36b; }
.screen-card-head { display: flex; align-items: center; gap: 10px; }
.screen-card-head > span { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 9px; color: var(--teal); background: #eaf6f5; }
.screen-card-head h3 { margin: 0; color: #304359; font-size: 13px; }
.screening-meta { margin: 14px 0; }
.screening-meta b { display: block; color: var(--teal); font-size: 18px; }
.screening-meta small { color: #9aa4b0; font-size: 10px; }
.screening-card ul { margin: 0 0 13px; padding: 0; list-style: none; color: #6c788b; font-size: 11px; line-height: 1.6; }
.screening-card a { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-size: 11px; font-weight: 600; }
.screening-note,
.medical-warning {
  display: flex; gap: 12px; align-items: flex-start; margin-top: 20px; padding: 16px 18px;
  border-radius: 10px; color: #80602e; background: #fff8df;
}
.screening-note i,
.medical-warning i { flex: 0 0 auto; font-size: 20px; }
.screening-note p,
.medical-warning p { margin: 0; font-size: 11.5px; line-height: 1.65; }

.anatomy-section { padding: 72px 0; background: #f8fbfb; }
.anatomy-grid { display: grid; grid-template-columns: 440px 1fr; gap: 40px; align-items: stretch; }
.body-map,
.region-info { min-height: 420px; border: 1px solid #e6ecee; border-radius: 16px; background: #fff; }
.body-map { padding: 24px; }
.body-silhouette { position: relative; width: 210px; height: 335px; margin: 0 auto; }
.body-head { position: absolute; width: 52px; height: 52px; left: 79px; top: 4px; border-radius: 50%; background: #e6ecef; }
.body-torso { position: absolute; width: 104px; height: 178px; left: 53px; top: 55px; border-radius: 44px 44px 30px 30px; background: #e6ecef; }
.body-arm { position: absolute; width: 32px; height: 165px; top: 68px; border-radius: 22px; background: #e6ecef; }
.body-arm.left { left: 22px; transform: rotate(6deg); }
.body-arm.right { right: 22px; transform: rotate(-6deg); }
.body-leg { position: absolute; width: 42px; height: 128px; top: 218px; border-radius: 0 0 24px 24px; background: #e6ecef; }
.body-leg.left { left: 58px; }
.body-leg.right { right: 58px; }
.body-silhouette button {
  position: absolute; left: var(--x); top: var(--y); transform: translate(-50%,-50%);
  width: 25px; height: 25px; border: 3px solid #fff; border-radius: 50%;
  color: #fff; background: var(--dot); box-shadow: 0 4px 10px rgba(40,57,70,.18); cursor: pointer; font-size: 9px; font-weight: 700;
}
.body-silhouette button.active { width: 31px; height: 31px; }
.body-legend { display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: center; margin-top: 12px; color: #7c8796; font-size: 10px; }
.body-legend span { display: inline-flex; align-items: center; gap: 5px; }
.body-legend i { width: 8px; height: 8px; border-radius: 50%; }
.region-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.region-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--teal); background: #e9f6f5; font-size: 24px; }
.region-info h3 { margin: 20px 0 10px; color: #304359; font-size: 20px; }
.region-info p { margin: 0; color: #707c8e; font-size: 13px; line-height: 1.75; }
.region-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.region-tags span { padding: 6px 9px; border-radius: 999px; color: #568085; background: #edf7f6; font-size: 10px; }

.common-cancers-section { padding: 72px 0; }
.common-cancer-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.common-cancer-card {
  min-height: 235px; padding: 18px;
  border: 1px solid #e8edef; border-radius: 12px; background: #fff;
  box-shadow: 0 8px 20px rgba(28,54,72,.025);
}
.common-head { display: flex; align-items: flex-start; gap: 10px; }
.common-head > span { width: 34px; height: 34px; flex: 0 0 34px; display: flex; align-items: center; justify-content: center; border-radius: 9px; color: var(--c); background: color-mix(in srgb,var(--c) 10%,white); }
.common-head h3 { margin: 2px 0 0; color: #304359; font-size: 12.5px; line-height: 1.4; }
.common-cancer-card ul { margin: 14px 0; padding-left: 18px; color: #6d798b; font-size: 11px; line-height: 1.65; }
.common-cancer-card li::marker { color: var(--c); }
.common-cancer-card a { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-size: 11px; font-weight: 600; }

.mid-cta { padding: 38px 0; background: linear-gradient(100deg,#0a6f72,#119a97); color: #fff; }
.mid-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.mid-cta span { color: rgba(255,255,255,.72); font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }
.mid-cta h2 { margin: 7px 0 5px; font-family: "DM Serif Display", Georgia, serif; font-size: 30px; font-weight: 400; }
.mid-cta p { margin: 0; color: rgba(255,255,255,.78); font-size: 12px; }
.mid-cta .container > div:last-child { display: flex; gap: 10px; }
.cta-white,
.cta-green { min-height: 40px; padding: 0 16px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border-radius: 6px; font-size: 11px; font-weight: 700; }
.cta-white { color: var(--teal); background: #fff; }
.cta-green { color: #fff; border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.06); }

.istanbul-support-section { padding: 72px 0; background: #f8fbfb; }
.istanbul-service-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.istanbul-service-grid article { position: relative; padding: 24px 24px 24px 64px; border: 1px solid #e6ecee; border-radius: 12px; background: #fff; }
.istanbul-service-grid article > span { position: absolute; left: 22px; top: 24px; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 8px; color: var(--teal); background: #e8f6f5; }
.istanbul-service-grid h3 { margin: 0 0 8px; color: #304359; font-size: 14px; }
.istanbul-service-grid p { margin: 0; color: #6f7b8d; font-size: 12px; line-height: 1.68; }

.why-section { padding: 72px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.why-card { min-height: 185px; padding: 22px; border: 1px solid #e7edef; border-radius: 12px; background: #fbfcfc; }
.why-card > span { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 10px; color: var(--teal); background: #e9f6f5; font-size: 18px; }
.why-card h3 { margin: 17px 0 8px; color: #304359; font-size: 14px; }
.why-card p { margin: 0; color: #707c8e; font-size: 11.5px; line-height: 1.65; }

.science-section { padding: 72px 0; background: #f8fbfb; }
.science-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.science-grid article { padding: 27px; border: 1px solid #e5ebed; border-radius: 13px; background: #fff; }
.science-grid h3 { margin: 0 0 14px; color: #304359; font-family: "DM Serif Display", Georgia, serif; font-size: 22px; font-weight: 400; }
.science-grid p { margin: 0 0 13px; color: #6d798b; font-size: 12.5px; line-height: 1.75; }
.science-grid p:last-child { margin-bottom: 0; }

.related-articles-section { padding: 72px 0; }
.cancer-article-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.cancer-article-card { border: 1px solid #e5ebed; border-radius: 13px; background: #fff; overflow: hidden; }
.cancer-article-card img { width: 100%; height: 180px; display: block; object-fit: cover; }
.cancer-article-card > div { padding: 16px 17px 18px; }
.cancer-article-card span { color: var(--teal); font-size: 10px; font-weight: 600; }
.cancer-article-card h3 { min-height: 58px; margin: 8px 0 12px; color: #304359; font-size: 13px; line-height: 1.5; }
.cancer-article-card a { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-size: 11px; font-weight: 600; }
.article-actions { display: flex; justify-content: center; margin-top: 25px; }
.article-actions a { min-height: 40px; padding: 0 18px; display: inline-flex; align-items: center; gap: 7px; border-radius: 6px; color: #fff; background: var(--teal); font-size: 11px; font-weight: 700; }

.cancer-faq-section { padding: 72px 0 76px; background: #fbfcfc; }
.cancer-faq-list { width: min(800px,100%); margin: 0 auto; display: grid; gap: 9px; }
.cancer-faq-item { border: 1px solid #e6ecee; border-radius: 10px; background: #fff; overflow: hidden; }
.cancer-faq-item button { width: 100%; min-height: 54px; padding: 13px 17px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 0; color: #304359; background: transparent; text-align: left; cursor: pointer; font-size: 12.5px; font-weight: 500; }
.cancer-faq-item button i { width: 26px; height: 26px; flex: 0 0 26px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--teal); background: #eaf6f5; transition: transform .18s ease; }
.cancer-faq-answer { max-height: 0; overflow: hidden; transition: max-height .24s ease; }
.cancer-faq-answer p { margin: 0; padding: 0 54px 18px 17px; color: #6e7a8c; font-size: 11.5px; line-height: 1.72; }
.cancer-faq-item.open .cancer-faq-answer { max-height: 260px; }
.cancer-faq-item.open button i { transform: rotate(180deg); }

@media (max-width: 1080px) {
  .cancer-detail-hero-inner { grid-template-columns: 1fr; width: min(790px,calc(100% - 48px)); }
  .cancer-detail-copy { max-width: 700px; }
  .cancer-intro-grid { grid-template-columns: 1fr 300px; gap: 40px; }
  .cancer-stage-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .support-method-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .metastasis-track { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px 12px; }
  .metastasis-track::before { display: none; }
  .screening-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .anatomy-grid { grid-template-columns: 360px 1fr; }
  .common-cancer-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .cancer-article-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 720px) {
  .cancer-detail-hero-inner,
  .cancer-intro-grid,
  .cancer-stages-section .container,
  .support-methods-section .container,
  .metastasis-section .container,
  .screening-section .container,
  .anatomy-section .container,
  .common-cancers-section .container,
  .mid-cta .container,
  .istanbul-support-section .container,
  .why-section .container,
  .science-section .container,
  .related-articles-section .container,
  .cancer-faq-section .container { width: min(100% - 30px,560px); }
  .cancer-detail-hero-inner { padding-block: 42px; gap: 28px; }
  .cancer-detail-copy h1 { font-size: 42px; }
  .cancer-detail-copy > p { font-size: 14px; }
  .cancer-question-card { padding: 23px 17px 20px; }
  .cancer-intro-section,
  .cancer-stages-section,
  .support-methods-section,
  .metastasis-section,
  .screening-section,
  .anatomy-section,
  .common-cancers-section,
  .istanbul-support-section,
  .why-section,
  .science-section,
  .related-articles-section,
  .cancer-faq-section { padding-block: 52px; }
  .cancer-intro-grid { grid-template-columns: 1fr; }
  .cancer-intro-visual { width: min(100%,360px); margin-inline: auto; }
  .cancer-intro-copy h2,
  .center-heading h2,
  .center-heading.left h2 { font-size: 31px; }
  .cancer-stage-grid,
  .support-method-grid,
  .screening-grid,
  .istanbul-service-grid,
  .why-grid,
  .science-grid,
  .cancer-article-grid { grid-template-columns: 1fr; }
  .stage-summary > div { grid-template-columns: repeat(2,1fr); }
  .metastasis-track { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .screening-tool { grid-template-columns: 1fr; }
  .gender-filter { flex-wrap: wrap; }
  .anatomy-grid { grid-template-columns: 1fr; }
  .body-map { min-height: 430px; }
  .region-info { min-height: 300px; padding: 28px; }
  .common-cancer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .mid-cta .container { flex-direction: column; align-items: flex-start; }
  .mid-cta .container > div:last-child { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .cancer-hero-buttons { flex-direction: column; align-items: stretch; }
  .cancer-stage-grid,
  .common-cancer-grid,
  .metastasis-track { grid-template-columns: 1fr; }
  .stage-summary > div { grid-template-columns: 1fr; }
  .metastasis-controls { flex-wrap: wrap; }
  .age-box { grid-template-columns: 52px 1fr; }
  .cancer-article-card img { height: 160px; }
}


/* ===== Custom revisions ===== */
.footer-social-title {
  margin-top: 16px;
  color: #24364d;
  font-size: 12px;
  font-weight: 700;
}
.footer-all-cancers { margin-top: 4px; color: var(--teal) !important; font-weight: 700; }
.footer-bottom-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer-bottom-links a { color: #8994a2; }
.footer-bottom-links a:hover { color: var(--teal); }

.reviews-viewport {
  overflow-x: auto;
  margin-top: 29px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.reviews-viewport::-webkit-scrollbar { display: none; }
.reviews-grid {
  display: flex;
  gap: 18px;
  width: max-content;
  margin-top: 0;
}
.review-card {
  flex: 0 0 min(340px, calc(100vw - 60px));
  min-height: 250px;
}
.reviews-slider-ui { gap: 12px; margin-top: 22px; }
.reviews-cta { display: flex; justify-content: center; margin-top: 18px; }
.reviews-cta .section-side-btn { margin-top: 0; }

@media (min-width: 1081px) {
  .review-card { width: calc((min(1180px, calc(100vw - 80px)) - 36px) / 3); }
}
@media (min-width: 721px) and (max-width: 1080px) {
  .review-card { width: calc((min(790px, calc(100vw - 48px)) - 18px) / 2); }
}
@media (max-width: 720px) {
  .review-card { width: calc(min(100vw - 30px, 560px)); }
}


.reviews-note {
  max-width: 720px;
  margin: 14px auto 0;
  color: #667689;
  font-size: 13px;
  line-height: 1.6;
}
.review-source-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--teal);
  background: #eef8f8;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.reviews-viewport {
  scroll-snap-type: x proximity;
}
.review-card {
  scroll-snap-align: start;
}

/* Homepage health articles 2026 */
.articles-intro { max-width: 780px; margin: 10px 0 0; color: #7b8494; font-size: 13px; line-height: 1.65; }
@media (max-width: 720px) { .articles-intro { font-size: 12.5px; } }
.report-whatsapp-action {
  align-items: center !important;
  background: linear-gradient(135deg, #19b864, #0d9951) !important;
  border: 0 !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 18px rgba(15, 153, 81, .18);
  color: #fff !important;
  cursor: pointer;
  display: inline-flex !important;
  font-family: Poppins, sans-serif;
  font-size: 12px !important;
  font-weight: 700 !important;
  gap: 8px;
  justify-content: center;
  line-height: 1.3;
  min-height: 48px;
  max-height: 60px !important;
  height: auto !important;
  align-self: center !important;
  padding: 10px 14px !important;
  text-align: center;
  text-decoration: none !important;
  width: min(100%, 420px);
  margin-left: auto !important;
  margin-right: auto !important;
}
.report-whatsapp-action,
.report-whatsapp-action i,
.report-whatsapp-action span { color: #fff !important; }
.report-whatsapp-action i { font-size: 22px !important; }
.report-whatsapp-action span {
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}
.report-contact-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #31556a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.report-contact-note i,
.report-contact-note span { color: inherit !important; }
.report-contact-note i { flex: 0 0 auto; font-size: 20px; }
:where([class*="banner"], [class*="cta"], [class*="report-intro"], [class*="dark"]) .report-contact-note {
  color: #fff !important;
}
.k4-hero-card .report-contact-note { color: #fff !important; }

/* One consistent primary evaluation form across all cancer support pages. */
.cancer-standard-form-shell {
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 11px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.cancer-standard-form {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 447px !important;
  height: auto !important;
  align-self: center !important;
  container-type: inline-size;
  margin: 0 !important;
  padding: 26px 24px 20px !important;
  border: 0 !important;
  border-radius: 11px !important;
  color: #26394e !important;
  background: #fff !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18) !important;
}
.cancer-standard-form h2 {
  margin: 0 0 6px !important;
  padding: 0 !important;
  color: #1e2634 !important;
  font-family: "DM Serif Display", Georgia, serif !important;
  font-size: clamp(18px, 4.2cqw, 21px) !important;
  font-weight: 400 !important;
  line-height: 1.23 !important;
  text-align: center !important;
}
.cancer-standard-form label {
  display: block !important;
  width: 100% !important;
  margin: 10px 0 0 !important;
  padding: 0 !important;
  color: #26394e !important;
  font-size: inherit !important;
  font-weight: 400 !important;
}
.cancer-standard-form input,
.cancer-standard-form textarea {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  border: 1px solid #d8dee5 !important;
  border-radius: 7px !important;
  color: #26394e !important;
  background: #fff !important;
  box-shadow: none !important;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  outline: none !important;
}
.cancer-standard-form input {
  height: 49px !important;
  padding: 0 15px !important;
}
.cancer-standard-form textarea {
  height: 97px !important;
  min-height: 97px !important;
  padding: 13px 15px !important;
  resize: none !important;
}
.cancer-standard-form input::placeholder,
.cancer-standard-form textarea::placeholder {
  color: #a0a9b7 !important;
  opacity: 1 !important;
}
.cancer-standard-form input:focus,
.cancer-standard-form textarea:focus {
  border-color: #77b9bb !important;
  box-shadow: 0 0 0 3px rgba(13, 124, 128, .09) !important;
}
.cancer-standard-form .textarea-wrap { position: relative !important; }
.cancer-standard-form .counter {
  position: absolute !important;
  right: 5px !important;
  bottom: -24px !important;
  color: #a1a9b7 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
}
.cancer-standard-form button {
  display: block !important;
  width: 100% !important;
  height: 43px !important;
  min-height: 43px !important;
  margin: 42px 0 0 !important;
  padding: 0 12px !important;
  border: 0 !important;
  border-radius: 5px !important;
  color: #fff !important;
  background: #0b7f82 !important;
  box-shadow: none !important;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 43px !important;
  cursor: pointer !important;
}
.cancer-standard-form .privacy {
  display: block !important;
  margin: 14px 0 0 !important;
  padding: 0 !important;
  color: #a1a8b3 !important;
  font-size: clamp(10px, 2.4cqw, 12px) !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  text-align: center !important;
}

/* Removed secondary report forms leave their supporting message full width. */
.secondary-form-removed {
  grid-template-columns: minmax(0, 1fr) !important;
}
.secondary-form-removed > * {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: none !important;
  text-align: center !important;
}
.secondary-form-removed > * > h1,
.secondary-form-removed > * > h2,
.secondary-form-removed > * > h3,
.secondary-form-removed > * > p {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
.secondary-form-removed [class*="benefit"],
.secondary-form-removed [class*="feature"] {
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 820px) {
  .fs-grid-bottom[style*="grid-template-columns"] {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .fs-grid-bottom > *,
  .fs-grid-3 > *,
  .fs-card,
  .fs-cta-card {
    min-width: 0;
    max-width: 100%;
  }
}

/* Keep dynamically inserted report messages readable inside mobile report grids. */
@media (max-width: 720px) {
  :where([class*="inline-report"]) > .report-contact-note {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 2px 0 0 !important;
    padding: 11px 14px !important;
    border-radius: 8px;
    color: #17445a !important;
    background: #eef7f8;
    overflow-wrap: normal;
    word-break: normal;
    white-space: normal;
  }
  :where([class*="inline-report"]) > .report-contact-note span {
    min-width: 0;
    overflow-wrap: normal;
    word-break: normal;
  }
}
