body {
    margin: 0;
    padding: 0;
    background: #f2f2f2;

    font-family: system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;

    font-size: 15px;
    line-height: 1.6;
    color: #1f2937;
}

/*-MASAÜSTÜ HEADER-*/
.aydn-skip-link{
  position:absolute;
  left:-9999px;
  top:0;
  z-index:3000;
  background:#fff;
  color:#000;
  padding:10px 14px;
  border-radius:10px;
  box-shadow:0 8px 22px rgba(0,0,0,.18);
  text-decoration:none;
}
.aydn-skip-link:focus{
  left:12px;
  top:12px;
}

:root{
  --aydn-dhdr-h: 80px;
  --aydn-dhdr-gap: 60px;
}

@media (min-width: 1025px){
  body{
    padding-top: calc(var(--aydn-dhdr-h) + var(--aydn-dhdr-gap));
  }
}

@media (max-width: 1024px){
  .aydn-only-desktop{ display:none !important; }
  body{ padding-top:0 !important; }
}

.aydn-dhdr{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #f2f2f2;
  z-index: 1000;

  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.06);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.aydn-dhdr__container{
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  min-height: var(--aydn-dhdr-h);
}

.aydn-dhdr__logo{
  display:flex;
  align-items:center;
  gap:10px;
  flex: 0 0 auto;
}
.aydn-dhdr__logo img{
  display:block;
  height: 88px;
  width: 280px;
  object-fit: contain;
}

.aydn-dhdr__nav{
  flex: 1 1 auto;
  display:flex;
  justify-content:center;
}

.aydn-dhdr__menu{
  list-style:none;
  display:flex;
  align-items:center;
  gap: 30px;
  margin:0;
  padding:0;
}

.aydn-dhdr__link,
.aydn-dhdr__dd-toggle-label{
  text-decoration:none;
  color:#1f2937;
  font-weight:600;
  letter-spacing:.2px;
  cursor:pointer;
  transition: color .2s ease, transform .15s ease;
}

.aydn-dhdr__link:hover,
.aydn-dhdr__dd-toggle-label:hover{
  color:#ff0000;
}

.aydn-dhdr__link:focus-visible,
.aydn-dhdr__dd-toggle-label:focus-visible,
.aydn-dhdr__phone:focus-visible{
  outline: 2px solid rgba(255, 0, 0, 0.45);
  outline-offset: 3px;
  border-radius: 10px;
}

.aydn-dhdr__link:hover{
  transform: translateY(-1px);
}

.aydn-dhdr__item--dd{
  position:relative;
}

.aydn-dhdr__dd-toggle{
  position:absolute;
  opacity:0;
  width:1px;
  height:1px;
  margin:0;
  padding:0;
  pointer-events:none;
}

.aydn-dhdr__dd-menu{
  display:none;
  position:absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 1200;

  background:#e0e0e0;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
  border-radius: 14px;

  min-width: 290px;
  list-style:none;
  margin:0;
  padding: 10px 0;

  contain: layout paint;
}

.aydn-dhdr__dd-toggle:checked + .aydn-dhdr__dd-toggle-label + .aydn-dhdr__dd-menu{
  display:block;
}

.aydn-dhdr__dd-menu a{
  display:block;
  padding: 11px 16px;
  color:#111827;
  font-weight:600;
  text-decoration:none;
  transition: background-color .15s ease, color .2s ease, padding-left .15s ease;
}
.aydn-dhdr__dd-menu a:hover{
  color:#ff0000;
  background: rgba(255,255,255,.55);
  padding-left: 18px;
}
.aydn-dhdr__dd-menu a:focus-visible{
  background: rgba(255,255,255,.55);
  color:#ff0000;
}

.aydn-dhdr__dd-toggle-label::after{
  content:"▾";
  display:inline-block;
  margin-left:8px;
  font-size: 12px;
  transform: translateY(-1px);
  opacity:.85;
}

.aydn-dhdr__dd-overlay{
  display:none;
}

.aydn-dhdr__dd-toggle:checked ~ .aydn-dhdr__dd-overlay{
  display:block;
  position:fixed;
  inset:0;
  z-index:1100;
  background: transparent;
  cursor: default;
}

.aydn-dhdr__phone{
  flex: 0 0 auto;
  background:#162a5d;
  color:#fff;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.2px;

  box-shadow: 0 10px 22px rgba(22,42,93,.18);
  transition: transform .15s ease, background-color .2s ease, box-shadow .2s ease;
  will-change: transform;
}

.aydn-dhdr__phone:hover{
  background:#0f1f44;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 14px 28px rgba(22,42,93,.22);
}

@media (prefers-reduced-motion: reduce){
  .aydn-dhdr__link,
  .aydn-dhdr__dd-toggle-label,
  .aydn-dhdr__phone,
  .aydn-dhdr__dd-menu a{
    transition:none !important;
  }
  .aydn-dhdr__phone:hover,
  .aydn-dhdr__link:hover{
    transform:none !important;
  }
}
/*-MASAÜSTÜ HEADER BİTİŞ-*/



/* =MOBİL HEADER=                                        */
.mobile-header,
.mobile-logo,
.mobile-logo-link{
  display: none;
}

@media (max-width: 768px) {

  .mobile-header{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;

    background: #f2f2f2;

    position: static;

    z-index: 9000;

    padding: 10px 12px;
    box-sizing: border-box;
    border-bottom: 1px solid #d1d5db;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  }

  .mobile-logo-link{
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-logo{
    display: block;
    width: 200px;
    height: auto;
  }

  .mobile-logo-link:focus-visible{
    outline: 2px solid rgba(255, 0, 0, 0.45);
    outline-offset: 4px;
    border-radius: 10px;
  }
}
/* =MOBİL HEADER BİTİŞ=                                  */




/* =====================================
    MOBİL MENÜ VE ALT BUTONLAR BÖLÜMÜ
======================================== */

/* DEFAULT: HER YERDE KAPALI */
.zM4rP9xL2kQ7vA0nS6__btn,
.zM4rP9xL2kQ7vA0nS6__pnl,
.zM4rP9xL2kQ7vA0nS6__ovr,
.zM4rP9xL2kQ7vA0nS6__bar{
  display:none !important;
}

/* Checkboxlar */
.zM4rP9xL2kQ7vA0nS6__ck,
.zM4rP9xL2kQ7vA0nS6__sck{ display:none; }

/* =========================
   SADECE TELEFON (≤600px)
========================= */
@media (max-width:600px){

  /* local box-sizing + font (SEO uyumlu, okunaklı) */
  .zM4rP9xL2kQ7vA0nS6,
  .zM4rP9xL2kQ7vA0nS6 *{
    box-sizing:border-box;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  }

  .zM4rP9xL2kQ7vA0nS6{
    --z-ac-wa:#22c55e;
    --z-ac-ca:#3b82f6;
    --z-w:#ffffff;
    --z-b:#000000;
    --z-br: rgba(255,255,255,.18);
    --z-gl: rgba(255,255,255,.10);
  }

  .zM4rP9xL2kQ7vA0nS6__btn,
  .zM4rP9xL2kQ7vA0nS6__ovr,
  .zM4rP9xL2kQ7vA0nS6__bar{ display:flex !important; }
  .zM4rP9xL2kQ7vA0nS6__pnl{ display:block !important; }

  /* Katmanlar */
  .zM4rP9xL2kQ7vA0nS6__btn{ z-index:999999; }
  .zM4rP9xL2kQ7vA0nS6__ovr{ z-index:999997; }
  .zM4rP9xL2kQ7vA0nS6__pnl{ z-index:999998; }
  .zM4rP9xL2kQ7vA0nS6__bar{ z-index:999999; }

  /* =========================
     HAMBURGER
  ========================= */
  .zM4rP9xL2kQ7vA0nS6__btn{
    position:fixed;
    top:24px;
    right:14px;

    width:46px;
    height:46px;
    border-radius:14px;

    background:rgba(0,0,0,.70);
    border:1px solid rgba(255,255,255,.18);
    box-shadow:none;

    align-items:center;
    justify-content:center;

    cursor:pointer;
    -webkit-tap-highlight-color: transparent;

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
  }

  .zM4rP9xL2kQ7vA0nS6__ham{ width:20px; height:16px; display:grid; gap:4px; }
  .zM4rP9xL2kQ7vA0nS6__ham i{
    height:2px;
    border-radius:999px;
    background:#fff;
    transition: transform .22s ease, opacity .18s ease;
    will-change: transform, opacity;
  }

  body:has(#zM4rP9xL2kQ7vA0nS6__tgl:checked) .zM4rP9xL2kQ7vA0nS6__ham i:nth-child(2){ opacity:0; }
  body:has(#zM4rP9xL2kQ7vA0nS6__tgl:checked) .zM4rP9xL2kQ7vA0nS6__ham i:nth-child(1){ transform:translateY(6px) rotate(45deg); }
  body:has(#zM4rP9xL2kQ7vA0nS6__tgl:checked) .zM4rP9xL2kQ7vA0nS6__ham i:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

  /* Klavye odak */
  .zM4rP9xL2kQ7vA0nS6__btn:focus-visible,
  .zM4rP9xL2kQ7vA0nS6__mi:focus-visible,
  .zM4rP9xL2kQ7vA0nS6__shd:focus-visible,
  .zM4rP9xL2kQ7vA0nS6__si:focus-visible,
  .zM4rP9xL2kQ7vA0nS6__bb:focus-visible{
    outline: 2px solid rgba(255,255,255,.55);
    outline-offset: 3px;
    border-radius: 14px;
  }

  /* =========================
     OVERLAY
  ========================= */
  .zM4rP9xL2kQ7vA0nS6__ovr{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.80);
    opacity:0;
    pointer-events:none;
    transition: opacity .22s ease;
  }

  /* =========================
     PANEL (%80 – TAM SİYAH)
  ========================= */
  .zM4rP9xL2kQ7vA0nS6__pnl{
    position:fixed;
    top:0;
    right:0;

    width:80vw;
    max-width:430px;
    height:100dvh;

    background:#000;
    border-left:1px solid rgba(255,255,255,.18);

    transform:translateX(105%);
    transition: transform .28s ease;

    overflow-y:auto;
    overscroll-behavior:contain;

    padding:118px 12px 120px;

    contain: layout paint;
    will-change: transform;
  }

  .zM4rP9xL2kQ7vA0nS6__pnl::before{
    content:"";
    position:absolute;
    top:22px;
    left:18px;

    width:10px;
    height:10px;
    border-radius:50%;

    background: var(--z-ac-wa);
    box-shadow:
      0 0 0 6px rgba(34,197,94,.18),
      0 0 18px rgba(34,197,94,.55);
  }

  /* =========================
     MENU LIST
  ========================= */
  .zM4rP9xL2kQ7vA0nS6__nav{
    list-style:none;
    margin: 10px 0 0;
    padding:0;
  }

  .zM4rP9xL2kQ7vA0nS6__nav > li{ margin:8px 0; }

  .zM4rP9xL2kQ7vA0nS6__mi,
  .zM4rP9xL2kQ7vA0nS6__shd{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;

    padding:13px 12px;
    border-radius:12px;

    text-decoration:none;
    font-weight:850;
    color:#fff;

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);

    -webkit-tap-highlight-color: transparent;
  }

  .zM4rP9xL2kQ7vA0nS6__shd{ cursor:pointer; }

  .zM4rP9xL2kQ7vA0nS6__sar{
    width:10px;
    height:10px;
    border-right:2px solid rgba(255,255,255,.86);
    border-bottom:2px solid rgba(255,255,255,.86);
    transform:rotate(45deg);
    transition: transform .20s ease;
  }

  /* ALT MENÜ */
  .zM4rP9xL2kQ7vA0nS6__smn{
    list-style:none;
    padding:0;
    margin:0;

    max-height:0;
    opacity:0;
    overflow:hidden;

    transition: max-height .14s ease, opacity .10s ease;
  }

  .zM4rP9xL2kQ7vA0nS6__smn li{ margin:6px 0; }

  .zM4rP9xL2kQ7vA0nS6__si{
    display:block;
    padding:12px;
    border-radius:10px;

    text-decoration:none;
    font-weight:700;
    color:#fff;

    background:rgba(255,255,255,.12);
  }

  #zM4rP9xL2kQ7vA0nS6__hz:checked ~ .zM4rP9xL2kQ7vA0nS6__smn{
    max-height:520px;
    opacity:1;
    margin-top:8px;
  }

  #zM4rP9xL2kQ7vA0nS6__hz:checked + .zM4rP9xL2kQ7vA0nS6__shd .zM4rP9xL2kQ7vA0nS6__sar{
    transform:rotate(225deg);
  }

  /* OPEN STATES */
  #zM4rP9xL2kQ7vA0nS6__tgl:checked ~ .zM4rP9xL2kQ7vA0nS6__ovr{
    opacity:1;
    pointer-events:auto;
  }
  #zM4rP9xL2kQ7vA0nS6__tgl:checked ~ .zM4rP9xL2kQ7vA0nS6__pnl{
    transform:translateX(0);
  }

  /* Menü açıkken sayfa kaymasını kapat (scoped) */
  body:has(#zM4rP9xL2kQ7vA0nS6__tgl:checked){
    overflow:hidden;
    touch-action:none;
  }

  /* =========================
     ALT BAR (DAHA KURUMSAL + HAFİF ANİMASYON)
  ========================= */
  .zM4rP9xL2kQ7vA0nS6__bar{
    position:fixed;
    left:12px;
    right:12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));

    display:flex;
    gap:10px;
  }

  .zM4rP9xL2kQ7vA0nS6__bb{
    flex:1;
    height:54px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    border-radius:14px;
    text-decoration:none;

    font-weight:950;
    letter-spacing:.2px;
    color:#fff;

    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.14),
      0 10px 24px rgba(0,0,0,.45);

    -webkit-tap-highlight-color: transparent;
    user-select:none;
    will-change: transform, filter;
    position: relative;
    overflow: hidden;
  }

  /* Kurumsal “shine” (abartısız) */
  .zM4rP9xL2kQ7vA0nS6__bb::after{
    content:"";
    position:absolute;
    top:-50%;
    left:-60%;
    width:60%;
    height:220%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.20), transparent);
    transform: rotate(18deg);
    animation: zM4rP9xL2kQ7vA0nS6__sh 3.9s ease-in-out infinite;
    pointer-events:none;
  }
  @keyframes zM4rP9xL2kQ7vA0nS6__sh{
    0%{ left:-70%; opacity:0; }
    18%{ opacity:.7; }
    45%{ left:120%; opacity:0; }
    100%{ left:120%; opacity:0; }
  }

  .zM4rP9xL2kQ7vA0nS6__ico{
    width:21px;
    height:21px;
    fill: currentColor;
  }

  /* ✅ SADECE RENKLERİ KURUMSAL + BİR TIK AÇIK (WP) */
.zM4rP9xL2kQ7vA0nS6__wa{

  border-color: rgba(37,211,102,.55);

  background:
  linear-gradient(135deg,#25D366,#16a34a);

  box-shadow:
  inset 0 1px 0 rgba(255,255,255,.18),
  0 10px 24px rgba(0,0,0,.45),
  0 0 26px rgba(37,211,102,.25);

  animation: zM4rP9xL2kQ7vA0nS6__pl 3s ease-in-out infinite;

}

  /* ✅ SADECE RENKLERİ KURUMSAL + BİR TIK AÇIK (ARA) */
.zM4rP9xL2kQ7vA0nS6__ca{

  border-color: rgba(96,165,250,.55);

  background:
  linear-gradient(135deg,#3b82f6,#1d4ed8);

  box-shadow:
  inset 0 1px 0 rgba(255,255,255,.18),
  0 10px 24px rgba(0,0,0,.45),
  0 0 26px rgba(59,130,246,.22);

}

  @keyframes zM4rP9xL2kQ7vA0nS6__pl{
    0%,100%{ filter: saturate(1) brightness(1); }
    50%{ filter: saturate(1.08) brightness(1.02); }
  }

  .zM4rP9xL2kQ7vA0nS6__bb:active{ transform: translateY(1px); }

  /* Animasyon azalt seçeneği */
  @media (prefers-reduced-motion: reduce){
    .zM4rP9xL2kQ7vA0nS6__ham i,
    .zM4rP9xL2kQ7vA0nS6__ovr,
    .zM4rP9xL2kQ7vA0nS6__pnl,
    .zM4rP9xL2kQ7vA0nS6__smn,
    .zM4rP9xL2kQ7vA0nS6__sar,
    .zM4rP9xL2kQ7vA0nS6__bb,
    .zM4rP9xL2kQ7vA0nS6__bb::after{
      transition:none !important;
      animation:none !important;
    }
    .zM4rP9xL2kQ7vA0nS6__bb:active{ transform:none; }
  }
}

/* =====================================
   MOBİL MENÜ + ALT BAR BİTİŞ
===================================== */



/* =====================================
        MASAÜSTÜ GÖRÜNÜM
===================================== */

.V4R1K8T6P{
    display:block;
    width:100%;
    background:#f2f2f2;
    padding-top:52px;
    padding-bottom:26px;
}

.N7M3Q2L9A{
    width:1360px;
    margin:0 auto;
    display:grid;
    grid-template-columns:280px 1fr 320px;
    column-gap:40px;
    align-items:end;
}

.C5B8D1Y4U{
    display:inline-block;
    font-size:12px;
    line-height:18px;
    font-weight:800;
    letter-spacing:2px;
    color:#163b69;
}

.F9T2J6W3E{
    display:block;
}

.H3P7X1N5K{
    margin:0;
    font-size:54px;
    line-height:1.05;
    font-weight:800;
    color:#102f55;
}

.R8L4S9C2V{
    display:block;
}

.B8N3M6K1L{
    margin:0;
    font-size:15px;
    line-height:1.8;
    color:#203247;
}

.P6E1T8W4R{
    display:block;
    width:100%;
    background:#f2f2f2;
    padding-top:18px;
    padding-bottom:42px;
}

.L2V9N5C7X{
    width:1360px;
    margin:0 auto;
    display:grid;
    grid-template-columns:290px 1fr 290px;
    column-gap:34px;
}

.S4D1F8G6H{
    display:block;
    padding-top:20px;
}

.U3J7K2L5M{
    margin:0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

.A9Q4W2E7R{
    display:block;
}

.Z6X1C8V3B{
    display:block;
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:24px;
}

.Y5T9R3N1K{
    display:block;
    padding-top:100px;
}

.I7O2P6A4S{
    margin:0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

.D8F3G7H2J{
    display:block;
    width:100%;
    background:#f2f2f2;
    padding-top:10px;
    padding-bottom:36px;
}

.B1N6M4K9L{
    width:1360px;
    margin:0 auto;
}

.Q5W2E8R1T{
    display:inline-block;
    margin-bottom:18px;
    font-size:12px;
    line-height:18px;
    font-weight:800;
    letter-spacing:2px;
    color:#163b69;
}

.X7C4V9B2N{
    display:grid;
    grid-template-columns:470px 1fr;
    column-gap:80px;
    border-top:1px solid #cfd8e2;
    padding-top:28px;
}

.J3L8P1O6I{
    display:block;
}

.M2A7S5D9F{
    margin:0;
    font-size:38px;
    line-height:1.18;
    font-weight:800;
    color:#102f55;
}

.T6Y1U4I8O{
    display:grid;
    grid-template-columns:1fr 1fr;
    column-gap:36px;
}

.E9R3T7Y2U{
    margin:0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

.P4L9K1J6H{
    margin:0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

.W8E4R1T6Y{
    display:block;
    width:100%;
    background:#f2f2f2;
    padding-top:12px;
    padding-bottom:44px;
}

.C2V7B5N9M{
    width:1360px;
    margin:0 auto;
    display:grid;
    grid-template-columns:540px 1fr;
    column-gap:90px;
    align-items:center;
}

.F1G6H3J8K{
    display:block;
}

.L4P9O2I7U{
    display:block;
    width:100%;
    height:560px;
    object-fit:cover;
    border-radius:120px 120px 26px 26px;
}

.S7A2D8F5G{
    display:block;
    padding-right:30px;
}

.K6L1M7N3B{
    display:inline-block;
    margin-bottom:16px;
    font-size:12px;
    line-height:18px;
    font-weight:800;
    letter-spacing:2px;
    color:#163b69;
}

.R9T4Y2U6I{
    margin:0 0 20px 0;
    font-size:38px;
    line-height:1.15;
    font-weight:800;
    color:#102f55;
}

.X3Z8C1V5B{
    margin:0 0 18px 0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

.Q1W5E9R4T{
    margin:0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

.U5I2O9P4A{
    display:block;
    width:100%;
    background:#f2f2f2;
    padding-top:36px;
    padding-bottom:48px;
}

.Y1T6R3E8W{
    width:1360px;
    margin:0 auto;
}

.D7F2G9H4J{
    display:inline-block;
    margin-bottom:16px;
    font-size:12px;
    line-height:18px;
    font-weight:800;
    letter-spacing:2px;
    color:#163b69;
}

.N3M8K1L6Q{
    margin:0 0 30px 0;
    font-size:40px;
    line-height:1.14;
    font-weight:800;
    color:#102f55;
}

.V9C4X2Z7B{
    display:block;
    border-top:1px solid #cfd8e2;
}

.P2A6S1D8F{
    display:grid;
    grid-template-columns:90px 1fr;
    column-gap:26px;
    padding-top:28px;
    padding-bottom:28px;
    border-bottom:1px solid #cfd8e2;
}

.S3D7F1G9H{
    display:grid;
    grid-template-columns:90px 1fr;
    column-gap:26px;
    padding-top:28px;
    padding-bottom:28px;
    border-bottom:1px solid #cfd8e2;
}

.M7K3L9J1H{
    display:grid;
    grid-template-columns:90px 1fr;
    column-gap:26px;
    padding-top:28px;
    padding-bottom:28px;
    border-bottom:1px solid #cfd8e2;
}

.Z2X7C4V9B{
    display:grid;
    grid-template-columns:90px 1fr;
    column-gap:26px;
    padding-top:28px;
    padding-bottom:28px;
    border-bottom:1px solid #cfd8e2;
}

.R2T8Y4U1I{
    display:grid;
    grid-template-columns:90px 1fr;
    column-gap:26px;
    padding-top:28px;
    padding-bottom:28px;
    border-bottom:1px solid #cfd8e2;
}

.K7L4M1N9B{
    display:grid;
    grid-template-columns:90px 1fr;
    column-gap:26px;
    padding-top:28px;
    padding-bottom:28px;
    border-bottom:1px solid #cfd8e2;
}

.P8O4I1U7Y{
    display:grid;
    grid-template-columns:90px 1fr;
    column-gap:26px;
    padding-top:28px;
    padding-bottom:28px;
    border-bottom:1px solid #cfd8e2;
}

.G5H9J3K7L{
    font-size:30px;
    line-height:1;
    font-weight:800;
    color:#163b69;
}

.J6K2L8P4O{
    font-size:30px;
    line-height:1;
    font-weight:800;
    color:#163b69;
}

.P5O2I8U4Y{
    font-size:30px;
    line-height:1;
    font-weight:800;
    color:#163b69;
}

.N5M1K6L8J{
    font-size:30px;
    line-height:1;
    font-weight:800;
    color:#163b69;
}

.O6P3A9S5D{
    font-size:30px;
    line-height:1;
    font-weight:800;
    color:#163b69;
}

.X3C8V2Z6A{
    font-size:30px;
    line-height:1;
    font-weight:800;
    color:#163b69;
}

.T6R2E9W5Q{
    font-size:30px;
    line-height:1;
    font-weight:800;
    color:#163b69;
}

.M4N1B6V2C{
    display:grid;
    grid-template-columns:380px 1fr;
    column-gap:34px;
}

.I5U1Y7T3R{
    display:grid;
    grid-template-columns:380px 1fr;
    column-gap:34px;
}

.A4S9D5F1G{
    display:grid;
    grid-template-columns:380px 1fr;
    column-gap:34px;
}

.B3V8C2X6Z{
    display:grid;
    grid-template-columns:380px 1fr;
    column-gap:34px;
}

.F8G2H7J4K{
    display:grid;
    grid-template-columns:380px 1fr;
    column-gap:34px;
}

.W5Q1E7R3T{
    display:grid;
    grid-template-columns:380px 1fr;
    column-gap:34px;
}

.H3J8K5L1M{
    display:grid;
    grid-template-columns:380px 1fr;
    column-gap:34px;
}

.T8Y5U2I9O{
    margin:0;
    font-size:25px;
    line-height:1.3;
    font-weight:800;
    color:#102f55;
}

.E8W4Q9A2S{
    margin:0;
    font-size:25px;
    line-height:1.3;
    font-weight:800;
    color:#102f55;
}

.H6J2K7L3M{
    margin:0;
    font-size:25px;
    line-height:1.3;
    font-weight:800;
    color:#102f55;
}

.F9G4H1J7K{
    margin:0;
    font-size:25px;
    line-height:1.3;
    font-weight:800;
    color:#102f55;
}

.L9M5N1B6V{
    margin:0;
    font-size:25px;
    line-height:1.3;
    font-weight:800;
    color:#102f55;
}

.Y8U2I6O4P{
    margin:0;
    font-size:25px;
    line-height:1.3;
    font-weight:800;
    color:#102f55;
}

.N7B2V6C4X{
    margin:0;
    font-size:25px;
    line-height:1.3;
    font-weight:800;
    color:#102f55;
}

.R6E1W7Q3A{
    margin:0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

.D1C6V2B8N{
    margin:0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

.Q8W3E7R2T{
    margin:0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

.L1P6O2I8U{
    margin:0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

.C3X8Z2A7S{
    margin:0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

.A1S5D9F4G{
    margin:0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

.Z9A5S1D7F{
    margin:0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

.H8B2C5N1M{
    display:block;
    width:100%;
    background:#f2f2f2;
    padding-top:30px;
    padding-bottom:40px;
}

.Q9D4F7G2H{
    width:1360px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 390px;
    column-gap:70px;
    border-top:1px solid #cfd8e2;
    border-bottom:1px solid #cfd8e2;
    padding-top:34px;
    padding-bottom:34px;
}

.L6K1J8H3G{
    display:block;
}

.M5N9B2V7C{
    display:inline-block;
    margin-bottom:14px;
    font-size:12px;
    line-height:18px;
    font-weight:800;
    letter-spacing:2px;
    color:#163b69;
}

.T1R6E8W4Q{
    margin:0 0 14px 0;
    font-size:34px;
    line-height:1.16;
    font-weight:800;
    color:#102f55;
}

.P7O2I9U5Y{
    margin:0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

.C3V8B1N6M{
    display:flex;
    justify-content:flex-end;
    gap:14px;
    align-items:center;
}

.Y4U9I2O7P{
    display:flex;
    align-items:center;
    justify-content:center;
    width:180px;
    height:58px;
    background:#102f55;
    color:#ffffff;
    text-decoration:none;
    border-radius:14px;
    font-size:15px;
    font-weight:800;
}

.A8S3D6F1G{
    display:flex;
    align-items:center;
    justify-content:center;
    width:180px;
    height:58px;
    background:#18794E;
    color:#ffffff;
    text-decoration:none;
    border-radius:14px;
    font-size:15px;
    font-weight:800;
}

.K4L8M2N7B{
    display:block;
    width:100%;
    background:#f2f2f2;
    padding-top:18px;
    padding-bottom:84px;
}

.X5C1V9Z3A{
    width:1360px;
    margin:0 auto;
    display:block;
}

.W2Q7E4R8T{
    display:inline-block;
    margin-bottom:16px;
    font-size:12px;
    line-height:18px;
    font-weight:800;
    letter-spacing:2px;
    color:#163b69;
}

.Y9U3I6O1P{
    display:grid;
    grid-template-columns:420px 1fr;
    column-gap:110px;
    align-items:start;
    border-top:1px solid #cfd8e2;
    padding-top:28px;
}

.S6D2F7G4H{
    display:block;
}

.J8K5L1M9N{
    margin:0;
    font-size:40px;
    line-height:1.14;
    font-weight:800;
    color:#102f55;
}

.T3R8E2W6Q{
    display:grid;
    grid-template-columns:1fr 1fr;
    column-gap:34px;
}

.A7S1D5F9G{
    margin:0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

.H1J6K2L7P{
    margin:0;
    font-size:15px;
    line-height:1.95;
    color:#203247;
}

@media screen and (max-width:1199px){
    .V4R1K8T6P{
        display:none;
    }

    .P6E1T8W4R{
        display:none;
    }

    .D8F3G7H2J{
        display:none;
    }

    .W8E4R1T6Y{
        display:none;
    }

    .U5I2O9P4A{
        display:none;
    }

    .H8B2C5N1M{
        display:none;
    }

    .K4L8M2N7B{
        display:none;
    }
}
/* =====================================
        MASAÜSTÜ GÖRÜNÜM BİTİŞ
===================================== */




/* =====================================
        MOBİL GÖRÜNÜM
===================================== */
.MBX9R2K7A{
    display:none;
}

.PX7A2M9QR{
    display:none;
}

.NT5F1Y8RB{
    display:none;
}

.NY6B3H9TE{
    display:none;
}

.SX5V9K2PA{
    display:none;
}

.IX6N2C9QA{
    display:none;
}

@media screen and (max-width:767px){
    .MBX9R2K7A{
        display:block;
        width:100%;
        background:#f2f2f2;
        padding-top:24px;
        padding-bottom:22px;
    }

    .MZQ4T8N1V{
        display:block;
        margin-left:14px;
        margin-right:14px;
        background:#102f55;
        border-radius:24px;
        padding-top:26px;
        padding-left:20px;
        padding-right:20px;
        padding-bottom:24px;
    }

    .MPL7C3D9S{
        display:inline-block;
        margin-bottom:14px;
        background:#ffffff;
        color:#102f55;
        font-size:11px;
        line-height:18px;
        font-weight:800;
        letter-spacing:1.3px;
        padding-top:6px;
        padding-bottom:6px;
        padding-left:10px;
        padding-right:10px;
        border-radius:30px;
    }

    .MHA5N8L2Q{
        margin:0;
        color:#ffffff;
        font-size:35px;
        line-height:1.06;
        font-weight:800;
    }

    .MRD2K6P9X{
        margin-top:16px;
        margin-bottom:0;
        color:#e8eef6;
        font-size:15px;
        line-height:1.75;
    }

    .MCT8V1B4N{
        display:flex;
        flex-wrap:wrap;
        gap:8px;
        margin-top:18px;
    }

    .MJN3L7Q5R{
        display:inline-flex;
        background:#163b69;
        color:#ffffff;
        font-size:10px;
        line-height:18px;
        font-weight:700;
        padding-top:8px;
        padding-bottom:8px;
        padding-left:12px;
        padding-right:12px;
        border-radius:30px;
    }

    .MKP6D2A8Y{
        display:inline-flex;
        background:#163b69;
        color:#ffffff;
        font-size:10px;
        line-height:18px;
        font-weight:700;
        padding-top:8px;
        padding-bottom:8px;
        padding-left:12px;
        padding-right:12px;
        border-radius:30px;
    }

    .MFS9X4T1C{
        display:inline-flex;
        background:#163b69;
        color:#ffffff;
        font-size:10px;
        line-height:18px;
        font-weight:700;
        padding-top:8px;
        padding-bottom:8px;
        padding-left:12px;
        padding-right:12px;
        border-radius:30px;
    }

    .PX7A2M9QR{
        display:block;
        width:100%;
        background:#f2f2f2;
        padding-top:24px;
        padding-bottom:28px;
    }

    .PC4N8L1TY{
        display:block;
        margin-left:18px;
        margin-right:18px;
        margin-bottom:10px;
        color:#163b69;
        font-size:11px;
        line-height:17px;
        font-weight:800;
        letter-spacing:1.3px;
    }

    .PB9K3V6XA{
        margin-left:18px;
        margin-right:18px;
        margin-top:0;
        margin-bottom:14px;
        color:#102f55;
        font-size:28px;
        line-height:1.14;
        font-weight:800;
    }

    .PR2D7Q5LC{
        margin-left:18px;
        margin-right:18px;
        margin-top:0;
        margin-bottom:18px;
        color:#203247;
        font-size:15px;
        line-height:1.86;
    }

    .PF6T1B8NZ{
        display:block;
        margin-left:18px;
        margin-right:18px;
        margin-bottom:18px;
        border-top:5px solid #102f55;
        padding-top:10px;
    }

    .PG3X9C2VD{
        display:block;
        width:100%;
        height:auto;
        aspect-ratio:16/11;
        object-fit:cover;
        border-radius:18px;
    }

    .PL8Y4N1KS{
        margin-left:18px;
        margin-right:18px;
        margin-top:0;
        margin-bottom:0;
        color:#203247;
        font-size:15px;
        line-height:1.86;
    }

    .NT5F1Y8RB{
        display:block;
        width:100%;
        background:#102f55;
        padding-top:30px;
        padding-left:18px;
        padding-right:18px;
        padding-bottom:30px;
        box-sizing:border-box;
    }

    .NL9C3Q6PA{
        display:block;
        margin-bottom:12px;
        color:#d7e5f5;
        font-size:11px;
        line-height:17px;
        font-weight:800;
        letter-spacing:1.3px;
    }

    .NV2D7K4MX{
        margin:0;
        color:#ffffff;
        font-size:28px;
        line-height:1.16;
        font-weight:800;
    }

    .NA8R2L5QJ{
        display:block;
        margin-top:18px;
        border-left:4px solid #ffffff;
        padding-left:16px;
    }

    .NC1X6T9VB{
        margin:0;
        color:#e8eef6;
        font-size:15px;
        line-height:1.84;
    }

    .NM4P8S2WD{
        margin-top:14px;
        margin-bottom:0;
        color:#e8eef6;
        font-size:15px;
        line-height:1.84;
    }

    .NY6B3H9TE{
        display:block;
        width:100%;
        background:#f2f2f2;
        padding-top:24px;
        padding-bottom:28px;
    }

    .NK1W7N4AZ{
        display:block;
        margin-left:14px;
        margin-right:14px;
    }

    .NU9L2P5CD{
        display:block;
        width:100%;
        height:auto;
        aspect-ratio:16/10;
        object-fit:cover;
        border-radius:24px;
    }

    .NQ4M8X1SV{
        display:block;
        margin-left:18px;
        margin-right:18px;
        padding-top:18px;
    }

    .NJ7T3A6KL{
        display:block;
        margin-bottom:10px;
        color:#163b69;
        font-size:11px;
        line-height:17px;
        font-weight:800;
        letter-spacing:1.3px;
    }

    .NF2R9C5QX{
        margin:0;
        color:#102f55;
        font-size:27px;
        line-height:1.16;
        font-weight:800;
    }

    .NZ5D1V8BP{
        margin-top:14px;
        margin-bottom:14px;
        color:#203247;
        font-size:15px;
        line-height:1.84;
    }

    .NH8K4Y2MN{
        margin:0;
        color:#203247;
        font-size:15px;
        line-height:1.84;
    }

    .SX5V9K2PA{
        display:block;
        width:100%;
        background:#102f55;
        padding-top:30px;
        padding-bottom:28px;
    }

    .SA1Q7D4NM{
        display:block;
        margin-left:18px;
        margin-right:18px;
        margin-bottom:10px;
        color:#d8e6f5;
        font-size:11px;
        line-height:17px;
        font-weight:800;
        letter-spacing:1.3px;
    }

    .ST8C3L6RY{
        margin-left:18px;
        margin-right:18px;
        margin-top:0;
        margin-bottom:18px;
        color:#ffffff;
        font-size:28px;
        line-height:1.15;
        font-weight:800;
    }

    .SK4M8B1VX{
        display:grid;
        grid-template-columns:58px 1fr;
        column-gap:14px;
        margin-left:18px;
        margin-right:18px;
        padding-top:18px;
        padding-bottom:18px;
        border-top:1px solid #345779;
    }

    .SE7K1M9PA{
        display:flex;
        align-items:flex-start;
        justify-content:flex-start;
        color:#ffffff;
        font-size:26px;
        line-height:1;
        font-weight:800;
    }

    .SR4D8T2LX{
        display:block;
    }

    .SH7R2Y9QD{
        margin:0;
        color:#ffffff;
        font-size:21px;
        line-height:1.25;
        font-weight:800;
    }

    .SP3N6A8LC{
        margin-top:10px;
        margin-bottom:0;
        color:#e8eef6;
        font-size:15px;
        line-height:1.82;
    }

    .SD9T2F5KQ{
        display:grid;
        grid-template-columns:58px 1fr;
        column-gap:14px;
        margin-left:18px;
        margin-right:18px;
        padding-top:18px;
        padding-bottom:18px;
        border-top:1px solid #345779;
    }

    .SQ2L7V1CM{
        color:#ffffff;
        font-size:26px;
        line-height:1;
        font-weight:800;
    }

    .SB8P3D6QX{
        display:block;
    }

    .SN1B7X4CM{
        margin:0;
        color:#ffffff;
        font-size:21px;
        line-height:1.25;
        font-weight:800;
    }

    .SV6L3Q8RA{
        margin-top:10px;
        margin-bottom:0;
        color:#e8eef6;
        font-size:15px;
        line-height:1.82;
    }

    .SQ2P8M5VL{
        display:grid;
        grid-template-columns:58px 1fr;
        column-gap:14px;
        margin-left:18px;
        margin-right:18px;
        padding-top:18px;
        padding-bottom:18px;
        border-top:1px solid #345779;
    }

    .SZ4N1K7TA{
        color:#ffffff;
        font-size:26px;
        line-height:1;
        font-weight:800;
    }

    .SC9Y3V6LP{
        display:block;
    }

    .SC9A4K7NX{
        margin:0;
        color:#ffffff;
        font-size:21px;
        line-height:1.25;
        font-weight:800;
    }

    .SR5D1Y8TB{
        margin-top:10px;
        margin-bottom:0;
        color:#e8eef6;
        font-size:15px;
        line-height:1.82;
    }

    .SY7H3C1QA{
        display:grid;
        grid-template-columns:58px 1fr;
        column-gap:14px;
        margin-left:18px;
        margin-right:18px;
        padding-top:18px;
        padding-bottom:18px;
        border-top:1px solid #345779;
    }

    .SF1M6R9XD{
        color:#ffffff;
        font-size:26px;
        line-height:1;
        font-weight:800;
    }

    .SK5V2Q8LB{
        display:block;
    }

    .SL4V9N2PD{
        margin:0;
        color:#ffffff;
        font-size:21px;
        line-height:1.25;
        font-weight:800;
    }

    .SF8K6X3BR{
        margin-top:10px;
        margin-bottom:0;
        color:#e8eef6;
        font-size:15px;
        line-height:1.82;
    }

    .SB6R1T8MX{
        display:grid;
        grid-template-columns:58px 1fr;
        column-gap:14px;
        margin-left:18px;
        margin-right:18px;
        padding-top:18px;
        padding-bottom:18px;
        border-top:1px solid #345779;
    }

    .SP2Y7C4NA{
        color:#ffffff;
        font-size:26px;
        line-height:1;
        font-weight:800;
    }

    .SN8Q5V1KD{
        display:block;
    }

    .SX2Q5L9KC{
        margin:0;
        color:#ffffff;
        font-size:21px;
        line-height:1.25;
        font-weight:800;
    }

    .SM7C4V1NA{
        margin-top:10px;
        margin-bottom:0;
        color:#e8eef6;
        font-size:15px;
        line-height:1.82;
    }

    .SN8D2P6QY{
        display:grid;
        grid-template-columns:58px 1fr;
        column-gap:14px;
        margin-left:18px;
        margin-right:18px;
        padding-top:18px;
        padding-bottom:18px;
        border-top:1px solid #345779;
    }

    .SV3K9T1LA{
        color:#ffffff;
        font-size:26px;
        line-height:1;
        font-weight:800;
    }

    .SR7D2Q8PX{
        display:block;
    }

    .SQ5F1A7LB{
        margin:0;
        color:#ffffff;
        font-size:21px;
        line-height:1.25;
        font-weight:800;
    }

    .SZ3K9M4CT{
        margin-top:10px;
        margin-bottom:0;
        color:#e8eef6;
        font-size:15px;
        line-height:1.82;
    }

    .ST1X6B8VR{
        display:grid;
        grid-template-columns:58px 1fr;
        column-gap:14px;
        margin-left:18px;
        margin-right:18px;
        padding-top:18px;
        padding-bottom:18px;
        border-top:1px solid #345779;
        border-bottom:1px solid #345779;
    }

    .SC4N7Y2KD{
        color:#ffffff;
        font-size:26px;
        line-height:1;
        font-weight:800;
    }

    .SL8Q1V5PA{
        display:block;
    }

    .SG4N2Y5KA{
        margin:0;
        color:#ffffff;
        font-size:21px;
        line-height:1.25;
        font-weight:800;
    }

    .SH9L7C3QD{
        margin-top:10px;
        margin-bottom:0;
        color:#e8eef6;
        font-size:15px;
        line-height:1.82;
    }

    .IX6N2C9QA{
        display:block;
        width:100%;
        background:#f2f2f2;
        padding-top:32px;
        padding-bottom:40px;
    }

    .IT4K8V1LP{
        display:block;
        margin-left:18px;
        margin-right:18px;
        margin-bottom:10px;
        color:#163b69;
        font-size:11px;
        line-height:17px;
        font-weight:800;
        letter-spacing:1.3px;
    }

    .IB7M3R5XD{
        margin-left:18px;
        margin-right:18px;
        margin-top:0;
        margin-bottom:12px;
        color:#102f55;
        font-size:28px;
        line-height:1.15;
        font-weight:800;
    }

    .IP1Q9L6VA{
        margin-left:18px;
        margin-right:18px;
        margin-top:0;
        margin-bottom:18px;
        color:#203247;
        font-size:15px;
        line-height:1.82;
    }

    .IC8D2Y4NB{
        display:block;
        margin-left:18px;
        margin-right:18px;
        padding-top:18px;
        border-top:1px solid #cfd8e2;
    }

    .IA5V7K1RM{
        display:flex;
        align-items:center;
        justify-content:center;
        height:54px;
        background:#102f55;
        color:#ffffff;
        text-decoration:none;
        border-radius:12px;
        font-size:15px;
        font-weight:800;
        margin-bottom:10px;
    }

    .IW3P6T8LC{
        display:flex;
        align-items:center;
        justify-content:center;
        height:54px;
        background:#18794E;
        color:#ffffff;
        text-decoration:none;
        border-radius:12px;
        font-size:15px;
        font-weight:800;
    }
}

@media screen and (min-width:768px){
    .MBX9R2K7A{
        display:none !important;
    }

    .PX7A2M9QR{
        display:none !important;
    }

    .NT5F1Y8RB{
        display:none !important;
    }

    .NY6B3H9TE{
        display:none !important;
    }

    .SX5V9K2PA{
        display:none !important;
    }

    .IX6N2C9QA{
        display:none !important;
    }
}
/* =====================================
        MOBİL GÖRÜNÜM BİTİŞ
===================================== */



/* ===============================
       MOBİL FOOTER
=============================== */
.mF8kQ1zP7vR3nX0aL2 { display: none; }

@media (max-width: 768px) {

  .mF8kQ1zP7vR3nX0aL2{
    --mf-bg1:#0b1f2b;
    --mf-bg2:#07121a;
    --mf-card:#0a141c;
    --mf-stroke:rgba(255,255,255,.08);
    --mf-text:rgba(255,255,255,.92);
    --mf-muted:rgba(255,255,255,.78);
    --mf-accent:#35c7ff;
    --mf-shadow: 0 18px 40px rgba(0,0,0,.45);
  }

  .mF8kQ1zP7vR3nX0aL2{
    display:block;
    padding: 18px 14px 14px;
    background:
      radial-gradient(1200px 400px at 20% -10%, rgba(53,199,255,.18), transparent 60%),
      linear-gradient(180deg, var(--mf-bg1), var(--mf-bg2));
    color: var(--mf-text);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  }

  .mF8kQ1zP7vR3nX0aL2__iNn3r9B0x{
    max-width: 560px;
    margin: 0 auto;
  }

  .mF8kQ1zP7vR3nX0aL2__gR1d7T2pM{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .mF8kQ1zP7vR3nX0aL2__t1T1eK6yQ{
    margin: 0 0 10px;
    font-size: 14px;
    letter-spacing: .06em;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
  }

  /* Başlık altı çizgi (mavi) */
  .mF8kQ1zP7vR3nX0aL2__t1T1eK6yQ::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width: 44px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--mf-accent), rgba(53,199,255,.25));
    box-shadow: 0 0 18px rgba(53,199,255,.25);
  }

  .mF8kQ1zP7vR3nX0aL2__l1sT0x7Hj{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
  }

  .mF8kQ1zP7vR3nX0aL2__l1sT0x7Hj li{
    font-size: 13px;
    color: var(--mf-muted);
    line-height: 1.25;
    position: relative;
    padding-left: 14px;
  }

  /* Nokta bullet (mavi) */
  .mF8kQ1zP7vR3nX0aL2__l1sT0x7Hj li::before{
    content:"";
    position:absolute;
    left:0;
    top: .55em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--mf-accent);
    box-shadow: 0 0 12px rgba(53,199,255,.35);
    transform: translateY(-50%);
  }

  /* İletişim kartı */
  .mF8kQ1zP7vR3nX0aL2__c4rD6pS1v{
    margin-top: 16px;
    padding: 14px 14px 10px;
    border-radius: 14px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    border: 1px solid var(--mf-stroke);
    box-shadow: var(--mf-shadow);
    backdrop-filter: blur(6px);
  }

  .mF8kQ1zP7vR3nX0aL2__r0W2mC8nD{
    display:flex;
    align-items:center;
    gap: 10px;
    padding: 10px 6px;
    border-radius: 12px;
    color: var(--mf-text);
    text-decoration: none;
    transition: transform .12s ease, background-color .12s ease;
  }

  .mF8kQ1zP7vR3nX0aL2__r0W2mC8nD:active{
    transform: scale(.99);
    background-color: rgba(255,255,255,.05);
  }

  .mF8kQ1zP7vR3nX0aL2__1c0N9Z5yS{
    width: 28px;
    height: 28px;
    display:grid;
    place-items:center;
    border-radius: 10px;
    background: rgba(53,199,255,.10);
    border: 1px solid rgba(53,199,255,.18);
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    color: var(--mf-accent);
    flex: 0 0 auto;
  }

  .mF8kQ1zP7vR3nX0aL2__1c0N9Z5yS svg{
    width: 18px;
    height: 18px;
  }

  .mF8kQ1zP7vR3nX0aL2__t3xT7qW4e{
    font-size: 13px;
    color: var(--mf-muted);
    line-height: 1.25;
  }

  .mF8kQ1zP7vR3nX0aL2__c0pY8uN1k{
    margin-top: 14px;
    text-align:center;
    font-size: 12px;
    color: rgba(255,255,255,.55);
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.06);
  }
}

/* Çok dar ekranlarda (örn 360px) iki kolon yine kalsın ama boşluk azalsın */
@media (max-width: 420px) {
  .mF8kQ1zP7vR3nX0aL2__gR1d7T2pM{ gap: 14px; }
  .mF8kQ1zP7vR3nX0aL2{ padding-left: 12px; padding-right: 12px; }
}
/* ===============================
   MOBİL FOOTER BİTİŞ
=============================== */




/* ===============================
       MASAÜSTÜ FOOTER
=============================== */

/* Default: kapalı */
.q7N3xP9k { display: none; }

@media (min-width: 1024px) {

  .q7N3xP9k{
    display:block;
    position:relative;
    color:#eaf2ff;
    font-family:"Segoe UI", Arial, sans-serif;
    padding:30px 0 18px;
    background:
      radial-gradient(circle at 20% 0%, rgba(0,140,255,0.25), transparent 30%),
      radial-gradient(circle at 80% 0%, rgba(0,90,200,0.25), transparent 30%),
      linear-gradient(180deg, #050b14 0%, #000 70%);
  }

  .q7N3xP9k::after{
    content:"";
    position:absolute;
    left:0; bottom:0;
    width:100%;
    height:45px;
    background:linear-gradient(to bottom, transparent, #000);
    pointer-events:none;
  }

  /* 1 ve 2. kartı genişlet, 3. kartı biraz daha dar bırak */
  .q7N3xP9k__vK8m2{
    max-width:1560px;
    margin:0 auto;
    padding:0 18px;

    display:grid;
    grid-template-columns: 1.55fr 1.55fr 1.10fr;
    gap:30px;
    align-items:stretch;
  }

  /* KART */
  .q7N3xP9k__cR4t1{
    position:relative;
    border-radius:18px;
    padding:26px 28px;
    border:1px solid rgba(255,255,255,0.10);
    background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    transition:transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;

    overflow:visible;          /* yazı kesilmesin */
    min-height:255px;          /* kartlar eşit dursun */
    display:flex;
    flex-direction:column;
    z-index:0;
  }

  /* IŞIK EFEKTİ */
  .q7N3xP9k__cR4t1::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:18px;
    background:linear-gradient(120deg, transparent, rgba(0,170,255,0.30), transparent);
    opacity:0;
    transition:opacity 0.35s ease;
    pointer-events:none;
  }

  .q7N3xP9k__cR4t1:hover::before{ opacity:1; }
  .q7N3xP9k__cR4t1:hover{
    transform:translateY(-4px) scale(1.025);
    box-shadow:0 18px 45px rgba(0,160,255,0.35);
    border-color: rgba(0,198,255,0.35);
    z-index:1;
  }

  /* 3. kart: diğerleriyle aynı “seviye” (üstte durma hissi yok) */
  .q7N3xP9k__cR4t1--a9X2{
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: none;
  }

  /* Çok hafif mavi ton (abartmadan) */
  .q7N3xP9k__cR4t1--a9X2::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:18px;
    background: linear-gradient(160deg, rgba(0,120,255,0.10), rgba(0,120,255,0.00));
    pointer-events:none;
  }

  /* BAŞLIK */
  .q7N3xP9k__tL6e0{
    font-size:17px;
    margin:0 0 14px;
    font-weight:600;
    letter-spacing:0.3px;
  }

  .q7N3xP9k__tL6e0::after{
    content:"";
    display:block;
    width:38px;
    height:2px;
    margin-top:6px;
    background:linear-gradient(90deg, #00c6ff, #0077ff);
  }

  /* LİSTE GRID */
  .q7N3xP9k__gD1z7{
    width:100%;
    max-width:100%;
    display:grid;
    grid-template-columns: repeat(2, max-content);
    column-gap:56px;
    row-gap:10px;
    align-items:start;
  }

  /* ITEM */
  .q7N3xP9k__iM5n8{
    display:inline-flex;
    align-items:center;
    gap:8px;

    font-size:13.5px;
    line-height:1.25;
    opacity:0.92;
    color:inherit;
    text-decoration:none;

    white-space:nowrap;
    transition:transform 0.18s ease, opacity 0.18s ease, color 0.18s ease;
  }

  /* Nokta */
  .q7N3xP9k__iM5n8::before{
    content:"•";
    opacity:0.75;
    transform: translateY(-0.5px);
  }

  .q7N3xP9k__iM5n8:hover{
    opacity:1;
    color:#00c6ff;
    transform:translateX(4px);
  }

  /* İLETİŞİM */
  .q7N3xP9k__uB3p6{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:12px;
  }

  .q7N3xP9k__uB3p6i{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    line-height:1.35;
    white-space:nowrap;
  }

  .q7N3xP9k__uB3p6i::before{
    content:"•";
    opacity:0.75;
  }

  .q7N3xP9k__uB3p6l{
    font-weight:600;
    opacity:0.95;
  }

  .q7N3xP9k__lK9w4{
    color:inherit;
    text-decoration:none;
    opacity:0.95;
    transition:color 0.25s ease, opacity 0.25s ease;
    white-space:nowrap;
  }

  .q7N3xP9k__lK9w4:hover{
    color:#00c6ff;
    opacity:1;
  }

  /* ALT BAR */
  .q7N3xP9k__bO2m5{
    margin-top:25px;
    text-align:center;
    font-size:13px;
    opacity:0.55;
    padding:0 16px;
  }
}
/* ===============================
       MASAÜSTÜ FOOTER FOOTER
=============================== */