/* =====================================================================
   AsyaJet - site geneli stiller
   ---------------------------------------------------------------------
   Bu dosya eskiden index.php icinde satir ici <style> blogundaydi. Site
   cok sayfali hale gelince ayni stilin her sayfada yeniden indirilmesi
   gerekiyordu; harici dosya tarayicida onbeleklenir ve ilk sayfadan
   sonraki gezinmelerde tekrar indirilmez.
   ===================================================================== */

    :root {
      --navy-950: #050e20;
      --navy-900: #08162f;
      --navy-850: #0b1d3a;
      --navy-800: #10264a;
      --navy-700: #173766;
      --blue-600: #1a66e6;
      --blue-500: #3b88ff;
      --cyan-400: #35d5f5;
      --green-500: #52e39d;
      --green-400: #78efb5;
      --orange-500: #ffb347;
      --red-500: #ff6b6b;
      --brand-orange: #ff7a1a;
      --brand-orange-soft: #ffad5c;
      --ink-900: #10213d;
      --ink-700: #42516b;
      --ink-500: #5a6478;
      --line: #dfe7f2;
      --surface: #ffffff;
      --surface-2: #f5f8fc;
      --surface-3: #edf3fa;
      --shadow-sm: 0 8px 24px rgba(8, 22, 47, .07);
      --shadow-md: 0 18px 50px rgba(8, 22, 47, .12);
      --shadow-lg: 0 28px 90px rgba(5, 14, 32, .2);
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 30px;
      --radius-xl: 42px;
      --container: 1220px;
      --header-h: 82px;
      --topbar-h: 38px;
      --ease: cubic-bezier(.2,.8,.2,1);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
    body {
      margin: 0;
      color: var(--ink-900);
      background: var(--surface);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    body.menu-open,
    body.modal-open { overflow: hidden; }

    button, input, textarea, select { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    a { color: inherit; text-decoration: none; }
    img, svg { display: block; max-width: 100%; }
    ul { padding: 0; margin: 0; list-style: none; }
    h1, h2, h3, h4, p { margin-top: 0; }
    h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.035em; }
    h1 { font-size: clamp(2.85rem, 6vw, 5.65rem); }
    h2 { font-size: clamp(2.15rem, 4.5vw, 4rem); }
    h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
    p { color: var(--ink-700); }

    ::selection { background: var(--green-400); color: var(--navy-950); }
    :focus-visible { outline: 3px solid rgba(31, 114, 255, .35); outline-offset: 3px; }

    .skip-link {
      position: fixed;
      left: 16px;
      top: -100px;
      z-index: 9999;
      background: #fff;
      color: var(--navy-900);
      padding: 10px 14px;
      border-radius: 10px;
      box-shadow: var(--shadow-md);
      transition: top .2s ease;
    }
    .skip-link:focus { top: 16px; }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin-inline: auto;
    }

    .section { padding: clamp(84px, 10vw, 140px) 0; position: relative; }
    .section-sm { padding: clamp(54px, 7vw, 90px) 0; }
    .section-soft { background: var(--surface-2); }
    .section-dark { background: var(--navy-900); color: #fff; }
    .section-dark p { color: rgba(255,255,255,.7); }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--blue-600);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 99px;
      background: currentColor;
    }
    .section-dark .eyebrow { color: var(--green-400); }
    .promise-copy .eyebrow { color: var(--green-400); }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

    .section-head {
      max-width: 780px;
      margin-bottom: 48px;
    }
    .section-head.center {
      text-align: center;
      margin-inline: auto;
    }
    .section-head.center .eyebrow { justify-content: center; }
    .section-head h2 { margin-bottom: 20px; }
    .section-head p { max-width: 650px; font-size: 1.08rem; }
    .section-head.center p { margin-inline: auto; }

    .btn {
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      border-radius: 14px;
      padding: 0 20px;
      font-weight: 800;
      cursor: pointer;
      transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:active { transform: translateY(0); }
    .btn-primary {
      color: var(--navy-950);
      background: linear-gradient(135deg, var(--green-400), var(--green-500));
      box-shadow: 0 12px 30px rgba(82, 227, 157, .24);
    }
    .btn-primary:hover { box-shadow: 0 18px 36px rgba(82, 227, 157, .34); }
    .btn-blue {
      color: #fff;
      background: linear-gradient(135deg, var(--blue-600), #1668eb 62%, var(--brand-orange));
      box-shadow: 0 12px 30px rgba(31, 114, 255, .24);
    }
    .btn-blue:hover { box-shadow: 0 18px 36px rgba(31, 114, 255, .34); }
    .btn-logo { background: linear-gradient(135deg, #002783 0%, #0066ff 52%, #5adcff 100%); }
    .btn-light {
      color: var(--navy-900);
      background: #fff;
      box-shadow: var(--shadow-sm);
    }
    .btn-outline {
      color: var(--navy-900);
      background: transparent;
      border: 1px solid rgba(16, 38, 74, .15);
    }
    .btn-outline:hover { border-color: var(--blue-500); background: rgba(31,114,255,.04); }
    .btn-ghost {
      min-height: 44px;
      color: var(--ink-900);
      background: transparent;
      padding: 0 12px;
    }
    .btn-icon { width: 18px; height: 18px; }

    .icon {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex: 0 0 auto;
    }

    .topbar {
      background: var(--navy-950);
      color: rgba(255,255,255,.82);
      font-size: .83rem;
    }
    .topbar-inner {
      min-height: var(--topbar-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
    .topbar-item { display: inline-flex; align-items: center; gap: 7px; }
    .topbar-item .icon { width: 15px; height: 15px; color: var(--green-400); }
    .topbar-highlight { color: var(--green-400); font-weight: 700; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 800;
      height: var(--header-h);
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(16,38,74,.08);
      transition: box-shadow .25s ease, background .25s ease;
    }
    .site-header.scrolled { box-shadow: 0 10px 30px rgba(8,22,47,.08); background: rgba(255,255,255,.96); }
    .header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 188px;
    }
    .brand-logo-image {
      width: 188px;
      height: auto;
      flex: 0 0 auto;
    }
    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      background: linear-gradient(145deg, #0f67ec 0%, var(--navy-800) 72%, var(--navy-950) 100%);
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
      flex: 0 0 auto;
      box-shadow: 0 11px 26px rgba(31,114,255,.25);
      isolation: isolate;
    }
    .brand-mark::before {
      content: "";
      position: absolute;
      width: 30px;
      height: 30px;
      right: -13px;
      bottom: -13px;
      border-radius: 50%;
      background: rgba(255,122,26,.9);
      filter: blur(1px);
      z-index: -1;
    }
    .brand-logo-svg { width: 33px; height: 33px; overflow: visible; }
    .brand-logo-a {
      fill: none;
      stroke: #fff;
      stroke-width: 4.1;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .brand-logo-jet {
      fill: none;
      stroke: var(--brand-orange-soft);
      stroke-width: 3.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .brand-copy { display: grid; line-height: 1; }
    .brand-copy strong { color: var(--navy-900); font-size: 1.28rem; letter-spacing: -.045em; }
    .brand-copy strong span { color: var(--brand-orange); }
    .brand-copy small { color: var(--ink-500); font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 5px; font-weight: 800; }

    .desktop-nav { display: flex; align-items: center; justify-content: center; gap: 5px; }
    .nav-link {
      min-height: 44px;
      padding: 0 12px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      border-radius: 12px;
      color: #2d3c55;
      font-size: .93rem;
      font-weight: 700;
      transition: color .2s ease, background .2s ease;
    }
    .nav-link:hover, .nav-link.active { color: var(--blue-600); background: rgba(31,114,255,.06); }
    .header-actions { display: flex; align-items: center; gap: 10px; }
    .header-actions .btn { min-height: 46px; }

    .menu-toggle {
      width: 46px;
      height: 46px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--navy-900);
    }

    .mobile-panel {
      position: fixed;
      inset: var(--header-h) 0 0;
      z-index: 790;
      background: rgba(5,14,32,.42);
      opacity: 0;
      visibility: hidden;
      
      overflow: hidden;
      transition: opacity .25s ease, visibility .25s ease;
    }
    .mobile-panel.open { opacity: 1; visibility: visible; }
    .mobile-drawer {
      width: min(100%, 420px);
      height: 100%;
      margin-left: auto;
      background: #fff;
      padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
      transform: translateX(100%);
      transition: transform .32s var(--ease);
      overflow-y: auto;
      box-shadow: -20px 0 50px rgba(5,14,32,.2);
    }
    .mobile-panel.open .mobile-drawer { transform: translateX(0); }
    .mobile-nav { display: grid; gap: 5px; }
    .mobile-nav a { padding: 14px 15px; border-radius: 12px; font-weight: 800; color: var(--navy-900); }
    .mobile-nav a:hover { background: var(--surface-2); color: var(--blue-600); }
    .mobile-actions { display: grid; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
    .mobile-contact { margin-top: 26px; display: grid; gap: 12px; font-size: .9rem; color: var(--ink-700); }

.hero {
      
      min-height: calc(100vh - var(--topbar-h) - var(--header-h));
      min-height: calc(100dvh - var(--topbar-h) - var(--header-h));
      
      padding-block: clamp(28px, 4.5vh, 68px);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      color: #fff;
      background:
        radial-gradient(circle at 78% 20%, rgba(53,213,245,.17), transparent 25%),
        radial-gradient(circle at 15% 90%, rgba(82,227,157,.12), transparent 28%),
        linear-gradient(145deg, var(--navy-950), var(--navy-850) 60%, #0c2d50);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 92%);
    }
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(2px);
      pointer-events: none;
    }
    .hero-orb.one { width: 420px; height: 420px; right: -140px; top: -120px; border: 1px solid rgba(82,227,157,.18); }
    .hero-orb.two { width: 680px; height: 680px; right: -230px; top: -250px; border: 1px solid rgba(53,213,245,.1); }
    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
      gap: clamp(48px, 7vw, 90px);
      align-items: center;
    }
    .hero-copy { max-width: 720px; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 7px 13px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.86);
      font-size: .82rem;
      font-weight: 700;
      margin-bottom: clamp(12px, 2.4vh, 25px);
      backdrop-filter: blur(10px);
    }
    .pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green-400);
      box-shadow: 0 0 0 0 rgba(120,239,181,.55);
      animation: pulse 2s infinite;
    }
    @keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(120,239,181,0); } 100% { box-shadow: 0 0 0 0 rgba(120,239,181,0); } }
    .hero h1 {
      
      font-size: clamp(2rem, min(5.2vw, 7.4vh), 4.7rem);
      margin-bottom: clamp(12px, 2.2vh, 24px);
      letter-spacing: -.055em;
    }
    .hero h1 span {
      color: transparent;
      background: linear-gradient(90deg, var(--green-400), var(--cyan-400));
      -webkit-background-clip: text;
      background-clip: text;
    }
    .hero-copy > p { color: rgba(255,255,255,.7); font-size: clamp(.95rem, min(1.4vw, 2vh), 1.16rem); max-width: 650px; margin-bottom: clamp(16px, 2.6vh, 32px); }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
    .hero-proof { margin-top: clamp(16px, 3vh, 38px); display: flex; flex-wrap: wrap; gap: clamp(12px, 2vw, 22px); }
    .proof-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.7); font-size: .9rem; }
    .proof-item .icon { color: var(--green-400); width: 19px; height: 19px; }

    .hero-visual { position: relative; min-height: 430px; display: grid; place-items: center; }
    .tracking-shell {
      width: min(100%, 490px);
      position: relative;
      z-index: 3;
      background: rgba(255,255,255,.97);
      border-radius: 28px;
      color: var(--ink-900);
      padding: 26px;
      box-shadow: 0 35px 100px rgba(0,0,0,.34);
      border: 1px solid rgba(255,255,255,.6);
    }
    .tracking-shell::before {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      border-radius: 26px;
      right: -35px;
      bottom: -35px;
      z-index: -1;
      background: linear-gradient(145deg, rgba(82,227,157,.2), rgba(53,213,245,.08));
      transform: rotate(14deg);
    }
    .tracking-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
    .tracking-head h2 { font-size: 1.55rem; margin-bottom: 6px; }
    .tracking-head p { margin: 0; font-size: .88rem; }
    .tracking-head-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: var(--blue-600); background: rgba(31,114,255,.08); }
    .track-tabs { display: grid; grid-template-columns: 1fr 1fr; padding: 4px; background: var(--surface-3); border-radius: 12px; margin-bottom: 16px; }
    .track-tab {
      min-height: 40px;
      border: 0;
      border-radius: 9px;
      background: transparent;
      color: var(--ink-500);
      font-weight: 800;
      font-size: .85rem;
      cursor: pointer;
    }
    .track-tab.active { color: var(--navy-900); background: #fff; box-shadow: 0 4px 14px rgba(16,38,74,.08); }
    .tracking-form { display: grid; gap: 12px; }
    .track-field {
      min-height: 58px;
      display: flex;
      align-items: center;
      gap: 11px;
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 0 15px;
      background: #fff;
      transition: border-color .2s, box-shadow .2s;
    }
    .track-field:focus-within { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(31,114,255,.08); }
    .track-field .icon { color: var(--ink-500); width: 20px; height: 20px; }
    .track-field input { width: 100%; border: 0; outline: 0; color: var(--ink-900); background: transparent; min-width: 0; }
    .track-field input::placeholder { color: #9aa5b5; }
    .tracking-form .btn { width: 100%; min-height: 56px; }
    .track-hint { margin: 14px 0 0; font-size: .76rem; color: var(--ink-500); text-align: center; }

    .avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(145deg, var(--cyan-400), var(--blue-600)); font-weight: 900; }

    .route-line {
      position: absolute;
      width: 80%;
      height: 80%;
      z-index: 1;
      opacity: .55;
      pointer-events: none;
    }
    .route-line path { stroke-dasharray: 12 11; animation: routeDash 12s linear infinite; }
    @keyframes routeDash { to { stroke-dashoffset: -184; } }

.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
    .trust-inner { padding: 27px 0; display: grid; grid-template-columns: 190px 1fr; align-items: center; gap: 30px; }
    .trust-copy { font-size: .8rem; color: var(--ink-500); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
    .logo-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
    .logo-chip { min-height: 48px; display: grid; place-items: center; border-radius: 12px; background: var(--surface-2); color: var(--ink-500); font-size: .77rem; font-weight: 900; letter-spacing: .04em; text-align: center; padding: 8px; }

.service-filter { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 32px; }
    .filter-btn {
      min-height: 42px;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--ink-700);
      border-radius: 999px;
      padding: 0 15px;
      font-weight: 800;
      cursor: pointer;
      transition: .2s ease;
    }
    .filter-btn.active, .filter-btn:hover { color: #fff; background: var(--navy-900); border-color: var(--navy-900); }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .service-card {
      min-height: 300px;
      display: flex;
      flex-direction: column;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: #fff;
      box-shadow: 0 0 0 rgba(0,0,0,0);
      transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s ease;
      position: relative;
      overflow: hidden;
    }
    .service-card::after {
      content: "";
      width: 130px;
      height: 130px;
      position: absolute;
      right: -65px;
      bottom: -65px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(31,114,255,.12), transparent 68%);
      transition: transform .35s var(--ease);
    }
    .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(31,114,255,.22); }
    .service-card:hover::after { transform: scale(1.35); }
    .service-card[hidden] { display: none; }
    .service-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: var(--blue-600);
      background: rgba(31,114,255,.08);
      margin-bottom: 24px;
    }
    .service-card:nth-child(3n+2) .service-icon { color: #09865b; background: rgba(82,227,157,.14); }
    .service-card:nth-child(3n+3) .service-icon { color: #b36700; background: rgba(255,179,71,.16); }
    .service-card h3 { margin-bottom: 12px; }
    .service-card p { margin-bottom: 22px; font-size: .94rem; }
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
      color: var(--blue-600);
      font-weight: 850;
      border: 0;
      background: transparent;
      padding: 0;
      cursor: pointer;
      width: fit-content;
    }
    .service-link .icon { width: 17px; height: 17px; transition: transform .2s ease; }
    .service-link:hover .icon { transform: translateX(4px); }

.process-wrap {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: clamp(48px, 7vw, 90px);
      align-items: start;
    }
    .process-copy { position: sticky; top: calc(var(--header-h) + 34px); }
    .process-copy h2 { margin-bottom: 22px; }
    .process-copy p { font-size: 1.05rem; margin-bottom: 26px; }
    .process-list { display: grid; gap: 16px; position: relative; }
    .process-list::before { content: ""; position: absolute; left: 28px; top: 40px; bottom: 40px; width: 1px; background: linear-gradient(var(--blue-500), var(--green-500)); opacity: .25; }
    .process-item {
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 18px;
      padding: 24px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 20px;
      background: rgba(255,255,255,.055);
      backdrop-filter: blur(8px);
      position: relative;
    }
    .process-number {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 17px;
      background: linear-gradient(145deg, rgba(31,114,255,.26), rgba(82,227,157,.13));
      border: 1px solid rgba(255,255,255,.12);
      color: var(--green-400);
      font-weight: 900;
      font-size: 1.05rem;
      z-index: 1;
    }
    .process-item h3 { margin: 4px 0 9px; color: #fff; font-size: 1.25rem; }
    .process-item p { margin: 0; font-size: .91rem; }

.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 7vw, 88px); align-items: center; }
    .platform-copy h2 { margin-bottom: 22px; }
    .platform-copy > p { font-size: 1.06rem; margin-bottom: 28px; }
    .feature-list { display: grid; gap: 15px; margin-bottom: 30px; }
    .feature-list li { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; }
    .feature-check { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: #067a52; background: rgba(82,227,157,.16); }
    .feature-list strong { display: block; margin: 2px 0 3px; }
    .feature-list span { color: var(--ink-700); font-size: .9rem; }

    .dashboard-frame {
      min-height: 510px;
      position: relative;
      padding: 16px;
      border-radius: 30px;
      background: linear-gradient(145deg, #dbe8f8, #f8fbff);
      box-shadow: var(--shadow-lg);
    }
    .dashboard {
      height: 100%;
      min-height: 478px;
      display: grid;
      grid-template-columns: 86px 1fr;
      border-radius: 21px;
      overflow: hidden;
      background: #fff;
      box-shadow: inset 0 0 0 1px rgba(16,38,74,.06);
    }
    .dash-sidebar { background: var(--navy-900); padding: 18px 13px; display: flex; flex-direction: column; align-items: center; gap: 13px; }
    .dash-logo { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(145deg, var(--blue-500), var(--green-500)); margin-bottom: 14px; }
    .dash-dot { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: rgba(255,255,255,.55); }
    .dash-dot.active { color: var(--green-400); background: rgba(255,255,255,.08); }
    .dash-dot .icon { width: 19px; height: 19px; }
    .dash-main { background: #f5f8fc; padding: 21px; overflow: hidden; }
    .dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 19px; }
    .dash-title strong { display: block; font-size: .95rem; }
    .dash-title span { color: var(--ink-500); font-size: .68rem; }
    .dash-avatar { width: 34px; height: 34px; border-radius: 50%; background: #d5e2f4; }
    .metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 12px; }
    .metric-card { padding: 13px; border-radius: 12px; background: #fff; box-shadow: 0 4px 16px rgba(8,22,47,.04); }
    .metric-card span { display: block; color: var(--ink-500); font-size: .58rem; }
    .metric-card strong { display: block; margin-top: 4px; font-size: 1rem; }
    .metric-card small { color: #077a4f; font-size: .58rem; font-weight: 800; }
    .chart-card { height: 190px; border-radius: 14px; background: #fff; padding: 14px; margin-bottom: 12px; box-shadow: 0 4px 16px rgba(8,22,47,.04); }
    .chart-head { display: flex; justify-content: space-between; align-items: center; font-size: .66rem; }
    .chart-bars { height: 125px; display: flex; align-items: end; gap: 8px; padding-top: 13px; border-bottom: 1px solid var(--line); }
    .chart-bar { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(var(--blue-500), #b8d2ff); animation: barRise 1s var(--ease) both; transform-origin: bottom; }
    .chart-bar:nth-child(2n) { background: linear-gradient(var(--green-500), #c7f7df); }
    @keyframes barRise { from { transform: scaleY(0); } to { transform: scaleY(1); } }
    .order-row { display: grid; grid-template-columns: 1fr .7fr .6fr; gap: 8px; align-items: center; padding: 10px 12px; border-radius: 11px; background: #fff; font-size: .6rem; margin-bottom: 7px; }
    .status { width: fit-content; padding: 4px 7px; border-radius: 999px; color: #08724e; background: rgba(82,227,157,.15); font-weight: 800; }
    .floating-kpi { position: absolute; right: -28px; top: 54px; padding: 14px 16px; border-radius: 16px; background: var(--navy-900); color: #fff; box-shadow: var(--shadow-md); }
    .floating-kpi span { display: block; color: rgba(255,255,255,.55); font-size: .68rem; }
    .floating-kpi strong { font-size: 1.35rem; }
    
    @media (max-width: 1100px) {
      .floating-kpi { right: 0; }
    }

.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 7vw, 88px); align-items: center; }
    .map-card {
      min-height: 460px;
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      background:
        radial-gradient(circle at 60% 50%, rgba(53,213,245,.12), transparent 35%),
        linear-gradient(145deg, #061329, #0c294b);
      box-shadow: var(--shadow-lg);
    }
    .map-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.15) 1px, transparent 1px);
      background-size: 24px 24px;
      opacity: .3;
    }
    .turkey-map { position: absolute; width: 90%; left: 5%; top: 17%; height: auto; filter: invert(1); opacity: .7; }
    
    .map-layer { position: absolute; left: 5%; top: 17%; width: 90%; aspect-ratio: 1024 / 500; }
    .map-pin {
      position: absolute;
      width: 18px;
      height: 18px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: transparent;
      transform: translate(-50%, -50%);
      cursor: pointer;
      display: grid;
      place-items: center;
    }
    
    .map-pin::after {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green-400);
      box-shadow: 0 0 0 3px rgba(82,227,157,.16);
      transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    }
    .map-pin:hover::after,
    .map-pin:focus-visible::after { transform: scale(1.7); box-shadow: 0 0 0 6px rgba(82,227,157,.28); }

.map-pin:hover, .map-pin:focus-visible { z-index: 20; }
    .map-pin.hq { z-index: 3; }
    .map-pin.hq::after {
      width: 13px;
      height: 13px;
      background: var(--brand-orange);
      border: 3px solid #fff;
      box-shadow: 0 0 0 7px rgba(255,122,26,.22);
      animation: hqPulse 2.5s ease-in-out infinite;
    }
    .map-pin.hq:hover::after { transform: scale(1.2); }
    @keyframes hqPulse { 50% { box-shadow: 0 0 0 15px rgba(255,122,26,0); } }

.map-tip {
      position: absolute;
      bottom: calc(100% + 9px);
      left: 50%;
      transform: translateX(-50%) translateY(4px);
      z-index: 30;
      padding: 5px 10px;
      border-radius: 8px;
      background: var(--navy-950);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
      box-shadow: 0 8px 20px rgba(0,0,0,.35);
    }
    .map-tip::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border: 5px solid transparent;
      border-top-color: var(--navy-950);
    }
    .map-pin:hover .map-tip,
    .map-pin:focus-visible .map-tip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

    .map-legend {
      position: absolute;
      right: 22px;
      top: 20px;
      z-index: 2;
      display: grid;
      gap: 6px;
      padding: 11px 13px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 13px;
      background: rgba(5,14,32,.55);
      backdrop-filter: blur(10px);
    }
    .map-legend span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.75); font-size: .7rem; font-weight: 600; white-space: nowrap; }
    .map-legend i { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
    .map-legend i.hq { background: var(--brand-orange); }
    .map-legend i.city { background: var(--green-400); }
    .map-caption { position: absolute; left: 25px; right: 25px; bottom: 24px; display: flex; justify-content: space-between; align-items: end; gap: 18px; color: #fff; }
    .map-caption strong { display: block; font-size: 1.7rem; }
    .map-caption span { color: rgba(255,255,255,.6); font-size: .82rem; }
    .live-label { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); font-size: .72rem; }
    .coverage-copy h2 { margin-bottom: 22px; }
    .coverage-copy > p { font-size: 1.06rem; margin-bottom: 30px; }
    .coverage-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 28px; }
    .coverage-stat { padding: 20px; border-radius: 17px; border: 1px solid var(--line); background: #fff; }
    .coverage-stat strong { display: block; color: var(--navy-900); font-size: 1.65rem; letter-spacing: -.04em; }
    .coverage-stat span { color: var(--ink-500); font-size: .84rem; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.11); border-radius: 24px; overflow: hidden; }
    .stat-item { padding: 32px 28px; border-right: 1px solid rgba(255,255,255,.1); }
    .stat-item:last-child { border-right: 0; }
    .stat-number { display: block; color: var(--green-400); font-size: clamp(2rem, 4vw, 3.65rem); line-height: 1; letter-spacing: -.055em; font-weight: 900; margin-bottom: 12px; }
    .stat-label { color: rgba(255,255,255,.65); font-size: .9rem; }

.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .sector-card { min-height: 210px; padding: 24px; border-radius: 19px; border: 1px solid var(--line); background: #fff; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
    .sector-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
    .sector-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: var(--blue-600); background: rgba(31,114,255,.08); margin-bottom: 23px; }
    .sector-card h3 { font-size: 1.15rem; margin-bottom: 9px; }
    .sector-card p { font-size: .87rem; margin: 0; }

.promise-card {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      align-items: stretch;
      border-radius: 32px;
      overflow: hidden;
      background: var(--navy-900);
      box-shadow: var(--shadow-lg);
    }
    .promise-visual {
      min-height: 500px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 50% 40%, rgba(53,213,245,.18), transparent 30%),
        linear-gradient(145deg, #0a2141, #061329);
    }
    .promise-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 45px 45px; }
    .courier-illustration { position: absolute; width: 82%; left: 9%; bottom: -2%; }
    .promise-copy { padding: clamp(42px, 6vw, 78px); color: #fff; display: flex; flex-direction: column; justify-content: center; }
    .promise-copy h2 { margin-bottom: 20px; }
    .promise-copy > p { color: rgba(255,255,255,.68); font-size: 1.05rem; }
    .quote-box { margin-top: 30px; padding: 21px 0 0; border-top: 1px solid rgba(255,255,255,.12); }
    .quote-box blockquote { margin: 0 0 18px; font-size: 1.08rem; line-height: 1.6; color: rgba(255,255,255,.9); }
    .quote-author { display: flex; align-items: center; gap: 12px; }
    .quote-author .avatar { width: 43px; height: 43px; }
    .quote-author small { color: rgba(255,255,255,.55); }

.faq-wrap { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(45px, 7vw, 88px); align-items: start; }
    .faq-copy { position: sticky; top: calc(var(--header-h) + 34px); }
    .faq-copy h2 { margin-bottom: 20px; }
    .faq-list { display: grid; gap: 12px; }
    .faq-item { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
    .faq-question { width: 100%; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; border: 0; background: transparent; color: var(--navy-900); font-weight: 850; text-align: left; cursor: pointer; }
    .faq-question .icon { transition: transform .25s ease; }
    .faq-item.open .faq-question .icon { transform: rotate(45deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
    .faq-answer-inner { padding: 0 20px 20px; color: var(--ink-700); font-size: .93rem; }

.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .join-card { min-height: 330px; padding: clamp(30px, 5vw, 52px); border-radius: 28px; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; }
    .join-card.courier { background: linear-gradient(145deg, #eaf1ff, #f8fbff); }
    .join-card.business { background: linear-gradient(145deg, var(--navy-900), #0b2d51); color: #fff; }
    .join-card::after { content: ""; position: absolute; width: 260px; height: 260px; right: -110px; bottom: -110px; border-radius: 50%; background: rgba(31,114,255,.08); }
    .join-card.business::after { background: rgba(82,227,157,.09); }
    .join-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 17px; color: var(--blue-600); background: #fff; box-shadow: var(--shadow-sm); margin-bottom: 28px; }
    .join-card.business .join-icon { color: var(--green-400); background: rgba(255,255,255,.09); }
    .join-card h3 { font-size: clamp(1.55rem, 3vw, 2.4rem); margin-bottom: 13px; }
    .join-card p { max-width: 480px; margin-bottom: 24px; }
    .join-card.business p { color: rgba(255,255,255,.65); }
    .join-card .btn { margin-top: auto; z-index: 1; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 7vw, 85px); align-items: start; }
    .contact-copy h2 { margin-bottom: 20px; }
    .contact-copy > p { font-size: 1.05rem; margin-bottom: 30px; }
    .contact-list { display: grid; gap: 14px; }
    .contact-item { display: grid; grid-template-columns: 46px 1fr; gap: 13px; align-items: center; }
    .contact-item-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: var(--blue-600); background: rgba(31,114,255,.08); }
    .contact-item strong { display: block; font-size: .9rem; }
    .contact-item span, .contact-item a { color: var(--ink-700); font-size: .9rem; }
    .contact-form {
      padding: clamp(24px, 4vw, 38px);
      border-radius: 24px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-md);
    }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .form-group { display: grid; gap: 7px; }
    .form-group.full { grid-column: 1 / -1; }
    .form-group label { color: var(--ink-900); font-size: .82rem; font-weight: 800; }
    .form-control {
      width: 100%;
      min-height: 52px;
      line-height: 1.5;
      box-sizing: border-box;
      border: 1px solid var(--line);
      border-radius: 13px;
      padding: 12px 14px;
      color: var(--ink-900);
      background: #fff;
      outline: 0;
      transition: border-color .2s, box-shadow .2s;
    }
    .form-control:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(31,114,255,.08); }
    textarea.form-control { min-height: 126px; resize: vertical; }
    .form-note { font-size: .75rem; color: var(--ink-500); margin: 15px 0; }
    .checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: .78rem; color: var(--ink-700); }
    .checkbox input { margin-top: 4px; accent-color: var(--blue-600); }
    .contact-form .btn { width: 100%; margin-top: 18px; }

.site-footer { background: var(--navy-950); color: #fff; padding: 68px 0 24px; }
    .footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr .9fr; gap: 42px; padding-bottom: 50px; }
    .footer-brand .brand-copy strong { color: #fff; }
    .footer-brand .brand-copy small { color: rgba(255,255,255,.62); }
    .footer-brand .brand-logo-image { filter: brightness(0) invert(1); opacity: .96; }
    .footer-brand p { color: rgba(255,255,255,.58); max-width: 370px; margin: 22px 0; font-size: .92rem; }
    .socials { display: flex; gap: 9px; }
    .social-link { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); transition: .2s ease; }
    .social-link:hover { color: var(--navy-950); background: var(--green-400); transform: translateY(-2px); }
    .footer-col h3 { font-size: .9rem; letter-spacing: .02em; margin-bottom: 18px; }
    .footer-links { display: grid; gap: 10px; }
    .footer-links a { color: rgba(255,255,255,.58); font-size: .87rem; transition: color .2s ease; }
    .footer-links a:hover { color: var(--green-400); }
    .newsletter { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 15px; }
    .newsletter input { min-width: 0; height: 46px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.07); color: #fff; padding: 0 13px; outline: 0; }
    .newsletter input::placeholder { color: rgba(255,255,255,.4); }
    .newsletter button { width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: 12px; background: var(--green-400); color: var(--navy-950); cursor: pointer; }
    
    .newsletter-consent {
      align-items: flex-start;
      gap: 8px;
      margin-top: 10px;
      color: rgba(255,255,255,.55);
      font-size: .74rem;
      line-height: 1.5;
    }
    
    .newsletter-consent input[type="checkbox"] {
      width: 15px;
      height: 15px;
      min-width: 15px;
      margin: 3px 0 0;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: none;
      accent-color: var(--green-400);
      flex: 0 0 auto;
    }
    .newsletter-consent > span { display: inline; }
    
    .newsletter-consent .legal-link {
      display: inline;
      width: auto;
      height: auto;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: none;
      color: var(--green-400);
      font-weight: 700;
      text-align: left;
      text-decoration: underline;
      text-underline-offset: 2px;
      white-space: normal;
      cursor: pointer;
    }
    .newsletter .field-error { color: #ffb4b4; font-size: .74rem; }

    .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.62); font-size: .78rem; }
    .footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }

.modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 1200;
      display: grid;
      place-items: center;
      padding: 20px;
      background: rgba(5,14,32,.68);
      backdrop-filter: blur(8px);
      opacity: 0;
      visibility: hidden;
      transition: opacity .25s ease, visibility .25s ease;
    }
    .modal-backdrop.open { opacity: 1; visibility: visible; }
    .modal {
      width: min(650px, 100%);
      max-height: min(780px, calc(100vh - 40px));
      overflow-y: auto;
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 35px 100px rgba(0,0,0,.36);
      transform: translateY(18px) scale(.985);
      transition: transform .28s var(--ease);
    }
    .modal-backdrop.open .modal { transform: translateY(0) scale(1); }
    .modal-head { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); backdrop-filter: blur(12px); }
    .modal-head h3 { margin: 0; font-size: 1.35rem; }
    .modal-close { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); background: #fff; color: var(--navy-900); display: grid; place-items: center; cursor: pointer; }
    .modal-body { padding: 24px; }
    .modal-service-icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 17px; color: var(--blue-600); background: rgba(31,114,255,.08); margin-bottom: 20px; }
    .modal-body h4 { margin: 24px 0 12px; font-size: 1rem; letter-spacing: -.01em; }
    .modal-list { display: grid; gap: 10px; }
    .modal-list li { display: flex; gap: 9px; align-items: flex-start; color: var(--ink-700); font-size: .9rem; }
    .modal-list .icon { color: #07885b; width: 18px; height: 18px; margin-top: 3px; }

    .track-result-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px; border-radius: 15px; background: var(--surface-2); margin-bottom: 22px; }
    .track-result-head strong { display: block; }
    .track-result-head span { color: var(--ink-500); font-size: .8rem; }
    .result-badge { padding: 6px 10px; border-radius: 999px; color: #08724e; background: rgba(82,227,157,.16); font-weight: 800; font-size: .78rem; }
    .timeline { position: relative; display: grid; gap: 0; }
    .timeline::before { content: ""; position: absolute; left: 19px; top: 20px; bottom: 20px; width: 2px; background: var(--line); }
    .timeline-item { position: relative; display: grid; grid-template-columns: 40px 1fr; gap: 13px; padding: 0 0 23px; }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-dot { width: 40px; height: 40px; z-index: 1; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--blue-600); box-shadow: 0 0 0 6px #fff; }
    .timeline-item.future .timeline-dot { color: var(--ink-500); background: var(--surface-3); }
    .timeline-content strong { display: block; margin-top: 3px; }
    .timeline-content span { color: var(--ink-500); font-size: .8rem; }

.cookie-banner {
      position: fixed;
      z-index: 1100;
      left: 20px;
      bottom: 20px;
      width: min(430px, calc(100% - 40px));
      padding: 18px;
      border-radius: 18px;
      background: rgba(5,14,32,.96);
      color: #fff;
      box-shadow: var(--shadow-lg);
      transform: translateY(130%);
      transition: transform .45s var(--ease);
    }
    .cookie-banner.show { transform: translateY(0); }
    .cookie-banner p { color: rgba(255,255,255,.65); margin: 0 0 14px; font-size: .82rem; }
    .cookie-actions { display: flex; gap: 8px; }
    .cookie-actions .btn { min-height: 42px; font-size: .8rem; }

    .toast-wrap { position: fixed; z-index: 1500; right: 20px; top: 20px; display: grid; gap: 10px; }
    .toast { width: min(360px, calc(100vw - 40px)); display: grid; grid-template-columns: 38px 1fr auto; gap: 11px; align-items: center; padding: 13px 14px; border-radius: 15px; background: #fff; box-shadow: var(--shadow-lg); border: 1px solid var(--line); animation: toastIn .35s var(--ease) both; }
    @keyframes toastIn { from { opacity: 0; transform: translateX(30px); } }
    .toast-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: #08724e; background: rgba(82,227,157,.15); }
    .toast.error .toast-icon { color: #b42d3a; background: rgba(255,107,107,.15); }
    .toast strong { display: block; font-size: .86rem; }
    .toast span { display: block; color: var(--ink-500); font-size: .75rem; }
    .toast button { border: 0; background: transparent; color: var(--ink-500); cursor: pointer; }

    .floating-actions { position: fixed; right: 20px; bottom: 20px; z-index: 700; display: grid; gap: 10px; }
    .float-btn { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; border: 0; color: #fff; background: var(--navy-900); box-shadow: var(--shadow-md); cursor: pointer; transition: transform .2s ease; }
    .float-btn:hover { transform: translateY(-3px); }
    
    .float-btn.apply { background: var(--green-500); color: var(--navy-950); animation: applyPulse 2.6s var(--ease) infinite; }
    .float-btn.apply:hover { background: var(--green-400); animation: none; }
    @keyframes applyPulse {
      0%, 100% { box-shadow: var(--shadow-md), 0 0 0 0 rgba(82,227,157,.5); }
      50%      { box-shadow: var(--shadow-md), 0 0 0 10px rgba(82,227,157,0); }
    }
    @media (prefers-reduced-motion: reduce) { .float-btn.apply { animation: none; } }
    .back-to-top { opacity: 0; visibility: hidden; transform: translateY(8px); }
    .back-to-top.show { opacity: 1; visibility: visible; transform: none; }

.hero-cta-list { display: grid; gap: 10px; }
    .hero-cta-item {
      width: 100%;
      display: grid;
      grid-template-columns: 46px minmax(0, 1fr) 18px;
      gap: 13px;
      align-items: center;
      text-align: left;
      padding: 15px;
      border: 1px solid var(--line);
      border-radius: 15px;
      background: #fff;
      cursor: pointer;
      transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s ease;
    }
    .hero-cta-item:hover { transform: translateY(-2px); border-color: rgba(31,114,255,.3); box-shadow: 0 12px 28px rgba(8,22,47,.09); }
    .hero-cta-item:active { transform: translateY(0); }
    
    .hero-cta-item.is-highlight {
      border-color: var(--green-500);
      background: linear-gradient(135deg, rgba(82,227,157,.07), rgba(53,213,245,.05));
    }
    .hero-cta-item.is-pulse { animation: ctaPulse 2.4s ease-in-out infinite; }
    .hero-cta-item.is-highlight .hero-cta-icon { color: #09865b; background: rgba(82,227,157,.18); }
    .hero-cta-item.is-highlight:hover {
      border-color: var(--green-500);
      box-shadow: 0 14px 32px rgba(82,227,157,.28);
    }
    .hero-cta-item.is-pulse:hover { animation: none; }

    @keyframes ctaPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(82,227,157,.5); }
      70%      { box-shadow: 0 0 0 9px rgba(82,227,157,0); }
    }
    .hero-cta-badge { display: inline-block; margin: 0 6px 0 0; padding: 2px 8px; border-radius: 999px; background: var(--green-400); color: var(--navy-950); font-size: .64rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; vertical-align: 1px; white-space: nowrap; }
    .hero-cta-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: var(--blue-600); background: rgba(31,114,255,.08); }
    .hero-cta-text { display: grid; gap: 3px; min-width: 0; }
    .hero-cta-text strong { color: var(--navy-900); font-size: .99rem; letter-spacing: -.025em; }
    .hero-cta-text small { color: var(--ink-500); font-size: .78rem; line-height: 1.45; }
    .hero-cta-arrow { width: 18px; height: 18px; color: var(--ink-500); transition: transform .2s ease, color .2s ease; }
    .hero-cta-item:hover .hero-cta-arrow { transform: translateX(3px); color: var(--blue-600); }

.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }

    .form-control:disabled, .btn:disabled { opacity: .62; cursor: not-allowed; }
    .btn:disabled:hover { transform: none; box-shadow: none; }
    .required-star { color: var(--red-500); }

    .form-control.is-invalid { border-color: var(--red-500); box-shadow: 0 0 0 4px rgba(255,107,107,.1); }
    .field-error { color: #cc3444; font-size: .74rem; font-weight: 700; line-height: 1.4; }
    .field-error:empty { display: none; }
    .form-hint { color: var(--ink-500); font-size: .74rem; margin: 0; line-height: 1.45; }

    .form-alert { display: none; gap: 10px; align-items: flex-start; padding: 12px 14px; border-radius: 12px; font-size: .84rem; margin-bottom: 16px; }
    .form-alert.show { display: flex; }
    .form-alert.error { color: #9e2734; background: rgba(255,107,107,.1); border: 1px solid rgba(255,107,107,.3); }
    .form-alert .icon { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; }

    .btn-spinner { width: 17px; height: 17px; border-radius: 50%; border: 2px solid rgba(255,255,255,.35); border-top-color: currentColor; animation: btnSpin .7s linear infinite; display: none; flex: 0 0 auto; }
    .btn-primary .btn-spinner { border-color: rgba(5,14,32,.2); border-top-color: currentColor; }
    .btn.is-loading .btn-spinner { display: block; }
    .btn.is-loading .btn-icon { display: none; }
    @keyframes btnSpin { to { transform: rotate(360deg); } }

.conditional-field[hidden] { display: none !important; }

    .phone-field { display: flex; align-items: center; gap: 0; }
    .phone-field .phone-prefix {
      min-height: 52px;
      display: flex;
      align-items: center;
      padding: 0 12px;
      border: 1px solid var(--line);
      border-right: 0;
      border-radius: 13px 0 0 13px;
      background: var(--surface-2);
      color: var(--ink-500);
      font-size: .88rem;
      font-weight: 700;
      white-space: nowrap;
      flex: 0 0 auto;
    }
    .phone-field .form-control { border-radius: 0 13px 13px 0; min-width: 0; }

.consent-box { padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-2); margin-top: 4px; }
    .consent-box .checkbox { font-size: .8rem; align-items: flex-start; }
    .consent-box .checkbox input { width: 17px; height: 17px; flex: 0 0 auto; }
    .legal-link { color: var(--blue-600); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; background: 0; border: 0; padding: 0; cursor: pointer; font-size: inherit; }
    .cookie-consent { position: fixed; left: 20px; bottom: 20px; z-index: 750; width: 330px; max-width: calc(100vw - 40px); background: rgba(8,22,47,.92); backdrop-filter: blur(10px); color: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; box-shadow: 0 18px 50px rgba(5,14,32,.55); animation: cookieUp .35s var(--ease, ease); }
    @keyframes cookieUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
    .cookie-consent[hidden] { display: none; }
    .cookie-consent-inner { padding: 16px 18px; display: flex; flex-direction: column; gap: 11px; }
    .cookie-consent-title { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: .95rem; letter-spacing: -.01em; }
    .cookie-consent-title .cookie-emoji { font-size: 1.25rem; line-height: 1; }
    .cookie-consent-text { margin: 0; font-size: .82rem; line-height: 1.55; color: rgba(255,255,255,.78); }
    .cookie-consent-text .legal-link { color: var(--green-400); }
    .cookie-consent-actions { display: flex; gap: 8px; }
    .btn-cookie { flex: 1; min-height: 40px; padding: 0 14px; border-radius: 11px; font-weight: 800; font-size: .85rem; cursor: pointer; border: 1px solid transparent; transition: opacity .2s ease, transform .15s ease; }
    .btn-cookie:hover { transform: translateY(-1px); }
    .btn-cookie.accept { background: var(--green-500); color: #04121f; }
    .btn-cookie.ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); }
    @media (max-width: 640px) { .cookie-consent { right: 12px; left: 12px; width: auto; bottom: 12px; } }

.legal-backdrop { z-index: 1400; }

.legal-content { color: var(--ink-700); font-size: .9rem; line-height: 1.7; }
    .legal-content h4 { color: var(--navy-900); font-size: .95rem; margin: 20px 0 8px; }
    .legal-content p { margin: 0 0 12px; }
    .legal-content ul { display: grid; gap: 7px; margin: 0 0 14px; padding-left: 18px; list-style: disc; }
    .legal-content a { color: var(--blue-600); font-weight: 700; }
    .legal-content .legal-note { margin-top: 18px; padding: 11px 13px; border-radius: 10px; background: var(--surface-2); color: var(--ink-500); font-size: .78rem; }
    .legal-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
    .legal-meta span { padding: 5px 10px; border-radius: 999px; background: var(--surface-3); color: var(--ink-700); font-size: .74rem; font-weight: 700; }

.select2-container { width: 100% !important; max-width: 100%; }
    
    .select2-container--open { z-index: 1300; }

    .select2-container--default .select2-selection--multiple,
    .select2-container--default .select2-selection--single {
      min-height: 52px;
      box-sizing: border-box;
      
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
      padding: 7px 9px;
      border: 1px solid var(--line);
      border-radius: 13px;
      background: #fff;
      transition: border-color .2s, box-shadow .2s;
    }
    .select2-container--default.select2-container--focus .select2-selection--multiple,
    .select2-container--default.select2-container--open .select2-selection--multiple,
    .select2-container--default.select2-container--focus .select2-selection--single,
    .select2-container--default.select2-container--open .select2-selection--single {
      border-color: var(--blue-500);
      box-shadow: 0 0 0 4px rgba(31,114,255,.08);
      outline: 0;
    }
    .select2-container--default .select2-selection--multiple.is-invalid,
    .form-group.has-error .select2-container--default .select2-selection--multiple {
      border-color: var(--red-500);
    }

    .select2-container--default .select2-selection--multiple .select2-selection__rendered {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
      
      width: auto;
      max-width: 100%;
      flex: 0 1 auto;
      margin: 0;
      padding: 0;
      list-style: none;
      box-sizing: border-box;
    }
    .select2-container--default .select2-selection--multiple .select2-selection__choice {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      max-width: 100%;
      margin: 0;
      padding: 5px 11px 5px 9px;
      border: 1px solid rgba(31,114,255,.2);
      border-radius: 999px;
      background: var(--surface-3);
      color: var(--navy-900);
      font-size: .8rem;
      font-weight: 700;
      line-height: 1.35;
    }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
      padding: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
      
      position: static;
      left: auto;
      top: auto;
      order: 2;
      width: 17px;
      height: 17px;
      display: grid;
      place-items: center;
      margin: 0;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: rgba(16,38,74,.09);
      color: var(--ink-700);
      font-size: .82rem;
      line-height: 1;
      cursor: pointer;
      flex: 0 0 auto;
    }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      background: var(--red-500);
      color: #fff;
    }
    
    .select2-container--default .select2-search--inline { display: flex; flex: 1 1 90px; min-width: 0; }
    .select2-container--default .select2-search--inline .select2-search__field {
      width: 100% !important;
      max-width: 100%;
      min-height: 26px;
      margin: 0;
      padding: 0 2px;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--ink-900);
      font-family: inherit;
      font-size: .9rem;
      line-height: 1.5;
      resize: none;
      overflow: hidden;
    }
    .select2-container--default .select2-search--inline .select2-search__field::placeholder { color: #9aa5b5; }

    .select2-container--default .select2-selection--multiple .select2-selection__clear {
      margin: 0 4px 0 0;
      padding: 0;
      color: var(--ink-500);
      font-size: 1.05rem;
      background: transparent;
      border: 0;
      cursor: pointer;
    }

    .select2-dropdown {
      border: 1px solid var(--line);
      border-radius: 13px;
      background: #fff;
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }
    .select2-container--default .select2-search--dropdown { padding: 9px; border-bottom: 1px solid var(--line); }
    .select2-container--default .select2-search--dropdown .select2-search__field {
      min-height: 42px;
      padding: 8px 11px;
      border: 1px solid var(--line);
      border-radius: 10px;
      outline: 0;
      font-family: inherit;
    }
    .select2-container--default .select2-search--dropdown .select2-search__field:focus { border-color: var(--blue-500); }
    .select2-container--default .select2-results > .select2-results__options { max-height: 260px; overscroll-behavior: contain; }
    .select2-container--default .select2-results__option {
      padding: 10px 13px;
      color: var(--ink-700);
      font-size: .89rem;
    }
    .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
      background: rgba(31,114,255,.08);
      color: var(--navy-900);
    }
    .select2-container--default .select2-results__option--selected {
      background: var(--surface-3);
      color: var(--navy-900);
      font-weight: 700;
    }
    .select2-results__option .select2-results__option { padding-left: 13px; }

@media (max-width: 1100px) {
      .desktop-nav { display: none; }
      .menu-toggle { display: flex; }
      .header-actions .btn-ghost { display: none; }
      .hero-grid { grid-template-columns: 1fr 430px; gap: 36px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .sectors-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1.3fr .7fr .7fr; }
      .footer-col.news { grid-column: 1 / -1; }
    }

    @media (max-width: 900px) {
      :root { --header-h: 72px; }
      .topbar-left .topbar-item:nth-child(2) { display: none; }
      .topbar-right .topbar-7-24 { display: none; }
      .hero { padding-top: 75px; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-copy { max-width: 780px; }
      .hero-visual { min-height: auto; }
      .tracking-shell { margin-inline: auto; }
      .process-wrap, .faq-wrap, .contact-grid { grid-template-columns: 1fr; }
      .process-copy, .faq-copy { position: static; }
      .platform-grid, .coverage-grid { grid-template-columns: 1fr; }
      .platform-copy, .coverage-copy { order: -1; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: 0; }
      .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
      .promise-card { grid-template-columns: 1fr; }
      .promise-visual { min-height: 390px; }
      .join-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 700px) {
      .container { width: min(calc(100% - 28px), var(--container)); }
      :root { --topbar-h: 34px; }
      .topbar-right { display: none; }
      .topbar-left { width: 100%; justify-content: center; }
      .topbar-left .topbar-item:first-child { font-size: .75rem; }
      .topbar-has-hours .topbar-left { display: none; }
      .topbar-has-hours .topbar-right { display: flex; width: 100%; justify-content: center; }
      .topbar-has-hours .topbar-right .topbar-cta { display: none; }
      .topbar-has-hours .topbar-hours { font-size: .75rem; }
      .site-header { top: 0; }
      .mobile-panel { inset: var(--header-h) 0 0; }
      .brand { min-width: auto; }
      .brand-copy small { display: none; }
      .header-actions .btn-blue { display: none; }
      .hero { padding: 58px 0 75px; }
      .hero h1 { font-size: clamp(1.9rem, min(10.5vw, 5.4vh), 3.1rem); }
      .hero-actions { display: grid; grid-template-columns: 1fr; }
      .hero-actions .btn { width: 100%; }
      .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
      .hero-visual { min-height: auto; }
      .tracking-shell { padding: 20px; border-radius: 23px; }
      .tracking-head h2 { font-size: 1.32rem; }
      .trust-inner { grid-template-columns: 1fr; gap: 14px; text-align: center; }
      .logo-row { grid-template-columns: repeat(3, 1fr); }
      .services-grid { grid-template-columns: 1fr; }
      .service-card { min-height: 270px; }
      .dashboard-frame { min-height: 420px; padding: 10px; border-radius: 22px; }
      .dashboard { min-height: 400px; grid-template-columns: 62px 1fr; }
      .dash-sidebar { padding-inline: 8px; }
      .dash-dot { width: 36px; height: 36px; }
      .dash-main { padding: 14px 10px; }
      .metric-card { padding: 9px; }
      .metric-card strong { font-size: .8rem; }
      .chart-card { height: 160px; padding: 10px; }
      .chart-bars { height: 102px; gap: 5px; }
      .floating-kpi { top: 37px; }
      .map-card { min-height: 360px; }
      .coverage-stats { grid-template-columns: 1fr 1fr; }
      .stats-grid { grid-template-columns: 1fr; }
      .stat-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
      .stat-item:last-child { border-bottom: 0; }
      .sectors-grid { grid-template-columns: 1fr; }
      .promise-visual { min-height: 315px; }
      .promise-copy { padding: 35px 24px; }
      .form-grid { grid-template-columns: 1fr; }
      .form-group.full { grid-column: auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-col.news { grid-column: 1 / -1; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
      .floating-actions { right: 14px; bottom: 14px; }
      .cookie-banner { left: 14px; bottom: 14px; width: calc(100% - 28px); }
    }

    @media (max-width: 430px) {
      .brand-copy strong { font-size: 1.08rem; }
      .brand-mark { width: 38px; height: 38px; border-radius: 12px; }
      .brand-logo-image { width: 154px; }
      .hero-proof { grid-template-columns: 1fr; }
      .logo-row { grid-template-columns: repeat(2, 1fr); }
      .coverage-stats { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-brand, .footer-col.news { grid-column: auto; }
      .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
      .modal-backdrop { padding: 10px; }
      .modal { max-height: calc(100vh - 20px); border-radius: 19px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    }

@media (max-width: 700px) {
      .hero-cta-item { grid-template-columns: 42px minmax(0, 1fr) 16px; gap: 11px; padding: 13px; }
      .hero-cta-icon { width: 42px; height: 42px; border-radius: 12px; }
      .hero-cta-text strong { font-size: .93rem; }
      .hero-cta-text small { font-size: .74rem; }
      .phone-field .phone-prefix { padding: 0 10px; font-size: .82rem; }
      .select2-container--default .select2-selection--multiple .select2-selection__choice { font-size: .76rem; }
      .select2-container--default .select2-results > .select2-results__options { max-height: 220px; }
    }

    @media (max-width: 430px) {
      .hero-cta-item { grid-template-columns: 38px minmax(0, 1fr); }
      .hero-cta-arrow { display: none; }
      .hero-cta-icon { width: 38px; height: 38px; }
      .consent-box { padding: 12px; }
    }

    @media (max-width: 768px) {
      input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
      textarea,
      select,
      .form-control,
      .select2-container--default .select2-selection--single,
      .select2-container--default .select2-selection--multiple,
      .select2-container--default .select2-selection__rendered,
      .select2-container--default .select2-search--inline .select2-search__field,
      .select2-container--default .select2-search--dropdown .select2-search__field,
      .select2-container--default .select2-results__option {
        font-size: 16px !important;
      }
    }

/* =====================================================================
   ALT SAYFALAR (/hakkimizda, /iletisim, /lokasyonlarimiz, /hizmetlerimiz)

   Ana sayfanin degiskenlerini ve buton siniflarini yeniden kullanir;
   burada yalnizca ic sayfalara ozgu duzen kurallari vardir.
   ===================================================================== */

.ic-sayfa main { padding-top: 0; }

.ic-hero {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: #fff;
  padding: 56px 0 48px;
}
.ic-hero h1 { margin: 12px 0 0; font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.15; }
.ic-ozet { margin: 14px 0 0; max-width: 70ch; color: rgba(255,255,255,.78); font-size: 1.02rem; line-height: 1.65; }

.ic-kirinti { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: rgba(255,255,255,.6); }
.ic-kirinti a { color: rgba(255,255,255,.78); text-decoration: none; }
.ic-kirinti a:hover { color: #fff; text-decoration: underline; }
.ic-kirinti [aria-current] { color: #fff; font-weight: 600; }

.ic-bolum { padding: 56px 0; }
.ic-bolum-gri { background: #f5f8fc; }
.ic-dar { max-width: 800px; }
.ic-bolum h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: 0 0 14px; }
.ic-bolum p { line-height: 1.75; color: var(--ink-700, #34445f); margin: 0 0 14px; }

.ic-sayilar { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.ic-sayi { background: #fff; border: 1px solid var(--line, #dfe7f2); border-radius: 14px; padding: 22px 18px; text-align: center; }
.ic-sayi strong { display: block; font-size: 1.9rem; color: var(--blue-600, #1f72ff); line-height: 1.1; }
.ic-sayi span { display: block; margin-top: 6px; font-size: .86rem; color: var(--ink-500, #6c7890); }

.ic-hizmetler,
.ic-iletisim-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.ic-kart { background: #fff; border: 1px solid var(--line, #dfe7f2); border-radius: 14px; padding: 24px; }
.ic-kart h2 { font-size: 1.05rem; margin: 0 0 8px; }
.ic-kart p { margin: 0; font-size: .93rem; }
.ic-kart .icon { width: 24px; height: 24px; color: var(--blue-600, #1f72ff); margin-bottom: 10px; }
.ic-kart a { color: var(--blue-600, #1f72ff); text-decoration: none; font-weight: 600; }
.ic-kart a:hover { text-decoration: underline; }

.ic-adimlar { counter-reset: adim; list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 16px; }
.ic-adimlar li { counter-increment: adim; position: relative; padding-left: 52px; }
.ic-adimlar li::before {
  content: counter(adim);
  position: absolute; left: 0; top: 0;
  width: 36px; height: 36px; display: grid; place-items: center;
  background: var(--blue-600, #1f72ff); color: #fff; border-radius: 50%; font-weight: 700;
}
.ic-adimlar h3 { margin: 4px 0 6px; font-size: 1.02rem; }
.ic-adimlar p { margin: 0; font-size: .93rem; }

.ic-liste { margin: 0 0 20px; padding-left: 20px; }
.ic-liste li { line-height: 1.75; margin-bottom: 8px; color: var(--ink-700, #34445f); }

.ic-lokasyonlar { list-style: none; padding: 0; margin: 22px 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.ic-lokasyonlar li { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line, #dfe7f2); border-radius: 11px; padding: 14px 16px; font-weight: 600; font-size: .93rem; }
.ic-lokasyonlar .icon { width: 18px; height: 18px; color: var(--blue-600, #1f72ff); flex: none; }

.ic-cta { background: #f5f8fc; }
.ic-cta-butonlar { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

@media (max-width: 640px) {
  .ic-hero { padding: 36px 0 32px; }
  .ic-bolum { padding: 40px 0; }
}

.ic-bolge { margin-top: 30px; }
.ic-bolge h3 { display: flex; align-items: baseline; gap: 10px; font-size: 1.02rem; margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line, #dfe7f2); }
.ic-bolge h3 span { font-size: .78rem; font-weight: 500; color: var(--ink-500, #6c7890); }
.ic-iller { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 8px; }
.ic-iller li { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--ink-700, #34445f); }
.ic-plaka { flex: none; min-width: 26px; text-align: center; font-size: .72rem; font-weight: 700; color: var(--blue-600, #1f72ff); background: rgba(31,114,255,.09); border-radius: 5px; padding: 2px 5px; font-variant-numeric: tabular-nums; }

/* Ilcelerle birlikte listelenen il kartlari */
.ic-iller-genis { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 12px; }
.ic-iller-genis li { display: block; background: #fff; border: 1px solid var(--line, #dfe7f2); border-radius: 11px; padding: 13px 15px; }
.ic-il-ad { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: .92rem; color: var(--ink-900, #10213d); }
.ic-ilceler { display: block; margin-top: 6px; padding-left: 35px; font-size: .82rem; line-height: 1.6; color: var(--ink-500, #6c7890); }
