@font-face {
  font-family: 'Financier Display';
  src: url('assets/fonts/FinancierDisplay-Light.woff2') format('woff2'),
    url('assets/fonts/FinancierDisplay-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Financier Display Regular';
  src: url('assets/fonts/FinancierDisplay-Regular.woff2') format('woff2'),
    url('assets/fonts/FinancierDisplay-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Neue Haas Unica W1G';
  src: url('assets/fonts/NeueHaasUnicaW1G-Regular.woff2') format('woff2'),
    url('assets/fonts/NeueHaasUnicaW1G-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --Color-Gray-Grey-900: #241C15;
  --Mind-Green: #A8FFBE;
  --Green-500: #026D6D;
  --Green-600: #194747;
  --Green-700: #1E5454;
  --Green-800: #18494D;
  --Green-900: #013133;
  --Black: #191716;
  --Turquoise-800: #237789;
  --Grey-800: #68645F;
  --Grey-500: #DBD9D3;
  --Gray-700: #344054;
  --Background-Color-2: #EFEEEA;
  --Grey-600: #AEAAA3;
  --Grey-700: #8D8982;
  --Grey-900: #54514D;
  --Gray-900: #101828;
  --Red-800: #8F1E23;
  --Orange-300: #FCC888;
  --Aubergine: #4A154B;
  --Grey-Scale-Grey-700: #8D8882;
  --Background-Color-1: #F6F6F4;
  --Main-colors-Red-700: #D1333A;
  --Blue-800: #4D64EC
}

html {
  height: 100%;
}

body.index-page {
  background-color: black;
  color: white;
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-weight: 400;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.index-landing {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.index-landing h1 {

  /* 74px */

  /* 68px */

  /* Light */

  color: #3B3931;
  /* Figma'dan gelen gerçek renk */
  letter-spacing: -0.005em;
  margin: 0;

  opacity: 0.85;
  /* Görsel olarak light görünür */

  text-align: center;
  font-size: 74px;
  font-family: 'Financier Display', serif;
  font-weight: 300;
  line-height: 68px;
  word-wrap: break-word;



}

.index-highlight {
  background-color: #974435;
  /* tahmini background rengi */
  color: #FFA2A2;
  /* Figma'da yazının gerçek rengi */
  padding: 8px 18px;
  border-radius: 28px;
  font-size: inherit;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.index-subtext {
  margin-top: 140px;
  /* ← GÜNCELLENDİ */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.index-icon {
  width: 24px;
  height: 44px;
  display: block;
  overflow: visible;
}

.index-text-group {
  text-align: center;
}

.index-main-line {
  font-family: 'Financier Display', serif;
  font-weight: 500;
  /* Medium */
  font-size: 1.375rem;
  /* 22px → rem olarak: 22 / 16 = 1.375 */
  color: #3B3931;
  margin: 0;




  font-size: 22px;


  letter-spacing: 0.22px;
  word-wrap: break-word;





}

.index-sub-line {
  color: #666;
  font-size: 0.85rem;
  margin: 4px 0 0;
}

.index-divider {
  height: 2px;
  width: 0%;
  background-color: white;
  margin-top: 24px;
  transform-origin: left;
  animation: index-growDivider 1.2s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes index-growDivider {
  0% {
    width: 0%;
  }

  100% {
    width: 20%;
  }
}


/***************************************************************************************/
body.main-page {
  background-color: #f3f1e8;
  margin: 0;
  padding: 0;
  font-family: 'Financier Display', serif;
  color: #3b3931;
}


/* HEADER */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 16px;
  margin: 12px auto 0;
  max-width: 1128px;
  flex-wrap: wrap;
}

.main-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-logo {
  width: 102px;
  height: 32px;
}

.main-patent-block {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-patented-icon {
  width: 26px;
  height: 26px;
  transform: translateY(-6px);
  /* ikon yukarı taşındı */
}

.main-patented-text {
  font-family: 'Neue Haas Unica W1G', sans-serif;
  font-size: 12px;
  color: #000000;
  line-height: 1;
  transform: translateY(-6px);
  /* sadece yazıyı yukarı taşı */
}

.main-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #000000;
  font-family: 'Neue Haas Unica W1G', sans-serif;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: normal;
  margin-top: 8px;
  display: inline-block;
}

/* Sadece Kullanıcı Girişi'nde çerçeve olacak */
.main-nav-item {
  display: inline-block;
  padding: 8px 8px;
  font-size: 14px;
  font-family: 'Neue Haas Unica W1G', sans-serif;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #f3f0e7;
  /* sadece bu linke çerçeve */
  background-color: #fff;
}

.main-contact-btn {
  display: inline-block;
  padding: 8px 8px;
  font-size: 14px;
  font-family: 'Neue Haas Unica W1G', sans-serif;
  background-color: #1f1f1f;
  /* dark color */
  border-radius: 8px;
  margin-left: 10px;
  text-decoration: none;
  color: #ffffff !important;
  /* <- garanti çözüm */
}

.main-contact-btn:visited {
  color: #ffffff !important;
}

/* Menü iconu (mobilde) */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobil Menü Overlay */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100vw;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);


  z-index: 9999;

  max-height: 0;
  overflow: hidden;

  transition: max-height 0.3s ease;
}

.mobile-menu.open {
  max-height: 300px;
}

/* Menü Header (Kapat Butonu) */
.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 12px 24px;
}

.menu-close {
  font-size: 48px;
  cursor: pointer;
}

/* Menü Linkleri */
.mobile-menu-content {
  display: flex;
  flex-direction: column;
}

.mobile-menu-content a {
  font-size: 16px;
  font-family: 'Neue Haas Unica W1G', sans-serif;
  color: #000000;
  text-decoration: none;
  padding: 12px 24px;

  border-bottom: 1px solid #f3f0e7;
}


/* Mobil Menü'de Kullanıcı Girişi Linki */
.mobile-menu-content .main-nav-item {
  display: block;
  padding: 12px 24px;

  font-size: 16px;
  font-family: 'Neue Haas Unica W1G', sans-serif;

  color: #000;
  text-decoration: none;

  border: 1px solid #f3f1e8;
  border-radius: 8px;

  margin: 12px 24px;

  background-color: #fff;

  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-menu-content .main-nav-item:hover {
  background-color: #f3f0e7;
  color: #000;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}


/***************************************************************************************/


.main-hero {

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  /* Eğer kesinlikle yan yana istiyorsak */
  max-width: 1176px;
  /* Azıcık arttırıldı */
  margin: 0 auto;
  padding: 24px 24px;
  gap: 20px;
}

.main-hero-video {
  flex-shrink: 0;
}

.video-container {
  width: 583px;
  height: 750px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-hero-content {
  max-width: 540px;
  /* height: 750px; <-- BUNU KALDIR!! */
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #3B3931;

  text-align: right;
  /* Tüm metni sağa yasla */
}


.main-hero-content h1 {
  font-family: 'Financier Display', serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 68px;
  color: #3B3931;
  margin: 0 0 16px 0;
}

.main-highlight {
  background-color: #974435;
  /* Arka plan rengi */
  color: #FFA2A2;
  /* Yazı rengi */
  padding: 6px 14px;
  border-radius: 20px;

  font-size: 70px;
  line-height: 68px;
  font-weight: 300;

}

.main-hero-content p {
  font-family: 'Neue Haas Unica W1G', sans-serif;
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
  color: #3B3931;
}

/* ✅ MOBİL GÖRÜNÜM (767px altı) */
@media (max-width: 767px) {
  .main-hero {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 24px;
  }

  .video-container {
    width: 100%;
    max-width: 583px;
    height: auto;
  }

  .main-hero-content {
    max-width: 100%;
    text-align: center;
    justify-content: flex-start;
  }

  .main-hero-content h1 {
    font-size: 32px;
  }
}

/* ⚡️ ORTA BOYUT EKRANLAR (1024px altı) */
@media (max-width: 1024px) {
  .main-hero {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 24px;
  }

  .video-container {
    width: 100%;
    max-width: 583px;
    height: auto;
  }

  .main-hero-content {
    max-width: 100%;
    text-align: center;
    justify-content: flex-start;
  }
}


/***************************************************************************************/



.main-partners {

  padding: 12px 24px;
  display: flex;
  justify-content: center;
}

.partners-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  padding: 0 16px;
}

.partner-item100 {
  height: 60px;
  max-width: 313px;
  object-fit: contain;
}

.partner-itemhilton {
  height: 54px;
  max-width: 78px;
  object-fit: contain;
}

.partner-itemkirman {
  height: 150px;
  max-width: 152px;
  object-fit: contain;
}

.partner-itemdobedan {
  height: 34px;
  max-width: 205px;
  object-fit: contain;
}


.partner-itemtheia {
  height: 64px;
  max-width: 138px;
  object-fit: contain;
}

.partner-title {
  height: auto;
  max-height: 60px;
}


/***************************************************************************************/



.info-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 12px 24px;
  max-width: 1176px;
  margin: 0 auto;
}

.info-left {
  flex: 1 1 552px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-top-box {
  background-color: #ebe9db;
  border-radius: 30px;
  padding: 50px;
}

.info-top-box h2 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin: 0;
}

.info-box-right {
  flex: 1 1 520px;
  background-color: #ebe9db;
  border-radius: 30px;
  padding: 32px;
  box-sizing: border-box;
}

.info-percent {
  font-family: 'Financier Display Regular', serif;
  font-size: 90px;
  line-height: 52px;
  letter-spacing: -0.5%;
  color: #974435;
  font-weight: 400;



}

.info-title {
  width: 480px;
  color: var(--black1, #3B3931);
  font-size: 48px;
  font-family: 'Financier Display', serif;
  font-weight: 300;
  line-height: 50px;
}

.info-paragraph {
  font-family: 'Neue Haas Unica W1G', serif;
  max-width: 480px;
  color: #5A5950;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.info-sub-boxes {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.info-sub-box {
  background-color: #ebe9db;
  border-radius: 30px;
  padding: 24px;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.info-sub-box img {
  width: 75px;
  height: 58x;
  margin-bottom: 12px;
}

.info-sub-box h4 {
  font-family: 'Financier Display', serif;
  align-self: stretch;
  color: var(--black1, #3B3931);
  font-size: 34px;
  font-weight: 300;
  line-height: 36px;
  margin: 0 0 8px 0;
}

.info-sub-box p {
  font-family: 'Neue Haas Unica W1G', serif;
  align-self: stretch;
  color: var(--grey-2, #5A5950);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

/* resmi sağa yaslıyor ama mobile görünümde bozuluyor bakılacak
.info-box-right {
  position: relative;
  flex: 1 1 552px;
  background-color: #ebe9db;
  border-radius: 30px;
  padding: 32px;
  box-sizing: border-box;

}

.info-box-right h2 {
  font-family: 'Financier Display', serif;
  color: #3B3931;
  font-size: 48px;
  font-weight: 300;
  line-height: 50px;
  margin: 0 0 12px 0;
}

.info-box-right p {
  font-family: 'Neue Haas Unica W1G', serif;
  color: #5A5950;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.info-box-right .info-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: auto;
   Eğer resmin alt köşesi biraz padding :
     right: 24px;
     bottom: 24px;
  
}
*/

.info-box-right {
  flex: 1 1 552px;
  background-color: #ebe9db;
  border-radius: 30px;
  padding: 32px;
  box-sizing: border-box;

}

.info-box-right h2 {
  font-family: 'Financier Display', serif;
  align-self: stretch;
  color: var(--black1, #3B3931);
  font-size: 48px;
  font-weight: 300;
  line-height: 50px;
  margin: 0 0 12px 0;
}

.info-box-right p {
  font-family: 'Neue Haas Unica W1G', serif;
  max-width: 480px;
  color: #5A5950;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.info-box-right .info-image {
  margin-top: 24px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  max-width: 100%;
  height: auto;
}


/***************************************************************************************/

/* ⚡️ Info Video Section */
.info-video-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;

  max-width: 1176px;
  margin: 32px auto;

  border-radius: 36px;
  overflow: hidden;
  background-color: #EBE9DB;

  /* 👇 İşte burası */
  height: 600px;
}

/* ⚡️ Sol Alan */
.info-video-left {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 64px;
}

.info-video-inner {
  max-width: 560px;
}

.info-video-left h2 {
  font-family: 'Financier Display', serif;
  max-width: 480px;
  color: #3B3931;
  font-size: 48px;
  font-weight: 300;
  line-height: 50px;
  word-wrap: break-word;
  margin: 0;
}

.info-video-left p {
  font-family: 'Neue Haas Unica W1G', serif;
  max-width: 480px;
  color: #5A5950;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 10 0 16px 0;


}

/* ⚡️ Sağ Alan (Video) */
.info-video-right {
  flex: 0 0 585px;
  height: 100%;
  /* ya da istediğin kesin bir yükseklik */
}


.video-image {
  display: block;
  width: 100%;
  height: 100%;
  /* parent kadar uzasın */
  object-fit: cover;
  /* video büyüyüp tam alanı doldursun */
}


@media (max-width: 1024px) {
  .info-video-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* İsteğe bağlı: metni ortalar */
  }

  .info-video-right {
    flex: unset;
    width: 100%;
    /* Video artık tüm genişliği kaplasın */
    max-width: 585px;

    /* İsteğe bağlı bir maks. genişlik */
  }

  .info-video-left {
    padding: 32px;
  }
}




/***************************************************************************************/


.stats-section {
  background-color: #1F1E1C;
  color: white;
  padding: 80px 20px;

}

.stats-title {
  font-family: 'Financier Display', serif;
  color: #fff;
  font-size: 48px;
  font-weight: 300;
  line-height: 50px;
  word-wrap: break-word;
  max-width: 1176px;
  /* stats-grid ile aynı max-width varsa */
  margin: 0 auto 40px auto;
}


.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "card-1 card-2 card-4"
    "card-1 card-3 card-4";
  gap: 24px;
  max-width: 1176px;
  margin: 0 auto;
  padding: 12px 24px;

}

/* Kart Temel Stil */
.stats-card {
  background-color: #32302C;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
  overflow: hidden;
  justify-content: space-between;
}

.stats-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* 👉 h3 ve p arasını azaltır */
}



/* Kart Ölçüleri */
.stats-card-1 {
  grid-area: card-1;
  height: 558px;
}

.stats-card-2 {
  grid-area: card-2;
  height: 267px;
}

.stats-card-3 {
  grid-area: card-3;
  height: 267px;
}

.stats-card-4 {
  grid-area: card-4;
  height: 558px;
}



/* Görsel */
.stats-icon1 {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

/* Görsel */
.stats-icon2 {
  width: 68px;
  height: 68px;
  object-fit: contain;
}


/* Görsel */
.stats-icon3 {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

/* Görsel */
.stats-icon4 {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

/* Başlık */
.stats-card h3 {
  font-family: 'Financier Display', serif;
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  line-height: 31px;
  letter-spacing: 0.6px;
  word-wrap: break-word;
  margin: 0;
}

/* Açıklama */
.stats-card p {
  font-family: 'Neue Haas Unica W1G', serif;
  color: #B0B0AA;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  word-wrap: break-word;
  margin: 0;
}

.stats-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1128px;
  margin: 40px auto 0;
}

.stats-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 16px;
  font-family: 'Neue Haas Unica W1G', sans-serif;
  color: #fff;

  /* Ortak max genişlik */
  max-width: 500px;
}

.stats-badge span {
  font-size: 16px;
  font-family: 'Neue Haas Unica W1G', sans-serif;
  color: #fff;

  /* Tek satırda kalsın */
  white-space: nowrap;

  /* Eğer sığmazsa ... eklemek istersen: */
  /* overflow: hidden;
     text-overflow: ellipsis;
     max-width: 500px; */
}



/* 3. satırda tek kalan badget’i ortala */
.stats-badge:nth-child(5) {
  flex: 1 1 100%;
  justify-content: center;
}



/* ⚡️ Responsive */
@media (max-width: 767px) {
  .stats-badge {
    flex: 1 1 100%;
    /* Mobilde tek sıra */
    justify-content: flex-start;
  }
}




/* Responsive */
@media (max-width: 1024px) {
  .stats-grid {
    display: flex;
    flex-direction: column;
  }

  .stats-card {
    height: auto !important;
  }
}



/***************************************************************************************/


.data-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1176px;
  margin: 32px auto;
  border-radius: 36px;
  overflow: hidden;
  background-color: #EBE9DB;
}

.data-wrapper {
  max-width: 1176px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  align-items: stretch;
  /* <-- BUNU EKLE! */
}

.data-text {
  flex: 1;
  /* Metin kısmı 1 birim */
  padding: 32px;
}

.pie-chart {
  width: 92px;
  height: 92px;
  margin-bottom: 12px;
}

.data-text h2 {
  font-family: 'Financier Display', serif;
  max-width: 480px;
  color: #3B3931;
  font-size: 48px;
  font-weight: 300;
  line-height: 50px;
  word-wrap: break-word;
  margin: 0 0 24px 0;
}

.data-text p {



  font-family: 'Neue Haas Unica W1G', sans-serif;
  max-width: 480px;
  color: #5A5950;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  margin-bottom: 16px;





}

.data-graphic {
  flex: 1.2;
  /* Resim kısmı 1.3 birim, biraz daha geniş */
  border-radius: 0 32px 32px 0;
  overflow: hidden;
  display: flex;
  /* <-- Bununla img dolduracak */

}

.data-graphic img {
  width: 100%;
  height: 100%;
  /* <-- auto yerine bu */
  display: block;

  object-fit: cover;
}

@media (max-width: 767px) {
  .data-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .data-text,
  .data-graphic {
    flex: unset;
    max-width: 100%;
    padding: 24px;
    text-align: center;
  }

  .data-graphic img {
    border-radius: 0 !important;
    /* ✅ Mobilde tüm köşeler dümdüz */
  }
}








/***************************************************************************************/

.insight-section {
  background-color: #F3F1E8;
  padding: 0px 24px;
}

.insight-wrapper {
  max-width: 1176px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.insight-card {
  background-color: #EBE9DB;
  border-radius: 32px;
  padding: 32px;
  flex: 1 1 48%;
  box-sizing: border-box;
}

.insight-card h3 {
  font-family: 'Financier Display', serif;
  color: #3B3931;
  font-size: 48px;
  font-weight: 300;
  line-height: 50px;
  margin: 0;
}

.insight-sub {
  font-family: 'Neue Haas Unica W1G', sans-serif;
  color: var(--grey-2, #5A5950);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  margin-bottom: 20px;

}

.insight-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;

}




.legend-row {
  display: flex;
  justify-content: center;
  /* ORTALAMA */
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}

.legend-icon {
  height: 24px;
  width: auto;
  display: inline-block;
}

.device-wrapper {
  position: relative;
  display: inline-block;
}

.mobile-device {
  position: absolute;
  bottom: 0;
  left: -20px;
  /* sola kaydırmak için negatif değer veriyoruz */
  height: 120px;
  z-index: 2;
}



.desktop-device {
  margin-left: 69px;
  /* sağa kaydırma miktarı, isteğe göre artır */
}


/***************************************************************************************/


.rental-benefits {
  background-color: #252D20;
  color: white;
  padding: 80px 24px;
  font-family: sans-serif;

  /* Section’ı biraz aşağı almak için bunu ekle */
  margin-top: 80px;

}

.title-wrapper {
  max-width: 1176px;
  margin: 0 auto;

  /* background-color: rgba(255,0,0,0.2) */

}

.rental-title {
  font-family: 'Financier Display', serif;
  color: #ffffff;
  /* veya istediğin renk */
  font-size: 48px;
  font-weight: 300;
  line-height: 50px;
  word-wrap: break-word;
  margin-bottom: 24px;
}

.stats-description {
  font-family: 'Neue Haas Unica W1G', sans-serif;
  max-width: 743px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  word-wrap: break-word;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "card-1 card-2 card-4"
    "card-1 card-3 card-4";
  gap: 24px;
  max-width: 1176px;
  margin: 48px auto 0 auto;
  /* Üstten 40px boşluk */
}

/* Kart Temel Stil */
.card {
  background: rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;

  justify-content: space-between;
  /* Görseller üstte, metinler altta */
  box-sizing: border-box;
  overflow: hidden;
}

.card-text {
  margin-top: 8px;
  /* Alt kısımda bir grup halinde tutacak */
}

/* Kart Ölçüleri */
.card-1 {
  grid-area: card-1;
  height: 558px;
}

.card-2 {
  grid-area: card-2;
  height: 267px;
}

.card-3 {
  grid-area: card-3;
  height: 267px;
}

.card-4 {
  grid-area: card-4;
  height: 558px;
}

.card-1 img {
  width: 112px;
  height: 112px;
}

.card-2 img {
  width: 68px;
  height: 68px;
}

.card-3 img {
  width: 68px;
  height: 68px;
}

.card-4 img {
  width: 112px;
  height: 112px;
}


/* Başlık */
.card h3 {
  font-family: 'Financier Display', serif;
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  line-height: 31px;
  letter-spacing: 0.6px;
  word-wrap: break-word;
  margin: 0 0 8px 0;
}

/* Açıklama */
.card p {
  font-family: 'Neue Haas Unica W1G', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  word-wrap: break-word;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .benefits-grid {
    display: flex;
    flex-direction: column;
  }

  .card {
    height: auto !important;
  }
}


/***************************************************************************************/


.faq-section {
  background-color: #191816;
  color: #fff;
  padding: 112px 20px;
  font-family: 'Helvetica', sans-serif;
}

.faq-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.faq-title {
  font-family: 'Financier Display', serif;
  text-align: center;
  color: #DFDDCF;
  font-size: 48px;
  font-weight: 300;
  line-height: 50px;
  word-wrap: break-word;
  margin-bottom: 0;
}

.faq-subtitle {


  font-family: 'Neue Haas Unica W1G', sans-serif;
  text-align: center;
  color: #A5A097;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  margin-top: 0;


}

.faq-item {
  border-top: 1px solid #333;
  padding-top: 24px;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item h3,
.faq-item p {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  word-break: break-word;
}

.faq-item h3 {
  font-family: 'Neue Haas Unica W1G', sans-serif;
  align-self: stretch;
  color: #DFDDCF;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  word-wrap: break-word;
  margin: 0 0 8px;
}

.faq-item p {
  font-family: 'Neue Haas Unica W1G', sans-serif;
  align-self: stretch;
  color: #A5A097;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
  word-wrap: break-word;
  margin: 0;
}



/***************************************************************************************/

/* Footer */
.footer-section {
  background-color: #332217;
  color: white;
  padding: 0;
  font-family: 'Financier Display', serif;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin: 0 20px;
}

.footer-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-overlay {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  max-width: 80%;
}

.footer-heading {
  font-family: 'Financier Display', serif;
  align-self: stretch;
  text-align: center;
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  line-height: 48px;
  word-wrap: break-word;
  margin-bottom: 16px;
}

.footer-address {
  font-family: 'Neue Haas Unica W1G', sans-serif;
  align-self: stretch;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  word-wrap: break-word;
  margin-bottom: 24px;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-contact-box {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 5px 16px;
  display: flex;
  align-items: center;

  justify-content: center;
  /* Yatayda ortalar */
  /* Yeni! Minumum genişlik ekle */
  min-width: 250px;
  /* İsteğine göre 300px, 350px de yapabilirsin */
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Neue Haas Unica W1G', sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  word-wrap: break-word;
}

.contact-item a {
  font-family: 'Neue Haas Unica W1G', sans-serif;
  color: #A8FFBE;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  word-wrap: break-word;
  text-decoration: none;
}

.phone-item a {
  color: #fff !important;
  text-decoration: none;

  font-family: 'Neue Haas Unica W1G', sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  word-wrap: break-word;



}


.contact-item img {
  width: 16px;
  height: 16px;
}

/* Footer bottom */
.footer-bottom {
  margin-top: 64px;
  padding: 0 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-left .social-icon img {
  width: 20px;
  height: 20px;
}

.footer-right .store-badge {
  height: 36px;
  margin-left: 12px;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 20px 16px;
}

.footer-copyright {
  font-size: 12px;
  color: #ccc;
  padding: 0 20px 32px;

  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact-box {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-right {
    display: flex;
    gap: 12px;
  }

  .footer-copyright {
    font-size: 11px;
    text-align: center;
  }
}