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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--text-soft);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.split > div .section-title {
  text-align: center;
}

.form-panel h3 {
  text-align: center;
}

.steps {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.steps li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
}

.steps strong {
  color: var(--brand-dark);
}

.form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.contact-hero {
  min-height: clamp(300px, 45vh, 460px);
  background-image: url("../../images/pages-img/hakkında/Web-Site-Toplu-Fotog.webp");
  background-position: center 42%;
}

.contact-hero .implant-hero__overlay {
  background: linear-gradient(108deg, rgba(8, 20, 35, 0.76), rgba(16, 48, 74, 0.42));
}

.contact-map-section {
  padding-top: 1.1rem;
  padding-bottom: 0.75rem;
}

.contact-map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(157, 198, 223, 0.42);
  box-shadow: var(--shadow);
  background: #0f2236;
}

.contact-map-wrap iframe {
  width: 100%;
  height: clamp(320px, 52vh, 520px);
  border: 0;
  display: block;
}

.contact-dynamic-section {
  padding-top: 0.8rem;
}

.contact-dynamic-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 1rem;
  align-items: stretch;
}

.contact-form-panel .field span {
  color: #dff1ff;
  font-weight: 600;
  font-size: 0.82rem;
}

.contact-form-panel .field textarea {
  border-radius: 12px;
  border: 1px solid rgba(168, 209, 229, 0.58);
  background: rgba(250, 253, 255, 0.94);
  color: #0f1a27;
  padding: 0.72rem 0.8rem;
  resize: vertical;
}

.contact-form-panel .field textarea:focus {
  outline: none;
  border-color: #7cdff7;
  box-shadow: 0 0 0 3px rgba(124, 223, 247, 0.25);
  background: #fff;
}

.contact-info-panel {
  background: linear-gradient(164deg, rgba(18, 38, 58, 0.9), rgba(20, 55, 87, 0.9));
  border-color: rgba(156, 199, 224, 0.35);
  color: #edf7ff;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.05rem 1rem;
}

.contact-info-panel h2 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.contact-info-panel p {
  margin: 0;
  color: #d8e9f7;
}

.contact-info-panel a {
  color: #93e8ff;
}

.contact-info-lead {
  font-size: 0.9rem;
  color: #cde3f4;
  margin-bottom: 0.68rem;
}

.contact-social-box {
  border: 1px solid rgba(167, 208, 229, 0.42);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.52rem 0.58rem;
  margin-bottom: 0.68rem;
}

.contact-social-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.48rem;
}

.contact-social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(167, 208, 229, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-social-icons a:hover {
  transform: translateY(-2px);
  background: rgba(141, 232, 255, 0.16);
}

.contact-social-icons img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.contact-info-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
  max-width: 100%;
}

.contact-info-list__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 0.52rem;
  border: 1px solid rgba(155, 199, 224, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.5rem 0.58rem;
}

.contact-info-list__item > img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.contact-info-list__item div {
  display: grid;
  gap: 0.12rem;
}

.contact-info-list__item span {
  color: #cde8f8;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-info-list__item a {
  color: #96e9ff;
  text-decoration: none;
  line-height: 1.24;
}

.contact-info-list__item p {
  margin: 0;
  color: #e3eef8;
  line-height: 1.24;
}

.contact-map-btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  color: #fff;
}
.contact-map-btn:hover,
.contact-map-btn:visited,
.contact-map-btn:focus {
  color: #fff;
}

.form-grid {
  display: grid;
  gap: 0.7rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #c9d3df;
  border-radius: 10px;
  padding: 0.65rem 0.7rem;
  font: inherit;
}

.media-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.media-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.slide {
  min-width: 100%;
}

.slide .card {
  min-height: 190px;
}

.slider-controls {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.slider-controls button {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
}

.accordion {
  display: grid;
  gap: 0.65rem;
}

.accordion details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 0.7rem 0.8rem;
}

.accordion summary {
  cursor: pointer;
  font-weight: 600;
}

.mini-hero {
  background: linear-gradient(150deg, #122033, #1c2f49);
  color: #fff;
  padding: 2rem 0;
}

.mini-hero h1 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.implant-hero {
  position: relative;
  min-height: clamp(280px, 44vh, 480px);
  background-color: #13253a;
  background-size: cover;
  background-position: center;
}

.implant-hero__overlay {
  min-height: inherit;
  display: flex;
  align-items: center;
  background: linear-gradient(105deg, rgba(9, 21, 36, 0.84), rgba(22, 52, 80, 0.52));
}

.implant-hero__content {
  color: #fff;
  padding: 2.2rem 0;
}

.implant-hero__content h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

.implant-hero__content p {
  margin: 0;
  max-width: 62ch;
  color: #dbe8f5;
}

.implant-page {
  padding-top: 2.2rem;
}

.implant-page__layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.implant-sidebar {
  position: sticky;
  top: 112px;
}

.implant-sidebar h2 {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
}

.implant-sidebar__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.implant-sidebar__list li {
  margin: 0;
}

.implant-sidebar__list a {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 0.52rem;
  text-decoration: none;
  color: var(--text);
  padding: 0.56rem 0.72rem;
  border-radius: 12px;
  border: 1px solid #d9e6f0;
  background: linear-gradient(145deg, #ffffff, #f4f9fd);
  box-shadow: 0 6px 16px rgba(14, 35, 54, 0.06);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.implant-sidebar__list a::before {
  content: "◆";
  color: #19a9cc;
  font-size: 0.68rem;
  line-height: 1;
  transform: translateY(-1px);
}

.implant-sidebar__list a::after {
  content: "→";
  color: #6f8aa0;
  font-size: 0.9rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.implant-sidebar__list a:hover {
  transform: translateX(3px);
  border-color: #9ecde5;
  background: linear-gradient(145deg, #eef8ff, #e5f3fc);
  color: var(--brand-dark);
  box-shadow: 0 10px 20px rgba(11, 36, 58, 0.12);
}

.implant-sidebar__list a:hover::after {
  color: var(--brand-dark);
  transform: translateX(2px);
}

.implant-sidebar__list a:focus-visible {
  outline: 2px solid #7fd9f1;
  outline-offset: 2px;
}

.implant-content h2 {
  margin: 0 0 0.6rem;
}

.implant-content h3 {
  margin: 1rem 0 0.35rem;
  font-size: 1.08rem;
  color: #173a57;
}

.implant-content p {
  margin: 0 0 0.72rem;
  color: var(--text-soft);
}

.implant-content ul {
  margin: 0 0 0.9rem;
  padding-left: 1.15rem;
  color: var(--text-soft);
  display: grid;
  gap: 0.35rem;
}

.implant-content li::marker {
  color: #188eb2;
}

.implant-content__image {
  margin: 1rem 0 1.05rem;
}

.implant-content__image img {
  width: 100%;
  max-height: 370px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.implant-content .accordion {
  gap: 0.52rem;
}

.implant-content .accordion details {
  border: 1px solid #c5dcec;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #f2f8fd);
  box-shadow: 0 6px 16px rgba(10, 29, 46, 0.08);
}

.implant-content .accordion summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.implant-content .accordion summary::-webkit-details-marker {
  display: none;
}

.implant-content .accordion summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e1f3fc;
  border: 1px solid #b8dcef;
  color: #0f84a4;
  font-size: 1rem;
  font-weight: 700;
}

.implant-content .accordion details[open] summary::after {
  content: "−";
  background: #cceefb;
}

.team-hero {
  min-height: clamp(360px, 58vh, 660px);
  background-position: center 50%;
}

.team-hero .implant-hero__overlay {
  background: transparent;
}

.about-hero {
  min-height: clamp(360px, 58vh, 660px);
  background-position: center 50%;
}

.about-hero .implant-hero__overlay {
  background: linear-gradient(104deg, rgba(8, 20, 35, 0.68), rgba(18, 45, 70, 0.4));
}

.about-intro-section {
  padding-top: 1.8rem;
  padding-bottom: 0.6rem;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.about-intro-card {
  background: linear-gradient(160deg, #132d47, #264664);
  border-color: rgba(158, 199, 226, 0.35);
  color: #ebf6ff;
}

.about-intro-card h2 {
  margin-top: 0;
  font-size: clamp(1.3rem, 2.25vw, 1.9rem);
  line-height: 1.28;
}

.about-intro-card p {
  color: #d6e6f4;
}

.about-features-card {
  background: linear-gradient(154deg, rgba(17, 39, 60, 0.98), rgba(17, 55, 85, 0.92));
  border: 1px solid rgba(129, 195, 228, 0.45);
  color: #edf7ff;
  box-shadow: 0 16px 38px rgba(6, 18, 30, 0.28);
}

.about-features-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.3;
  color: #f3fbff;
}

.about-features-card__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #95e9ff;
}

.about-feature-list {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.about-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.52rem;
  padding: 0.5rem 0.52rem;
  border-radius: 10px;
  border: 1px solid rgba(151, 212, 241, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: #d6e8f5;
  line-height: 1.36;
  font-size: 0.9rem;
}

.about-feature-list li::before {
  content: "➜";
  flex: 0 0 auto;
  color: #89e8ff;
  font-size: 0.98rem;
  line-height: 1.36;
  margin-top: 0.02rem;
}

.about-features-card__cta {
  margin-top: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.56rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(142, 219, 253, 0.5);
  background: rgba(141, 232, 255, 0.14);
  color: #e8faff;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
}

.about-features-card__cta:hover {
  background: rgba(141, 232, 255, 0.24);
}

.about-video-section {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.about-video-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(147, 194, 223, 0.34);
  box-shadow: var(--shadow);
  background: #061321;
}

.about-video-banner video {
  width: 100%;
  height: clamp(250px, 52vh, 500px);
  object-fit: cover;
  display: block;
}

.about-video-banner__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: 1rem 1.15rem;
  background: linear-gradient(115deg, rgba(8, 19, 34, 0.72), rgba(8, 26, 42, 0.36));
  color: #f0f8ff;
}

.about-video-banner__overlay h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.24;
  font-weight: 800;
}

.about-video-banner__overlay p {
  margin: 0;
  max-width: 68ch;
  margin-inline: auto;
  color: #d7eaf8;
}

.about-links-section {
  padding-top: 0.35rem;
}

.about-contact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.62rem;
  border: 1px solid rgba(176, 210, 228, 0.45);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(21, 46, 68, 0.92), rgba(20, 35, 52, 0.88));
  box-shadow: var(--shadow);
  padding: 0.85rem 0.9rem;
}

.about-contact-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  min-width: 175px;
  color: #d9f3ff;
  text-decoration: none;
  font-size: 0.86rem;
  line-height: 1.2;
  border-radius: 8px;
  padding: 0.34rem 0.46rem;
  border: 1px solid rgba(164, 205, 228, 0.3);
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.about-contact-strip a:hover {
  color: #9de8ff;
  background: rgba(141, 232, 255, 0.11);
  transform: translateX(2px);
}

.about-contact-strip a img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.team-page-grid {
  margin-top: 1rem;
}

.press-hero {
  min-height: clamp(320px, 52vh, 560px);
  background-position: center 80%;
}

.press-hero .implant-hero__overlay {
  background: linear-gradient(100deg, rgba(7, 18, 31, 0.56), rgba(10, 34, 56, 0.3));
}

.press-layout {
  display: grid;
  gap: 1rem;
}

.press-intro {
  text-align: center;
}

.press-intro .section-lead {
  margin-inline: auto;
}

.press-intro.card {
  background: rgba(18, 38, 58, 0.78);
  border-color: rgba(151, 193, 219, 0.35);
  color: #eef7ff;
}

.press-intro.card .section-title,
.press-intro.card .about-summary__eyebrow {
  color: #eef8ff;
}

.press-intro.card .section-lead {
  color: #d3e5f2;
}

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

.press-card {
  border: 1px solid rgba(151, 193, 219, 0.35);
  border-radius: 16px;
  background: rgba(18, 38, 58, 0.78);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 0.55rem;
  color: #eef7ff;
  backdrop-filter: blur(2px);
}

.press-card--featured {
  background: rgba(18, 38, 58, 0.78);
  border-color: rgba(151, 193, 219, 0.35);
  color: #eef7ff;
}

.press-card--featured p {
  color: #d3e5f2;
}

.press-card__label {
  margin: 0 auto;
  display: inline-block;
  width: auto;
  padding: 0;
  border-radius: 0;
  border: 0;
  color: #d7f0ff;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.press-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(151, 193, 219, 0.35);
}

.press-card__thumb-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.press-card__thumb-link:focus-visible {
  outline: 2px solid #8ad8f1;
  outline-offset: 2px;
}

.press-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.35rem;
}

.press-card p {
  margin: 0;
  color: #d3e5f2;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 5.4rem;
}

.press-card .btn {
  margin-top: 0.15rem;
  justify-self: start;
}

.press-article-wrap {
  display: grid;
  gap: 1rem;
}

.press-article {
  border: 1px solid rgba(151, 193, 219, 0.35);
  border-radius: 18px;
  background: rgba(18, 38, 58, 0.78);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.2rem;
  color: #eef7ff;
  backdrop-filter: blur(2px);
}

.press-article h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

.press-article h3 {
  margin: 1.05rem 0 0.45rem;
  color: #d7f0ff;
  font-size: 1.06rem;
}

.press-article p {
  margin: 0 0 0.72rem;
  color: #d3e5f2;
}

.press-article ul {
  margin: 0 0 0.92rem;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.34rem;
  color: #d3e5f2;
}

.press-article li::marker {
  color: #1a9abd;
}

.press-article__cover {
  margin: 0 0 1rem;
}

.press-article__cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(151, 193, 219, 0.35);
}

.press-source {
  border: 1px solid rgba(151, 193, 219, 0.35);
  border-radius: 12px;
  background: rgba(15, 33, 51, 0.78);
  padding: 0.75rem 0.85rem;
}

.press-source p {
  margin: 0;
  font-size: 0.9rem;
  color: #d7e8f4;
}

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

.kpi {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.treatments-summary {
  padding-top: 2.3rem;
  padding-bottom: 1.2rem;
}

.treatments-summary__head {
  margin-bottom: 1rem;
  text-align: center;
}

.treatments-summary__head .section-lead {
  margin-inline: auto;
}

.treatments-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.treatment-card__media {
  display: block;
}

.treatment-card__media:focus-visible {
  outline: 2px solid #7fd9f1;
  outline-offset: -2px;
}

.treatment-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.treatment-card__body {
  padding: 0.85rem 0.9rem 0.95rem;
}

.treatment-card__body h3 {
  margin: 0 0 0.36rem;
  font-size: 1.02rem;
}

.treatment-card__body p {
  margin: 0 0 0.62rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.35;
}

.treatment-card__body a {
  text-decoration: none;
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.88rem;
}

.treatment-card__body a:hover {
  color: var(--brand);
}

.about-summary {
  padding-top: 1.5rem;
  padding-bottom: 1.25rem;
}

.about-summary__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.15rem;
  align-items: stretch;
}

.about-summary__content {
  background: linear-gradient(156deg, #16304b, #2b4a67);
  color: #eef7ff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.15rem 1.2rem 1.2rem;
  text-align: center;
}

.about-summary__eyebrow {
  margin: 0 0 0.35rem;
  color: #8de8ff;
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
}

.about-summary__content .section-title {
  margin: 0 0 0.55rem;
  text-align: center;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 650;
}

.about-summary__content .section-lead {
  color: #d6e5f5;
  max-width: 62ch;
  margin-inline: auto;
}

.about-summary__text {
  margin: 0.85rem 0 0;
  color: #dce8f5;
  line-height: 1.5;
  max-width: 64ch;
  margin-inline: auto;
}

.about-doctors-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.about-doctors-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.about-doctors-grid img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 28px rgba(7, 20, 36, 0.3);
  filter: saturate(1.1) contrast(1.06);
}

.about-doctor-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  outline: none;
}

.about-doctor-card img {
  display: block;
}

.about-doctor-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.24rem;
  padding: 0.7rem 0.62rem;
  background: linear-gradient(180deg, rgba(12, 26, 43, 0.06) 0%, rgba(9, 23, 39, 0.92) 72%);
  color: #f1f7ff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.about-doctor-overlay h3 {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.22;
}

.about-doctor-role {
  margin: 0;
  color: #9fdfff;
  font-size: 0.78rem;
  font-weight: 600;
}

.about-doctor-text {
  margin: 0.15rem 0 0;
  font-size: 0.71rem;
  line-height: 1.34;
  color: #e4eef9;
  display: -webkit-box;
  line-clamp: 6;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-doctor-card:hover .about-doctor-overlay,
.about-doctor-card:focus-visible .about-doctor-overlay {
  opacity: 1;
  transform: translateY(0);
}

.about-doctor-card:hover img,
.about-doctor-card:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.1) contrast(1.05);
}

.about-summary__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.about-summary__ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.about-summary__ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.about-summary__media {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  align-content: center;
  min-height: 100%;
}

.about-team-photo {
  margin: 0;
  height: 100%;
}

.about-team-photo img {
  width: 100%;
  min-height: 300px;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-clinic-slider {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #10263d;
  overflow: hidden;
  min-height: 300px;
  height: 100%;
}

.about-clinic-slider__track {
  position: relative;
  min-height: 300px;
  height: 100%;
}

.about-clinic-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.about-clinic-slide.is-active {
  opacity: 1;
}

.process-section {
  padding-top: 2.4rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: stretch;
}

.process-left {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.1rem 1.2rem;
  height: 100%;
}

.process-left .section-title {
  text-align: center;
}

.feature-list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.feature-item {
  border: 1px solid #dde6ef;
  border-radius: 14px;
  background: #f9fcff;
  padding: 0.7rem 0.75rem;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.58rem;
  align-items: start;
}

.feature-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-top: 0.1rem;
}

.feature-item h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
}

.feature-item p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.34;
}

.consult-panel {
  position: relative;
  top: auto;
  border-radius: 18px;
  padding: 1.2rem 1.1rem 1.15rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #173451 0%, #214766 54%, #1b3b58 100%);
  border: 1px solid rgba(145, 208, 232, 0.42);
  box-shadow: 0 16px 32px rgba(8, 21, 36, 0.26);
  overflow: hidden;
}

.consult-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 6%, rgba(141, 232, 255, 0.22), rgba(141, 232, 255, 0) 48%);
  pointer-events: none;
}

.consult-panel h3 {
  margin: 0 0 0.35rem;
  font-size: 1.24rem;
  text-align: center;
  color: #f2f9ff;
}

.consult-panel p {
  margin: 0 0 0.85rem;
  color: #cde2f2;
  font-size: 0.93rem;
  text-align: center;
  max-width: 36ch;
  margin-inline: auto;
}

.consult-panel .field input {
  border-radius: 12px;
  min-height: 46px;
  border: 1px solid rgba(168, 209, 229, 0.58);
  background: rgba(250, 253, 255, 0.94);
  color: #0f1a27;
  padding-inline: 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.consult-panel .field input::placeholder {
  color: #5d6f84;
  font-weight: 500;
}

.consult-panel .field input:focus {
  outline: none;
  border-color: #7cdff7;
  box-shadow: 0 0 0 3px rgba(124, 223, 247, 0.25);
  background: #fff;
}

.consult-panel .form-grid {
  margin-top: auto;
  gap: 0.62rem;
}

.consult-submit {
  width: 100%;
  border-radius: 12px;
  justify-content: center;
  border: 1px solid rgba(123, 220, 244, 0.58);
  background: linear-gradient(145deg, #18b6d9, #1188b1);
  color: #f8fdff;
  box-shadow: 0 10px 22px rgba(9, 28, 45, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.consult-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(9, 28, 45, 0.3);
  filter: brightness(1.05);
}

.social-proof-section {
  padding-top: 1.3rem;
  padding-bottom: 1.4rem;
}

.social-proof-shell {
  border: 1px solid #d9e5ee;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fcff, #f2f8fd);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.reviews-section {
  padding-top: 0;
}

.reviews-head {
  text-align: center;
  margin-bottom: 1rem;
}

.reviews-head .section-lead {
  margin-inline: auto;
}

.reviews-slider {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 0.8rem;
  align-items: center;
}

.reviews-nav {
  border: 1px solid #bdd5e8;
  background: #fff;
  color: #1c3a54;
  border-radius: 12px;
  height: 44px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.reviews-nav:hover {
  background: #e9f5ff;
  border-color: #95c6e5;
}

.reviews-viewport {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #0f2338, #1c3f5e);
  box-shadow: var(--shadow);
  padding: 0.9rem 0.6rem;
}

.reviews-track {
  display: flex;
  gap: 0.8rem;
  will-change: transform;
  transition: transform 0.38s ease;
}

.review-slide {
  position: relative;
  flex: 0 0 min(72vw, 340px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(166, 209, 232, 0.36);
  cursor: pointer;
  opacity: 0.58;
  transform: scale(0.92);
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

.review-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.review-slide.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 14px 28px rgba(3, 14, 25, 0.32);
}

.review-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(6, 20, 33, 0.72);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(5, 14, 24, 0.74);
  padding: 1rem;
}

.review-modal[hidden] {
  display: none;
}

.review-modal__inner {
  width: min(980px, 96vw);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42);
  background: #000;
}

.review-modal__inner iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.review-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(6, 16, 27, 0.8);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.insta-showcase {
  padding-top: 1rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1.1fr 1.1fr 2fr;
  gap: 0.7rem;
  align-items: stretch;
}

.insta-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d7e4ee;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-card--wide {
  aspect-ratio: 1 / 1;
}

.insta-card--tall {
  aspect-ratio: 9 / 16;
}

.insta-card:hover {
  transform: translateY(-3px);
  opacity: 0.88;
  box-shadow: 0 16px 30px rgba(10, 27, 43, 0.2);
}

.insta-cta-wrap {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.insta-follow-card {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  padding: 0.56rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(160, 200, 222, 0.5);
  text-decoration: none;
  color: #eefbff;
  background: linear-gradient(160deg, #2e4763, #1c334b);
  box-shadow: 0 8px 24px rgba(7, 18, 29, 0.2);
  backdrop-filter: blur(5px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insta-follow-card__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
}

.insta-follow-card__icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.insta-follow-card__text {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.insta-follow-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(7, 18, 29, 0.24);
}

.google-reviews-showcase {
  margin-top: 1rem;
  border: 1px solid #d3e1ec;
  border-radius: 16px;
  background: #fff;
  padding: 0.8rem;
  overflow: hidden;
}

.google-reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.google-reviews-head h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #18324a;
}

.google-reviews-link {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  color: #1177b2;
}

.google-reviews-slider {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.google-reviews-track {
  display: flex;
  gap: 0.8rem;
  width: max-content;
  animation: googleReviewsScroll 36s linear infinite;
}

.google-review-card {
  flex: 0 0 min(78vw, 320px);
  border: 1px solid #dfebf4;
  border-radius: 12px;
  background: linear-gradient(160deg, #f8fcff, #f3f8fc);
  padding: 0.72rem;
}

.google-review-stars {
  color: #f4b400;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.google-review-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #2d465d;
}

.google-review-card span {
  display: block;
  margin-top: 0.42rem;
  font-size: 0.72rem;
  color: #6d8194;
}

@keyframes googleReviewsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-slider-section {
  padding-top: 1.1rem;
}

.logo-slider {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.8rem 0;
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoScroll 26s linear infinite;
}

.logo {
  flex: 0 0 auto;
  width: 190px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.8rem;
}

.logo img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .grid-cards,
  .media-row,
  .kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .consult-panel {
    position: static;
  }

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

  .about-summary__grid {
    grid-template-columns: 1fr;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-contact-strip {
    justify-content: center;
  }

  .contact-dynamic-grid {
    grid-template-columns: 1fr;
  }

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

  .implant-page__layout {
    grid-template-columns: 1fr;
  }

  .implant-sidebar {
    position: static;
  }

  .about-summary__media {
    grid-template-rows: auto auto;
    min-height: auto;
  }

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

  .about-team-photo img,
  .about-clinic-slider,
  .about-clinic-slider__track {
    min-height: 235px;
  }

  .logo {
    width: 160px;
  }

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

  .insta-card--wide,
  .insta-card--tall {
    aspect-ratio: 1 / 1;
  }

  .google-review-card {
    flex-basis: min(82vw, 290px);
  }
}

@media (max-width: 640px) {
  .grid-cards,
  .media-row,
  .kpis {
    grid-template-columns: 1fr;
  }

  .split > div .section-title {
    font-size: 1.35rem;
    line-height: 1.25;
  }

  .form-panel h3 {
    font-size: 1.15rem;
    line-height: 1.25;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .treatments-summary__grid {
    grid-template-columns: 1fr;
  }

  .press-card {
    padding: 0.9rem;
  }

  .press-article {
    padding: 0.95rem;
  }

  .implant-hero {
    min-height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .implant-hero__overlay {
    background: linear-gradient(105deg, rgba(9, 21, 36, 0.72), rgba(22, 52, 80, 0.48));
  }

  .contact-map-section .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .contact-map-wrap {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
  }

  .contact-map-wrap iframe {
    width: 100%;
    height: clamp(220px, 38vh, 340px);
  }

  .contact-social-icons a {
    min-height: 36px;
  }

  .contact-social-icons img {
    width: 15px;
    height: 15px;
    max-width: 15px;
    max-height: 15px;
    object-fit: contain;
  }

  .contact-info-list__item {
    grid-template-columns: 22px 1fr;
    gap: 0.45rem;
  }

  .contact-info-list__item > img {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
    object-fit: contain;
  }

  .about-video-banner video {
    height: clamp(220px, 40vh, 340px);
  }

  .implant-hero__content {
    padding: 1.7rem 0;
  }

  .implant-content__image img {
    max-height: 255px;
  }

  .about-team-photo img,
  .about-clinic-slider,
  .about-clinic-slider__track {
    min-height: 210px;
  }

  .about-doctors-grid {
    grid-template-columns: 1fr;
  }

  .about-doctor-overlay {
    padding: 0.65rem 0.58rem;
  }

  .about-doctor-text {
    line-clamp: 7;
    -webkit-line-clamp: 7;
  }

  .process-left,
  .consult-panel {
    padding: 0.9rem;
  }

  .process-left .section-title,
  .consult-panel h3 {
    font-size: 1.15rem;
    line-height: 1.25;
  }

  .logo {
    width: 132px;
    height: 62px;
  }

  .logo img {
    max-height: 42px;
  }

  .reviews-slider {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .reviews-nav {
    display: none;
  }

  .review-slide {
    flex-basis: min(86vw, 320px);
  }

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

  .insta-follow-card {
    width: 100%;
    justify-content: center;
  }

  .google-reviews-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .google-review-card {
    flex-basis: min(88vw, 260px);
  }
}
