  *,
  *::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 */
  .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 */
  .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: -300px;
  }

  /* 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 {
    margin-top: -230.56px;
  }

  /* 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;
  }

  .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);
  }

  .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;
  }

  .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 .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;
  }

  .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;
  }

  /* 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;
    min-height: 1280px;
  }

  /* 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: rotateGalaxy 30s linear infinite;
  }

  /* 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;
    pointer-events: none;
    z-index: 3;
    width: 100%;
    height: 250px;
    margin: -60px 0;
    overflow: visible;
    -webkit-mask-image: linear-gradient(to right,
        transparent 0,
        rgba(0, 0, 0, 0.02) 20px,
        rgba(0, 0, 0, 0.08) 60px,
        rgba(0, 0, 0, 0.4) 150px,
        black 300px,
        black calc(100% - 300px),
        rgba(0, 0, 0, 0.4) calc(100% - 150px),
        rgba(0, 0, 0, 0.08) calc(100% - 60px),
        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) 60px,
        rgba(0, 0, 0, 0.4) 150px,
        black 300px,
        black calc(100% - 300px),
        rgba(0, 0, 0, 0.4) calc(100% - 150px),
        rgba(0, 0, 0, 0.08) calc(100% - 60px),
        rgba(0, 0, 0, 0.02) calc(100% - 20px),
        transparent 100%);
  }

  /* Explore Images Wrapper for infinite scroll */
  .explore-images-wrapper {
    display: flex;
    gap: 42.667px;
    align-items: center;
    justify-content: flex-start;
    animation: exploreScroll 30s linear infinite;
    will-change: transform;
    position: relative;
    z-index: 2;
    width: fit-content;
  }



  /* Explore Images Infinite Scroll Animation */
  @keyframes exploreScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-25% - 10.666px));
      /* 25% of 4 sets = 1 set. Adding 1/4 of a gap (42.667px / 4) to compensate for the flex gaps */
    }
  }

  /* 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) */
  .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 */
  .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);
  }

  /* EFEKT: Explore Görseller Hover - %50 büyüme + öne çıkma + glow */
  .explore-image:hover {
    transform: scale(1.5);
    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 */
  .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: 71.111px;
    height: 71.111px;
  }

  /* Opacity values - keeping original for visual effect */
  .explore-image-1 {
    opacity: 0.2;
  }

  .explore-image-2 {
    opacity: 0.5;
  }

  .explore-image-3 {
    opacity: 0.8;
  }

  .explore-image-4 {
    opacity: 1;
  }

  .explore-image-5 {
    opacity: 0.8;
  }

  .explore-image-6 {
    opacity: 0.5;
  }

  .explore-image-7 {
    opacity: 0.2;
  }

  /* 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: 20px 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));
      /* 25% of 4 sets = 1 set. Adding 1/4 of gap (21.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: 283.556px;
    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);
  }

  .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;
  }

  .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: 312.889px;
    height: 7.111px;
    pointer-events: none;
    z-index: 1;
  }

  .testimonial-card-highlight .testimonial-dots {
    top: 20.44px;
    left: 20.44px;
  }

  .testimonial-dots-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .testimonial-dots img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  /* 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: #e3e3e3;
    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: 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%;
  }

  #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;
  }

  .section-title--explore span:last-child {
    letter-spacing: -0.8px;
    font-weight: 600;
  }

  .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-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);
  }

  .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;
    transition: opacity 0.22s ease, transform 0.22s ease, filter 0.22s ease;
  }

  .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;
  }

  .hero-continue.is-floating {
    position: fixed;
    right: clamp(18px, 4vw, 64px);
    bottom: clamp(18px, 3vw, 36px);
    z-index: 80;
    padding: 8px 8px 8px 18px;
    border-radius: 999px;
    background: rgba(1, 9, 25, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 38px rgba(0, 23, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: floatingContinueIn 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-continue.is-floating p {
    font-size: 14px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .hero-continue.is-floating .btn-circle {
    width: 46px;
    height: 46px;
  }

  .hero-continue.is-floating .icon-arrow-down {
    transform: rotate(180deg);
  }

  .page-scroll-action {
    position: fixed;
    right: clamp(18px, 4vw, 64px);
    bottom: clamp(18px, 3vw, 36px);
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 7.111px;
    padding: 8px 8px 8px 18px;
    border-radius: 999px;
    background: rgba(1, 9, 25, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 38px rgba(0, 23, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(0.97);
    transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .page-scroll-action.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .page-scroll-action p {
    font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
  }

  .page-scroll-action .btn-circle {
    width: 46px;
    height: 46px;
  }

  .page-scroll-action .icon-arrow-down {
    transform: rotate(180deg);
  }

  @keyframes floatingContinueIn {
    from {
      opacity: 0;
      transform: translateY(16px) scale(0.96);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  /* 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;
    /* 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;
    min-height: 530px;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .about-card {
    /* 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 */
  }

  /* --- 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);
  }


  /* Ö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;
  }

  .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 {
    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 GALAXY */

  .explore-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 21.333px;
    position: relative;
    z-index: 2;
  }

  .explore-text-container .section-title {
    margin-top: 0;
    width: 403.556px;
  }

  .explore-images-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42.667px;
    z-index: 1;
  }

  .explore-center-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 133.333px;
    height: 133.333px;
    z-index: 2;
  }

  .explore-center-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .explore-images {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 42.667px;
    position: relative;
    width: max-content;
    animation: infiniteScroll 20s linear infinite;
  }

  @keyframes infiniteScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-50% - 21.333px));
      /* -50% of the total width minus half the gap */
    }
  }

  .explore-images:hover {
    animation-play-state: paused;
  }

  .explore-img {
    border-radius: 88.889px;
    border: none;
    box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.25);
    background: #e3e3e3;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    background-clip: padding-box;
  }

  .explore-img::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;
  }

  .explore-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    border-radius: 88.889px;
  }

  .explore-img-7 {
    width: 35.556px;
    height: 35.556px;
    opacity: 0.2;
  }

  .btn-explore {
    height: 49.778px;
    font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont,
      "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.8px;
    position: relative;
    z-index: 2;
  }

  .btn-explore strong,
  .btn-explore span:last-child {
    font-weight: 500;
  }

  /* TESTIMONIALS (CLIENT STORIES) */

  .testimonials-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: testimonialScroll 30s linear infinite;
  }

  @keyframes testimonialScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-50% - 12px));
      /* -50% width minus half the gap */
    }
  }

  .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),
      grid-template-rows 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
      gap 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
      transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: grid;
    grid-template-rows: auto 0fr;
    position: relative;
    overflow: hidden;
    gap: 0;
    transform: translateZ(0) scale(1);
    will-change: transform, grid-template-rows, gap;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
  }

  .faq-item[open] {
    grid-template-rows: auto 1fr;
    gap: 10.667px;
    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);
  }

  .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;
  }

  .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 */
  .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.95;
    position: relative;
  }

  .footer-social-icon-svg {
    width: 17.778px;
    height: 17.778px;
    display: block;
    position: relative;
    z-index: 1;
    overflow: visible;
  }

  .footer-social-icon-svg rect,
  .footer-social-icon-svg circle,
  .footer-social-icon-svg path {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .footer-social-icon-svg .is-filled {
    fill: #ffffff;
    stroke: none;
  }

  .footer-social-icon-svg .is-cutout {
    fill: #0017ff;
    stroke: none;
  }

  .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.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 1000;
    border-bottom: none;
    transform: none;
    padding: 80px 24px 40px;
  }

  .nav-center.nav-open .nav-link {
    font-size: 20px;
    padding: 14px 24px;
    border-bottom: none;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .nav-center.nav-open .nav-link.active {
    border-bottom: none;
    background: rgba(0, 23, 255, 0.15);
    border-radius: 12px;
  }

  .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 {
      padding: 40px 0;
      overflow-x: hidden;
    }

    /* --- Hero Background --- */
    .hero-ellipses {
      left: -300px;
      width: 1100px;
      bottom: -150px;
    }

    .hero-stars {
      width: 100%;
      left: 0;
      transform: none;
    }

    .star {
      display: none;
    }

    /* --- About --- */
    #hakkimizda {
      padding: 32px 24px;
      min-height: auto;
    }

    #hakkimizda .pill,
    .about-pill {
      margin-top: 0 !important;
    }

    #hakkimizda .container {
      gap: 24px;
    }

    .about-cards {
      min-height: 320px;
    }

    .about-card {
      width: 190px;
      height: 340px;
    }

    /* --- Services --- */
    #hizmetler {
      padding: 32px 0;
    }

    #hizmetler .container {
      padding: 0 24px;
      gap: 24px;
    }

    .services-text-container {
      width: 100%;
    }

    #hizmetler .section-title,
    #hizmetler .section-desc {
      width: 100%;
    }

    .service-list {
      width: 100%;
      flex-wrap: nowrap;
      justify-content: flex-start;
      padding: 80px 24px;
    }

    .service-card {
      width: 218.667px;
      flex-shrink: 0;
    }

    /* --- Why Partner --- */
    #neden-biz {
      padding: 32px 0;
    }

    #neden-biz .container {
      padding: 0 24px;
      gap: 24px;
    }

    .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;
    }

    .why-center-ellipse {
      display: none;
    }

    .why-stat-container-bg {
      display: none;
    }

    .why-ellipse {
      display: none;
    }

    /* --- Explore --- */
    #kesfet {
      padding: 32px 0;
    }

    #kesfet .container.explore-container {
      padding: 32px 24px;
      min-height: auto;
      gap: 24px;
    }

    .explore-bg-svg {
      width: 800px;
      height: 800px;
      opacity: 0.7;
    }

    .section-title--explore {
      width: 100%;
    }

    /* --- Testimonials --- */
    #referanslar {
      padding: 32px 0;
    }

    #referanslar .container {
      padding: 0 24px;
      gap: 24px;
    }

    .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);
    }

    .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: -24px !important;
    }

    #hizmetler {
      margin-top: -16px !important;
    }

    #neden-biz {
      margin-top: -8px !important;
    }

    #kesfet {
      margin-top: -16px !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) {

    /* --- 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: 32px 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: 170px;
      height: 280px;
      border-radius: 16px;
    }

    .about-cards {
      min-height: 280px;
      gap: 12px;
      padding: 24px 0;
    }

    /* --- Services --- */
    .service-list {
      gap: 12px;
    }

    .service-card {
      width: 180px;
      height: 240px;
      border-radius: 14px;
      flex-shrink: 0;
      padding: 15px;
    }

    .service-media {
      width: 100%;
      height: 170px;
      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: 16px;
      height: 48px;
    }

    .cta-bg {
      top: 120px;
    }

    .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: -8px !important;
    }

    #hizmetler {
      margin-top: -8px !important;
    }

    #neden-biz {
      margin-top: 0 !important;
    }

    #kesfet {
      margin-top: -8px !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: 60px;
      gap: 16px;
    }

    .hero-ellipses {
      top: -160px;
      bottom: auto;
    }

    .hero-stats-container {
      gap: 8px;
      margin-top: 30px;
    }

    .hero-bottom {
      padding: 0;
      gap: 8px;
    }

    .hero-subtitle {
      font-size: 13px;
      line-height: 1.5;
    }

    .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;
    }

    .about-card {
      width: 140px;
      height: 230px;
      border-radius: 12px;
    }

    .about-cards {
      min-height: 230px;
      gap: 8px;
      padding: 12px 0;
    }

    .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%;
      gap: 10px;
      padding: 80px 12px;
    }

    .service-card {
      width: 150px;
      max-width: none;
      height: 200px;
      flex-shrink: 0;
      border-radius: 12px;
      padding: 10px;
    }

    .service-media {
      width: 100%;
      height: 180px;
      border-radius: 8px;
    }

    /* --- Why Partner --- */
    #neden-biz {
      padding: 20px 0;
    }

    #neden-biz .container {
      padding: 0 12px;
      gap: 16px;
    }

    .why-stats-container {
      gap: 16px;
    }

    .why-stats-column {
      max-width: 100%;
      gap: 12px;
    }

    .why-stat-card {
      padding: 12px;
      padding-right: 12px;
      min-height: auto !important;
      border-radius: 12px;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
    }

    .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;
    }

    .why-stat-icon {
      width: 36px;
      height: 36px;
      margin-right: -18px;
    }

    .why-center-icon-container {
      width: 72px;
      height: 72px;
    }

    .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 {
      width: 48px;
      height: 48px;
    }

    .explore-images-wrapper {
      gap: 24px;
    }

    /* --- 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-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: 40px 0 32px;
      margin-top: 24px !important;
      overflow: visible !important;
      min-height: auto;
    }

    .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;
    }

    .cta-bg {
      width: 800px;
      height: 560px;
      top: 150px;
    }

    /* --- 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 --- */
    .explore-bg-svg {
      animation-duration: 45s;
    }

    .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-card:hover {
      transform: none;
    }

    .why-stat-wrapper:hover {
      transform: none;
    }

    .explore-image:hover {
      transform: scale(1.2);
    }
  }

  /* =============================================
    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: 120px;
      height: 200px;
    }

    .about-cards {
      min-height: 200px;
      gap: 6px;
    }

    .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;
    }
  }

  /* =============================================
    MOBILE STABILIZATION PATCH
    ============================================= */

  @media (max-width: 768px) {
    html,
    body {
      width: 100%;
      max-width: 100%;
      overflow-x: clip;
    }

    .container,
    #hakkimizda .container,
    #hizmetler .container,
    #neden-biz .container,
    #kesfet .container.explore-container,
    #referanslar .container,
    #sss .container,
    .footer-inner {
      width: 100%;
      max-width: 100%;
      padding-left: 16px;
      padding-right: 16px;
    }

    .section,
    .hero,
    #hakkimizda,
    #hizmetler,
    #neden-biz,
    #kesfet,
    #referanslar,
    #sss,
    #iletisim,
    .footer {
      overflow-x: clip;
    }

    .hero {
      padding: 0 0 30px;
      min-height: auto;
    }

    .navbar {
      padding: 10px 16px;
    }

    .logo {
      min-width: 0;
    }

    .logo-mark {
      width: 48px;
      height: 36px;
    }

    .logo-text {
      font-size: 22px;
      line-height: 1;
      letter-spacing: 0;
    }

    .hamburger {
      flex: 0 0 42px;
    }

    .nav-center.nav-open {
      min-height: 100dvh;
      padding: 88px 20px 36px;
    }

    .hero-vertical-container {
      width: 100%;
      margin-top: 72px;
      padding: 0 16px;
    }

    .hero-text-container,
    .services-text-container,
    .why-text-container,
    .explore-text-container,
    .client-stories-text-container,
    .cta-text {
      width: 100%;
      max-width: 100%;
    }

    .hero-title,
    .section-title,
    .section-title span,
    .cta-title,
    .footer-logo-large {
      letter-spacing: 0 !important;
      overflow-wrap: anywhere;
    }

    .hero-title {
      font-size: clamp(30px, 9vw, 42px);
      line-height: 1.12;
    }

    .section-title {
      font-size: clamp(24px, 7vw, 32px);
      line-height: 1.2;
    }

    .section-title--why span:last-child {
      font-size: clamp(28px, 8vw, 36px);
    }

    .section-title--explore,
    .section-title--faq {
      width: 100%;
      max-width: 100%;
    }

    .section-desc,
    .hero-subtitle,
    .cta-desc {
      letter-spacing: 0 !important;
      max-width: 100%;
    }

    .pill {
      max-width: 100%;
      white-space: normal;
      height: auto;
      line-height: 1.25;
    }

    .pill-text {
      min-width: 0;
    }

    .hero-ellipses {
      top: -120px;
      left: 50%;
      bottom: auto;
      width: min(170vw, 680px);
      height: auto;
      transform: translateX(-50%);
      opacity: 0.8;
    }

    .hero-ellipses-img {
      height: auto;
    }

    .hero-stats-container {
      width: 100%;
      padding: 0 16px;
      margin-top: 22px;
    }

    .hero-stats {
      gap: 10px;
      background: transparent;
      border: 0;
      box-shadow: none;
    }

    .stat-card {
      min-width: 0;
      align-items: center;
    }

    .hero-bottom {
      width: 100%;
      padding: 0;
    }

    #hakkimizda,
    #hizmetler,
    #neden-biz,
    #kesfet,
    #referanslar,
    #sss,
    #iletisim {
      margin-top: 0 !important;
      padding-top: 34px;
      padding-bottom: 34px;
    }

    #hakkimizda {
      min-height: auto;
    }

    #hakkimizda::before,
    #hakkimizda::after,
    #hizmetler::before,
    .why-ellipse,
    .why-center-ellipse,
    .why-stat-container-bg,
    .client-stories-bg-glow,
    .faq-ellipse {
      display: none !important;
    }

    .about-cards,
    .service-list {
      width: 100%;
      max-width: 100%;
      min-height: auto;
      padding: 18px 16px;
      overflow-x: auto;
      overflow-y: visible;
      scroll-snap-type: x mandatory;
      scroll-padding-inline: 16px;
      -webkit-overflow-scrolling: touch;
    }

    .about-card,
    .service-card {
      scroll-snap-align: center;
    }

    .about-card {
      width: clamp(132px, 42vw, 176px);
      height: clamp(214px, 62vw, 282px);
      flex: 0 0 auto;
    }

    .service-card {
      width: clamp(146px, 45vw, 190px);
      height: clamp(204px, 57vw, 244px);
      flex: 0 0 auto;
    }

    .service-media {
      height: 100%;
      min-height: 0;
    }

    .about-controls,
    .service-controls {
      margin-top: 8px;
    }

    .why-stats-container {
      display: flex;
      flex-direction: column;
      gap: 14px;
      width: 100%;
      height: auto;
    }

    .why-stats-column {
      width: 100%;
      max-width: 100%;
      gap: 14px;
    }

    .why-stat-wrapper,
    .why-stat-wrapper-flipped {
      width: 100%;
      transform: none !important;
    }

    .why-stat-icon {
      display: none;
    }

    .why-stat-card {
      width: 100%;
      padding: 16px;
      min-height: auto;
    }

    .why-center-icon-container {
      order: -1;
      margin: 0 auto;
    }

    #kesfet .container.explore-container,
    #referanslar .container {
      gap: 20px;
    }

    .explore-bg-svg {
      width: min(92vw, 360px);
      height: min(92vw, 360px);
      left: 50%;
      transform: translateX(-50%);
      opacity: 0.35;
    }

    .explore-images-container,
    .testimonials-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
    }

    .explore-images-wrapper {
      gap: 18px;
      animation-duration: 38s;
    }

    .testimonials-wrapper {
      gap: 16px;
      animation-duration: 34s;
    }

    .testimonial-card {
      width: min(78vw, 290px);
      min-width: min(78vw, 290px);
    }

    .faq-list {
      width: 100%;
      gap: 10px;
    }

    .faq-summary {
      align-items: center;
    }

    .faq-question {
      min-width: 0;
    }

    .faq-icon {
      transition: transform 0.25s ease;
    }

    .faq-item[open] .faq-icon {
      transform: rotate(180deg);
    }

    .cta-section {
      min-height: auto;
      overflow: hidden !important;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      gap: 18px;
    }

    .cta-bg {
      top: 50%;
      left: 50%;
      width: min(150vw, 620px);
      height: min(105vw, 440px);
      transform: translate(-50%, -44%);
      opacity: 0.75;
    }

    .cta-title {
      font-size: clamp(24px, 7vw, 32px);
      line-height: 1.24;
    }

    .footer {
      margin-top: 0 !important;
      overflow: hidden;
    }

    .footer-bg {
      opacity: 0.55;
    }

    .footer-bg-left,
    .footer-bg-right {
      display: none;
    }

    .footer-logo-large {
      width: 100%;
      font-size: clamp(54px, 18vw, 96px);
      top: 20px;
    }

    .footer-social {
      margin-top: clamp(86px, 26vw, 130px);
    }

    .footer-links,
    .footer-policy {
      row-gap: 8px;
    }
  }

  @media (max-width: 480px) {
    .container,
    #hakkimizda .container,
    #hizmetler .container,
    #neden-biz .container,
    #kesfet .container.explore-container,
    #referanslar .container,
    #sss .container,
    .footer-inner {
      padding-left: 12px;
      padding-right: 12px;
    }

    .navbar {
      padding-left: 12px;
      padding-right: 12px;
    }

    .hero-vertical-container,
    .hero-stats-container {
      padding-left: 12px;
      padding-right: 12px;
    }

    .hero-vertical-container {
      margin-top: 56px;
    }

    .hero-title {
      font-size: clamp(28px, 8.6vw, 34px);
    }

    .section-title {
      font-size: clamp(22px, 6.7vw, 28px);
    }

    .section-title--why span:last-child {
      font-size: clamp(24px, 7.5vw, 31px);
    }

    .hero-ellipses {
      width: min(165vw, 560px);
      top: -82px;
    }

    .stat-card {
      padding: 13px 12px;
    }

    .about-cards,
    .service-list {
      padding-left: 12px;
      padding-right: 12px;
      scroll-padding-inline: 12px;
    }

    .service-list {
      padding-top: 28px;
      padding-bottom: 28px;
    }

    .explore-images-container::before,
    .explore-images-container::after,
    .testimonials-container::before,
    .testimonials-container::after {
      width: 28px;
    }

    .cta-desc {
      padding: 0;
    }

    .cta-bg {
      width: min(145vw, 520px);
      height: min(108vw, 380px);
    }
  }

  /* =============================================
    FIGMA JSON ASSET RESTORE
    ============================================= */

  .logo-mark-full {
    width: 153.556px;
    height: 51.556px;
    object-fit: contain;
  }

  .logo-mark-full + .logo-text {
    display: none;
  }

  #kesfet {
    min-height: min(1280px, 100vw);
  }

  #kesfet .container.explore-container {
    min-height: 1280px;
    justify-content: center;
    gap: 70px;
  }

  .explore-bg-svg {
    animation: none;
    opacity: 1;
  }

  .explore-images-container {
    width: min(100%, 920px);
    height: 112px;
    margin: -8px 0 0;
    overflow: hidden;
    pointer-events: none;
  }

  .explore-images-wrapper {
    gap: 27px;
    animation: exploreScroll 42s linear infinite;
  }

  .explore-image {
    width: 88.889px !important;
    height: 88.889px !important;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .explore-image-img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    opacity: 1;
    border-radius: 0;
  }

  .explore-image:hover {
    transform: scale(1.08);
    box-shadow: none;
  }

  .explore-image-1,
  .explore-image-7 {
    opacity: 0.22;
  }

  .explore-image-2,
  .explore-image-6 {
    opacity: 0.5;
  }

  .explore-image-3,
  .explore-image-5 {
    opacity: 0.78;
  }

  .explore-image-4 {
    opacity: 1;
  }

  .btn-explore {
    min-width: 202.667px;
    height: 49.778px;
  }

  @media (max-width: 1024px) {
    .logo-mark-full {
      width: 132px;
      height: auto;
    }

    #kesfet,
    #kesfet .container.explore-container {
      min-height: clamp(620px, 118vw, 980px);
    }

    .explore-bg-svg {
      width: min(145vw, 980px);
      height: min(145vw, 980px);
    }

    .explore-images-container {
      width: 100%;
      height: 96px;
    }

    .explore-image {
      width: 76px !important;
      height: 76px !important;
    }
  }

  @media (max-width: 768px) {
    .logo-mark-full {
      width: 118px;
      height: auto;
    }

    #kesfet {
      padding: 38px 0;
    }

    #kesfet,
    #kesfet .container.explore-container {
      min-height: clamp(520px, 132vw, 760px);
    }

    #kesfet .container.explore-container {
      gap: 34px;
      justify-content: center;
    }

    .explore-bg-svg {
      width: min(168vw, 720px);
      height: min(168vw, 720px);
      opacity: 0.9;
    }

    .explore-images-container {
      height: 82px;
      margin: -4px 0;
      -webkit-mask-image: linear-gradient(to right, transparent 0, black 42px, black calc(100% - 42px), transparent 100%);
      mask-image: linear-gradient(to right, transparent 0, black 42px, black calc(100% - 42px), transparent 100%);
    }

    .explore-images-wrapper {
      gap: 18px;
      animation-duration: 36s;
    }

    .explore-image {
      width: 64px !important;
      height: 64px !important;
    }

    .btn-explore {
      min-width: 190px;
      height: 46px;
    }
  }

  @media (max-width: 480px) {
    .logo-mark-full {
      width: 108px;
    }

    #kesfet,
    #kesfet .container.explore-container {
      min-height: clamp(470px, 140vw, 620px);
    }

    #kesfet .container.explore-container {
      gap: 26px;
    }

    .explore-bg-svg {
      width: min(178vw, 620px);
      height: min(178vw, 620px);
    }

    .explore-images-container {
      height: 68px;
    }

    .explore-images-wrapper {
      gap: 14px;
    }

    .explore-image {
      width: 54px !important;
      height: 54px !important;
    }

    .btn-explore {
      min-width: 176px;
      height: 44px;
    }
  }

  /* Keep decorative Figma exports from creating page-level horizontal scroll. */
  #hakkimizda,
  #hizmetler,
  #neden-biz,
  #kesfet,
  #referanslar,
  #sss,
  #iletisim,
  .footer {
    max-width: 100%;
    overflow-x: clip;
  }

  .hero {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-x: clip;
  }

  .hero-ellipses {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-cards,
  .service-list,
  .explore-images-container,
  .testimonials-container {
    max-width: 100%;
    contain: layout paint;
  }

  /* =============================================
    MOBILE RHYTHM SYSTEM
    ============================================= */

  @media (max-width: 768px) {
    :root {
      --mobile-edge: 16px;
      --mobile-section-y: 34px;
      --mobile-section-gap: 20px;
      --mobile-text-gap: 14px;
      --mobile-block-gap: 18px;
    }

    .container,
    #hakkimizda .container,
    #hizmetler .container,
    #neden-biz .container,
    #kesfet .container.explore-container,
    #referanslar .container,
    #sss .container,
    #iletisim .container,
    .footer-inner {
      padding-inline: var(--mobile-edge) !important;
      max-width: 100% !important;
    }

    #hakkimizda,
    #hizmetler,
    #neden-biz,
    #kesfet,
    #referanslar,
    #sss,
    #iletisim {
      margin-top: 0 !important;
      padding-block: var(--mobile-section-y) !important;
      min-height: 0 !important;
      height: auto !important;
      overflow: hidden !important;
    }

    #hakkimizda .container,
    #hizmetler .container,
    #neden-biz .container,
    #kesfet .container.explore-container,
    #referanslar .container,
    #sss .container,
    #iletisim .cta-content {
      min-height: 0 !important;
      height: auto !important;
      padding-block: 0 !important;
      gap: var(--mobile-section-gap) !important;
    }

    .hero-text-container,
    .services-text-container,
    .why-text-container,
    .explore-text-container,
    .client-stories-text-container,
    .cta-text,
    .faq-container {
      gap: var(--mobile-text-gap) !important;
    }

    .pill,
    .section-title,
    .section-desc,
    .cta-title,
    .cta-desc {
      margin: 0 !important;
    }

    .section-title {
      font-size: clamp(24px, 7.2vw, 30px) !important;
      line-height: 1.18 !important;
    }

    .section-title--why span:first-child,
    .section-title--why span:last-child,
    .section-title--client-stories,
    .section-title--faq,
    .section-title--explore {
      font-size: clamp(24px, 7.2vw, 30px) !important;
      line-height: 1.18 !important;
    }

    .section-desc,
    .hero-subtitle,
    .cta-desc {
      font-size: 14px !important;
      line-height: 1.55 !important;
    }

    .about-cards,
    .service-list {
      padding-block: var(--mobile-block-gap) !important;
      margin: 0 !important;
    }

    .about-controls,
    .service-controls,
    .faq-cta {
      margin-top: 0 !important;
    }

    .why-stats-container,
    .why-stats-column,
    .faq-list {
      gap: var(--mobile-text-gap) !important;
    }

    .why-stats-container {
      min-height: 0 !important;
      height: auto !important;
    }

    #kesfet .container.explore-container {
      justify-content: center !important;
    }

    #kesfet .explore-bg-svg {
      top: 50% !important;
      left: 50% !important;
      width: min(154vw, 560px) !important;
      height: min(154vw, 560px) !important;
      opacity: 0.72 !important;
      transform: translate(-50%, -50%) !important;
    }

    .explore-images-container {
      height: 64px !important;
      margin: 0 !important;
    }

    .explore-image {
      width: 52px !important;
      height: 52px !important;
    }

    .testimonials-container,
    .faq-list {
      margin: 0 !important;
    }

    .faq-item {
      padding: 13px !important;
    }

    .cta-section {
      min-height: 0 !important;
    }

    .cta-action {
      margin-top: 0 !important;
    }

    .footer {
      margin-top: 0 !important;
      padding-block: var(--mobile-section-y) 18px !important;
      min-height: 0 !important;
    }

    .footer-inner {
      height: auto !important;
      min-height: 0 !important;
      gap: var(--mobile-text-gap) !important;
      padding-block: 0 !important;
    }
  }

  @media (max-width: 480px) {
    :root {
      --mobile-edge: 14px;
      --mobile-section-y: 30px;
      --mobile-section-gap: 18px;
      --mobile-text-gap: 12px;
      --mobile-block-gap: 16px;
    }

    .section-title,
    .section-title--why span:first-child,
    .section-title--why span:last-child,
    .section-title--client-stories,
    .section-title--faq,
    .section-title--explore {
      font-size: clamp(23px, 7.3vw, 28px) !important;
    }

    #kesfet .explore-bg-svg {
      width: min(150vw, 500px) !important;
      height: min(150vw, 500px) !important;
    }
  }

  @media (max-width: 768px) {
    .hero-ellipses {
      top: 54px !important;
    }
  }

  @media (max-width: 480px) {
    .hero-ellipses {
      top: 76px !important;
    }

    .hero-vertical-container {
      margin-top: 56px !important;
    }

    .hero-text-container > .pill {
      transform: translateY(-18px) !important;
    }

    .hero-title {
      font-size: clamp(25px, 7.5vw, 30px) !important;
      line-height: 1.15 !important;
    }
  }

  /* =============================================
    CAROUSEL AND CTA MOTION REPAIR
    ============================================= */

  .about-cards,
  .service-list {
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(24px, calc((100vw - 240px) / 2));
  }

  .about-card,
  .service-card {
    scroll-snap-align: center;
    transform-origin: center center;
  }

  .about-card.active {
    opacity: 1;
    transform: scale(1);
    z-index: 16;
    box-shadow: 0 0 40px rgba(0, 23, 255, 0.45);
  }

  @media (min-width: 769px) {
    .about-cards,
    .service-list {
      padding-inline: max(50px, calc((100vw - 1102px) / 2)) !important;
      overflow-x: auto;
      overflow-y: visible;
    }

    .about-cards {
      -webkit-mask-image: linear-gradient(to right,
          transparent 0,
          rgba(0, 0, 0, 0.08) 32px,
          rgba(0, 0, 0, 0.45) 120px,
          #000 240px,
          #000 calc(100% - 240px),
          rgba(0, 0, 0, 0.45) calc(100% - 120px),
          rgba(0, 0, 0, 0.08) calc(100% - 32px),
          transparent 100%) !important;
      mask-image: linear-gradient(to right,
          transparent 0,
          rgba(0, 0, 0, 0.08) 32px,
          rgba(0, 0, 0, 0.45) 120px,
          #000 240px,
          #000 calc(100% - 240px),
          rgba(0, 0, 0, 0.45) calc(100% - 120px),
          rgba(0, 0, 0, 0.08) calc(100% - 32px),
          transparent 100%) !important;
    }
  }

  @media (max-width: 768px) {
    .about-cards,
    .service-list {
      scroll-padding-inline: calc((100vw - min(62vw, 190px)) / 2);
      overflow-x: auto !important;
      overflow-y: visible !important;
    }

    .about-card,
    .service-card {
      opacity: 0.52 !important;
      transform: scale(0.92) !important;
    }

    .about-card.active,
    .service-card.active {
      opacity: 1 !important;
      transform: scale(1) !important;
      box-shadow: 0 0 28px rgba(0, 23, 255, 0.45) !important;
    }

    .cta-section {
      overflow: hidden !important;
    }

    .cta-section::after {
      content: "" !important;
      position: absolute !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      height: 34px !important;
      background: linear-gradient(180deg, rgba(1, 9, 25, 0), rgba(1, 9, 25, 0.82) 88%) !important;
      pointer-events: none !important;
      z-index: 1 !important;
    }

    .cta-bg {
      top: auto !important;
      bottom: -138px !important;
      width: min(150vw, 580px) !important;
      height: min(92vw, 360px) !important;
      transform: translateX(-50%) !important;
      opacity: 0.92 !important;
      z-index: 0 !important;
    }

    .cta-content {
      z-index: 2 !important;
      isolation: isolate;
    }

    .cta-title,
    .cta-desc {
      mix-blend-mode: normal !important;
      mask-image: none !important;
      -webkit-mask-image: none !important;
    }

    .cta-action {
      margin-top: 0 !important;
    }
  }

  @media (max-width: 480px) {
    .cta-bg {
      bottom: -122px !important;
      width: min(150vw, 520px) !important;
      height: min(92vw, 330px) !important;
    }
  }

  /* =============================================
    MOBILE FOOTER RHYTHM REPAIR
    ============================================= */

  @media (max-width: 768px) {
    .hero-continue.is-floating {
      left: 50% !important;
      right: auto !important;
      bottom: max(14px, env(safe-area-inset-bottom)) !important;
      transform: translateX(-50%) !important;
      animation: none !important;
      padding: 7px 7px 7px 15px !important;
      gap: 8px !important;
      max-width: calc(100vw - 28px) !important;
    }

    .hero-continue.is-floating p {
      font-size: 12.5px !important;
      line-height: 1.2 !important;
    }

    .hero-continue.is-floating .btn-circle {
      width: 38px !important;
      height: 38px !important;
      flex: 0 0 38px !important;
    }

    .hero-continue.is-floating .icon-arrow-down {
      width: 18px !important;
      height: 18px !important;
    }

    .page-scroll-action {
      left: 50% !important;
      right: auto !important;
      bottom: max(14px, env(safe-area-inset-bottom)) !important;
      gap: 8px !important;
      max-width: calc(100vw - 28px) !important;
      padding: 7px 7px 7px 15px !important;
      transform: translateX(-50%) translateY(14px) scale(0.97) !important;
    }

    .page-scroll-action.is-visible {
      transform: translateX(-50%) translateY(0) scale(1) !important;
    }

    .page-scroll-action p {
      font-size: 12.5px !important;
      line-height: 1.2 !important;
    }

    .page-scroll-action .btn-circle {
      width: 38px !important;
      height: 38px !important;
      flex: 0 0 38px !important;
    }

    .page-scroll-action .icon-arrow-down {
      width: 18px !important;
      height: 18px !important;
    }

    #iletisim {
      padding-bottom: calc(var(--mobile-section-y) + 8px) !important;
    }

    .footer {
      padding-block: calc(var(--mobile-section-y) + 4px) var(--mobile-section-y) !important;
      min-height: 0 !important;
      margin-top: 0 !important;
    }

    .footer-inner {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: flex-start !important;
      height: auto !important;
      min-height: 0 !important;
      gap: 16px !important;
      padding-inline: var(--mobile-edge) !important;
      padding-block: 0 !important;
    }

    .footer-logo-large {
      position: relative !important;
      left: auto !important;
      top: auto !important;
      transform: none !important;
      width: 100% !important;
      margin: 0 !important;
      font-size: clamp(64px, 22vw, 104px) !important;
      line-height: 0.85 !important;
      letter-spacing: 0 !important;
      text-align: center !important;
    }

    .footer-social,
    .footer-links,
    .footer-divider,
    .footer-bottom {
      margin-top: 0 !important;
    }

    .footer-social {
      gap: 12px !important;
    }

    .footer-social-icon {
      width: 34px !important;
      height: 34px !important;
      padding: 0 !important;
      flex: 0 0 34px !important;
    }

    .footer-links {
      width: 100% !important;
      display: flex !important;
      flex-wrap: wrap !important;
      justify-content: center !important;
      gap: 10px 14px !important;
      font-size: 12px !important;
      line-height: 1.35 !important;
    }

    .footer-divider {
      width: 100% !important;
      opacity: 0.55 !important;
    }

    .footer-bottom {
      width: 100% !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 8px !important;
      padding-bottom: 0 !important;
      text-align: center !important;
    }

    .footer-copy,
    .footer-policy {
      font-size: 11px !important;
      line-height: 1.4 !important;
    }

    .footer-policy {
      display: flex !important;
      flex-wrap: wrap !important;
      justify-content: center !important;
      gap: 8px 12px !important;
    }
  }

  @media (max-width: 480px) {
    .footer-inner {
      gap: 14px !important;
    }

    .footer-logo-large {
      font-size: clamp(58px, 20vw, 88px) !important;
    }
  }

  /* Final mobile CTA/footer compact pass */
  @media (max-width: 768px) {
    #iletisim {
      padding-block: 30px 26px !important;
      background: #010919 !important;
    }

    #iletisim .cta-content {
      gap: 16px !important;
    }

    .cta-section {
      overflow: hidden !important;
    }

    .cta-bg {
      display: block !important;
      top: auto !important;
      bottom: -38px !important;
      left: 50% !important;
      width: min(160vw, 600px) !important;
      height: min(88vw, 330px) !important;
      transform: translateX(-50%) !important;
      opacity: 0.72 !important;
      z-index: 0 !important;
    }

    .cta-bg-img {
      object-position: center bottom !important;
    }

    #iletisim .cta-content {
      position: relative !important;
      z-index: 3 !important;
      transform: translateY(-18px) !important;
    }

    .cta-icon.btn {
      width: 66px !important;
      height: 66px !important;
      margin-bottom: 2px !important;
    }

    .cta-icon-img {
      width: 32px !important;
      height: 32px !important;
    }

    .cta-title {
      font-size: clamp(25px, 7vw, 30px) !important;
      line-height: 1.18 !important;
    }

    .cta-desc {
      max-width: 315px !important;
    }

    .cta-action {
      height: 44px !important;
      min-width: 170px !important;
      margin-top: 4px !important;
    }

    .footer {
      padding-block: 22px 24px !important;
      background: #010919 !important;
    }

    .footer-inner {
      gap: 12px !important;
    }

    .footer-logo-large {
      font-size: clamp(54px, 18vw, 78px) !important;
      line-height: 0.9 !important;
    }

    .footer-social {
      gap: 10px !important;
    }

    .footer-social-icon {
      width: 30px !important;
      height: 30px !important;
      flex-basis: 30px !important;
    }

    .footer-links {
      gap: 8px 12px !important;
      font-size: 11.5px !important;
    }
  }

  /* Final mobile testimonial size normalization */
  @media (max-width: 768px) {
    .testimonials-container {
      overflow-x: auto !important;
      overflow-y: visible !important;
      scroll-snap-type: x mandatory !important;
      scroll-padding-inline: calc((100vw - min(82vw, 330px)) / 2) !important;
      padding: 12px 0 22px !important;
      -webkit-mask-image: linear-gradient(to right,
          transparent 0,
          rgba(0, 0, 0, 0.7) 16px,
          #000 34px,
          #000 calc(100% - 34px),
          rgba(0, 0, 0, 0.7) calc(100% - 16px),
          transparent 100%) !important;
      mask-image: linear-gradient(to right,
          transparent 0,
          rgba(0, 0, 0, 0.7) 16px,
          #000 34px,
          #000 calc(100% - 34px),
          rgba(0, 0, 0, 0.7) calc(100% - 16px),
          transparent 100%) !important;
    }

    .testimonials-container::-webkit-scrollbar {
      display: none !important;
    }

    .testimonials-wrapper {
      animation: none !important;
      align-items: stretch !important;
      gap: 16px !important;
      width: max-content !important;
      padding-inline: calc((100vw - min(82vw, 330px)) / 2) !important;
      transform: none !important;
    }

    .testimonial-card,
    .testimonial-card-highlight {
      width: min(82vw, 330px) !important;
      min-width: min(82vw, 330px) !important;
      max-width: min(82vw, 330px) !important;
      height: 222px !important;
      min-height: 222px !important;
      max-height: 222px !important;
      flex: 0 0 min(82vw, 330px) !important;
      padding: 14px 16px !important;
      gap: 8px !important;
      border-radius: 14px !important;
      transform: none !important;
      box-sizing: border-box !important;
      overflow: hidden !important;
      scroll-snap-align: center !important;
    }

    .testimonial-card::before,
    .testimonial-card-highlight::before {
      border-radius: 14px !important;
    }

    .testimonial-dots,
    .testimonial-card-highlight .testimonial-dots {
      top: 11px !important;
      left: 12px !important;
      right: 12px !important;
      width: auto !important;
      height: 6px !important;
    }

    .testimonial-avatar {
      width: 42px !important;
      height: 42px !important;
      flex: 0 0 42px !important;
    }

    .testimonial-header {
      min-height: 35px !important;
      line-height: 1.25 !important;
    }

    .testimonial-header h3 {
      font-size: 13px !important;
      line-height: 1.25 !important;
    }

    .testimonial-header p {
      font-size: 11px !important;
      line-height: 1.25 !important;
    }

    .testimonial-text {
      display: -webkit-box !important;
      -webkit-box-orient: vertical !important;
      -webkit-line-clamp: 5 !important;
      overflow: hidden !important;
      font-size: 12px !important;
      line-height: 1.35 !important;
    }
  }

  /* Final mobile explore galaxy composition repair */
  @media (max-width: 768px) {
    #kesfet {
      padding-block: 28px !important;
      min-height: 0 !important;
      overflow: hidden !important;
    }

    #kesfet .container.explore-container {
      min-height: 360px !important;
      height: auto !important;
      padding-block: 0 !important;
      justify-content: center !important;
      gap: 14px !important;
      position: relative !important;
      isolation: isolate !important;
    }

    #kesfet .explore-bg-svg {
      top: 52% !important;
      left: 50% !important;
      width: min(108vw, 430px) !important;
      height: min(108vw, 430px) !important;
      transform: translate(-50%, -50%) !important;
      opacity: 0.74 !important;
      z-index: -1 !important;
    }

    .explore-text-container {
      gap: 10px !important;
      z-index: 2 !important;
      transform: translateY(-52px) !important;
    }

    .explore-images-container {
      height: 58px !important;
      margin: 2px 0 0 !important;
      overflow: hidden !important;
      -webkit-mask-image: linear-gradient(to right, transparent 0, #000 34px, #000 calc(100% - 34px), transparent 100%) !important;
      mask-image: linear-gradient(to right, transparent 0, #000 34px, #000 calc(100% - 34px), transparent 100%) !important;
      z-index: 2 !important;
    }

    .explore-images-wrapper {
      gap: 16px !important;
      align-items: center !important;
    }

    .explore-image {
      width: 48px !important;
      height: 48px !important;
      flex: 0 0 48px !important;
      transform: none !important;
    }

    .btn-explore {
      min-width: 178px !important;
      height: 44px !important;
      margin-top: 54px !important;
      z-index: 2 !important;
    }
  }

  @media (max-width: 420px) {
    #kesfet .container.explore-container {
      min-height: 344px !important;
      gap: 12px !important;
    }

    #kesfet .explore-bg-svg {
      width: min(104vw, 390px) !important;
      height: min(104vw, 390px) !important;
      top: 52% !important;
    }

    .explore-image {
      width: 44px !important;
      height: 44px !important;
      flex-basis: 44px !important;
    }

    .btn-explore {
      margin-top: 56px !important;
    }
  }

  /* Final mobile hero galaxy composition */
  @media (max-width: 768px) {
    .hero {
      overflow: hidden !important;
    }

    .hero-ellipses {
      top: clamp(190px, 38vw, 260px) !important;
      left: 50% !important;
      width: min(176vw, 720px) !important;
      height: auto !important;
      transform: translateX(-50%) !important;
      z-index: 1 !important;
    }

    .hero-vertical-container {
      position: relative !important;
      z-index: 5 !important;
      margin-top: clamp(86px, 22vw, 132px) !important;
      gap: 18px !important;
    }

    .hero-text-container {
      position: relative !important;
      z-index: 6 !important;
      gap: 9px !important;
      transform: translateY(-8px) !important;
    }

    .hero-text-container > .pill {
      transform: none !important;
    }

    .hero-title {
      position: relative !important;
      z-index: 6 !important;
      font-size: clamp(28px, 8.4vw, 40px) !important;
      line-height: 1.12 !important;
    }

    .hero-stats-container {
      position: relative !important;
      z-index: 4 !important;
      margin-top: clamp(44px, 11vw, 74px) !important;
    }
  }

  @media (max-width: 480px) {
    .hero-ellipses {
      top: clamp(174px, 46vw, 210px) !important;
      width: min(174vw, 590px) !important;
    }

    .hero-vertical-container {
      margin-top: clamp(58px, 17vw, 78px) !important;
      gap: 16px !important;
    }

    .hero-text-container {
      transform: translateY(-26px) !important;
    }

    .hero-title {
      font-size: clamp(24px, 6.9vw, 28px) !important;
      line-height: 1.13 !important;
      width: 100% !important;
      max-width: calc(100vw - 28px) !important;
      overflow-wrap: normal !important;
    }

    .hero-stats-container {
      margin-top: clamp(62px, 16vw, 82px) !important;
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
      padding-inline: 14px !important;
      overflow: visible !important;
    }

    .hero-stats {
      width: calc(100vw - 28px) !important;
      max-width: calc(100vw - 28px) !important;
      box-sizing: border-box !important;
      overflow: visible !important;
      align-items: stretch !important;
    }

    .stat-card {
      width: calc(100vw - 28px) !important;
      max-width: calc(100vw - 28px) !important;
      flex: 0 0 auto !important;
      box-sizing: border-box !important;
    }

    .hero-bottom,
    .hero-subtitle {
      width: 100% !important;
      max-width: calc(100vw - 28px) !important;
      box-sizing: border-box !important;
    }

    .hero-subtitle {
      white-space: normal !important;
      overflow: visible !important;
      overflow-wrap: break-word !important;
      text-align: center !important;
      margin-inline: auto !important;
    }
  }

  /* Final mobile horizontal carousel edge fade */
  @media (max-width: 768px) {
    .about-controls,
    .service-controls {
      display: none !important;
    }

    .about-cards {
      -webkit-mask-image: linear-gradient(to right,
          transparent 0,
          rgba(0, 0, 0, 0.12) 18px,
          rgba(0, 0, 0, 0.65) 52px,
          #000 94px,
          #000 calc(100% - 94px),
          rgba(0, 0, 0, 0.65) calc(100% - 52px),
          rgba(0, 0, 0, 0.12) calc(100% - 18px),
          transparent 100%) !important;
      mask-image: linear-gradient(to right,
          transparent 0,
          rgba(0, 0, 0, 0.12) 18px,
          rgba(0, 0, 0, 0.65) 52px,
          #000 94px,
          #000 calc(100% - 94px),
          rgba(0, 0, 0, 0.65) calc(100% - 52px),
          rgba(0, 0, 0, 0.12) calc(100% - 18px),
          transparent 100%) !important;
    }
  }

  @media (max-width: 480px) {
    .about-cards {
      -webkit-mask-image: linear-gradient(to right,
          transparent 0,
          rgba(0, 0, 0, 0.28) 8px,
          rgba(0, 0, 0, 0.78) 24px,
          #000 42px,
          #000 calc(100% - 42px),
          rgba(0, 0, 0, 0.78) calc(100% - 24px),
          rgba(0, 0, 0, 0.28) calc(100% - 8px),
          transparent 100%) !important;
      mask-image: linear-gradient(to right,
          transparent 0,
          rgba(0, 0, 0, 0.28) 8px,
          rgba(0, 0, 0, 0.78) 24px,
          #000 42px,
          #000 calc(100% - 42px),
          rgba(0, 0, 0, 0.78) calc(100% - 24px),
          rgba(0, 0, 0, 0.28) calc(100% - 8px),
          transparent 100%) !important;
    }
  }

  /* Keep mobile testimonials auto-moving while preserving soft edge fade */
  @media (max-width: 768px) {
    .testimonials-container {
      overflow: hidden !important;
      scroll-snap-type: none !important;
      scroll-padding-inline: 0 !important;
      -webkit-mask-image: linear-gradient(to right,
          transparent 0,
          rgba(0, 0, 0, 0.55) 18px,
          #000 42px,
          #000 calc(100% - 42px),
          rgba(0, 0, 0, 0.55) calc(100% - 18px),
          transparent 100%) !important;
      mask-image: linear-gradient(to right,
          transparent 0,
          rgba(0, 0, 0, 0.55) 18px,
          #000 42px,
          #000 calc(100% - 42px),
          rgba(0, 0, 0, 0.55) calc(100% - 18px),
          transparent 100%) !important;
    }

    .testimonials-wrapper {
      animation: testimonialsScroll 38s linear infinite !important;
      transform: none;
      padding-inline: 0 !important;
      will-change: transform;
    }

    .testimonial-card,
    .testimonial-card-highlight {
      scroll-snap-align: none !important;
    }
  }
