.site-main {
  flex: 1;
  min-height: 50vh;
}

.section {
  padding: var(--space-8) 0;
}

.section--lavender {
  background: var(--bg-lavender);
}

.section--rose {
  background: var(--bg-rose);
}

.section--cyan {
  background: var(--bg-cyan);
}

.section--cream {
  background: var(--bg-cream);
}

.section--navy {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
}

.section--navy h2,
.section--navy .section-label {
  color: var(--bg-white);
}

.section--navy .section-label {
  color: var(--color-yellow);
}

.section--navy .placeholder-text {
  color: rgba(255, 255, 255, 0.65);
}

.section__header {
  margin-bottom: var(--space-7);
  max-width: 36rem;
}

.section__header--center {
  text-align: center;
  margin-inline: auto;
}

.section__header--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  max-width: none;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}

/* Home hero — header contentL/contentR ile aynı hiza */
.home-hero {
  position: relative;
  min-height: calc(88vh - var(--header-height) - 40px);
  display: flex;
  align-items: center;
  padding: var(--space-6) 0 var(--space-6);
  /* overflow-x/y karışımı kontrolleri kesmesin; yatay kesim html'de */
  overflow: visible;
  margin-top: 0;
  background: linear-gradient(
    to bottom,
    #f7f9fc 0%,
    #f7f9fc 78%,
    var(--bg-cyan) 100%
  );
}

/* Grid arka plan — alta doğru yumuşak opacity fade */
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(37, 43, 65, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 43, 65, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 72%,
    rgba(0, 0, 0, 0.5) 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 72%,
    rgba(0, 0, 0, 0.5) 88%,
    transparent 100%
  );
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  overflow: visible;
  /* Genişlik yalnızca .container'dan */
}

.home-hero__inner > * {
  min-width: 0; /* grid taşmasını engelle */
}

.home-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  width: 100%;
  padding: 0;
}

.home-hero__title {
  margin-bottom: var(--space-5);
  font-size: clamp(2.3rem, 4.6vw, 3.55rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.home-hero__title-line {
  display: block;
  white-space: normal;
  text-wrap: balance;
}

.home-hero__accent {
  display: block;
  color: var(--color-yellow);
  position: relative;
  width: fit-content;
}

.home-hero__accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 8%;
  bottom: 0.08em;
  height: 0.18em;
  background: rgba(254, 186, 71, 0.35);
  border-radius: 999px;
  z-index: -1;
}

.home-hero__text {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  max-width: 36rem;
  line-height: 1.65;
  font-style: normal;
}

.home-hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.home-hero__avatars {
  display: flex;
  align-items: center;
}

.home-hero__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid var(--bg-white);
  margin-left: -10px;
  overflow: hidden;
  background: #dfe6f0;
  box-shadow: 0 2px 8px rgba(37, 43, 65, 0.12);
}

.home-hero__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-hero__avatar:first-child {
  margin-left: 0;
}

.home-hero__avatar--more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  color: var(--bg-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
}

.home-hero__rating {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.home-hero__rating strong {
  font-size: var(--fs-sm);
  color: var(--color-navy);
  font-weight: var(--fw-medium);
}

.home-hero__stars {
  color: var(--color-yellow);
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  line-height: 1;
}

.home-hero__rating-meta {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.home-hero__note {
  margin: 0;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.home-hero__visual {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
  max-width: 100%;
  width: 100%;
  overflow: visible;
  isolation: isolate;
  padding-inline: 0;
  padding-bottom: 0.5rem;
}

.home-hero__swoosh {
  position: absolute;
  width: min(150px, 34%);
  height: auto;
  top: 2%;
  left: 0;
  z-index: 5;
  pointer-events: none;
  transform: rotate(-16deg);
  filter: drop-shadow(0 4px 12px rgba(254, 186, 71, 0.3));
  animation: hero-swoosh 2s ease-in-out infinite alternate;
}

@keyframes hero-swoosh {
  from {
    transform: rotate(-16deg) translateY(0);
  }
  to {
    transform: rotate(-16deg) translateY(10px);
  }
}

@media (max-width: 560px) {
  .home-hero__swoosh {
    width: min(110px, 30%);
    top: 2%;
    left: 2%;
  }

  .home-hero__title {
    font-size: clamp(1.75rem, 7.8vw, 2.3rem);
  }
}

/* Hero görsel — why-us video frame’leriyle aynı dil (şeffaf halka + peek) */
.hero-peek {
  position: relative;
  width: 100%;
  max-width: min(520px, 100%);
  margin-inline: auto 0;
  z-index: 1;
  overflow: visible;
}

.hero-peek__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1.05;
  min-height: 400px;
  overflow: visible;
}

.hero-peek__card {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  cursor: default;
  background: transparent;
  border-radius: 62% 38% 48% 52% / 48% 42% 58% 52%;
  overflow: visible;
  box-shadow: none;
  /* Soft crossfade — kaydırma hissi yok, fade + hafif scale */
  transition:
    opacity 0.5s ease,
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.45s ease,
    visibility 0s linear 0.5s;
  transform-origin: center center;
}

.hero-peek__card.is-active {
  z-index: 3;
  transform: translateX(0) scale(1);
  opacity: 1;
  visibility: visible;
  filter: none;
  pointer-events: auto;
  cursor: pointer;
  animation: none;
  transition:
    opacity 0.5s ease,
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.45s ease,
    visibility 0s linear 0s;
}

.hero-peek__card.is-next {
  z-index: 2;
  transform: translateX(28%) scale(0.88);
  opacity: 0.95;
  visibility: visible;
  filter: saturate(0.92);
  pointer-events: auto;
  cursor: pointer;
  animation: none;
  transition:
    opacity 0.5s ease,
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.45s ease,
    visibility 0s linear 0s;
}

.hero-peek__card.is-queue {
  z-index: 1;
  transform: translateX(28%) scale(0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: none;
  animation: none;
}

.hero-peek__card.is-leaving {
  z-index: 4;
  /* Eski aktif: yerinde yumuşak fade-out */
  transform: translateX(0) scale(0.97);
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  filter: none;
  animation: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0s linear 0.45s;
}

/* Frame — why-us__frame ile aynı şeffaf beyaz halka */
.hero-peek__media {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;
  overflow: hidden;
  background: #d8dde6;
  box-shadow:
    0 24px 60px rgba(37, 43, 65, 0.12),
    0 0 0 10px rgba(255, 255, 255, 0.65);
  transition: box-shadow 0.5s ease;
}

.hero-peek__card.is-active .hero-peek__media {
  box-shadow:
    0 24px 60px rgba(37, 43, 65, 0.14),
    0 0 0 10px rgba(255, 255, 255, 0.7);
}

.hero-peek__card.is-next .hero-peek__media {
  box-shadow:
    0 16px 40px rgba(37, 43, 65, 0.1),
    0 0 0 8px rgba(255, 255, 255, 0.5);
}

.hero-peek__card.is-queue .hero-peek__media {
  box-shadow: none;
}

.hero-peek__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-peek__media--1 {
  background: #d8dde6;
}

.hero-peek__media--2 {
  background: #ebe4dc;
}

.hero-peek__media--3 {
  background: #ebe4dc;
}

.hero-peek__label {
  font-size: var(--fs-sm);
  color: var(--color-navy);
  font-style: italic;
  opacity: 0.75;
  text-align: center;
  padding: 1rem;
}

.hero-peek__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  z-index: 5;
}

.hero-peek__nav {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--bg-white);
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.hero-peek__nav:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  transform: translateY(-1px);
}

.hero-peek__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 4.5rem;
}

.hero-peek__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #c5cad6;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    width var(--transition);
}

.hero-peek__dot.is-active {
  background: var(--color-navy);
  width: 22px;
  border-radius: 999px;
}

.home-hero__badge {
  position: absolute;
  left: 8%;
  bottom: 18%;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-white);
  color: var(--color-navy);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(37, 43, 65, 0.12);
  animation: hero-badge 3.5s ease-in-out infinite alternate;
  white-space: nowrap;
}

.home-hero__badge-dots {
  display: inline-flex;
  gap: 3px;
}

.home-hero__badge-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-cyan);
  display: block;
}

.home-hero__badge-dots i:nth-child(2) {
  background: var(--color-yellow);
}

.home-hero__badge-dots i:nth-child(3) {
  background: var(--color-rose);
}

@keyframes hero-blob {
  from {
    border-radius: 62% 38% 48% 52% / 48% 42% 58% 52%;
  }
  to {
    border-radius: 48% 52% 40% 60% / 55% 45% 55% 45%;
  }
}

@keyframes hero-badge {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-6px);
  }
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.cta-banner__text {
  max-width: 32rem;
}

.cta-banner__text p {
  font-style: italic;
  opacity: 0.75;
}

.content-block {
  max-width: 42rem;
}

.content-block p {
  font-style: italic;
  color: var(--color-text-muted);
}

/* Blog detail — aligns with treatment-detail layout */
.blog-detail__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(37, 43, 65, 0.08);
}

.blog-detail__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition);
}

.blog-detail__back-link:hover {
  color: var(--color-cyan);
}

.blog-detail__header {
  margin-bottom: 1.15rem;
}

.blog-detail__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  font-size: var(--fs-sm);
  color: var(--color-gray);
}

.blog-detail__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--bg-lavender);
  color: var(--color-navy);
  font-weight: var(--fw-medium);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.blog-detail__time::before,
.blog-detail__author::before {
  content: "·";
  margin-right: 0.85rem;
  color: #c5c8d4;
}

.blog-detail__cover {
  margin: 0 0 1.5rem;
  border-radius: 18px;
  overflow: hidden;
  background: #ebe4dc;
}

.blog-detail__cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-detail__body > p {
  margin: 0 0 1.15rem;
  font-size: 1.04rem;
  font-style: normal;
  line-height: 1.75;
  color: rgba(37, 43, 65, 0.78);
}

.blog-detail__body .treatment-detail__heading {
  margin: 2.25rem 0 1.1rem;
}

.blog-detail__list {
  margin: 0 0 1.15rem;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.55rem;
}

.blog-detail__list li {
  line-height: 1.6;
  font-size: 0.98rem;
  color: rgba(37, 43, 65, 0.72);
}

.blog-detail__tip {
  margin: 1.5rem 0;
  padding: 1.1rem 1.2rem;
  border-left: 4px solid var(--color-yellow);
  background: #f7f9fc;
  border-radius: 0 14px 14px 0;
}

.blog-detail__tip strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-navy);
}

.blog-detail__tip p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(37, 43, 65, 0.65);
}

.blog-detail__table-wrap {
  margin: 0 0 1.25rem;
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(37, 43, 65, 0.08);
}

.blog-detail__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.blog-detail__table th,
.blog-detail__table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(37, 43, 65, 0.08);
  vertical-align: top;
}

.blog-detail__table th {
  background: #f7f9fc;
  color: var(--color-navy);
  font-weight: var(--fw-medium);
}

.blog-detail__table tr:last-child td {
  border-bottom: 0;
}

.blog-detail__faq {
  margin-top: 0.35rem;
}

.blog-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
}

.blog-share__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
}

.blog-share__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.blog-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 36px;
  height: 36px;
  padding: 0 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(37, 43, 65, 0.1);
  background: #fff;
  color: var(--color-navy);
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.blog-share__btn:hover {
  transform: translateY(-1px);
  border-color: transparent;
  color: #fff;
}

.blog-share__btn--wa:hover { background: #25d366; }
.blog-share__btn--fb:hover { background: #1877f2; }
.blog-share__btn--x:hover { background: #111; }
.blog-share__btn--li:hover { background: #0a66c2; }
.blog-share__btn--copy:hover {
  background: var(--color-navy);
  color: #fff;
}

.blog-share__btn.is-copied {
  background: var(--color-cyan);
  border-color: var(--color-cyan);
  color: #fff;
}

.blog-share__copy-text {
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
}

.blog-share--aside {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid rgba(37, 43, 65, 0.08);
  border-radius: 18px;
  padding: 1.1rem 1.15rem 1.2rem;
  box-shadow: 0 8px 24px rgba(37, 43, 65, 0.05);
}

.blog-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #ebe4dc;
}

.blog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.04);
}

@media (max-width: 960px) {
  .treatment-detail__aside > .blog-share--aside {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .blog-detail__toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-share__copy-text {
    display: none;
  }
}

.contact-map {
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e8edf3;
}

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

@media (max-width: 960px) {
  .home-hero {
    min-height: auto;
    padding-top: var(--space-6);
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .home-hero__content {
    max-width: none;
    order: 2;
  }

  .home-hero__visual {
    order: 1;
    min-height: 460px;
    align-items: center;
  }

  .hero-peek {
    max-width: min(440px, 100%);
    margin-inline: auto;
  }

  .hero-peek__stage {
    aspect-ratio: 1.05;
    min-height: 360px;
  }

  .hero-peek__card {
    inset: 0;
    width: auto;
    height: auto;
    border-radius: 62% 38% 48% 52% / 48% 42% 58% 52%;
  }

  .hero-peek__card.is-active {
    transform: translateX(0) scale(0.98);
    animation: none;
  }

  .hero-peek__card.is-next {
    transform: translateX(24%) scale(0.86);
    opacity: 0.95;
    visibility: visible;
  }

  .hero-peek__card.is-queue {
    transform: translateX(24%) scale(0.86);
    opacity: 0;
    visibility: hidden;
  }

  .hero-peek__card.is-leaving {
    transform: translateX(0) scale(0.96);
  }

  .grid-2,
  .split {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .grid-3,
  .grid-6 {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .section__header--row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .home-hero__actions .btn {
    width: 100%;
  }

  .home-hero__visual {
    min-height: 400px;
  }

  .hero-peek__card {
    inset: 0;
    width: auto;
    height: auto;
  }

  .hero-peek__card.is-active {
    transform: translateX(0) scale(1);
    animation: none;
  }

  .hero-peek__card.is-next {
    transform: translateX(20%) scale(0.86);
    opacity: 0.92;
    visibility: visible;
  }

  .hero-peek__card.is-queue {
    transform: translateX(20%) scale(0.86);
    opacity: 0;
    visibility: hidden;
  }

  .hero-peek__card.is-leaving {
    transform: translateX(0) scale(0.96);
  }

  .home-hero__badge {
    left: 12%;
    bottom: 14%;
    animation: none;
    transform: none;
  }

  .grid-3,
  .grid-4,
  .grid-6,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--space-7) 0;
  }
}

/* ——— Home banner: transparan, sabit görsel boyutu, düzeltilmiş panel ——— */
.home-banner {
  --banner-h: clamp(38rem, 82vh, 48rem);
  position: relative;
  isolation: isolate;
  height: var(--banner-h);
  min-height: var(--banner-h);
  max-height: var(--banner-h);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--color-navy);
}

.home-banner__track {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-banner__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.75s;
}

.home-banner__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.home-banner__slide.is-leaving {
  opacity: 0;
  visibility: visible;
  z-index: 2;
}

.home-banner__slide picture {
  display: block;
  position: absolute;
  inset: 0;
}

.home-banner__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* scale yok — retina’da yumuşamayı önler */
  transform: none;
}

.home-banner__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(37, 43, 65, 0.58) 0%,
      rgba(30, 58, 76, 0.32) 48%,
      rgba(106, 168, 199, 0.12) 78%,
      rgba(37, 43, 65, 0.08) 100%
    ),
    linear-gradient(to top, rgba(37, 43, 65, 0.28) 0%, transparent 42%);
}

.home-banner__glow {
  position: absolute;
  left: -8%;
  top: 10%;
  z-index: 1;
  width: min(48vw, 520px);
  height: min(48vw, 520px);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(106, 168, 199, 0.14), transparent 68%);
}

.home-banner__layout {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: clamp(2.5rem, 5vh, 3.5rem);
  padding-bottom: clamp(4.5rem, 8vh, 5.5rem);
}

/* Sol metin kutusu — sabit yükseklik yok, taşma yok */
.home-banner__panel {
  width: min(100%, 34rem);
  max-width: 34rem;
  min-height: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.5rem 1.6rem 1.4rem;
  border-radius: 22px;
  background: rgba(37, 43, 65, 0.36);
  border: 1px solid rgba(178, 214, 231, 0.28);
  box-shadow:
    0 18px 44px rgba(20, 28, 45, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  overflow: visible;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.home-banner__panel.is-switching {
  opacity: 0;
  transform: translateY(0.35rem);
}

.home-banner__panel-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.home-banner__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--color-yellow);
}

.home-banner__route {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.4rem 0.85rem;
  font-size: 0.66rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(178, 214, 231, 0.22);
  border-radius: 999px;
}

.home-banner__title {
  margin: 0 0 0.85rem;
  min-height: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #fff;
}

.home-banner__title-line {
  display: block;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.home-banner__accent {
  display: inline-block;
  position: relative;
  margin-top: 0.35rem;
  padding-bottom: 0.28rem;
  color: var(--color-cyan-light);
  font-weight: var(--fw-medium);
}

.home-banner__accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 8%;
  bottom: 0;
  height: 0.15em;
  background: rgba(254, 186, 71, 0.45);
  border-radius: 999px;
  z-index: -1;
}

.home-banner__text {
  margin: 0 0 1.15rem;
  min-height: 0;
  max-width: 100%;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.home-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.home-banner__actions .btn {
  white-space: nowrap;
  padding: 0.8rem 1.2rem;
  font-size: 0.88rem;
}

.home-banner__panel .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(178, 214, 231, 0.4);
  box-shadow: none;
}

.home-banner__panel .btn-ghost:hover {
  background: rgba(106, 168, 199, 0.28);
  border-color: var(--color-cyan-light);
  color: #fff;
}

.home-banner__panel .btn-ghost .btn-play {
  background: #fff;
}

.home-banner__panel .btn-ghost .btn-play::after {
  border-color: transparent transparent transparent var(--color-navy);
}

.home-banner__note {
  margin: 0;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
}

/* Slider çubuğu — sağ alt köşe */
.home-banner__footer {
  position: absolute;
  right: 0;
  bottom: 1.35rem;
  left: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: none;
  width: auto;
  margin: 0;
}

.home-banner__controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.45rem;
  border-radius: 999px;
  background: rgba(37, 43, 65, 0.55);
  border: 1px solid rgba(178, 214, 231, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(20, 28, 45, 0.25);
}

.home-banner__nav {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 4;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.home-banner__nav:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-navy);
  transform: translateY(-1px);
}

.home-banner__progress {
  position: relative;
  width: 5.5rem;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.home-banner__progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-yellow));
}

.home-banner.is-playing .home-banner__progress-bar {
  animation: home-banner-progress var(--banner-interval, 6s) linear forwards;
}

.home-banner__dots {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.home-banner__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.home-banner__dot.is-active {
  width: 20px;
  background: var(--color-cyan);
}

.home-banner__counter {
  margin: 0;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  background: rgba(37, 43, 65, 0.45);
  border: 1px solid rgba(178, 214, 231, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-banner__counter span {
  color: #fff;
}

@keyframes home-banner-progress {
  from { width: 0%; }
  to { width: 100%; }
}

@media (max-width: 960px) {
  .home-banner__footer {
    right: 0;
    left: 0;
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .home-banner {
    --banner-h: 100svh;
    min-height: 100svh;
    max-height: none;
    height: 100svh;
  }

  .home-banner__veil {
    background:
      linear-gradient(
        to top,
        rgba(8, 11, 20, 0.98) 0%,
        rgba(14, 18, 30, 0.9) 26%,
        rgba(28, 34, 52, 0.58) 50%,
        rgba(37, 43, 65, 0.22) 70%,
        transparent 86%
      );
  }

  .home-banner__layout {
    justify-content: flex-end;
    align-items: stretch;
    padding-top: 1rem;
    padding-bottom: 5.75rem;
  }

  .home-banner__panel {
    width: 100%;
    max-width: none;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .home-banner__panel-top {
    gap: 0.35rem;
    margin-bottom: 0.6rem;
  }

  .home-banner__brand {
    font-size: 1.5rem;
  }

  .home-banner__route {
    padding: 0.3rem 0.7rem;
    font-size: 0.62rem;
  }

  .home-banner__title {
    margin: 0 0 0.6rem;
    font-size: clamp(1.35rem, 5.8vw, 1.65rem);
    line-height: 1.25;
  }

  .home-banner__text {
    margin: 0 0 0.95rem;
    font-size: 0.92rem;
    line-height: 1.52;
    color: rgba(255, 255, 255, 0.84);
  }

  .home-banner__note {
    display: none;
  }

  .home-banner__actions {
    gap: 0.5rem;
    margin-bottom: 0;
  }

  .home-banner__actions .btn {
    flex: 1 1 calc(50% - 0.35rem);
    justify-content: center;
    min-width: 0;
    padding: 0.72rem 0.95rem;
    font-size: 0.84rem;
  }

  .home-banner__footer {
    left: 0;
    right: 0;
    bottom: 1.1rem;
    z-index: 5;
  }

  .home-banner__progress {
    width: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-banner__slide,
  .home-banner__panel,
  .home-banner__img {
    transition: none;
  }

  .home-banner__img {
    transform: none;
  }

  .home-banner.is-playing .home-banner__progress-bar {
    animation: none;
    width: 100%;
  }
}
