/* Base reset (minimal) */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Horizontal scroll asla olmasın */
}
body {
  font-family: "Figtree", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #000000;
  background: #ffffff;
}

button {
  font-family: "Figtree", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Optional smoothness for snap */
html,
body {
  scroll-behavior: smooth;
}

.container {
  max-width: calc(1248px + 40px);
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 108px;
  padding: 16px 0;
  background: #fff;
}

.site-header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .action {
  display: flex;
  gap: 32px;
  align-items: center;
}

@media (max-width: 560px) {
  .site-header .action {
    gap: 6px;

    img {
      width: 50px;
    }

    a {
      display: none;
    }
  }
}

.section {
  position: relative;
}

/* HERO */
#hero {
  position: relative;
  z-index: 1; /* Pin spacer altında kalmasın */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 108px; /* Header height'ı kadar */
  padding-bottom: 80px;
  min-height: 100vh;
}
.hero-media {
  display: grid;
  width: 100%;
  max-width: 1700px;
  overflow: hidden;
}

@media (max-height: 1000px), (max-width: 1400px) {
  #hero {
    min-height: 0;
  }

  .hero-media {
    width: 1300px;
  }
}

@media (max-height: 850px), (max-width: 1100px) {
  .hero-media {
    width: 1000px;
  }
}

.hero-video {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-loader {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 1;
  transition: opacity 0.5s ease-out;
  pointer-events: none;
  /* #hero'ya göre ortalanır (min-height: 100vh) */
}

.hero-video-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-video-loader__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ff183b;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-text {
  position: absolute;
  top: 100px; /* Header (120px) + margin (40px) */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  max-width: 784px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  opacity: 0;
}

@media (max-height: 1000px), (max-width: 1400px) {
  .hero-text {
    top: 28px;
  }
}

.hero-text__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #ff183b 0%, #952aff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text__desc {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}


.hero-overlay {
  position: absolute;
  z-index: 2;
  max-width: 1300px;
  max-height: 600px;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


@media (max-width: 850px) {
  .hero-media {
    width: 100% !important;
  }

  .hero-text {
    display: block !important;
    opacity: 1 !important;
    position: relative !important;
  }

  .hero-overlay {
    max-height: 0;
  }
}

.hero-sound-toggle {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: none;
  outline: 0;
}
.hero-sound-toggle.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.hero-sound-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-sound-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

@media (max-width: 2149px) {
  .hero-sound-toggle {
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 30px;
    right: 50px;
  }
}

.hero-title {
  font-size: clamp(28px, 6vw, 72px);
  line-height: 1.08;
  margin: 0 0 16px;
}
.hero-subtitle {
  font-size: clamp(16px, 2.4vw, 22px);
  opacity: 0.9;
  margin: 0 0 24px;
}

/* Placeholder content */
.content {
  padding: 96px 0;
  background: #f6f7f9;
}
.content h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3.2vw, 34px);
}
.content p {
  margin: 0;
  max-width: 64ch;
}

/* STORY (play-once) */
.story {
  padding: 120px 0 140px;
  background: #fff;
  color: #0e0e10;
}
.story-media {
  width: min(1120px, 92%);
  margin: 24px auto 0;
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
}
.story-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SCENES (sticky multi-stage) */
.scenes {
  background: #ffffff; /* Başlangıçta beyaz */
  position: relative;
  min-height: 100vh; /* Normal viewport height */
  z-index: 2;
  transition: background-color 1s ease;
}

.scenes-inner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  /* Container for absolute positioned scene-content divs */
}
/* Remove leftover outer-snap artifacts */
.snap-steps,
.snap-step {
  display: none;
}
/* remove page-level snap to avoid scroll conflicts */
.scenes-viewport,
.scenes-viewport .step {
  display: none;
}
.scenes-viewport .step {
  min-height: 100vh;
  scroll-snap-align: start;
}
.scenes-inner {
  position: sticky; /* Native sticky, pin spacer yok */
  top: 0;
  z-index: 1;
  width: 1248px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  min-height: 100vh;
  pointer-events: none;
}
.scenes-left {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 240px;
  overflow: visible;
  z-index: 10;
}
.tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.tab {
  position: absolute;
  left: 0;
  top: 0;
  width: 480px;
  white-space: normal;
  color: #ffffff;
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
.tab.is-active {
  opacity: 1;
}

.scenes-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 620px;
  pointer-events: none;
  z-index: 1;
}

.base-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ff183b;
  opacity: 1;
  /* CSS transition kaldırıldı - GSAP kontrol ediyor */
}

.scene-image-area {
  position: absolute;
  width: 400px;
  height: 400px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.subject {
  position: absolute;
  left: calc(36% - -2px);
  bottom: calc(50% - 201px);
  transform: translateX(-50%);
  height: 520px;
  object-fit: contain;
  opacity: 0;
}
.orb {
  position: absolute;
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
.orb-1 {
  left: 22%;
  top: 18%;
}
.orb-2 {
  left: 62%;
  top: 44%;
}
.orb-3 {
  left: 48%;
  bottom: 12%;
}

/* Scene content containers - new tab-based HTML structure */
.scene-content {
  position: absolute;
  inset: 0;
  display: none;
  /* opacity GSAP tarafından yönetiliyor - CSS'ten kaldırdık */
  pointer-events: none;
  grid-template-columns: 100px 1fr 373px;
  grid-template-areas: "left center right";
  align-items: center;
  gap: 120px;
  padding: 0;
  z-index: 10;
}

.scene-content.is-active {
  display: grid;
  /* opacity GSAP tarafından yönetiliyor - CSS'ten kaldırdık */
  pointer-events: auto;
}

.scene-particle {
  position: absolute;
  left: 0;
  top: 0;
}

.scene-particle--1 {
  left: -45px;
  top: -42px;
}

.scene-particle--2 {
  left: -7px;
  top: -32px;
}

.scene-particle--3 {
  left: 19px;
  top: -17px;
}

.scene-particle--4 {
  left: 19px;
  top: -17px;
}

.scene-subject {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0; /* Initial state - JS will fade in */
}

/* CSS initial state - tüm tab'lar gizli (JS animasyon yapacak) */

.scene-subject--1 {
  top: -123px;
  left: -120px;
}

.scene-subject--2 {
  top: -134px;
  left: 0;
}

.scene-subject--3 {
  top: -133px;
  left: -42px;
}

.scene-subject--4 {
  top: -134px;
  left: 0px;
}

.scene-subject--5 {
  top: -41px;
  left: -70px;
}

.scene-subject--6 {
  top: -89px;
  left: -43px;
}

.scene-orbs {
  grid-area: center;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.scene-orb {
  position: absolute;
  width: 120px;
  height: 120px;
  transform: scale(0); /* Initial state - JS will scale bounce in */
}

.scene-orb-1 {
  top: -96px;
  left: 115px;
}

.scene-orb-2 {
  top: 87px;
  right: -42px;
}

.scene-orb-3 {
  bottom: -57px;
  left: 150px;
}

.scene-orb-4 {
  top: -49px;
  right: -174px;
}

.scene-orb-5 {
  top: -59px;
  left: 44px;
}

.scene-orb-6 {
  bottom: -59px;
  right: 74px;
}

.scene-text {
  grid-area: right;
  display: flex;
  width: 340px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  margin-top: 156px;
  justify-self: flex-end;
  opacity: 0; /* Initial state - JS will fade in */
}

/* Mobile responsive - 1248px altı */
@media (max-width: 1247px) {
  .scenes {
    min-height: auto; /* Height content'e göre */
  }

  .scenes-inner {
    position: relative; /* sticky kaldır */
    height: auto; /* 100vh kaldır */
    width: 100%;
    max-width: 100%;
    display: block; /* grid kaldır */
    padding: 60px 20px;
  }

  .scenes-left {
    display: none; /* Tab başlıkları gizle */
  }

  .scenes-center {
    display: none; /* scenes-center gizle (mobilde kullanmıyoruz) */
  }

  .base-circle {
    display: none; /* base-circle gizle (mobilde kullanmıyoruz) */
  }

  .scene-content {
    position: relative; /* absolute kaldır */
    inset: auto;
    display: block !important; /* Tüm contentler görünür */
    opacity: 1 !important; /* Direkt görünür */
    pointer-events: auto;
    margin-bottom: 80px; /* Contentler arası boşluk */
  }

  .scene-content:last-child {
    margin-bottom: 0;
  }

  .scene-image-area {
    position: relative; /* absolute kaldır */
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 300px; /* Minimum yükseklik */
    margin: 0 auto 40px; /* Altında text için boşluk */
    transform: none;
    left: auto !important; /* Desktop'taki left: 50%'yi sıfırla */
    top: auto !important; /* Desktop'taki top: 50%'yi sıfırla */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  /* Base circle'ı mobilde scene-image-area'nın arkasına ekle */
  .scene-image-area::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #ff183b;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* Her scene-content için farklı renk (data-scene attribute'una göre) */
  .scene-content[data-scene="0"] .scene-image-area::after {
    background: #ff183b;
  }
  .scene-content[data-scene="1"] .scene-image-area::after {
    background: #952aff;
  }
  .scene-content[data-scene="2"] .scene-image-area::after {
    background: #ff183b;
  }
  .scene-content[data-scene="3"] .scene-image-area::after {
    background: #952aff;
  }

  .scene-orbs {
    inset: auto !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .scene-subject,
  .scene-particle {
    position: relative !important; /* absolute kaldır */
    opacity: 1 !important; /* Direkt görünür */
    transform: none !important;
  }

  .scene-particle {
    display: none;
  }

  .scene-subject {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
  }

  .scene-subject--1 {
    top: 10px;
    left: -46px;
    width: 400px !important;
  }
  .scene-subject--2 {
    top: -2px;
    left: 75px;
    width: 400px !important;
  }
  .scene-subject--3 {
    top: -41px;
    left: -17px;
    width: 333px !important;
  }
  .scene-subject--4 {
    top: -39px;
    left: 0px;
    width: 300px !important;
  }

  .scene-subject--5 {
    top: -10px;
    left: -13px;
  }

  .scene-subject--6 {
    top: -26px;
    left: -16px;
    width: 350px !important;
  }

  .scene-particle {
    position: absolute !important;
    width: 100%;
    max-width: 200px;
    height: auto;
    opacity: 0.6 !important;
    z-index: 1;
  }

  .scene-orb {
    opacity: 1 !important;
    transform: scale(1) !important; /* Direkt görünür */
    width: 80px;
    height: 80px;
  }

  .scene-orb-1 {
    top: 32px;
    left: 144px;
  }
  .scene-orb-2 {
    top: 188px;
    right: 20px;
  }
  .scene-orb-3 {
    bottom: -32px;
    left: 171px;
  }
  .scene-orb-4 {
    top: 60px;
    right: -19px;
  }
  .scene-orb-5 {
    top: 7px;
    left: 113px;
  }
  .scene-orb-6 {
    bottom: -9px;
    right: 116px;
  }

  .scene-text {
    grid-area: auto; /* grid-area kaldır */
    width: 100%;
    max-width: 600px;
    margin: 0 auto; /* Horizontal center */
    opacity: 1 !important; /* Direkt görünür */
    text-align: center; /* Text center */
    align-items: center; /* flex-start yerine center */
  }

  .scene-title,
  .scene-desc {
    text-align: center;
  }
}

/* FEATURES - Ana stiller */
.features-header {
  width: 650px;
  position: relative;
}

/* FEATURES responsive - 1248px altı */
@media (max-width: 1247px) {
  .features-video {
    min-height: auto; /* Height content'e göre */
    padding-bottom: 150px;
  }

  .features-header {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px 40px;
  }

  .features-h-title,
  .features-h-subtitle {
    text-align: center;
  }

  .features-inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px 60px;
  }

  .features-left {
    display: none; /* Tab butonları gizle */
  }

  .features-right {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    align-items: center;
  }

  .feature-content {
    display: block !important; /* Tüm contentler görünür */
    width: 100%;
    margin-bottom: 60px;
    text-align: center;
    align-items: center;
  }

  .feature-content:last-child {
    margin-bottom: 0;
  }

  .feature-title,
  .feature-desc {
    text-align: center;
  }

  .feature-actions {
    justify-content: center;
    margin-top: 32px;
  }

  /* İlk iki tab'deki butonları gizle, sadece son tab'deki görünsün */
  #feature-crash-detection .feature-actions,
  #feature-ambulance .feature-actions {
    display: none;
  }
}

/* FEATURES responsive - 768px altı */
@media (max-width: 768px) {
  .features-video {
    padding-bottom: 60px;
    min-height: auto;
  }

  .features-header {
    padding: 30px 16px 20px;
    width: 100%;
    max-width: 100%;
  }

  .features-h-title {
    font-size: 28px;
    line-height: 1.2;
    word-wrap: break-word;
    margin-bottom: 12px;
  }

  .features-h-subtitle {
    font-size: 16px;
    line-height: 1.4;
    word-wrap: break-word;
  }

  .features-inner {
    gap: 24px;
    padding: 0 16px 30px;
  }

  .features-right {
    width: 100%;
    max-width: 100%;
  }

  .feature-content {
    width: 100%;
  }

  .feature-title {
    font-size: 24px;
    line-height: 1.3;
    word-wrap: break-word;
    margin-bottom: 12px;
  }

  .feature-desc {
    font-size: 16px;
    line-height: 1.5;
    word-wrap: break-word;
    margin-bottom: 12px;
  }

  .feature-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
    align-items: center;
  }

  .btn-store {
    width: 100%;
    max-width: 280px;
  }
}

/* INFO responsive - 1248px altı */
@media (max-width: 1247px) {
  .section.info .container {
    min-height: auto; /* Height content'e göre */
    padding: 60px 20px;
  }

  .info-inner {
    flex-direction: column; /* Sol-sağ yerine üst-alt */
    gap: 40px;
    align-items: center;
  }

  /* Vertical layout için responsive */
  .info-inner--vertical {
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .info-left-col {
    width: 100%;
    max-width: 600px;
    text-align: center;
  }

  .info-right-col {
    width: 100%;
    max-width: 400px;
  }

  .info-left {
    width: 100%;
    max-width: 400px;
    order: 1; /* Görsel en üstte */
  }

  .info-image {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .info-right {
    width: 100%;
    max-width: 600px;
    order: 2; /* Title/desc görselden sonra */
    text-align: center;
  }

  .info-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 48px);
  }

  .info-desc {
    text-align: center;
    margin-bottom: 40px;
  }

  .accordion {
    order: 3; /* Accordion'lar en altta */
    width: 100%;
  }

  .acc-item {
    margin-bottom: 24px;
  }

  .acc-item:last-child {
    margin-bottom: 0;
  }
}

/* Legacy (will be removed) */
.scenes-right {
  align-self: center;
}
.scene-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.scene-desc {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 32px 0;
}

.scene-text .btn {
  background: #ffffff;
  color: #000000;
}

/* FEATURES VIDEO */
.features-video {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background-color: #000000;
}
.features-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.features-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.features-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 200ms ease;
}
.features-inner {
  display: flex;
  padding: 32px 0;
  align-items: flex-start; /* center yerine flex-start - header sabit kalır */
  gap: 200px;
  flex-shrink: 0;
  justify-content: space-between;
}
.feature-tabs {
  display: flex;
  width: 384px;
  align-items: flex-start;
  align-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0;
}

.feature-tab {
  appearance: none;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(24px);
  color: #ffffff;
  display: flex;
  width: 180px;
  height: 177px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
  opacity: 0.5;
  cursor: pointer;
}

.feature-tab:hover {
  border-color: #ffffff;
}
.feature-tab:focus-visible {
  border-color: #ffffff;
}
.feature-tab.is-active {
  opacity: 1;
  border-color: #ffffff;
}
.feature-tab.is-active:hover {
  border-color: #ffffff;
}

.feature-tab > span {
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  line-height: 26px;
}

.features-right {
  width: 404px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: flex-start;
}


@media (max-width: 560px) {
  .features-right {
    width: 100%;
  }

  /* İlk iki tab'deki butonları gizle, sadece son tab'deki görünsün */
  #feature-crash-detection .feature-actions,
  #feature-ambulance .feature-actions {
    display: none;
  }
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.feature-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 16px;
}

.feature-desc {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 16px;
}

.feature-desc--bold {
  font-weight: 700;
}

.features-right .feature-actions {
  display: flex;
  gap: 24px;
  margin-top: 64px;
}


.features-h-title {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 16px;
}

@media (max-width: 560px) {
  .features-h-title {
    font-size: 36px;
  }
}

.features-h-subtitle {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
}

/* BUTTONS start */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 48px;
  padding: 0 24px;
  border-radius: 24px;
  background: var(--surface-black);
  color: var(--text-white);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.btn-store {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 190px;
  height: 76px;
  padding: 16px 24px;
  border-radius: 12px;
  background: var(--surface-black);
  color: var(--text-white);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.btn-store .btn-motto {
  font-size: 12px;
  margin-bottom: 4px;
}

.btn-store .btn-text {
  font-size: 18px;
}

/* BUTTONS end */

/* BENEFITS (Figma 5) */
.benefits {
  overflow-x: hidden; /* Sayfa horizontal scroll olmasın */
  position: relative;
  z-index: 3; /* Scenes'den yukarıda */
  background-color: #000000;
}

.benefits-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.benefits-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits .container {
  position: relative;
  z-index: 1; /* Video'nun üzerinde olması için */
}

.benefits-inner {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
}

.benefits-top {
  padding-top: 300px;
  padding-bottom: 250px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: nowrap;
}

.benefits-bottom {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 250px;
}

/* Sol column: Görseller */
.benefits-center {
  flex: 0 0 auto;
  width: 400px;
  position: relative;
  min-height: 739px;
}

.benefits-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Sağ column: Title, Desc, Cards */
.benefits-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefits-title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1.92px;
  margin: 0;
}

.benefits-desc {
  color: #9ca3af;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  max-width: 660px;
}

/* Cards container */
.benefits-cards {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin-top: 32px;
}

/* Desktop'ta swiper class'ları normal flex gibi davranır */
.benefits-cards.swiper {
  display: flex; /* Swiper'ın display: block'unu override et */
}

.benefits-cards .swiper-wrapper {
  display: flex; /* Desktop'ta normal flex wrapper */
  width: 100%;
  gap: 24px;
}

.benefit-card {
  flex: 1;
  min-width: 0;
  background: rgba(29, 29, 31, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: background 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  width: 240px;
  height: 338px;
}

.benefit-card.swiper-slide {
  height: 338px !important;
}

.benefit-card.is-active {
  background: #1d1d1f;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefits-dark-box {
  display: flex;
  flex-direction: column;
  width: 284px;
  height: 268px;
  flex-shrink: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(29, 29, 31, 0.7);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1), 0 10px 15px 0 rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(30px);
}

.benefits-dark-box__no {
  display: flex;
  width: 64px;
  padding: 17px 0 15px 0;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #262629 0%, #1d1d1f 100%);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.5);
  margin-top: 32px;
  margin-bottom: 26px;
}

.benefits-dark-box__title {
  color: #f3f4f6;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.benefits-dark-box__desc {
  color: #9ca3af;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  padding: 0 24px;
  line-height: 22px;
}

.card-image {
  padding: 16px;
  text-align: center;
}

.card-image img {
  width: 100%;
  max-width: 168px;
  height: auto;
}

.card-title {
  color: #9ca3af;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1248px) {
  .benefits-top {
    flex-direction: column;
    align-items: center;
    padding-top: 200px;
    padding-bottom: 100px;
  }

  .benefits-center {
    width: 100%;
    max-width: 650px;
    min-height: 650px;
    order: 2; /* En alta geçsin */
  }

  .benefits-right {
    width: 100%;
    max-width: 800px;
    order: 1; /* En üste geçsin */
    align-items: center;
    text-align: center;
  }

  .benefits-title {
    font-size: 36px;
  }

  .benefits-desc {
    max-width: 100%;
  }

  .benefits-cards {
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap; /* Yan yana kalsınlar, alt alta dizilmesin */
    gap: 20px;
    margin-top: 40px;
    width: 100%; /* Container full width */
    overflow: visible; /* Slider değil, overflow olmasın */
  }
  
  /* 851px-1248px arasında Swiper class'larını override et */
  .benefits-cards.swiper {
    display: flex !important; /* Swiper'ın display: block'unu override et */
    overflow: visible !important; /* Slider değil, overflow olmasın */
  }
  
  .benefits-cards .swiper-wrapper {
    display: flex !important; /* Normal flex wrapper */
    width: 100%;
    gap: 20px;
  }

  .benefit-card {
    flex: 0 0 auto; /* Shrink ve grow yapmasın */
    width: 300px; /* Sabit genişlik */
    min-width: 300px;
    max-width: 300px;
    height: 316px;
  }
}



/* 850px altında slider aktif */
@media (max-width: 850px) {
  .benefits-top {
    gap: 0px;
  }

  .benefits-cards.swiper {
    display: block; /* Swiper'ın block display'ini kullan */
    overflow: hidden; /* Slider için gerekli */
    padding-bottom: 50px; /* Background kesilmesini önle */
    margin-bottom: 0;
    width: 100%;
  }

  .benefits-cards .swiper-wrapper {
    display: flex; /* Swiper wrapper aktif */
    gap: 0; /* Swiper spaceBetween kullanacak */
    align-items: center; /* Slide'ları dikey olarak ortala */
    /* width: fit-content kaldırıldı - Swiper kendi width'ini hesaplar */
  }

  .benefit-card.swiper-slide {
    width: 300px !important; /* Sabit genişlik 300px */
    height: 316px !important;
    flex-shrink: 0;
  }

  /* Pagination container'ı ortala */
  .benefits-right {
    padding-bottom: 0;
    position: relative;
  }
  
  .benefits-cards .swiper-pagination {
    position: absolute !important;
    margin: 0 !important;
    bottom: 20px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px;
  }

  .benefits-cards .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
  }

  .benefits-cards .swiper-pagination-bullet-active {
    background: #ffffff;
  }
}

@media (max-width: 768px) {
  .benefits-cards {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card {
    width: 100%;
    max-width: 400px;
  }

  .benefits-center {
    max-width: 500px;
    min-height: 500px;
  }
}

/* Motion reduction */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* DAMAGE CONTROL SECTION */
.damage-control {
  position: relative;
  min-height: 100vh;
  background: #000000;
  padding: 250px 0;
}

.damage-control-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/black-bg.jpg") center center no-repeat;
  background-size: auto;
}

.damage-control .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.damage-control-inner {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}

.damage-control-title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1.92px;
  margin-bottom: 32px;
  margin-top: 0;
}

.damage-control-desc {
  color: #9ca3af;
  font-size: 20px;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.damage-control-phone {
  width: 414px;
  height: 857px;
  margin: 40px auto 0;
  background: url("../assets/images/phone-empty2.png") center center no-repeat;
  background-size: 414px 857px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

@media (max-width: 560px) {
  .damage-control {
    padding-top: 130px;
  }

  .damage-control-phone {
    width: 346px;
    height: 716px;
    background-size: 346px 716px;
  }
}

.damage-control-phone__content {
  position: absolute;
  top: 300px;
  left: 31px;
  width: 352px;
  height: 530px;
}

.damage-control-phone p {
  color: #000000;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.damage-control__item {
  height: 88px;
  padding: 11px 16px 11px 28px;
  display: flex;
  gap: 20px;
  position: relative;
}

.damage-control__item::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #e3e8f0;
  bottom: -51px;
  left: 47px;
}

.damage-control__item:last-child::before {
  display: none;
}

.damage-control__item-icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.damage-control__item-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
}

.damage-control__item-icon--unchecked {
  opacity: 1;
}

.damage-control__item-icon--checked {
  opacity: 0;
}

.damage-control__item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.damage-control__item-text1 {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #13131f;
}

.damage-control__item-text2 {
  font-size: 13px;
  font-weight: 600;
  color: #737289;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 16px;
}



@media (max-width: 560px) {
  .damage-control-phone__content {
    top: 238px;
    left: 16px;
    width: 300px;

    .damage-control__item {
      height: 78px;
    }
  }
}

/* INFO (Figma 7) */

.section.info {
  background-color: #000000;
}

.section.info .container {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.info {
  background: #000000;
}
.info-inner {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  width: 100%;
}

.info-left {
  width: 480px;
  flex-shrink: 0;
}

.info-left--altered {
  width: 480px;
  flex-shrink: 0;
}

.info-right--altered {
  width: auto;
  flex-shrink: unset;
}

.info-image {
  width: 340px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.info-title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1.92px;
  margin-bottom: 32px;
  margin-top: 0;
}

.info-title.special {
  background: linear-gradient(90deg, #ff183b 0%, #952aff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info-desc {
  color: #9ca3af;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 82px;
}

/* Info vertical layout (for #info section) - 2 column layout */
.info-inner--vertical {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  max-width: 1248px;
  margin: 0 auto;
  padding-top: 250px;
  padding-bottom: 250px;
}

/* Sol Column: Title, Desc, Yeni Alan */
.info-left-col {
  flex: 1;
  min-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-left-col .info-title {
  font-size: 48px;
  margin: 0;
}

.info-left-col .info-desc {
  margin: 0;
}

.info-new-area {
  width: 100%;
  margin-top: 32px;
}

/* Light theme for info4 */
.info--light {
  background-color: #e8ebf1 !important;
}

.info--light .info-title {
  color: #000000;
}

.info--light .info-desc {
  color: #414142;
}

/* Light theme for info3 (info5) */
.info3--light {
  background-color: #e8ebf1 !important;
}

.info3--light .info-title {
  color: #000000;
}

.info3--light .info-desc {
  color: #414142;
}

/* COOL ACCORDION - Reusable component */
.cool-accordion {
  position: relative;
  width: 526px;
}

/* Navigation buttons (left side) */
.cool-accordion__nav {
  position: absolute;
  left: -46px;
  top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cool-nav-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cool-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cool-nav-btn img {
  width: 30px;
  height: 30px;
  display: block;
}

.cool-nav-btn--down img {
  transform: rotate(180deg);
}

.cool-nav-btn--down:hover:not(:disabled) img {
  transform: rotate(180deg);
}

/* Accordion items container */
.cool-accordion__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Accordion item */
.cool-acc-item {
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(29, 29, 31, 0.5);
  padding: 16px 22px;
  transition: background 0.3s ease, border 0.3s ease, padding 0.3s ease;
  cursor: pointer;
  min-height: 57px;
}

.cool-acc-item:hover:not(.is-active) {
  background: #1d1d1f;
  border-color: rgba(255, 255, 255, 0.08);
}

.cool-acc-item.is-active {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1d1d1f;
  cursor: default;
  padding: 26px 22px;
}

/* Accordion header */
.cool-acc-header {
  overflow: hidden;
  /* opacity and height controlled by GSAP */
}

.cool-acc-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 560px) {
  .cool-acc-title {
    font-size: 18px;
  }
}

/* Accordion content */
.cool-acc-content {
  overflow: hidden;
  /* height controlled by GSAP */
}

.cool-acc-content p {
  color: #9ca3af;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 22px;
  /* opacity controlled by GSAP */
}

.cool-acc-content p strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 4px;
}

/* Light theme accordion styles - to be customized */

.cool-accordion.light .cool-acc-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.5);
}

.cool-accordion.light .cool-acc-item .cool-acc-title {
  color: #000000;
}

.cool-accordion.light .cool-acc-item .cool-acc-content p {
  color: #414142;
}

.cool-accordion.light .cool-acc-item .cool-acc-content p strong {
  color: #000000;
}

.cool-accordion.light .cool-nav-btn img {
  filter: brightness(0) saturate(100%) invert(0%);
}

.cool-accordion.light .cool-acc-item.is-active {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1300px) {
  .cool-accordion__nav {
    display: none;
  }
}

/* Info Vertical Responsive */
@media (max-width: 1248px) {
  .info-inner--vertical {
    flex-direction: column;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 150px;
    gap: 40px;
  }

  .info-right-col {
    order: 1;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
  }

  .info-left-col {
    order: 2;
    width: 100%;
    max-width: 800px;
    min-width: 0;
    text-align: center;
    align-items: center;
  }

  .info-left-col .info-title {
    font-size: 36px;
  }

  .info-new-area {
    order: 3;
    width: 100%;
    margin-top: 40px;
  }

  .info-new-area .cool-accordion {
    width: 100%;
  }
}


@media (max-width: 560px) {
  .info-inner--vertical {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* Sağ Column: Image */
.info-right-col {
  flex: 0 0 auto;
  width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 1;
}

.info-right-col .info-image {
  width: auto;
  height: auto;
}

/* Accordion */
.accordion {
  position: relative;
}

.acc-item {
  border-radius: 16px;
  background: #ffffff;
  padding: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  min-height: 160px;
}
.acc-header {
  width: 100%;
  min-height: 120px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  border: none;
  text-align: left;
  cursor: pointer;

  img {
    border-radius: 14px;
  }
}

.acc-item.dark {
  background-color: #1d1d1f;
}

.acc-item.dark .acc-header {
  cursor: default;
  background-color: #1d1d1f;
}

.acc-item.dark .acc-title {
  color: #ffffff;
}

.acc-item.dark .acc-desc {
  color: #9ca3af;
}
.acc-header[aria-expanded="true"] .acc-icon img {
  transform: rotate(180deg);
}

.acc-header-text {
  flex: 1;
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 16px 14px;
}
.acc-panel.is-open {
  max-height: 300px;
}

.acc-header-text .acc-title {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.acc-header-text .acc-desc {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.acc-icon img {
  transition: transform 160ms ease;
}

/* LIFESTYLE SCRUB */
.lifestyle {
  position: relative;
  min-height: 120vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.lifestyle-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/6.png") center/cover no-repeat;
}
.lifestyle-inner {
  position: relative;
  z-index: 1;
  width: min(1400px, 94%);
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.lifestyle-text {
  color: #fff;
  font-weight: 700;
  font-size: 160px;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}

/* Mobil için text parts */
.lifestyle-text-mobile {
  display: none; /* Desktop'ta gizli */
}

.lifestyle-text-part {
  color: #fff;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.2;
  margin: 0;
  opacity: 0; /* Başlangıçta görünmez */
}

/* 1000px altında mobil versiyonu göster */
@media (max-width: 1000px) {
  .lifestyle-bg {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.00) 100%), url("../assets/images/6.png") center/cover no-repeat;
  }

  .lifestyle-text {
    display: none; /* Desktop text'i gizle */
  }

  .lifestyle-text-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
  }

  .lifestyle-text-part {
    font-size: 64px;
  }
}

/* INFO3 specific styles */
.info3-inner {
  width: 100%;
  max-width: 1248px;
  min-height: 100vh;
  margin: 0 auto;
}

.info3-top {
  padding-top: 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 560px) {
  .info3-top {
    padding-top: 50px;
  }
}

.info3-top .info-title {
  text-align: center;
}

.info3-top .info-desc {
  text-align: center;
  max-width: 930px;
  color: #9ca3af;
  font-size: 20px;
  font-weight: 500;
}

.info3-bottom {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 250px;
}

.info3-dark-box-container {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.info3-dark-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 260px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(29, 29, 31, 0.7);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1), 0 10px 15px 0 rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(30px);
}

.info3-dark-box__no {
  display: flex;
  width: 64px;
  padding: 17px 0 15px 0;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #262629 0%, #1d1d1f 100%);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.5);
  margin-top: 32px;
  margin-bottom: 26px;
}

.info3-dark-box__title {
  color: #f3f4f6;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.info3-dark-box__desc {
  color: #9ca3af;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  padding: 0 24px 16px;
  line-height: 22px;
}

.info3-mid {
  display: flex;
  gap: 1px;
  margin-top: 50px;
}

.info3-mid.info3-mid2 {
  padding-bottom: 250px;
}

.fade-box {
  display: flex;
  height: 394px;
  padding: 24px 32px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex: 1 0 0;
  background: linear-gradient(to bottom, #1d1d1f 77%, #000000);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.fade-box:first-child {
  border-radius: 28px 0 0 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.fade-box:last-child {
  border-radius: 0 28px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fade-box.special .fade-box.special2 {
  position: relative;
}

.fade-box.special:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: linear-gradient(
    151deg,
    rgba(255, 24, 59, 0.7) 8.8%,
    rgba(95, 27, 162, 0.7) 63.64%
  );
  filter: blur(100px);
  z-index: 1;
}

.fade-box.special2:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: linear-gradient(
    151deg,
    rgba(255, 24, 59, 0.25) 8.8%,
    rgba(95, 27, 162, 0.25) 63.64%
  );

  filter: blur(100px);
  z-index: 1;
}

.fade-box__image {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.fade-box__title {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.fade-box__title.type2 {
  margin-top: 20px;
  font-weight: 500;
}

.fade-box__desc {
  position: relative;
  z-index: 2;
  color: #9ca3af;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.fade-box.light {
  background: linear-gradient(to bottom, #ffffff 77%, #e8ebf1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.fade-box.light:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.fade-box.light:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.fade-box.light .fade-box__title {
  color: #000000;
}

.fade-box.light .fade-box__desc {
  color: #414142;
}

/* Info3 Responsive */
@media (max-width: 1248px) {
  .info3-mid {
    flex-direction: column;
    gap: 1px;
  }

  .fade-box {
    width: 100%;
    border-radius: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: #1d1d1f;
  }

  .fade-box:first-child {
    border-radius: 16px 16px 0 0 !important;
  }

  .fade-box:last-child {
    border-radius: 0 0 16px 16px !important;
  }

  .fade-box.light:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }

  .fade-box.light:last-child {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }

  .info3-dark-box-container {
    flex-direction: column;
    gap: 24px;
  }

  .info3-dark-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    flex-basis: auto;
  }

  .fade-box.light {
    background: #ffffff;
  }
}

/* CHAT BUBBLES */
.chat-bubbles {
  position: relative;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}
.chat-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
}
.chat-inner {
  position: relative;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.chat-title {
  color: #000000;
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1.92px;
  margin: 0 0 32px 0;
}
.chat-desc {
  color: #000000;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.chat-copy {
  position: relative;
  max-width: 900px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
.chat-stage {
  position: relative;
  height: 570px;
  display: grid;
  place-items: center;
  margin: 50px auto 0;
}
.chat-face {
  width: 156px; /* start width; grows to 316px via JS */
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}
.chat-bubble-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}
.bubble {
  position: absolute;
  width: 366px;
  min-height: 140px;
  background: #ffffff;
  border-radius: 16px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  display: grid;
  grid-template-columns: auto 1fr;
}

.bubble::after {
  content: "";
  background-color: #ffffff;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  position: absolute;
  bottom: -8px;
  right: 30px;
}

.bubble.bubble--v2::after {
  left: 30px;
  right: 0;
}

.bubble-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.bubble-text {
  display: flex;
  flex-direction: column;
  align-self: center;
  text-align: left;
}

.bubble-title {
  padding: 16px 12px 0 0;
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 8px 0;
}
.bubble-text {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  padding: 0 12px 16px 0;
}

/* CHAT BUBBLES responsive - 1248px altı */
@media (max-width: 1247px) {
  .chat-bubbles {
    min-height: auto !important; /* Container'ın height'ı kadar */
    padding: 40px 0;
  }

  .chat-stage {
    height: auto; /* Content'e göre */
    min-height: 570px; /* Minimum yükseklik */
  }

  .chat-stage {
    margin-top: 0;
  }

  .chat-bubble-layer {
    position: relative;
  }

  .bubble {
    position: relative;
    transform: none;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    opacity: 1;
    margin-bottom: 20px;
  }

  .bubble:first-child {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .chat-stage {
    margin-top: 0;
  }

  .chat-bubble-layer {
    position: relative;
  }

  .bubble {
    position: relative;
    transform: none;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    opacity: 1;
    margin-bottom: 20px;
  }

  .bubble:first-child {
    margin-top: 20px;
  }
}

/* TOOLTIP */
.tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.tooltip {
  position: absolute;
  bottom: calc(100% + -10px);
  left: -280px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(29, 29, 31, 0.95);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1), 0 10px 15px 0 rgba(0, 0, 0, 0.1);
  padding: 20px 30px 20px 20px;
  height: 200px;
  width: 340px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

@media (max-width: 700px) {
  .tooltip {
    left: -100px;
  }
}

.tooltip.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.tooltip__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  background: none;
  border: 0;
  outline: 0;
}

.tooltip__close img {
  width: 20px;
  height: 20px;
  display: block;
}

.tooltip__content {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6em;
  margin: 0;
}

.tooltip__content p {
  margin: 0;
  padding: 0;
  margin-bottom: 16px;
}

/* FAQ SECTION */
.section.faq {
  background-color: #e8ebf1;
  padding: 120px 0;
  min-height: 100vh;
}

@media (max-width: 560px) {
  .section.faq {
    padding-top: 50px;
  }
}

.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-top {
  text-align: center;
  margin-bottom: 80px;
}

.faq-title {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1.92px;
  color: #000000;
  margin-bottom: 24px;
  margin-top: 0;
}

.faq-desc {
  font-size: 20px;
  font-weight: 500;
  color: #414142;
  max-width: 600px;
  margin: 0 auto;
}

.faq-accordion-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  width: 100%;
}

.faq-accordion .cool-accordion__items {
  width: 100%;
}

.footer-sticky {
  display: none;   
}

@media (max-width: 560px) {
  .footer-sticky {
    display: flex;
    width: 100%;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    z-index: 10;

    .btn {
      width: 100%;
    }
  }
}

/* App Download Modal (desktop) */
.app-download-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.app-download-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.app-download-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.app-download-modal__box {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.app-download-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--text-primary);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.app-download-modal__close:hover {
  opacity: 1;
}

.app-download-modal__title {
  margin: 0 0 24px;
  padding-right: 32px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  text-align: center;
}

.app-download-modal__qr {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-download-modal__qr canvas,
.app-download-modal__qr img {
  display: block;
  width: 250px;
  height: 250px;
}