.site-wrapper {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  background: #010919;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #010919;
  color: #fff;
  line-height: 1.5;
  min-height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons & Pills */

/* EFEKT: Buton - Figma tasarımına göre (gradient border: üst mavi, alt siyah) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10.667px 21.333px;
  border-radius: 88.889px;
  border: none;
  background-image: linear-gradient(180deg, #0e003b, #0017ff);
  color: #fff;
  font-size: 14.222px;
  font-weight: 300;
  font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: -0.7111px;
  cursor: pointer;
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out,
    background 0.2s ease-out, border-color 0.2s ease-out;
  overflow: visible;
  position: relative;
  background-clip: padding-box;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 88.889px;
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 23, 255, 0.55);
}

/* EFEKT: Primary Buton - Figma tasarımına göre (gradient border: üst mavi, alt siyah) */
.btn-primary {
  border: none;
  background-image: linear-gradient(180deg, #0e003b 0%, #0017ff 100%);
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background-clip: padding-box;
  overflow: visible;
}

/* EFEKT: Primary Buton Hover - %5 büyüme + mavi glow */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25),
      0px 0px 40px rgba(0, 23, 255, 0.6);
  }
}

/* EFEKT: Circle Buton - Figma tasarımına göre (gradient border: üst mavi, alt siyah) */
.btn-circle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background-image: linear-gradient(180deg, #0e003b 0%, #0017ff 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3.556px 3.556px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out,
    background 0.2s ease-out, border-color 0.2s ease-out;
  position: relative;
  background-clip: padding-box;
}

.btn-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

/* EFEKT: Circle Buton Hover - 1px yukarı kayma + mavi glow */
@media (hover: hover) and (pointer: fine) {
  .btn-circle:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 23, 255, 0.55);
  }
}

/* EFEKT: Pill - Figma tasarımına göre (gradient border: üst mavi, alt siyah) */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7.111px;
  padding: 7.111px 14.222px;
  border-radius: 88.889px;
  border: none;
  background: rgba(0, 23, 255, 0.2);
  /* Figma node 0:243 */
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  font-size: 14.222px;
  font-weight: 300;
  letter-spacing: -0.7111px;
  line-height: 1.5;
  height: 28.444px;
  position: relative;
  background-clip: padding-box;
}

.pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 88.889px;
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

.pill-sm {
  font-size: 0.85rem;
  padding-block: 0.35rem;
}

.pill-text strong {
  font-weight: 500;
  letter-spacing: -0.8px;
}

.pill-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0e003b, #0017ff);
}

.pill-icon-image {
  width: 17.778px;
  height: 17.778px;
  flex-shrink: 0;
}

/* Layout helpers */

.section {
  padding: 88.889px 0;
  position: relative;
}

/* Vertical spacing adjustments to match Figma exactly */
/* Hero ends at 960px, About starts at 896px = inline -300px was on section */
#hakkimizda {
  margin-top: 0;
}

/* About pill pushed down to clear hero overlap */
.about-pill {
  margin-top: 305px;
}

/* About ends at 1856px, About Us starts at 1635.56px = -220.44px overlap */
#hizmetler {
  margin-top: -75px;
}

/* About Us ends at 2428.656px, Why Partner starts at 2342.22px = -86.44px overlap */
#neden-biz {
  margin-top: -100.44px;
}

/* Why Partner ends at 3298.78px, Explore starts at 3182.22px = -116.56px overlap */
#kesfet {
  /* Bölüm kaydırırken "ayrı sayfa/ekstra scroll" hissini azaltmak için */
  margin-top: 0;
}

/* Explore ends at 4462.22px, Client Stories starts at 4254.22px = -208px overlap */
#referanslar {
  margin-top: -308px;
}

/* Client Stories ends at 4983.44px, FAQ starts at 4937.78px = -45.66px overlap */
#sss {
  margin-top: -325.66px;
  margin-top: -204px;

}

/* FAQ ends at 5981.45px, CTA starts at 5879.11px = -102.34px overlap */
#iletisim {
  margin-top: -152.34px;
}

/* CTA ends at 6613.33px, Footer starts at 6621.33px = 8px gap */
.footer {
  margin-top: 258px;
}

/* WHY PARTNER (NEDEN BİZ) */

#neden-biz {
  padding: 88.889px 0;
  position: relative;
  overflow: hidden;
}

#neden-biz .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 88.889px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 71.111px;
  position: relative;
  z-index: 2;
}

.why-ellipse {
  position: absolute;
  width: 444.444px;
  height: 444.444px;
  top: calc(50% + 147.38px);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.why-ellipse::after {
  display: none;
}

.why-ellipse-left {
  left: 0;
}

.why-ellipse-right {
  right: 0;
}

.why-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21.333px;
  width: 695.069px;
  max-width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.why-text-container .pill,
.why-text-container .section-title,
.why-text-container .section-desc {
  margin-top: 0;
}

.why-stats-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  height: 451.556px;
  min-height: 451.556px;
}

/* Center Ellipses with Images - Figma exact positions */
.why-center-ellipse {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.why-center-ellipse-1 {
  left: 50%;
  top: calc(50% - 0.38px);
  transform: translate(-50%, -50%);
  width: 133.333px;
  height: 133.333px;
}

.why-center-ellipse-1 .why-center-ellipse-img {
  position: absolute;
  inset: -66.67%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
  filter: blur(60px);
  opacity: 0.8;
}

/* Additional glow effect behind center icon */
.why-center-ellipse-1::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 133.333px;
  height: 133.333px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(0, 23, 255, 0.8) 0%,
      rgba(0, 23, 255, 0.6) 20%,
      rgba(0, 23, 255, 0.4) 40%,
      rgba(0, 23, 255, 0.2) 60%,
      transparent 80%);
  filter: blur(60px);
  z-index: -1;
}

.why-center-ellipse-2 {
  left: 506.67px;
  top: 181.33px;
  width: 88.889px;
  height: 88.889px;
}

.why-center-ellipse-2 .why-center-ellipse-img {
  position: absolute;
  inset: -50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
  filter: blur(40px);
  opacity: 0.7;
}

/* Additional glow effect for second ellipse */
.why-center-ellipse-2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88.889px;
  height: 88.889px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(255, 255, 255, 0.6) 0%,
      rgba(255, 255, 255, 0.4) 30%,
      rgba(255, 255, 255, 0.2) 50%,
      transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

/* Stat Container Background SVG - Figma node-id=0:164, 0:167 */
.why-stat-container-bg {
  position: absolute;
  width: 224px;
  height: 270.222px;
  pointer-events: none;
  z-index: 0;
}

.why-stat-container-bg-left {
  left: calc(50% - 119.11px);
  top: 90.29px;
  transform: translateX(-50%);
}

.why-stat-container-bg-right {
  right: calc(50% - 119.11px);
  top: 90.29px;
  transform: translateX(50%) scaleX(-1);
}

.why-stat-container-bg-img {
  position: absolute;
  width: 100%;
  height: 107.861px;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
  /* Make it pure white by default using filters */
  filter: brightness(0) invert(1) opacity(0.5);
  transition: filter 0.4s ease;
}

.why-stat-container-bg:hover .why-stat-container-bg-img {
  /* Show the original blue SVG color */
  filter: brightness(1) invert(0) opacity(1) drop-shadow(0 0 10px rgba(0, 23, 255, 0.6));
}

.why-stat-container-bg-img-bottom {
  bottom: 0;
  transform: scaleY(-1);
}

.why-stats-column {
  display: flex;
  flex-direction: column;
  gap: 88.889px;
  width: 320px;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.why-stats-column-left {
  align-items: flex-start;
}

.why-stats-column-right {
  align-items: flex-end;
}

.why-stat-wrapper {
  display: flex;
  align-items: center;
  padding-right: 21.333px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .why-stat-wrapper:hover {
    transform: scale(1.05);
    z-index: 10;
  }
}

.why-stat-wrapper-flipped:hover {
  transform: scaleY(-1) scale(1.05);
}

.why-stat-wrapper-flipped {
  transform: scaleY(-1);
}

.why-stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10.667px;
  padding: 21.333px;
  padding-right: 64px;
  margin-right: -21.333px;
  border-radius: 21.333px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  width: 298.667px;
  min-height: 157.333px;
}

/* Right column cards are taller - Figma node-id=0:196, 0:206 */
.why-stats-column-right .why-stat-card {
  min-height: 181.333px;
}

/* EFEKT: Why Stat Card Hover - Mavi gradient (gradient border: üst mavi, alt siyah) */
.why-stat-card {
  position: relative;
  background-clip: padding-box;
}

.why-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 21.333px;
  padding: 0.5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .why-stat-wrapper:hover .why-stat-card {
    border: none;
    background-image: linear-gradient(180deg, #0e003b 0%, #0017ff 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    background-blend-mode: normal, overlay;
    box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25),
      0px 0px 40px rgba(0, 23, 255, 0.6);
  }

  .why-stat-wrapper:hover .why-stat-card::before {
    padding: 0.889px;
    background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
    opacity: 1;
  }

  .why-stat-wrapper:hover .why-stat-card p {
    color: #ffffff;
  }

  .why-stat-wrapper-flipped:hover {
    transform: scaleY(-1) scale(1.05);
  }

  .why-stat-wrapper-flipped .why-stat-card {
    transform: scaleY(-1);
  }
}

.why-stat-card-highlight {
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.1);
  background-image: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  background-clip: padding-box;
}

.why-stat-card-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 21.333px;
  padding: 0.5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .why-stat-wrapper:hover .why-stat-card-highlight {
    border: none;
    background-image: linear-gradient(180deg, #0e003b 0%, #0017ff 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    background-blend-mode: normal, overlay;
    box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25),
      0px 0px 40px rgba(0, 23, 255, 0.6);
  }

  .why-stat-wrapper:hover .why-stat-card-highlight::before {
    padding: 0.889px;
    background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
    opacity: 1;
  }

  .why-stat-wrapper:hover .why-stat-card-highlight p {
    color: #ffffff;
  }
}

.why-stat-card-highlight::before {
  padding: 0.5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-stat-card h3 {
  font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 21.333px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -1.0667px;
  color: #ffffff;
  margin: 0;
  width: 230.222px;
  /* Figma node-id=0:173 */
}

.why-stats-column-left .why-stat-card:first-child h3 {
  width: 230.222px;
  /* Figma node-id=0:173 */
}

.why-stats-column-left .why-stat-card:last-child h3 {
  width: 226.667px;
  /* Figma node-id=0:183 */
}

.why-stats-column-right .why-stat-card h3 {
  width: 228.444px;
  /* Figma node-id=0:207 */
}

.why-stat-card p {
  font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.8px;
  color: #cccccc;
  margin: 0;
}

.why-stats-column-left .why-stat-card:first-child p {
  width: 213.333px;
  /* Figma node-id=0:174 */
}

.why-stats-column-left .why-stat-card:last-child p {
  width: 228.444px;
  /* Figma node-id=0:184 */
}

.why-stats-column-right .why-stat-card:first-child p {
  width: 220.444px;
  /* Figma node-id=0:198 */
}

.why-stats-column-right .why-stat-card:last-child p {
  width: 213.333px;
  /* Figma node-id=0:208 */
}

.why-stat-card-highlight p {
  color: #cccccc;
}

.why-stat-dots {
  position: absolute;
  right: 20.44px;
  top: 20.44px;
  width: 7.111px;
  height: 138.667px;
  pointer-events: none;
  z-index: 1;
}

.why-stats-column-right .why-stat-card .why-stat-dots {
  right: 21.33px;
  top: 21.33px;
}

.why-stat-dots-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* EFEKT: Why Stat İkon - Figma tasarımına göre (gradient border: üst mavi, alt siyah) */
.why-stat-icon {
  width: 42.667px;
  height: 42.667px;
  flex-shrink: 0;
  margin-right: -21.333px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 88.889px;
  border: none;
  background: linear-gradient(180deg, #0e003b 0%, #0017ff 100%);
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  padding: 10.667px 21.333px;
  position: relative;
  overflow: visible;
  z-index: 5;
  align-self: center;
  background-clip: padding-box;
}

.why-stat-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 88.889px;
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

/* EFEKT: Why Stat İkon 1 - Sol Üst (İleriye Dönük Stratejiler) - Figma node-id=0:178 */
.why-stat-icon-1 {
  margin-bottom: 0;
  align-self: center;
}

/* EFEKT: Why Stat İkon 2 - Sol Alt (Fark Yaratan Yaratıcılık) - Figma node-id=0:188 */
.why-stat-icon-2 {
  margin-top: 0;
  align-self: center;
}

/* EFEKT: Why Stat İkon 3 - Sağ Üst (Güvenilir Uzmanlık) - Figma node-id=0:202 */
.why-stat-icon-3 {
  margin-top: 0;
  align-self: center;
}

/* EFEKT: Why Stat İkon 4 - Sağ Alt (Hedefe Uygun Büyüme) - Figma node-id=0:212 */
.why-stat-icon-4 {
  margin-top: 0;
  align-self: center;
}

/* Remove the pseudo-element line - using SVG backgrounds instead */

.why-stat-wrapper-flipped .why-stat-icon {
  transform: scaleY(-1);
}

/* Flipped wrapper içindeki ikonlar için özel stiller */
.why-stat-wrapper-flipped .why-stat-icon-3 {
  transform: scaleY(-1);
}

.why-stat-wrapper-flipped .why-stat-icon-4 {
  transform: scaleY(-1);
}

.why-stat-icon img,
.why-stat-icon svg {
  width: 21.333px;
  height: 21.333px;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
  visibility: visible;
  opacity: 1;
}

/* Flipped icon images need to be rotated back */
.why-stat-wrapper-flipped .why-stat-icon {
  transform: rotate(180deg) scaleY(-1);
}

.why-stat-wrapper-flipped .why-stat-icon img,
.why-stat-wrapper-flipped .why-stat-icon svg {
  transform: rotate(180deg) scaleY(-1);
}

.why-center-icon-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 88.889px;
  border: none;
  background: linear-gradient(180deg, #0e003b 0%, #0017ff 100%);
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25), 1 0px 0px 40px rgba(0, 23, 255, 0.6);
  padding: 10.667px 21.333px;
  z-index: 5;
  background-clip: padding-box;
  animation: floatCenterIcon 4s ease-in-out infinite;
}

@keyframes floatCenterIcon {

  0%,
  100% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-50%, calc(-50% - 15px));
  }
}

/* Additional glow behind center icon container */
.why-center-icon-container::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(0, 23, 255, 0.5) 0%,
      rgba(0, 23, 255, 0.3) 30%,
      rgba(0, 23, 255, 0.15) 50%,
      transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.why-center-icon-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 88.889px;
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

.why-center-icon {
  width: 56px;
  height: 56px;
}

/* Section background glows to match Figma ellipses */

#neden-biz::before,
#kesfet::before,
#referanslar::before,
#sss::before,
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

#hakkimizda::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 140.55px));
  width: 578.514px;
  height: 578.514px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(0, 23, 255, 0.4),
      rgba(0, 23, 255, 0.2) 40%,
      transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

#hakkimizda::after {
  content: "";
  position: absolute;
  bottom: -0.2px;
  left: 0;
  width: 100%;
  height: 444.444px;
  background: linear-gradient(to bottom,
      rgba(1, 9, 25, 0) 0%,
      #010919 70%);
  z-index: 1;
  pointer-events: none;
}

#neden-biz::before {
  display: none;
}

/* EXPLORE GALAXY - Complete Redesign from Figma */

#kesfet {
  padding: 88.889px 0;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background: #010919;
}

#kesfet .container.explore-container {
  max-width: 1280px;
  width: 100%;
  padding: 88.889px;
  display: flex;
  flex-direction: column;
  gap: 71.111px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  /* Galaksi bölümünü gereksiz uzatıp "ayrı sayfa/scroll" hissi vermesin */
  min-height: auto;
}

/* EFEKT: Explore Galaksi Arka Plan - Statik (döndürme kapalı, Figma'ya uygun) */
/* Background SVG (Group 1) - Absolute centered */
.explore-bg-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1257.079px;
  height: 1257.079px;
  pointer-events: none;
  z-index: 1;
  /* NOTE: Rotation makes the blur/glow look like it's "roaming". Keep static to match Figma. */
  animation: none;
}

/* EFEKT: Galaksi Dönme Animasyonu - Şu an kapalı (Figma'ya uygun) */
@keyframes rotateGalaxy {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.explore-bg-svg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Text Container */
.explore-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21.333px;
  position: relative;
  z-index: 3;
}

.explore-text-container .pill,
.explore-text-container .section-title {
  margin-top: 0;
}

/* Explore Images Container - Horizontal flex row */
.explore-images-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* DEĞİŞTİ: flex-start yerine center yapıldı */
  pointer-events: none;
  z-index: 3;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  /* Eksi margin'i iptal edip nefes aldırıyoruz */
  height: 110px;
  /* Mobilde yüksekliği biraz kısaltabilirsin, çok yer kaplamasın */
  overflow: hidden;
  /* Dışarı taşanları gizler */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 15%,
      black 30%,
      black 70%,
      rgba(0, 0, 0, 0.4) 85%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 15%,
      black 30%,
      black 70%,
      rgba(0, 0, 0, 0.4) 85%,
      transparent 100%);
}

/* Explore Images Wrapper for infinite scroll */
.explore-images-wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  /* DEĞİŞTİ: flex-start yerine center yapıldı */
  animation: none;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  width: fit-content;
}



/* Explore Images Infinite Scroll Animation */
@keyframes exploreScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    /* 2 sets - move by 50%. Gap is 16px, half = 8px */
    transform: translateX(calc(-50% - 8px));
  }
}

/* Center Ellipse Container - Exact Figma implementation (behind center circle) */
.explore-center-ellipse {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 133.333px;
  height: 133.333px;
  pointer-events: none;
  z-index: 1;
  /* behind the circles - ARKADA KALACAK */
  cursor: pointer;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* EFEKT: Explore Merkez Elips Hover - sadece parlaklık artışı, z-index değişmez (arkada kalır) */
@media (hover: hover) and (pointer: fine) {
  .explore-center-ellipse:hover {
    transform: translate(-50%, -50%);
    /* z-index değişmez - arkada kalır */
  }
}

.explore-center-ellipse-img {
  position: absolute;
  inset: -66.67%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
  transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(2) drop-shadow(0 0 60px rgba(0, 23, 255, 1));
  mask-image: radial-gradient(ellipse at center, black 30%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
}

/* EFEKT: Explore Merkez Elips Hover - Parlaklık artışı + mavi glow */
@media (hover: hover) and (pointer: fine) {
  .explore-center-ellipse:hover .explore-center-ellipse-img {
    filter: brightness(2.2) drop-shadow(0 0 70px rgba(0, 23, 255, 1));
    mask-image: radial-gradient(ellipse at center, black 30%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  }
}

/* EFEKT: Explore Image - Figma tasarımına göre (gradient border: üst mavi, alt siyah) */
/* Explore Images - Horizontal row */
.explore-image {
  position: relative;
  border-radius: 88.889px;
  border: none;
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  background: #e3e3e3;
  overflow: hidden;
  cursor: pointer;
  pointer-events: auto;
  flex-shrink: 0;
  z-index: 3;
  /* above the center ellipse light */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    z-index 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-clip: padding-box;
}


.explore-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  border-radius: 88.889px;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Explore - Always-active focus item (arrow controls) */
.explore-image.active {
  transform: scale(1.15) !important;
  opacity: 1 !important;
  z-index: 25;
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25),
    0px 0px 55px rgba(0, 23, 255, 0.75);
}

.explore-image.active .explore-image-img {
  opacity: 1 !important;
}

/* EFEKT: Explore Görseller Hover - %50 büyüme + öne çıkma + glow */
@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {
  .explore-image:hover {
    transform: scale(1.2);
    z-index: 20;
    box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25),
      0px 0px 40px rgba(0, 23, 255, 0.8);
    opacity: 1 !important;
  }
}

/* EFEKT: Explore Görseller Hover - Görsel opacity tam görünür */
@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {
  .explore-image:hover .explore-image-img {
    opacity: 1;
  }
}

/* Image sizes - All circles same size */
.explore-image-1,
.explore-image-2,
.explore-image-3,
.explore-image-4,
.explore-image-5,
.explore-image-6,
.explore-image-7 {
  width: 88.889px;
  height: 88.889px;
}

/* Ascending opacity left-to-right matching reference image */
.explore-image-1 {
  opacity: 0.15;
}

.explore-image-2 {
  opacity: 0.25;
}

.explore-image-3 {
  opacity: 0.45;
}

.explore-image-4 {
  opacity: 0.7;
}

.explore-image-5 {
  opacity: 1;
}

.explore-image-6 {
  opacity: 0.85;
}

.explore-image-7 {
  opacity: 1;
}

/* CLIENT STORIES / TESTIMONIALS */

#referanslar {
  padding: 88.889px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 71.111px;
  position: relative;
  overflow: visible;
  background: #010919;
}

#referanslar .container {
  max-width: 1280px;
  width: 100%;
  padding: 0 88.889px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 71.111px;
  position: relative;
  z-index: 2;
}

/* CLIENT STORIES SECTION - Figma node-id=0-262 */
.client-stories-section {
  position: relative;
  padding: 88.889px 0;
  overflow: visible;
}

/* EFEKT: Client Stories Arka Plan Işığı - KAPALI (kötü göründüğü için) */
/* Background Glow Container - Figma node-id=0-263 */
.client-stories-bg-glow {
  position: absolute;
  left: 50%;
  top: calc(50% + 138.5px);
  transform: translate(-50%, -50%);
  width: 444.444px;
  height: 444.444px;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
  display: none;
  /* Kötü göründüğü için gizlendi */
}

.client-stories-bg-img {
  position: absolute;
  inset: -100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
  pointer-events: none;
}

.testimonials-bg-glow::before {
  content: "";
  position: absolute;
  inset: -139.04%;
  background: radial-gradient(circle at center,
      rgba(0, 102, 255, 1) 0%,
      rgba(0, 70, 255, 0.95) 10%,
      rgba(0, 23, 255, 0.9) 20%,
      rgba(0, 23, 255, 0.7) 30%,
      rgba(0, 23, 255, 0.5) 40%,
      rgba(0, 23, 255, 0.3) 50%,
      rgba(0, 23, 255, 0.2) 60%,
      transparent 75%);
  filter: blur(160px);
  border-radius: 50%;
}

.testimonials-bg-glow::after {
  content: "";
  position: absolute;
  inset: -100%;
  background: radial-gradient(circle at center,
      rgba(100, 150, 255, 0.6) 0%,
      rgba(0, 102, 255, 0.4) 30%,
      rgba(0, 23, 255, 0.2) 50%,
      transparent 70%);
  filter: blur(120px);
  border-radius: 50%;
}

/* Text Container */
.testimonials-text-container,
.client-stories-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21.333px;
  width: 695.069px;
  max-width: 100%;
  position: relative;
  z-index: 3;
  text-align: center;
}

.testimonials-text-container .pill,
.testimonials-text-container .section-title,
.testimonials-text-container .section-desc,
.client-stories-text-container .pill,
.client-stories-text-container .section-title,
.client-stories-text-container .section-desc {
  margin-top: 0;
}

.section-title--testimonials,
.section-title--client-stories {
  font-size: 42.667px;
  letter-spacing: -2.1333px;
  line-height: 1.2;
  width: 100%;
}

.section-title--testimonials span:first-child,
.section-title--client-stories span:first-child {
  font-weight: 400;
}

.section-title--testimonials span:last-child,
.section-title--client-stories span:last-child {
  font-weight: 600;
}

.section-desc--testimonials,
.section-desc--client-stories {
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: #cccccc;
  text-align: center;
  width: 100%;
  margin: 0;
}

/* Testimonials Container - Figma node-id=0-272 */
.testimonials-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  overflow: hidden;
  z-index: 3;
  padding: 40px 0;
  margin: 0;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0,
      rgba(0, 0, 0, 0.02) 20px,
      rgba(0, 0, 0, 0.08) 80px,
      rgba(0, 0, 0, 0.4) 200px,
      black 400px,
      black calc(100% - 400px),
      rgba(0, 0, 0, 0.4) calc(100% - 200px),
      rgba(0, 0, 0, 0.08) calc(100% - 80px),
      rgba(0, 0, 0, 0.02) calc(100% - 20px),
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0,
      rgba(0, 0, 0, 0.02) 20px,
      rgba(0, 0, 0, 0.08) 80px,
      rgba(0, 0, 0, 0.4) 200px,
      black 400px,
      black calc(100% - 400px),
      rgba(0, 0, 0, 0.4) calc(100% - 200px),
      rgba(0, 0, 0, 0.08) calc(100% - 80px),
      rgba(0, 0, 0, 0.02) calc(100% - 20px),
      transparent 100%);
}

/* Testimonials Wrapper for infinite scroll */
.testimonials-wrapper {
  display: flex;
  gap: 21.333px;
  align-items: flex-start;
  justify-content: flex-start;
  animation: testimonialsScroll 40s linear infinite;
  will-change: transform;
  position: relative;
  z-index: 2;
  width: fit-content;
}

/* Testimonials Infinite Scroll Animation */
@keyframes testimonialsScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-25% - 5.333px));
  }
}


/* EFEKT: Testimonial Card - Normal halde drop shadow var */
/* Testimonial Card - Figma node-id=0-273, 0-282, 0-291, 0-300, 0-309 */

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21.333px;
  padding: 21.333px;
  width: 400px;
  min-width: 400px;
  flex-shrink: 0;
  border-radius: 21.333px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: visible;
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
  height: auto;
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.testimonial-card {
  position: relative;
  background-clip: padding-box;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 21.333px;
  padding: 0.5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
  .testimonial-card:hover {
    transform: scale(1.05);
    z-index: 10;
    background-image: linear-gradient(180deg, rgba(14, 0, 59, 1) 0%, rgba(0, 23, 255, 1) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    background-blend-mode: normal, overlay;
    border: none;
    box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  }

  .testimonial-card:hover::before {
    padding: 0.889px;
    background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
    opacity: 1;
  }

  .testimonial-card:hover .testimonial-header p {
    color: #ffffff;
  }
}

/* EFEKT: Testimonial Card Highlight - Aktif/seçili halde gradient (gradient border: üst mavi, alt siyah) */
.testimonial-card-highlight {
  background-image: linear-gradient(180deg, rgba(14, 0, 59, 1) 0%, rgba(0, 23, 255, 1) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
  background-blend-mode: normal, overlay;
  border: none;
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
}

.testimonial-card-highlight::before {
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .testimonial-card-highlight:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  }
}

/* Testimonial Dots */
.testimonial-dots {
  position: absolute;
  top: 21.33px;
  left: 21.33px;
  width: 140px;
  height: 8px;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.testimonial-card-highlight .testimonial-dots {
  top: 20.44px;
  left: 20.44px;
}

.testimonial-dots-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.testimonial-dots img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

/* Create 7 dots with fading effect */
.testimonial-dots::before {
  content: '';
  display: flex;
  gap: 8px;
  width: 100%;
  height: 100%;
}

.testimonial-dots:nth-child(1)::before {
  content: '• • • • • • •';
  display: flex;
  gap: 8px;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.2);
  align-items: center;
  justify-content: space-between;
}

.testimonial-card:nth-child(1) .testimonial-dots::before {
  color: rgba(255, 255, 255, 0.2);
}

.testimonial-card:nth-child(1) .testimonial-dots::before {
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.6) 14.28%,
      rgba(255, 255, 255, 0.4) 28.57%,
      rgba(255, 255, 255, 0.3) 42.85%,
      rgba(255, 255, 255, 0.2) 57.14%,
      rgba(255, 255, 255, 0.15) 71.42%,
      rgba(255, 255, 255, 0.1) 85.71%,
      rgba(255, 255, 255, 0.05) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonial-card:nth-child(2) .testimonial-dots::before {
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.8) 14.28%,
      rgba(255, 255, 255, 0.6) 28.57%,
      rgba(255, 255, 255, 0.4) 42.85%,
      rgba(255, 255, 255, 0.3) 57.14%,
      rgba(255, 255, 255, 0.2) 71.42%,
      rgba(255, 255, 255, 0.15) 85.71%,
      rgba(255, 255, 255, 0.1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonial-card:nth-child(3) .testimonial-dots::before {
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.1) 14.28%,
      rgba(255, 255, 255, 0.8) 28.57%,
      rgba(255, 255, 255, 0.6) 42.85%,
      rgba(255, 255, 255, 0.4) 57.14%,
      rgba(255, 255, 255, 0.3) 71.42%,
      rgba(255, 255, 255, 0.2) 85.71%,
      rgba(255, 255, 255, 0.15) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonial-card:nth-child(4) .testimonial-dots::before {
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.1) 14.28%,
      rgba(255, 255, 255, 0.15) 28.57%,
      rgba(255, 255, 255, 0.8) 42.85%,
      rgba(255, 255, 255, 0.6) 57.14%,
      rgba(255, 255, 255, 0.4) 71.42%,
      rgba(255, 255, 255, 0.3) 85.71%,
      rgba(255, 255, 255, 0.2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonial-card:nth-child(5) .testimonial-dots::before {
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.1) 14.28%,
      rgba(255, 255, 255, 0.15) 28.57%,
      rgba(255, 255, 255, 0.2) 42.85%,
      rgba(255, 255, 255, 0.8) 57.14%,
      rgba(255, 255, 255, 0.6) 71.42%,
      rgba(255, 255, 255, 0.4) 85.71%,
      rgba(255, 255, 255, 0.3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Testimonial Avatar (gradient border: üst mavi, alt siyah) */
.testimonial-avatar {
  width: 56.889px;
  height: 56.889px;
  border-radius: 88.889px;
  border: none;
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  background-clip: padding-box;
}

.testimonial-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 88.889px;
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

.testimonial-avatar-gradient {
  background: transparent;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
  .testimonial-card:hover .testimonial-avatar-gradient {
    background: linear-gradient(180deg, #0e003b 0%, #0017ff 100%);
  }
}

.testimonial-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.2;
  position: absolute;
  inset: 0;
  border-radius: 88.889px;
  pointer-events: none;
  display: block;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.2;
  position: absolute;
  inset: 0;
  border-radius: 88.889px;
  pointer-events: none;
}

/* Testimonial Header */
.testimonial-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  text-align: center;
  line-height: 1.5;
}

.testimonial-header h3 {
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
  color: #ffffff;
  margin: 0;
}

.testimonial-header p {
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14.222px;
  font-weight: 400;
  letter-spacing: -0.2844px;
  color: #cccccc;
  margin: 0;
}

.testimonial-card-highlight .testimonial-header p {
  color: #ffffff;
}

/* Testimonial Text */
.testimonial-text {
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.32px;
  text-align: center;
  color: #ffffff;
  margin: 0;
  width: 100%;
}

/* ========================================= */
/* SCROLL REVEAL ANIMATIONS                 */
/* ========================================= */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay utility classes for staggered reveals */
.reveal-delay-100 {
  transition-delay: 0.1s;
}

.reveal-delay-200 {
  transition-delay: 0.2s;
}

.reveal-delay-300 {
  transition-delay: 0.3s;
}

.reveal-delay-400 {
  transition-delay: 0.4s;
}

/* ========================================= */

#sss {
  position: relative;
  overflow: hidden;
}

#sss::before {
  background: radial-gradient(circle at 0% 50%,
      rgba(0, 23, 255, 0.25),
      transparent 60%),
    radial-gradient(circle at 100% 50%,
      rgba(0, 23, 255, 0.25),
      transparent 60%);
  z-index: -1;
}

/* FAQ Background Ellipses */
.faq-ellipse {
  position: absolute;
  width: 444.444px;
  height: 444.444px;
  top: calc(50% + 0.27px);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: -1;
  overflow: visible;
}

.faq-ellipse-img {
  position: absolute;
  inset: -100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.faq-ellipse-left {
  left: 0;
}

.faq-ellipse-right {
  right: 0;
}

.footer::before {
  background: radial-gradient(circle at 0% 60%,
      rgba(0, 23, 255, 0.3),
      transparent 60%),
    radial-gradient(circle at 100% 60%,
      rgba(0, 23, 255, 0.3),
      transparent 60%);
}

.section-center {
  text-align: center;
}

.section-title {
  margin-top: 0;
  font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 42.667px;
  font-weight: 300;
  letter-spacing: -2.1333px;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}

.section-title span {
  display: block;
}

.section-title span:last-child {
  font-weight: 600;
}

/* Section title variants to match specific Figma text styles */

.section-title--about {
  font-size: 42.667px;
  letter-spacing: -2.1333px;
  max-width: 661.333px;
  margin-left: auto;
  margin-right: auto;
}

.section-title--why {
  font-size: 42.667px;
  letter-spacing: -0.8533px;
  line-height: 1.2;
  font-weight: 400;
}

.section-title--why span:first-child {
  font-size: 42.667px;
  font-weight: 400;
}

.section-title--why span:last-child {
  font-size: 66.667px;
  font-weight: 600;
}

.section-desc--why {
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: #cccccc;
}

.section-title--services {
  font-size: 53.724px;
  letter-spacing: -1.0745px;
  width: 855.111px;
  max-width: 100%;
}

.section-title--why {
  font-size: 42.667px;
  letter-spacing: -0.8533px;
}

.section-title--why span:last-child {
  font-size: 66.667px;
  letter-spacing: -0.8533px;
}

.section-title--explore {
  width: 403.556px;
}

.section-title--explore span:first-child {
  font-weight: 400;
  color: #ffffff;
}

.section-title--explore span:last-child {
  letter-spacing: -0.8px;
  font-weight: 600;
  color: #0017ff;
}

.gradient-text {
  background-image: linear-gradient(180deg, #ffffff, #0017ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-desc {
  margin-top: 1rem;
  max-width: 680px;
  margin-inline: auto;
  color: #cccccc;
  font-size: 1rem;
}

.section-desc--why {
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: #cccccc;
  text-align: center;
  max-width: 695.069px;
  margin-top: 21.333px;
}

/* HERO */

.hero {
  position: relative;
  height: 960px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 88.889px;
  overflow: visible;
  background: #010919;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.hero-ellipses {
  position: absolute;
  left: -331.722px;
  bottom: -380.200px;
  width: 1943.436px;
  height: 1147.962px;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.hero-ellipses-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Hero Stars */
.hero-stars {
  position: absolute;
  width: 1280px;
  height: 960px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

/* EFEKT: Hero Ellipses/Stars - About hover'da sönme efekti */
/* 1) About hover -> dim Hero effects (only vertical/visual, no layout impact) */
.hero-ellipses,
.hero-stars {
  transition: opacity 0.25s ease;
}



.star {
  position: absolute;
  width: 1.778px;
  height: 1.778px;
  background: #ffffff;
  border-radius: 88.889px;
  opacity: 0.5;
  filter: blur(1.778px);
}

.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10.667px 88.889px;
  width: 100%;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 7.111px;
}

.logo-mark {
  width: 68.444px;
  height: 51.556px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text {
  font-family: "Geist", "Alexandria", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 32.091px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.6418px;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.logo-text img {
  height: 22px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  display: block;
}

.nav-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 0;
  padding: 0;
  border-bottom: 0.889px solid rgba(255, 255, 255, 0.5);
}

.nav-close-btn {
  display: none;
}

.nav-center>.nav-link {
  gap: 0;
}

.nav-center>.nav-link+.nav-link {
  margin-left: 0;
}

.nav-link {
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14.222px;
  line-height: 1.5;
  letter-spacing: -0.2844px;
  font-weight: 400;
  color: #cccccc;
  position: relative;
  padding: 10.667px 21.333px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: calc(50% - 0.99px);
  top: calc(50% + 11.28px);
  transform: translateX(-50%) translateY(-50%) scaleX(0);
  width: 81.778px;
  height: 21.333px;
  border-radius: 999px;
  background: #0017ff;
  filter: blur(8px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
  z-index: -1;
}

.nav-link.active {
  color: #ffffff;
  font-weight: 600;
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  border-bottom: 0.889px solid #0017ff;
}

/* EFEKT: Nav Link Active - Mavi arka plan glow efekti */
.nav-link.active::after {
  transform: translateX(-50%) translateY(-50%) scaleX(1);
  opacity: 0.6;
  background: #0017ff;
  filter: blur(6px);
}

.nav-link:hover {
  color: #ffffff;
  font-weight: 600;
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  border-bottom: 0.889px solid #0017ff;
}

/* EFEKT: Nav Link Hover - Mavi arka plan glow efekti */
.nav-link:hover::after {
  transform: translateX(-50%) translateY(-50%) scaleX(1);
  opacity: 0.6;
  background: #0017ff;
  filter: blur(6px);

}

/* EFEKT: Hakkımızda Aktif/Hover - Ana Sayfa efektini söndürme */
/* Hakkımızda aktif/hover olduğunda Ana Sayfa efektini söndür */
.nav-link[href="#hakkimizda"].active~.nav-link[href="#anasayfa"],
.nav-link[href="#hakkimizda"]:hover~.nav-link[href="#anasayfa"] {
  color: #666666;
  font-weight: 400;
  border-bottom: none;
}

/* EFEKT: Hakkımızda Aktif/Hover - Ana Sayfa glow efektini gizleme */
.nav-link[href="#hakkimizda"].active~.nav-link[href="#anasayfa"]::after,
.nav-link[href="#hakkimizda"]:hover~.nav-link[href="#anasayfa"]::after {
  transform: translateX(-50%) translateY(-50%) scaleX(0);
  opacity: 0;
}

/* 1. Kapsayıcıda herhangi bir linke hover yapıldığında, AKTİF olan ama HOVER edilmeyen linki söndür */
.nav-center:has(.nav-link:hover) .nav-link.active:not(:hover) {
  color: #666666;
  font-weight: 400;
  border-bottom-color: transparent;
}

/* 2. Aynı durumda aktif linkin glow (::after) efektini de gizle */
.nav-center:has(.nav-link:hover) .nav-link.active:not(:hover)::after {
  transform: translateX(-50%) translateY(-50%) scaleX(0);
  opacity: 0;
  filter: blur(8px);
}

/* 3. Geçişlerin yumuşak olması için mevcut .nav-link ve .nav-link.active sınıflarına renk geçişi ekle */
.nav-link {
  transition: color 0.2s ease, border-color 0.2s ease, font-weight 0.2s ease;
}

.hero-vertical-container {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 88.889px;
  width: 100%;
}

.hero-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10.667px;
  width: 1102.222px;
  max-width: 100%;
  text-align: center;
  position: relative;
  z-index: 5;
}

.hero-title {
  margin-top: 0;
  font-family: "Geist", "Alexandria", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 75.852px;
  line-height: 1.2;
  letter-spacing: -3.7926px;
  background-image: linear-gradient(180deg, #ffffff, #0017ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.hero-title span {
  display: block;
}

.hero-title .light {
  font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 300;
}

.hero-subtitle {
  max-width: 447.889px;
  margin: 0;
  color: #cccccc;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.8px;
  font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.hero-stats-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42.667px;
  width: 100%;
  position: relative;
  z-index: 5;
}

.hero-stats {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1102.222px;
  max-width: 100%;
  height: 145.778px;
  border-radius: 21.333px;
  overflow: hidden;
  position: relative;
}

.hero-stats::before,
.hero-stats::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 210.861px;
  height: 210.861px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(0, 102, 255, 0.8) 0%,
      rgba(0, 70, 255, 0.6) 20%,
      rgba(0, 23, 255, 0.5) 40%,
      rgba(0, 23, 255, 0.3) 50%,
      rgba(0, 23, 255, 0.2) 60%,
      transparent 80%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-stats::before {
  left: calc(50% - 183.7px);
}

.hero-stats::after {
  left: calc(50% + 183.7px);
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 21.333px;
  padding: 28.444px 21.333px;
  flex: 1 0 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 0;
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stat-card:nth-child(1) {
  animation-delay: 0.6s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.8s;
}

/* since 2 is stat-divider */
.stat-card:nth-child(5) {
  animation-delay: 1.0s;
}

/* since 4 is stat-divider */

/* Hero Animations */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Assign animations to hero elements */
.hero-ellipses {
  opacity: 0;
  animation: scaleFadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-vertical-container .pill {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-title {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-bottom {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

.stat-divider {
  height: 100%;
  position: relative;
  flex-shrink: 0;
  width: 0;
  z-index: 1;
}

.stat-divider-img {
  position: absolute;
  inset: 0 -1.33px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.stat-icon {
  width: 88.889px;
  height: 88.889px;
  border-radius: 0;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.2;
}

.stat-value {
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 42.667px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.8533px;
}

.stat-label {
  font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #cccccc;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.8px;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 88.889px;
  width: 100%;
  position: relative;
  z-index: 5;
}

.hero-continue {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 7.111px;
}

.hero-continue p {
  font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.8px;
  color: #ffffff;
  margin: 0;
}

.icon-arrow-down {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

/* ABOUT GALAXY */

#hakkimizda {
  padding: 88.889px;
  min-height: 960px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#hakkimizda .container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 71.111px;
  position: relative;
  z-index: 2;
}

.about-cards {    
  display: flex;
  flex-wrap: nowrap;
  /* Kartların alt alta geçmesini engeller */
  overflow-x: auto;
  /* Dokunmatik yatay sürükleme kapansın: dikey kaydırma öncelikli olsun */
  touch-action: auto;
  -ms-touch-action: auto;
  /* Fazla kartların yana doğru kaydırılabilmesini sağlar */
  padding: 40px 20px;
  gap: 20px;
  width: 100%;
  scroll-behavior: smooth;
  /* Butonla geçiş yaparken akıcı kaydırır */

  /* Opsiyonel: Kaydırma çubuğunu gizlemek istersen */
  scrollbar-width: none;
  /* Firefox */
}

.about-cards::-webkit-scrollbar {
  display: none;
}



.about-cards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 50px 0;
  overflow-x: scroll;
  overflow-y: visible;
  /* Dokunmatik yatay kaydırmayı engelle */
  touch-action: auto;
  -ms-touch-action: auto;
  min-height: 530px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.about-card {
  scroll-snap-align: center;
  /* Figma'dan gelen net ölçüler */
  width: 240px;
  height: 426.667px;
  background: #D9D9D9;
  flex-shrink: 0;
  /* Boyutun korunmasını sağlar */

  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-weight: bold;

  /* Geçişler */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.3;
  /* Odak dışı kartlar sönük */
  transform: scale(0.85);

}

/* --- Kontrol Alanı Konteynırı --- */
.about-controls {
  display: flex;
  justify-content: center;
  /* Ortala */
  align-items: center;
  gap: 20px;
  /* İki buton arası boşluk */
  margin-top: 40px;
  /* Kartlardan uzaklık */
}

/* Explore controls (ok butonları artık kaldırıldı) */
.explore-controls {
  display: none;
}

/* --- Butonun Kendisi (Figma Değerleri) --- */
.btn-circle-nav {
  /* Figma'da boyut net değil ama görsel kare. Tahmini bir boyut: */
  width: 50px;
  height: 50px;

  /* border-radius: 88.889px; -> Tam daire yapar */
  border-radius: 50%;

  /* border: 0.889px solid rgba(255, 255, 255, 0.5); -> Tarayıcı için 1px'e yuvarladık */
  border: 1px solid rgba(255, 255, 255, 0.5);

  /* background: linear-gradient(180deg, #0E003B, #0017FF); */
  background: linear-gradient(180deg, #0E003B 0%, #0017FF 100%);

  /* box-shadow: 0 3.556px 3.556px 0 rgba(0, 0, 0, 0.25); -> Yuvarladık */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);

  /* backdrop-filter: blur(3.55...px); -> Yuvarladık */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  /* İçerik (ikon) ortalama ve diğer ayarlar */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  /* Yumuşak geçiş */
  outline: none;
  /* Tıklayınca çıkan çerçeveyi kaldır */
}

/* --- Hover Efekti (Üzerine Gelince) --- */
/* Figma'da yok ama buton olduğu anlaşılması için hafif bir hareket iyidir */
.btn-circle-nav:hover {
  transform: translateY(-2px);
  /* Hafif yukarı kalkar */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
  /* Gölge belirginleşir */
  border-color: rgba(255, 255, 255, 0.8);
  /* Çerçeve parlar */
}

/* --- Tıklama Efekti (Active) --- */
.btn-circle-nav:active {
  transform: translateY(1px);
  /* Aşağı basılır */
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

/* --- İkon Stili (CaretDown) --- */
.btn-circle-nav img {
  width: 14px;
  /* İkon boyutu (isteğe göre ayarla) */
  height: auto;
  /* Figma'da ikon rengi beyaz (#FFFFFF). Eğer ikonun siyahsa bu filtre beyaza çevirir: */
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

/* --- Sol Buton İçin İkonu Döndür --- */
/* CaretDown (Aşağı ok) olduğu için sola bakması için 90 derece döndürüyoruz */
#prev-about-btn img {
  transform: rotate(90deg);
}

/* --- Sağ Buton İçin İkonu Döndür --- */
/* CaretDown (Aşağı ok) olduğu için sağa bakması için -90 derece döndürüyoruz */
#next-about-btn img {
  transform: rotate(-90deg);
}

/* --- Explore Kontrol Butonları İçin İkon Döndürme --- */
#prev-explore-btn img {
  transform: rotate(90deg);
}

#next-explore-btn img {
  transform: rotate(-90deg);
}


/* Öne Çıkan Kart */
.about-card.active {
  opacity: 1;
  transform: scale(1.1);
  /* Figma'daki gibi öne çıksın */
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
  /* Galaksi ışıltısı */
}

/* SERVICES */

#hizmetler {
  padding: 88.889px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

#hizmetler::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 0.48px));
  width: 444.444px;
  height: 444.444px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(0, 23, 255, 0.4),
      rgba(0, 23, 255, 0.2) 40%,
      transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

#hizmetler .container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 53.333px;
  position: relative;
  z-index: 2;
}

.services-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26.862px;
  width: 855.111px;
  max-width: 100%;
}

.services-text-container .pill,
.services-text-container .section-title,
.services-text-container .section-desc {
  margin-top: 0;
}

/* EFEKT: Hizmetler Pill - Figma tasarımına göre (gradient border: üst mavi, alt siyah) */
#hizmetler .pill {
  height: 35.816px;
  padding: 8.954px 17.908px;
  gap: 8.954px;
  border-radius: 111.926px;
  border: none;
  background: rgba(0, 23, 255, 0.2);
  font-size: 17.908px;
  letter-spacing: -0.3582px;
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  box-shadow: 0px 4.477px 4.477px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  background-clip: padding-box;
}

#hizmetler .pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 111.926px;
  padding: 1.119px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

#hizmetler .pill-icon-image {
  width: 22.385px;
  height: 22.385px;
}

#hizmetler .section-title {
  width: 855.111px;
  max-width: 100%;
}

#hizmetler .section-desc {
  font-size: 20.147px;
  letter-spacing: -1.0073px;
  width: 855.111px;
  max-width: 100%;
  font-weight: 300;
  line-height: 1.5;
}

.service-list {
  margin-top: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 80px 50px;
  overflow-x: scroll;
  overflow-y: visible;
  min-height: 380px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.service-list::-webkit-scrollbar {
  display: none;
}

.service-card.active {
  opacity: 1;
  transform: scale(1.15);
  z-index: 16;
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25),
    0px 0px 40px rgba(0, 23, 255, 0.6);
}

.service-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

#prev-service-btn img {
  transform: rotate(90deg);
}

#next-service-btn img {
  transform: rotate(-90deg);
}

.service-card {
  scroll-snap-align: center;
  width: 218.667px;
  height: 284.444px;
  border-radius: 21.333px;
  padding: 21.333px;
  border: none;
  background-image: linear-gradient(180deg, rgba(14, 0, 59, 1) 0%, rgba(0, 23, 255, 1) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
  background-blend-mode: normal, normal;
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background-clip: padding-box;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.3;
  transform: scale(0.85);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 21.333px;
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

.service-media {
  width: 176.889px;
  height: 235.556px;
  border-radius: 13.333px;
  object-fit: cover;
  background: #ffffff;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #e4e4e4;
}

/* WHY PARTNER */

.why-grid {
  margin-top: 71.111px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.why-column {
  display: flex;
  flex-direction: column;
  gap: 88.889px;
  width: 320px;
  flex-shrink: 0;
}

.why-column--right {
  align-items: flex-end;
}

.why-card-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  position: relative;
}

.why-card-wrapper--flipped {
  transform: rotate(180deg) scaleY(-1);
}

.why-card-wrapper--flipped .why-card h3,
.why-card-wrapper--flipped .why-card p {
  transform: rotate(180deg) scaleY(-1);
}

.why-card {
  flex: 1 0 0;
  min-width: 0;
  border-radius: 21.333px;
  padding: 21.333px;
  padding-right: 64px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10.667px;
  position: relative;
  margin-right: -21.333px;
}

.why-card-highlight {
  border: none;
  background-image: linear-gradient(180deg, rgba(14, 0, 59, 1) 0%, rgba(0, 23, 255, 1) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
  color: #ffffff;
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  background-clip: padding-box;
}

.why-card-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 21.333px;
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

.why-card h3 {
  font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 21.333px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -1.0667px;
  color: #ffffff;
  margin: 0;
  width: 230.222px;
}

.why-card p {
  font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.8px;
  color: #cccccc;
  margin: 0;
  width: 228.444px;
}

.why-card-highlight p {
  color: #ffffff;
  width: 213.333px;
}

.why-card-dots {
  position: absolute;
  right: 20.44px;
  top: 20.44px;
  width: 7.111px;
  height: 138.667px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0.1) 100%);
  border-radius: 3.556px;
}

.why-card-wrapper--flipped .why-card-dots {
  right: 21.33px;
  top: 21.33px;
}

.why-card-icon {
  width: 42.667px;
  height: 42.667px;
  flex-shrink: 0;
  border-radius: 88.889px;
  border: none;
  background-image: linear-gradient(180deg, #0e003b, #0017ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  margin-right: -21.333px;
  position: relative;
  background-clip: padding-box;
}

.why-card-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 88.889px;
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

.why-card-icon img {
  width: 21.333px;
  height: 21.333px;
  object-fit: contain;
}

.why-card-wrapper--flipped .why-card-icon img {
  transform: rotate(180deg) scaleY(-1);
}

.why-center-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}

.why-center-orbit {
  position: relative;
  width: 71.111px;
  height: 71.111px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 88.889px;
  border: none;
  background-image: linear-gradient(180deg, #0e003b, #0017ff);
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  background-clip: padding-box;
}

.why-center-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 88.889px;
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}


.why-center-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.explore-images-container {
  position: relative;
  width: 100%;
  /* 100vw yerine 100% kullanıyoruz, sağa kaymayı engeller */
  display: flex;
  align-items: center;
  justify-content: center;
  /* İçeriği tam ortalar */
  overflow: hidden;
  /* Ekrana sığmayan butonları gizler, yatay kaymayı ve bozulmayı önler */
  gap: 42.667px;
  z-index: 1;
  height: 220px;

  /* margin-left: calc(50% - 50vw); -> Genişliği %100 yaptığımız için bu satırı SİLİN */
}

/* TESTIMONIALS (CLIENT STORIES) */

.testimonials-wrapper {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  animation: testimonialScroll 30s linear infinite;
}

@keyframes testimonialScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    /* Gap = 24. 2 identical sets, moving -50%. (24/2 = 12px) */
    transform: translateX(calc(-50% - 12px));
  }
}

.testimonials-wrapper:hover {
  animation-play-state: paused;
}

/* FAQ Container Ayarları */
#sss .container {
  max-width: 1280px;
  width: 100%;
  padding: 78.222px 195.556px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42.667px;
  position: relative;
  z-index: 2;
}

.faq-list {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 21.333px;
  width: 100%;
}

/* EFEKT: FAQ Item - Kapalı Hali - Smooth gradient geçişi için background-color kullan */
.faq-item {
  border-radius: 21.333px;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 21.333px;
  /* İç boşluk */
  width: 100%;
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    background-image 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    border 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  transform: translateZ(0) scale(1);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

/* Transition elements inside the details tag */
.faq-item::details-content {
  transition: opacity 0.5s ease, block-size 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  block-size: 0;
  overflow: hidden;
}

.faq-item[open]::details-content {
  opacity: 1;
  block-size: auto;
}

.faq-answer {
  padding-top: 20px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.faq-item[open] .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-item[open] {
  transform: translateZ(0) scale(1.02);
}

/* EFEKT: FAQ Item Hover - Mavi gradient + glow efekti (smooth geçiş) (gradient border: üst mavi, alt siyah) */
.faq-item {
  position: relative;
  background-clip: padding-box;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 21.333px;
  padding: 0.5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    padding 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateZ(0);
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* EFEKT: FAQ Item Hover - Açık olmayan itemlerde hafif hover efekti */
.faq-item:not([open]):hover {
  background-color: transparent;
  background-image: linear-gradient(180deg, #0e003b, #0017ff);
  border: none;
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25),
    0px 0px 20px rgba(0, 23, 255, 0.3);
}

@media (hover: hover) and (pointer: fine) {
  .faq-item:not([open]):hover::before {
    padding: 0.889px;
    background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
    opacity: 1;
  }
}

.faq-item:not([open]):hover .faq-icon-container {
  background-image: linear-gradient(180deg, #0e003b, #0017ff);
  border-color: #0017ff;
}

/* EFEKT: FAQ Item Açık Hali - Diğerleri gibi açık halde gradient göster (gradient border: üst mavi, alt siyah) */
.faq-item[open] {
  background-color: transparent;
  background-image: linear-gradient(180deg, #0e003b, #0017ff);
  border: none;
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25),
    0px 0px 40px rgba(0, 23, 255, 0.5),
    0px 0px 60px rgba(0, 23, 255, 0.3);
}

.faq-item[open]::before {
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  opacity: 1;
}

/* EFEKT: FAQ Item Açık + İkon Container - Açık halde ikon da gradient */
.faq-item[open] .faq-icon-container {
  background-color: transparent;
  background-image: linear-gradient(180deg, #0e003b, #0017ff);
  border-color: #0017ff;
}

/* EFEKT: FAQ Item Açık + Hover - Hover'da daha güçlü glow */
.faq-item[open]:hover {
  background-color: transparent;
  background-image: linear-gradient(180deg, #0e003b, #0017ff);
  border: none;
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25),
    0px 0px 50px rgba(0, 23, 255, 0.7),
    0px 0px 80px rgba(0, 23, 255, 0.4);
  transform: translateZ(0) scale3d(1.03, 1.03, 1);
}

.faq-item[open]:hover::before {
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .faq-item[open]:hover .faq-icon-container {
    background-image: linear-gradient(180deg, #0e003b, #0017ff);
    border-color: #0017ff;
  }
}

/* Summary (Soru ve İkon Satırı) */
.faq-item summary,
.faq-summary {
  list-style: none;
  display: flex;
  align-items: center;
  /* Dikey ortalama */
  justify-content: space-between;
  /* Soru sola, ikon sağa yaslanır */
  gap: 20px;
  cursor: pointer;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateZ(0) translateX(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.faq-item[open] .faq-summary {
  transform: translateZ(0) translateX(2px);
}

/* Summary içindeki ok işaretini gizle (varsayılan) */
.faq-item summary::-webkit-details-marker,
.faq-summary::-webkit-details-marker {
  display: none;
}

/* Soru Metni */
.faq-question {
  font-family: "Geist", system-ui, -apple-system, sans-serif;
  font-size: 17.778px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.3556px;
  color: #ffffff;
  text-align: left;
  /* Sola hizalama */
  margin: 0;
  flex: 1;
  /* Mümkün olan tüm alanı kapla */
}

/* EFEKT: FAQ İkon Kutusu - Smooth gradient geçişi için background-color kullan */
.faq-icon-container {
  backdrop-filter: blur(3.556px);
  -webkit-backdrop-filter: blur(3.556px);
  background-color: rgba(255, 255, 255, 0.2);
  background-image: none;
  border: 0.889px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  /* Tam yuvarlak */
  width: 42.667px;
  height: 42.667px;
  min-width: 42.667px;
  /* Küçülmeyi önle */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  transition: background-color 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    background-image 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateZ(0) scale3d(1, 1, 1) rotate(0deg);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.faq-item[open] .faq-icon-container {
  transform: translateZ(0) scale3d(1.1, 1.1, 1) rotate(0deg);
}

/* EFEKT: FAQ İkon Kutusu Açık Hali - Normal hal (hover'da gradient gelecek) */
.faq-item[open] .faq-icon-container {
  background-color: rgba(255, 255, 255, 0.2);
  background-image: none;
  border-color: rgba(255, 255, 255, 0.5);
}

.faq-icon {
  width: 17.778px;
  height: 17.778px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateZ(0) rotate(0deg) scale3d(1, 1, 1);
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* EFEKT: FAQ Ok İkonu Açık - 180° dönüş */
.faq-item[open] .faq-icon {
  transform: translateZ(0) rotate(180deg) scale3d(1.1, 1.1, 1);
}

/* EFEKT: FAQ Ok İkonu Hover - Açık olmayan itemlerde sadece büyüme */
@media (hover: hover) and (pointer: fine) {
  .faq-item:not([open]):hover .faq-icon {
    transform: translateZ(0) rotate(0deg) scale3d(1.15, 1.15, 1);
  }

  /* EFEKT: FAQ Ok İkonu Hover - Açık itemlerde dönmüş halde büyüme */
  .faq-item[open]:hover .faq-icon {
    transform: translateZ(0) rotate(180deg) scale3d(1.2, 1.2, 1);
  }
}

/* Cevap Alanı */
.faq-answer-content {
  width: 100%;
  text-align: left;
  padding-right: 50px;
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  padding-top: 0;
  transform: translateZ(0) translate3d(0, -10px, 0);
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s,
    padding-top 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s,
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.faq-item[open] .faq-answer-content {
  opacity: 1;
  padding-top: 10.667px;
  transform: translateZ(0) translate3d(0, 0, 0);
}

.faq-answer-content p {
  font-family: "Geist", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: #ffffff;
  margin: 0;
}


/* CTA */

.cta-section {
  position: relative;
  overflow: visible;
  padding: 40px 0;
  min-height: 250.222px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -30%);
  width: 1943.436px;
  height: 1147.962px;
  pointer-events: none;
  z-index: 1;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  max-width: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 21.333px;
  padding: 0;
  max-width: 1280px;
}

.cta-text {
  width: 588.444px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21.333px;
  text-align: center;
  position: relative;
}

/* cta-glow-orb removed - no longer needed */

.cta-icon.btn {
  width: 100px;
  height: 100px;
  padding: 10.667px 21.333px;
  border-radius: 88.889px;
  border: none;
  background-image: linear-gradient(180deg, #0e003b, #0017ff);
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  flex: none;
  position: relative;
  z-index: 1;
  background-clip: padding-box;
}

.cta-icon.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 88.889px;
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

.cta-icon-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.cta-title {
  margin: 0;
  font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 42.667px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -2.1333px;
  text-align: center;
  position: relative;
  mix-blend-mode: screen;
  mask-image: linear-gradient(to bottom, black 0%, black 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 80%, rgba(0, 0, 0, 0) 100%);
}

.cta-title strong {
  font-weight: 600;
}

.cta-desc {
  margin: 0;
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: #cccccc;
  position: relative;
  mix-blend-mode: screen;
  mask-image: linear-gradient(to bottom, black 0%, black 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 80%, rgba(0, 0, 0, 0) 100%);
}

.cta-action {
  margin-top: -20px;
  height: 49.778px;
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
  border: none;
  background-image: linear-gradient(180deg, #0e003b 0%, #0017ff 100%);
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  background-clip: padding-box;
}

.cta-action::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 88.889px;
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

.contact-form {
  margin-top: 2rem;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(1, 9, 25, 0.8);
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888ea8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0017ff;
  box-shadow: 0 0 0 1px rgba(0, 23, 255, 0.4);
}

.contact-form button {
  align-self: flex-end;
}

/* FOOTER */

.footer {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 552.02px;
}

.footer-inner {
  position: relative;
  z-index: 2;
  padding: 0 88.889px;
  height: 552.02px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Footer Background Ellipses (Figma images) */
.footer-bg {
  position: absolute;
  width: 223.76px;
  height: 223.76px;
  top: calc(50% + 101.67px);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.footer-bg-left {
  left: calc(50% - 528.6px);
  transform: translate(-50%, -50%);
}

.footer-bg-center {
  left: calc(50% + 2.12px);
  transform: translate(-50%, -50%);
}

.footer-bg-right {
  right: 0;
  transform: translateY(-50%);
}

.footer-bg-ellipse {
  position: absolute;
  inset: -139.04%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-width: none;
  pointer-events: none;
}

.footer-top {
  position: relative;
  width: 100%;
}

/* Footer FOCUS Logo - Figma node-id=0-384 */
.footer-logo-large {
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 291.499px;
  font-weight: 800;
  /* ExtraBold */
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -5.83px;
  color: rgba(255, 255, 255, 0.1);
  text-align: center;
  text-shadow: 22.295px 22.295px 22.295px rgba(0, 0, 0, 0.05);
  position: absolute;
  left: calc(50% + 0.61px);
  top: -20.89px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

/* Footer Social Media Icons */
.footer-social {
  margin-top: 308.46px;
  display: flex;
  align-items: center;
  gap: 10.667px;
  position: relative;
  z-index: 2;
}

.footer-social-icon {
  width: 35.556px;
  height: 35.556px;
  border-radius: 88.889px;
  border: none;
  background-image: linear-gradient(180deg, #0e003b, #0017ff);
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10.667px 21.333px;
  position: relative;
  overflow: hidden;
  background-clip: padding-box;
}

.footer-social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 88.889px;
  padding: 0.889px;
  background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

.footer-social-icon-img {
  width: 17.778px;
  height: 17.778px;
  object-fit: contain;
  opacity: 0.2;
  position: relative;
}

.footer-links {
  margin-top: 42.667px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 1102.222px;
  max-width: 100%;
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14.222px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.2844px;
  color: #cccccc;
  position: relative;
  z-index: 2;
  padding: 0;
}

.footer-divider {
  margin-top: 61.333px;
  height: 1px;
  width: 1102.222px;
  max-width: 100%;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.footer-divider-img {
  position: absolute;
  inset: -0.44px 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-width: none;
}

.footer-bottom {
  margin-top: 42.667px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1102.222px;
  max-width: 100%;
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14.222px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.2844px;
  color: #cccccc;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.footer-policy {
  display: flex;
  gap: 28.444px;
}

.footer-policy a {
  color: #cccccc;
}

.footer-policy a:hover {
  color: #ffffff;
}

/* =============================================
  HAMBURGER MENU BASE STYLES
  ============================================= */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay (hidden by default) */
.nav-center.nav-open {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(1, 9, 25, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1000;
  border-bottom: none;
  transform: none;
  padding: 80px 24px 40px;
  opacity: 0;
  animation: menuFadeIn 0.3s forwards ease-out;
}

@keyframes menuFadeIn {
  to {
    opacity: 1;
  }
}

.nav-center.nav-open .nav-link {
  font-size: 24px;
  font-weight: 500;
  padding: 16px 32px;
  border-bottom: none;
  width: auto;
  text-align: center;
  border-radius: 100px;
  transition: all 0.3s ease;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 23, 255, 0.4) 0%, rgba(0, 23, 255, 0.1) 100%);
  border: 1px solid rgba(0, 23, 255, 0.3);
  box-shadow: 0 4px 24px rgba(0, 23, 255, 0.2);
}

.nav-center.nav-open .nav-link:hover {
  background: linear-gradient(90deg, rgba(0, 23, 255, 0.6) 0%, rgba(0, 23, 255, 0.2) 100%);
  border-color: rgba(0, 23, 255, 0.5);
}

.nav-center.nav-open .nav-close-btn {
  display: flex;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav-center.nav-open .nav-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hamburger.active {
  opacity: 0 !important;
  pointer-events: none;
}

.nav-center.nav-open .nav-link::after {
  display: none;
}

/* Body scroll lock when menu is open */
body.nav-menu-open {
  overflow: hidden;
}

/* =============================================
  RESPONSIVE — ≤1280px (Large Laptop)
  ============================================= */

@media (max-width: 1280px) {
  .navbar {
    padding: 10.667px 40px;
  }

  .hero-bottom {
    padding: 0 40px;
  }

  #neden-biz .container {
    padding: 0 40px;
  }

  #referanslar .container {
    padding: 0 40px;
  }

  #sss .container {
    padding: 78.222px 80px;
  }

  .footer-inner {
    padding: 0 40px;
  }

  #kesfet .container.explore-container {
    padding: 88.889px 40px;
  }
}

/* =============================================
  RESPONSIVE — ≤1024px (Tablet Landscape)
  ============================================= */

@media (max-width: 1024px) {

  /* --- Hamburger visible --- */
  .hamburger {
    display: flex;
  }

  .nav-center {
    display: none;
  }

  .nav-cta-btn {
    display: none;
  }

  /* --- Navbar --- */
  .navbar {
    padding: 8px 24px;
  }

  /* --- Hero --- */
  .hero {
    height: auto;
    min-height: auto;
    padding: 0 24px 32px;
  }

  .hero-title {
    font-size: 52px;
    letter-spacing: -2.6px;
    line-height: 1.15;
  }

  .hero-text-container {
    width: 100%;
  }

  .hero-stats {
    width: 100%;
    flex-direction: column;
    height: auto !important;
    min-height: auto !important;
    border-radius: 16px;
    overflow: visible;
    position: relative;
    z-index: 5;
    gap: 16px;
  }

  .hero-stats::before,
  .hero-stats::after {
    display: none;
  }

  .stat-card {
    width: 100%;
    flex: none;
    border-radius: 16px !important;
    padding: 20px 16px;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
  }

  .stat-icon {
    width: 56px;
    height: 56px;
  }

  .stat-value {
    font-size: 32px;
  }

  .stat-label {
    font-size: 14px;
    line-height: 1.4;
  }

  .stat-divider {
    width: 100%;
    height: 0;
  }

  .stat-divider-img {
    display: none;
  }

  .hero-bottom {
    padding: 0 24px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-subtitle {
    max-width: 100%;
    text-align: center;
    line-height: 1.5;
  }

  .hero-vertical-container {
    margin-top: 140px;
    gap: 32px;
  }

  .hero-stats-container {
    gap: 24px;
    margin-top: 24px;
  }

  /* --- Section base padding --- */
  .section,
  .footer,
  #hakkimizda,
  #hizmetler,
  #neden-biz,
  #kesfet,
  #referanslar,
  #sss,
  #iletisim {
    padding: 20px 0;
    margin-top: 0 !important;
    overflow-x: hidden;
  }

  /* --- Hero Background --- */
  .hero-ellipses {
    /* Mobil/Tablet'te arka ışığı tam merkeze al */
    left: -300px;
    width: 1100px;
    bottom: -150px;
  }

  .hero-stars {
    width: 100%;
    left: 0;
    transform: none;
    }

  .star {
    display: none;
  }

  /* --- About --- */
  #hakkimizda {
    padding: 24px 24px;
    margin-top: 0 !important;
    min-height: auto;
  }

  #hakkimizda .pill,
  .about-pill {
    margin-top: 0 !important;
  }

  #hakkimizda .container {
    gap: 24px;
  }

  .about-cards {
    min-height: 380px;
    padding: 24px 24px;
    margin: 0 -24px;
    width: calc(100% + 48px);
  }

  .about-card {
    width: 190px;
    height: 340px;
    margin-left: 20px;
  }

  .about-card:first-child {
    margin-left: 0;
  }

  /* --- Services --- */
  #hizmetler {
    padding: 20px 0;
    margin-top: 0 !important;
  }

  #hizmetler .container {
    padding: 0 24px;
    gap: 20px;
  }

  .services-text-container {
    width: 100%;
  }

  #hizmetler .section-title,
  #hizmetler .section-desc {
    width: 100%;
  }

  .service-list {
    width: calc(100% + 48px);
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 40px 24px;
    margin: 0 -24px;
  }

  .service-card {
    width: 218.667px;
    flex-shrink: 0;
    margin-left: 20px;
  }

  .service-card:first-child {
    margin-left: 0;
  }

  /* --- Why Partner --- */
  #neden-biz {
    padding: 20px 0;
    margin-top: 0 !important;
  }

  #neden-biz .container {
    padding: 0 24px;
    gap: 20px;
  }

  .why-text-container {
    width: 100%;
  }

  .section-title--why span:last-child {
    font-size: 44px;
  }

  .why-stats-container {
    flex-direction: column;
    height: auto;
    min-height: auto;
    gap: 24px;
    align-items: center;
  }

  .why-stats-column {
    width: 100%;
    max-width: 400px;
    gap: 24px;
  }

  .why-stats-column-right {
    align-items: flex-start;
  }

  .why-stat-wrapper-flipped {
    transform: none;
  }

  .why-stat-wrapper-flipped .why-stat-card {
    transform: none;
  }

  .why-stat-wrapper-flipped .why-stat-icon {
    transform: none;
  }

  .why-stat-wrapper-flipped .why-stat-icon img,
  .why-stat-wrapper-flipped .why-stat-icon svg {
    transform: none;
  }

  .why-stat-wrapper-flipped:hover {
    transform: scale(1.03);
  }

  .why-stat-card {
    width: 100%;
    min-height: auto;
    border-radius: 16px;
    padding-right: 48px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .why-stat-card h3 {
    width: auto !important;
    font-size: 19px;
    line-height: 1.35;
  }

  .why-stat-card p {
    width: auto !important;
    font-size: 15px;
    line-height: 1.5;
  }

  .why-stats-column-right .why-stat-card {
    min-height: auto;
  }

  .why-center-icon-container {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto;
    animation: floatCenterIconMobile 4s ease-in-out infinite;
  }

  @keyframes floatCenterIconMobile {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-15px);
    }
  }

  .why-center-ellipse {
    display: none;
  }

  .why-stat-container-bg {
    display: none;
  }

  .why-ellipse {
    display: none;
  }

  /* --- Explore --- */
  #kesfet {
    padding: 16px 0;
    margin-top: 0 !important;
  }

  #kesfet .container.explore-container {
    padding: 24px 24px;
    min-height: auto;
    gap: 20px;
  }

  .explore-bg-svg {
    width: 800px;
    height: 800px;
    opacity: 0.7;
  }

  .section-title--explore {
    width: 100%;
  }

  /* --- Testimonials --- */
  #referanslar {
    padding: 16px 0;
    margin-top: 0 !important;
  }

  #referanslar .container {
    padding: 0 24px;
    gap: 20px;
  }

  .client-stories-text-container {
    width: 100%;
  }

  .testimonial-card {
    width: 300px;
    min-width: 300px;
    height: auto;
    min-height: 240px;
    border-radius: 16px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  }

  .testimonials-wrapper {
    padding: 20px 0;
  }

  .testimonial-dots {
    width: 240px;
  }

  /* --- FAQ --- */
  #sss .container {
    padding: 32px 24px;
    gap: 24px;
  }

  .section-title--faq {
    font-size: 34px;
    line-height: 1.25;
  }

  .faq-question {
    font-size: 16px;
    line-height: 1.4;
  }

  .faq-item {
    padding: 16px;
    border-radius: 16px;
  }

  .faq-summary {
    gap: 16px;
  }

  .faq-answer-content {
    padding-right: 24px;
  }

  /* --- CTA --- */
  .cta-section {
    padding: 24px 0;
  }

  .cta-text {
    width: 100%;
    padding: 0 24px;
  }

  .cta-title {
    font-size: 34px;
    letter-spacing: -1.7px;
    line-height: 1.25;
  }

  .cta-desc {
    font-size: 15px;
    line-height: 1.5;
  }

  .cta-bg {
    width: 1400px;
    height: 900px;
  }

  .cta-action {
    margin-top: 0;
  }

  /* --- Footer --- */
  .footer-inner {
    padding: 0 24px;
    height: auto;
    min-height: 360px;
  }

  .footer {
    min-height: auto;
  }

  .footer-logo-large {
    font-size: 160px;
    letter-spacing: -3.2px;
  }

  .footer-social {
    margin-top: 160px;
  }

  .footer-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
  }

  .footer-divider {
    width: 100%;
    margin-top: 24px;
  }

  .footer-bottom {
    width: 100%;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding-bottom: 16px;
  }

  .footer-policy {
    justify-content: center;
  }

  /* --- Section Overlaps — compact & consistent --- */
  #hakkimizda {
    margin-top: 0 !important;
  }

  #hizmetler {
    margin-top: -16px !important;
  }

  #neden-biz {
    margin-top: -8px !important;
  }

  #kesfet {
    margin-top: 0 !important;
  }

  #referanslar {
    margin-top: -16px !important;
  }

  #sss {
    margin-top: -16px !important;
  }

  #iletisim {
    margin-top: -8px !important;
  }

  .footer {
    margin-top: 32px !important;
  }

  /* --- Performance: reduce animation complexity --- */
  .faq-item {
    perspective: none;
    -webkit-perspective: none;
  }

  .testimonial-card:hover {
    transform: scale(1.02);
  }

  .why-stat-wrapper:hover {
    transform: scale(1.03);
  }
}

/* =============================================
  RESPONSIVE — ≤768px (Tablet Portrait)
  ============================================= */

@media (max-width: 768px) {

  .explore-images-container {
    width: 100% !important;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    mask-image: none;
    -webkit-mask-image: none;
  }

  /* --- Hero --- */
  .hero {
    min-height: auto;
    padding: 0 16px 24px;
  }

  .hero-vertical-container {
    margin-top: 120px;
    gap: 20px;
  }

  .hero-stats-container {
    gap: 12px;
    margin-top: 16px;
  }

  /* --- Section base padding --- */
  .section {
    padding: 20px 0;
    overflow-x: hidden;
  }

  .hero-title {
    font-size: 38px;
    letter-spacing: -1.9px;
    line-height: 1.2;
  }

  .hero-title .light {
    font-weight: 300;
  }

  .stat-icon {
    width: 48px;
    height: 48px;
  }

  .stat-value {
    font-size: 28px;
    line-height: 1.2;
  }

  .stat-label {
    font-size: 13px;
    line-height: 1.4;
  }

  .stat-card {
    padding: 20px 16px;
    gap: 12px;
  }

  .hero-bottom {
    padding: 0 16px;
    margin-top: 8px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  /* --- Section Titles — mobile hierarchy --- */
  .section-title {
    font-size: 28px;
    letter-spacing: -1.4px;
    line-height: 1.25;
  }

  .section-title--about {
    font-size: 28px;
    letter-spacing: -1.4px;
  }

  .section-title--services {
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.25;
  }

  .section-title--why {
    font-size: 28px;
    line-height: 1.25;
  }

  .section-title--why span:last-child {
    font-size: 34px;
  }

  .section-title--client-stories {
    font-size: 28px;
    letter-spacing: -1.4px;
    line-height: 1.25;
  }

  .section-title--faq {
    font-size: 26px;
    line-height: 1.3;
  }

  .section-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  /* --- About --- */
  #hakkimizda {
    padding: 24px 16px;
  }

  #hakkimizda .pill,
  .about-pill {
    margin-top: 0 !important;
  }

  #hakkimizda .container {
    gap: 20px;
  }

  .about-card {
    width: 190px;
    height: 300px;
    border-radius: 16px;
  }

  .about-cards {
    min-height: 300px;
    gap: 14px;
    padding: 24px 16px;
    scroll-snap-type: x mandatory;
  }

  /* --- Services --- */
  .service-list {
    gap: 12px;
  }

  .service-card {
    width: 200px;
    height: 270px;
    border-radius: 14px;
    flex-shrink: 0;
    padding: 15px;
  }

  .service-media {
    width: 100%;
    height: 210px;
    border-radius: 10px;
  }

  /* --- Why Partner --- */
  .why-stat-card {
    padding: 14px;
    padding-right: 44px;
    border-radius: 14px;
  }

  .why-stat-card h3 {
    font-size: 17px;
    line-height: 1.35;
  }

  .why-stat-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .why-stats-column {
    gap: 16px;
  }

  .section-desc--why {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.6;
  }

  /* --- Testimonials --- */
  .testimonial-card {
    width: 270px;
    min-width: 270px;
    height: auto;
    min-height: 220px;
    padding: 14px;
    border-radius: 14px;
    gap: 14px;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.15);
  }

  .testimonial-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .testimonial-header h3 {
    font-size: 15px;
  }

  .testimonial-header p {
    font-size: 13px;
  }

  .testimonials-container::before,
  .testimonials-container::after {
    width: 60px;
  }

  .testimonials-container {
    -webkit-mask-image: linear-gradient(to right,
        transparent 0,
        rgba(0, 0, 0, 0.02) 5px,
        rgba(0, 0, 0, 0.1) 20px,
        rgba(0, 0, 0, 0.5) 50px,
        black 100px,
        black calc(100% - 100px),
        rgba(0, 0, 0, 0.5) calc(100% - 50px),
        rgba(0, 0, 0, 0.1) calc(100% - 20px),
        rgba(0, 0, 0, 0.02) calc(100% - 5px),
        transparent 100%);
    mask-image: linear-gradient(to right,
        transparent 0,
        rgba(0, 0, 0, 0.02) 5px,
        rgba(0, 0, 0, 0.1) 20px,
        rgba(0, 0, 0, 0.5) 50px,
        black 100px,
        black calc(100% - 100px),
        rgba(0, 0, 0, 0.5) calc(100% - 50px),
        rgba(0, 0, 0, 0.1) calc(100% - 20px),
        rgba(0, 0, 0, 0.02) calc(100% - 5px),
        transparent 100%);
  }

  /* --- FAQ --- */
  .faq-item {
    padding: 14px;
    border-radius: 14px;
  }

  .faq-summary {
    gap: 12px;
  }

  .faq-question {
    font-size: 15px;
    line-height: 1.4;
  }

  .faq-answer-content {
    padding-right: 16px;
  }

  .faq-answer-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .faq-icon-container {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .faq-icon {
    width: 16px;
    height: 16px;
  }

  .faq-cta {
    margin-top: 8px;
  }

  .faq-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .faq-ellipse {
    display: none;
  }

  /* --- CTA --- */
  .cta-section {
    overflow: visible !important;
    padding-bottom: 40px;
  }

  .cta-title {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 1.35;
  }

  .cta-desc {
    font-size: 15px;
    line-height: 1.6;
  }

  .cta-action {
    margin-top: 21px;
    height: 48px;
  }

  .cta-bg {
    top: auto;
    bottom: -5px;
    transform: translate(-50%, 0);
    width: 600px;
    height: 600px;
  }

  .cta-icon.btn {
    width: 80px;
    height: 80px;
  }

  .cta-icon-img {
    width: 40px;
    height: 40px;
  }

  /* --- Footer --- */
  .footer-logo-large {
    font-size: 100px;
    letter-spacing: -2px;
    top: 20px;
  }

  .footer-social {
    margin-top: 140px;
    z-index: 5;
    position: relative;
  }

  .footer-links {
    gap: 10px 16px;
    font-size: 13px;
    margin-top: 20px;
  }

  .footer-divider {
    margin-top: 16px;
  }

  .footer-bottom {
    margin-top: 16px;
    gap: 8px;
    padding-bottom: 12px;
  }

  /* --- Section Overlaps — tighter rhythm --- */
  #hakkimizda {
    margin-top: 0 !important;
  }

  #hizmetler {
    margin-top: -8px !important;
  }

  #neden-biz {
    margin-top: 0 !important;
  }

  #kesfet {
    margin-top: 0 !important;
  }

  #referanslar {
    margin-top: -8px !important;
  }

  #sss {
    margin-top: -8px !important;
  }

  #iletisim {
    margin-top: 0 !important;
  }

  .footer {
    margin-top: 16px !important;
  }

  /* --- Performance --- */
  .explore-bg-svg {
    width: 600px;
    height: 600px;
    opacity: 0.5;
  }

  .faq-item[open]:hover {
    transform: translateZ(0) scale(1.01);
  }

  .faq-item:not([open]):hover {
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2),
      0px 0px 16px rgba(0, 23, 255, 0.2);
  }

  .testimonial-card:hover {
    transform: scale(1.01);
  }
}

/* =============================================
  RESPONSIVE — ≤480px (Mobile)
  ============================================= */

@media (max-width: 480px) {

  /* --- Global overflow guard --- */
  body {
    max-width: 100vw;
  }

  /* --- Hero --- */
  .hero {
    min-height: auto;
    padding: 0 12px 16px;
  }

  .navbar {
    padding: 8px 12px;
  }

  .logo-mark {
    width: 60px;
    height: 45px;
  }

  .hero-title {
    font-size: 28px;
    letter-spacing: -1.4px;
    line-height: 1.2;
  }

  .hero-vertical-container {
    margin-top: 80px;
    gap: 16px;
  }

  .hero-ellipses {
    top: -130px;
    bottom: auto;
  }

  .hero-ellipses-img {
    object-position: center;
  }
  
  .hero-stats-container {
    gap: 12px;
    margin-top: 24px;
  }

  .hero-bottom {
    padding: 0;
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
  }

  .hero-continue {
    justify-content: center;
  }

  .hero-continue p {
    font-size: 13px;
  }

  /* --- Section base padding --- */
  .section {
    padding: 20px 0;
    overflow-x: hidden;
  }

  .pill {
    font-size: 11px;
    padding: 4px 8px;
    height: auto;
    gap: 4px;
  }

  .pill-icon-image {
    width: 12px;
    height: 12px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-value {
    font-size: 24px;
    line-height: 1.2;
  }

  .stat-label {
    font-size: 12px;
    line-height: 1.4;
  }

  .stat-card {
    padding: 12px 10px;
    gap: 10px;
  }

  .stat-card:first-child {
    border-radius: 12px 12px 0 0;
  }

  .stat-card:last-child {
    border-radius: 0 0 12px 12px;
  }

  /* --- Section Titles — compact mobile --- */
  .section-title {
    font-size: 22px;
    letter-spacing: -1.1px;
    line-height: 1.3;
  }

  .section-title--about {
    font-size: 22px;
    letter-spacing: -1.1px;
    max-width: 100%;
  }

  .section-title--services {
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 1.25;
  }

  .section-title--why {
    font-size: 22px;
    line-height: 1.3;
  }

  .section-title--why span:last-child {
    font-size: 26px;
  }

  .section-title--client-stories {
    font-size: 22px;
    letter-spacing: -1.1px;
    line-height: 1.3;
  }

  .section-title--faq {
    font-size: 20px;
    line-height: 1.3;
  }

  .section-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  /* --- About --- */
  #hakkimizda {
    padding: 16px 12px;
  }

  #hakkimizda .pill,
  .about-pill {
    margin-top: 0 !important;
  }

  #hakkimizda .container {
    gap: 12px;
  }

/* Hakkımızda ve Hizmetler İçin Mobil Animasyon İskeleti */
.about-card, .service-card {
  opacity: 0.45;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* JavaScript'in "Sen Ortadasın" Dediği Kart Parlayıp Büyür */
.about-card.active, .service-card.active {
  opacity: 1;
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(0, 23, 255, 0.4);
}

/* Mobil için Çerçeve Ayarları */
.about-cards, .service-list {
  padding: 24px 16px;
  margin: 0;
  width: 100%;
  scroll-padding-left: 16px;
  scroll-snap-type: x mandatory;
}

.about-cards {
  min-height: 280px;
  padding: 20px 16px;
  margin: 0;
  width: 100%;
  gap: 12px;
}

  .about-card:first-child {
    margin-left: 0;
  }

  .about-card {
    margin-left: 8px;
    width: 180px;
    height: 260px;
    scroll-snap-align: center;
    border-radius: 14px;
  }

  .btn-circle-nav {
    width: 36px;
    height: 36px;
  }

  .about-controls {
    margin-top: 16px;
    gap: 12px;
  }

  /* --- Services --- */
  #hizmetler {
    padding: 16px 0;
  }

  #hizmetler .container {
    padding: 0 12px;
    gap: 12px;
  }

  #hizmetler .section-desc {
    font-size: 14px;
  }

  #hizmetler .pill {
    font-size: 12px;
    height: auto;
    padding: 5px 10px;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding: 24px 12px;
    gap: 12px;
    scroll-snap-type: x mandatory;
  }

  .service-card {
    margin-left: 10px;
    width: 200px;
    max-width: none;
    height: 270px;
    flex-shrink: 0;
    border-radius: 14px;
    padding: 12px;
    scroll-snap-align: center;
  }

  .service-card:first-child {
    margin-left: 0;
  }

  .service-media {
    width: 100%;
    height: 230px;
    border-radius: 10px;
  }

  /* --- Why Partner --- */
  #neden-biz {
    padding: 20px 0;
  }

  #neden-biz .container {
    padding: 0 12px;
    gap: 16px;
  }

  .why-stats-container {
    gap: 16px;
    margin-top: 0;
  }

  .why-stats-column {
    max-width: 100%;
    gap: 12px;
  }

  /* 2. Kartların iç boşluğunu biraz artır ki ikon nefes alsın */
  .why-stat-card {
    padding: 16px;
    /* 12px'ti, biraz büyüttük */
    min-height: auto !important;
    border-radius: 12px;
  }

  .why-stat-card h3 {
    font-size: 16px;
    line-height: 1.35;
  }

  .why-stat-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .why-stat-dots {
    height: 80px;
    right: 10px;
    top: 10px;
  }

  /* 1. İkonların dışarı taşmasını engellemek için eksi margin'i sıfırla */
  .why-stat-icon {
    width: 36px;
    height: 36px;
    margin-right: 0;
    /* -18px olan bu değeri 0 yapıyoruz */
  }

  /* 3. Ortadaki boşlukta duran ikonu gizle veya hizala (Mobilde genelde gizlenmesi daha temiz durur) */
  .why-center-icon-container {
    display: none;
    /* Mobilde o aradaki fazladan ikonu kaldırır, tasarımı rahatlatır */
  }

  .why-center-icon {
    width: 36px;
    height: 36px;
  }

  .section-desc--why {
    font-size: 13px;
    max-width: 100%;
    line-height: 1.6;
  }

  /* --- Explore --- */
  #kesfet {
    padding: 16px 0;
  }

  #kesfet .container.explore-container {
    padding: 16px 12px;
    gap: 16px;
  }

  .explore-bg-svg {
    width: 400px;
    height: 400px;
    opacity: 0.4;
  }

  .btn-explore {
    font-size: 13px;
    height: 38px;
    padding: 8px 16px;
  }

  .explore-images-container::before,
  .explore-images-container::after {
    width: 40px;
  }

  .explore-image-1,
  .explore-image-2,
  .explore-image-3,
  .explore-image-4,
  .explore-image-5,
  .explore-image-6,
  .explore-image-7,
  .explore-image-8 {
    width: 64px;
    height: 64px;
  }

  .explore-images-wrapper {
    gap: 16px;
    padding: 12px 0;
  }

  /* --- Testimonials --- */
  #referanslar {
    padding: 16px 0;
  }

  #referanslar .container {
    padding: 0 12px;
    gap: 16px;
  }

  .testimonial-card {
    width: 240px;
    min-width: 240px;
    padding: 12px;
    gap: 10px;
    border-radius: 12px;
    height: auto;
    min-height: auto;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.12);
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
  }

  .testimonial-header h3 {
    font-size: 13px;
  }

  .testimonial-header p {
    font-size: 11px;
  }

  .testimonial-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .testimonial-dots {
    width: 180px;
    top: 12px;
    left: 12px;
  }

  .testimonials-wrapper {
    padding: 16px 0;
  }

  .testimonials-container::before,
  .testimonials-container::after {
    width: 24px;
  }

  .section-desc--client-stories {
    font-size: 13px;
    line-height: 1.6;
  }

  /* --- FAQ --- */
  #sss .container {
    padding: 16px 12px;
    gap: 12px;
  }

  .faq-item {
    padding: 12px;
    border-radius: 12px;
  }

  .faq-summary {
    gap: 10px;
  }

  .faq-question {
    font-size: 13px;
    line-height: 1.4;
  }

  .faq-icon-container {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .faq-icon {
    width: 13px;
    height: 13px;
  }

  .faq-answer-content {
    padding-right: 8px;
  }

  .faq-answer-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  .faq-cta {
    margin-top: 4px;
  }

  .faq-cta .btn {
    font-size: 13px;
    padding: 8px 16px;
    width: 100%;
    max-width: 220px;
  }

  .faq-ellipse {
    display: none;
  }

  /* --- CTA --- */
  .cta-section {
    padding: 20px 0 32px;
    margin-top: 0 !important;
    overflow: visible !important;
    min-height: auto;
  }

  #sss {
    padding-bottom: 0 !important;
  }

  .faq-cta {
    margin-bottom: 0;
  }

  .cta-bg {
    width: 800px;
    height: 560px;
    top: 0px;
  }

  .cta-text {
    width: 100%;
    padding: 0 16px;
    gap: 16px;
  }

  .cta-title {
    font-size: 26px;
    letter-spacing: -0.5px;
    line-height: 1.4;
  }

  .cta-desc {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 8px;
  }

  .cta-icon.btn {
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
  }

  .cta-icon-img {
    width: 32px;
    height: 32px;
  }

  .cta-action {
    height: 44px;
    font-size: 14px;
    margin-top: 20px;
    padding: 10px 24px;
  }

  /* --- Footer --- */
  .footer {
    min-height: auto;
  }

  .footer-inner {
    padding: 0 16px;
    min-height: auto;
    padding-top: 0;
    height: auto;
  }

  .footer-logo-large {
    font-size: 72px;
    letter-spacing: 2px;
    top: 24px;
    width: 100%;
  }

  .footer-social {
    margin-top: 110px;
    position: relative;
    z-index: 5;
  }

  .footer-social-icon {
    width: 30px;
    height: 30px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    font-size: 12px;
  }

  .footer-divider {
    margin-top: 12px;
  }

  .footer-bottom {
    margin-top: 12px;
    gap: 6px;
    padding-bottom: 8px;
  }

  .footer-copy {
    font-size: 11px;
  }

  .footer-policy {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    align-items: center;
    font-size: 11px;
  }

  /* --- Section Overlaps — zero for clean mobile flow --- */
  #hakkimizda {
    margin-top: 0 !important;
  }

  #hizmetler {
    margin-top: 0 !important;
  }

  #neden-biz {
    margin-top: 0 !important;
  }

  #kesfet {
    margin-top: 0 !important;
  }

  #referanslar {
    margin-top: 0 !important;
  }

  #sss {
    margin-top: 0 !important;
  }

  #iletisim {
    margin-top: 0 !important;
  }

  .footer {
    margin-top: 8px !important;
  }

  /* --- Performance: reduce heavy effects --- */
  /* Mobilde dokunma (tap) efekti: :hover yerine :active kullanıyoruz */
  .explore-image:active {
    /* Dokunup sürüklerken daireler “yukarı-aşağı” oynar hissi veriyor.
       Sadece görünürlük/glow güncellensin; transform ile ölçekleme olmasın. */
    transform: none;
    z-index: 20;
    box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25),
      0px 0px 70px rgba(0, 23, 255, 0.8);
    opacity: 1 !important;
  }

  .explore-image:active .explore-image-img {
    opacity: 1;
  }

  .faq-item[open]:hover {
    transform: translateZ(0) scale(1);
  }

  .faq-item:not([open]):hover {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
  }

  /* Testimonial Mobilde Dokunma (Tap) Efekti */
  .testimonial-card:active {
    transform: scale(1.02);
    /* Mobilde çok fazla büyümesin, 1.02 yeterli */
    z-index: 10;
    background-image: linear-gradient(180deg, rgba(14, 0, 59, 1) 0%, rgba(0, 23, 255, 1) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    background-blend-mode: normal, overlay;
    border: none;
    box-shadow: 0px 4px 15px rgba(0, 23, 255, 0.3);
    /* Dokununca hafif mavi parlama */
  }

  .testimonial-card:active::before {
    padding: 0.889px;
    background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
    opacity: 1;
  }

  .testimonial-card:active .testimonial-header p {
    color: #ffffff;
  }

  /* Neden Biz Kartları Dokunma Efekti */
  .why-stat-wrapper:active {
    transform: scale(1.02);
    z-index: 10;
  }

  .why-stat-wrapper:active .why-stat-card {
    border: none;
    background-image: linear-gradient(180deg, rgba(14, 0, 59, 1) 0%, rgba(0, 23, 255, 1) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    background-blend-mode: normal, overlay;
    box-shadow: 0px 4px 20px rgba(0, 23, 255, 0.4);
  }

  .why-stat-wrapper:active .why-stat-card::before {
    padding: 0.889px;
    background: linear-gradient(180deg, #0017ff 0%, #000000 100%);
    opacity: 1;
  }

  .why-stat-wrapper:active .why-stat-card p {
    color: #ffffff;
  }

  .explore-image:active .explore-image-img {
    opacity: 1;
  }
}

/* =============================================
  RESPONSIVE — ≤360px (Small Mobile)
  ============================================= */

@media (max-width: 360px) {
  .hero-title {
    font-size: 24px;
    letter-spacing: -1.2px;
  }

  .section-title {
    font-size: 20px;
    letter-spacing: -1px;
  }

  .section-title--why span:last-child {
    font-size: 24px;
  }

  .stat-value {
    font-size: 22px;
  }

  .stat-label {
    font-size: 11px;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
  }

  .about-card {
    width: 150px;
    height: 220px;
  }

  .about-cards {
    min-height: 220px;
    gap: 8px;
  }

  .service-card {
    width: 170px;
    height: 230px;
  }

  .footer-logo-large {
    font-size: 52px;
    letter-spacing: 0px;
    top: 20px;
  }

  .footer-social {
    margin-top: 80px;
  }

  .testimonial-card {
    width: 210px;
    min-width: 210px;
  }

  .explore-bg-svg {
    width: 300px;
    height: 300px;
  }

  .cta-title {
    font-size: 20px;
  }

  .cta-bg {
    width: 600px;
    height: 420px;
  }
}



/* =============================================
  Reduced Motion — Accessibility
  ============================================= */

@media (prefers-reduced-motion: reduce) {

  *,  
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .explore-bg-svg {
    animation: none;
  }

  .explore-images-wrapper {
    animation: none;
  }

  .testimonials-wrapper {
    animation: none;
  }
}