/* ════════════════════════════════════════
   MOBİL UYGULAMA — mobil-uygulama.css
   Font: DM Sans + Fira Code
════════════════════════════════════════ */

/* ── Global override: style.css ezme ── */
.mu-hero,
.mu-platform-section,
.mu-features-section,
.mu-process-section,
.mu-tech-section,
.mu-cta-section {
  font-family: 'DM Sans', sans-serif;
}

.mu-hero h1, .mu-hero h2, .mu-hero h3, .mu-hero h4,
.mu-platform-section h1, .mu-platform-section h2, .mu-platform-section h3, .mu-platform-section h4,
.mu-features-section h1, .mu-features-section h2, .mu-features-section h3, .mu-features-section h4,
.mu-process-section h1, .mu-process-section h2, .mu-process-section h3, .mu-process-section h4,
.mu-tech-section h1, .mu-tech-section h2, .mu-tech-section h3, .mu-tech-section h4,
.mu-cta-section h1, .mu-cta-section h2, .mu-cta-section h3, .mu-cta-section h4 {
  font-family: 'DM Sans', sans-serif !important;
  line-height: 1.05 !important;
}

.mu-hero-title {
  font-size: clamp(3rem, 5vw, 4.8rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -1.2px !important;
}

.mu-section-head h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem) !important;
  line-height: 1.08 !important;
}

:root {
  --mu-green:  #63eead;
  --mu-blue:   #63b3ed;
  --mu-purple: #a78bfa;
  --mu-yellow: #fbbf24;
  --mu-dark:   #080a14;
  --mu-card:   rgba(13,15,30,.90);
}

/* ── HERO ──────────────────────────────── */
.mu-hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
  min-height: 90vh;
  display: flex; align-items: center;
}
.mu-hero-bg { position: absolute; inset: 0; z-index: 0; }
.mu-bg-blob {
  position: absolute; border-radius: 50%;
  filter: blur(110px); pointer-events: none;
}
.mu-blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99,238,173,.14), transparent 65%);
  top: -200px; right: -100px;
}
.mu-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(109,111,245,.12), transparent 65%);
  bottom: -100px; left: -80px;
}
.mu-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Arka plan kod satırları */
.mu-code-lines {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  gap: 28px; padding: 0 60px; opacity: .06;
}
.mu-code-lines span {
  display: block;
  font-family: 'Fira Code', monospace;
  font-size: 13px; color: var(--mu-green);
  white-space: nowrap;
  width: var(--w);
  animation: mu-line-in .8s var(--d) both;
}
@keyframes mu-line-in {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.mu-hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

/* ─ Sol metin ─ */
.mu-eyebrow {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600;
  color: var(--mu-green); letter-spacing: .5px;
  margin-bottom: 22px;
  animation: mu-fade-up .6s .1s both;
}
.mu-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mu-green);
  box-shadow: 0 0 0 0 rgba(99,238,173,.4);
  animation: mu-dot-pulse 2s ease-in-out infinite;
}
@keyframes mu-dot-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(99,238,173,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(99,238,173,.0); }
}
.mu-hero-title {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900; color: #fff;
  line-height: 1.05; letter-spacing: -.8px;
  margin-bottom: 20px;
  animation: mu-fade-up .6s .2s both;
}
.mu-title-accent {
  background: linear-gradient(90deg, var(--mu-green), var(--mu-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mu-hero-desc {
  font-size: 15px; color: rgba(255,255,255,.42);
  line-height: 1.80; max-width: 480px;
  margin-bottom: 26px;
  animation: mu-fade-up .6s .3s both;
}
@keyframes mu-fade-up {
  from { opacity:0; transform: translateY(18px); }
  to   { opacity:1; transform: translateY(0); }
}

/* Platform rozetleri */
.mu-platform-badges {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 30px;
  animation: mu-fade-up .6s .4s both;
}
.mu-pb {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 50px;
  font-size: 12.5px; font-weight: 700; border: 1px solid;
}
.mu-pb--ios     { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.70); }
.mu-pb--android { background: rgba(165,214,167,.10); border-color: rgba(165,214,167,.25); color: #a5d6a7; }
.mu-pb--flutter { background: rgba(84,197,248,.10);  border-color: rgba(84,197,248,.25);  color: #54C5F8; display:flex;align-items:center;gap:6px }
.mu-pb--rn      { background: rgba(97,218,251,.10);  border-color: rgba(97,218,251,.25);  color: #61dafb; }

/* CTA butonları */
.mu-hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px;
  animation: mu-fade-up .6s .5s both;
}
.mu-btn-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 50px;
  background: linear-gradient(135deg, rgba(99,238,173,.18), rgba(99,179,237,.14));
  border: 1px solid rgba(99,238,173,.35);
  color: var(--mu-green); font-size: 14.5px; font-weight: 700;
  text-decoration: none; cursor: pointer; transition: all .28s;
  box-shadow: 0 0 30px rgba(99,238,173,.12);
}
.mu-btn-primary:hover {
  background: linear-gradient(135deg, rgba(99,238,173,.26), rgba(99,179,237,.20));
  box-shadow: 0 0 50px rgba(99,238,173,.22);
  transform: translateY(-2px); color: var(--mu-green);
}
.mu-btn-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,238,173,.25), transparent 65%);
  pointer-events: none;
}
.mu-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 50px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55); font-size: 14.5px; font-weight: 600;
  text-decoration: none; transition: all .22s;
}
.mu-btn-ghost:hover { background: rgba(255,255,255,.10); color: rgba(255,255,255,.80); }
.mu-btn-ghost--light { color: rgba(255,255,255,.70); border-color: rgba(255,255,255,.20); }

/* İstatistikler */
.mu-stats {
  display: flex; align-items: center; gap: 20px;
  animation: mu-fade-up .6s .6s both;
}
.mu-stat-num {
  display: block; font-size: 22px; font-weight: 900; color: #fff;
  line-height: 1.1;
}
.mu-stat-num span { color: var(--mu-green); font-size: 16px; }
.mu-stat-lbl { font-size: 11px; color: rgba(255,255,255,.32); margin-top: 2px; }
.mu-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.10); }

/* ─ Telefon Mockup ─ */
.mu-hero-right {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  height: 560px;
  animation: mu-fade-up .7s .3s both;
}

.mu-phone {
  position: absolute;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.60));
}
.mu-phone-body {
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,.14);
  background: #0a0a12;
  overflow: hidden;
  position: relative;
}

/* Arka telefon */
.mu-phone--back {
  width: 240px;
  top: 50px; left: 20px; z-index: 1;
  transform: rotate(-8deg) scale(.88);
  opacity: .65;
  animation: mu-phone-back-float 7s ease-in-out infinite;
}
.mu-phone--back .mu-phone-body { border-radius: 32px; }
@keyframes mu-phone-back-float {
  0%,100% { transform: rotate(-8deg) scale(.88) translateY(0); }
  50%      { transform: rotate(-8deg) scale(.88) translateY(-12px); }
}

/* Ön telefon */
.mu-phone--front {
  width: 270px;
  top: 20px; right: 20px; z-index: 2;
  animation: mu-phone-front-float 7s ease-in-out infinite;
}
@keyframes mu-phone-front-float {
  0%,100% { transform: rotate(3deg) translateY(0); }
  50%      { transform: rotate(3deg) translateY(-10px); }
}

/* Yan butonlar */
.mu-phone-side-btn {
  position: absolute; right: -3px;
  border-radius: 0 3px 3px 0;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.08);
}
.mu-side-vol-up { width: 3px; height: 36px; top: 100px; }
.mu-side-vol-dn { width: 3px; height: 36px; top: 148px; }
.mu-side-power  { width: 3px; height: 56px; top: 180px; left: -3px; border-radius: 3px 0 0 3px; }

/* Dynamic Island */
.mu-dynamic-island {
  width: 90px; height: 26px; border-radius: 20px;
  background: #000;
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  z-index: 10;
}

/* Ekran içerikleri */
.mu-phone-screen {
  width: 100%; min-height: 500px;
  background: #0f0f20;
  display: flex; flex-direction: column;
  padding-top: 44px;
}
.mu-screen--back {
  min-height: 380px;
  padding-top: 0;
}
.mu-app-header { width: 100%; }
.mu-app-notch {
  height: 24px; background: rgba(255,255,255,.03);
}
.mu-app-status-row {
  display: flex; gap: 8px; padding: 0 16px 14px;
}
.mu-app-stat-card {
  flex: 1; border-radius: 12px; border: 1px solid;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 3px;
}
.mu-app-chart {
  padding: 14px 16px;
  background: rgba(255,255,255,.03);
}
.mu-chart-bars {
  display: flex; align-items: flex-end; gap: 6px; height: 70px;
}
.mu-cbar {
  flex: 1; border-radius: 4px 4px 0 0;
  height: var(--h);
  background: rgba(99,238,173,.25);
  transition: background .3s;
}
.mu-cbar--active { background: rgba(99,238,173,.80); }

/* App içeriği */
.mu-app-search {
  display: flex; align-items: center; gap: 7px;
  margin: 0 14px 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 8px 12px;
}
.mu-app-products { padding: 0 12px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.mu-prod-card {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 10px 12px;
}
.mu-prod-img {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mu-prod-info { flex: 1; }
.mu-prod-name { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.80); margin-bottom: 2px; }
.mu-prod-price { font-size: 11px; font-weight: 800; color: var(--mu-green); }
.mu-prod-price span { font-size: 8px; font-weight: 500; color: rgba(255,255,255,.35); }
.mu-prod-btn {
  width: 26px; height: 26px; border-radius: 8px;
  background: rgba(109,111,245,.35); border: none;
  color: #fff; font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; cursor: default;
}

/* Alt nav bar */
.mu-app-bottom-nav {
  display: flex; border-top: 1px solid rgba(255,255,255,.07);
  padding: 8px 0 4px; margin-top: auto;
}
.mu-bnav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 7px; color: rgba(255,255,255,.30);
}
.mu-bnav-item i { font-size: 14px; }
.mu-bnav-item--active { color: rgba(109,111,245,.90); }

/* Floating rozetler */
.mu-float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 50px;
  background: rgba(13,15,30,.92); border: 1px solid rgba(255,255,255,.12);
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.75);
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  animation: mu-badge-float 5s ease-in-out infinite;
}
.mu-fb-1 { top: 10px; left: 0; animation-delay: 0s; }
.mu-fb-2 { bottom: 90px; left: -10px; animation-delay: -.8s; }
.mu-fb-3 { bottom: 20px; right: 0; animation-delay: -1.6s; }
@keyframes mu-badge-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ── BÖLÜM BAŞLIKLARI ─────────────────── */
.mu-section-head {
  text-align: center; margin-bottom: 48px;
}
.mu-tag {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(99,238,173,.25); border-radius: 50px;
  padding: 4px 14px; font-size: 11.5px; font-weight: 600;
  color: var(--mu-green); background: rgba(99,238,173,.07);
  margin-bottom: 14px;
}
.mu-section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900;
  color: #fff; letter-spacing: -.5px; margin-bottom: 12px;
}
.mu-section-head h2 span {
  background: linear-gradient(90deg, var(--mu-green), var(--mu-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mu-section-head p { font-size: 14.5px; color: rgba(255,255,255,.38); max-width: 500px; margin: 0 auto; }

/* ── PLATFORM TAKLARI ─────────────────── */
.mu-platform-section { padding: 0 0 80px; }

.mu-platform-tabs {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 32px; flex-wrap: wrap;
}
.mu-ptab {
  padding: 9px 22px; border-radius: 50px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.45); font-size: 13.5px; font-weight: 600;
  cursor: pointer; transition: all .22s; font-family: inherit;
}
.mu-ptab:hover { background: rgba(255,255,255,.10); color: rgba(255,255,255,.75); }
.mu-ptab.active {
  background: rgba(99,238,173,.12); border-color: rgba(99,238,173,.30);
  color: var(--mu-green);
}

.mu-tab-panels { position: relative; }
.mu-tab-panel { display: none; animation: mu-fade-up .35s both; }
.mu-tab-panel.active { display: block; }

.mu-tp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: var(--mu-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px; padding: 44px;
}
.mu-tp-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.mu-tp-left h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.mu-tp-left p  { font-size: 14px; color: rgba(255,255,255,.42); line-height: 1.75; margin-bottom: 18px; }
.mu-tp-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 9px; }
.mu-tp-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: rgba(255,255,255,.60);
}
.mu-tp-list li i { color: var(--mu-green); font-size: 14px; flex-shrink: 0; }
.mu-tp-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; color: var(--mu-green);
  text-decoration: none; transition: gap .2s;
}
.mu-tp-cta:hover { gap: 12px; color: var(--mu-green); }

/* Kod editörü */
.mu-code-editor {
  border-radius: 16px; overflow: hidden;
  background: #0d0f1e; border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.50);
}
.mu-ce-topbar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mu-ce-dots { display: flex; gap: 7px; }
.mu-ce-dots span {
  width: 11px; height: 11px; border-radius: 50%;
}
.mu-ce-dots span:nth-child(1) { background: #ff5f57; }
.mu-ce-dots span:nth-child(2) { background: #febc2e; }
.mu-ce-dots span:nth-child(3) { background: #28c840; }
.mu-ce-title { font-size: 12px; color: rgba(255,255,255,.30); font-family: 'Fira Code', monospace; }
.mu-ce-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 2px; }
.mu-ce-line { font-family: 'Fira Code', monospace; font-size: 12.5px; line-height: 1.8; white-space: nowrap; }
.mu-indent  { padding-left: 18px; }
.mu-indent2 { padding-left: 36px; }
.mu-indent3 { padding-left: 54px; }
.mu-indent4 { padding-left: 72px; }

/* Syntax renkleri */
.mu-ck { color: #c792ea; } /* keyword */
.mu-cs { color: #c3e88d; } /* string */
.mu-cn { color: #82aaff; } /* class/type */
.mu-cf { color: #82aaff; } /* function */
.mu-co { color: rgba(255,255,255,.50); } /* operator/punctuation */
.mu-ca { color: #c792ea; } /* annotation */
.mu-cursor {
  display: inline-block; width: 2px; height: 14px;
  background: var(--mu-green); margin-left: 1px;
  vertical-align: middle;
  animation: mu-cursor-blink 1s step-end infinite;
}
@keyframes mu-cursor-blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── BENTO GRID ────────────────────────── */
.mu-features-section { padding: 0 0 80px; }
.mu-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.mu-bento-card {
  background: var(--mu-card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: 28px;
  transition: transform .28s, border-color .28s, box-shadow .28s;
  position: relative; overflow: hidden;
}
.mu-bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,238,173,.20);
  box-shadow: 0 20px 55px rgba(0,0,0,.50);
}
.mu-bento-content {}
.mu-bento-icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: rgba(99,238,173,.12); border: 1px solid rgba(99,238,173,.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--mu-green); margin-bottom: 16px;
  transition: all .25s;
}
.mu-bento-card:hover .mu-bento-icon { box-shadow: 0 6px 20px rgba(99,238,173,.20); }
.mu-icon-green { background: rgba(99,238,173,.12) !important; border-color: rgba(99,238,173,.20) !important; color: var(--mu-green) !important; }
.mu-icon-purple { background: rgba(167,139,250,.12) !important; border-color: rgba(167,139,250,.20) !important; color: var(--mu-purple) !important; }
.mu-icon-blue   { background: rgba(99,179,237,.12)  !important; border-color: rgba(99,179,237,.20)  !important; color: var(--mu-blue)   !important; }

.mu-bento-card h3 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.mu-bento-card p  { font-size: 13.5px; color: rgba(255,255,255,.38); line-height: 1.70; margin: 0; }

/* UI/UX bento dekor */
.mu-uiux-palette {
  display: flex; gap: 6px; margin-top: 16px;
}
.mu-uiux-palette div {
  width: 22px; height: 22px; border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}

/* API pills */
.mu-api-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.mu-api-pills span {
  padding: 4px 10px; border-radius: 50px;
  background: rgba(99,179,237,.12); border: 1px solid rgba(99,179,237,.20);
  font-size: 11px; font-weight: 600; color: var(--mu-blue);
}

/* Performans barlar */
.mu-perf-bars { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.mu-perf-bar-row { display: flex; align-items: center; gap: 8px; }
.mu-perf-bar-row > span:first-child { font-size: 10px; color: rgba(255,255,255,.30); width: 28px; font-family: 'Fira Code',monospace; }
.mu-perf-bar { flex: 1; height: 6px; border-radius: 6px; background: rgba(255,255,255,.07); overflow: hidden; }
.mu-perf-fill { height: 100%; border-radius: 6px; width: var(--w); animation: mu-bar-grow .8s .4s both; }
@keyframes mu-bar-grow { from{width:0} to{width:var(--w)} }
.mu-perf-val { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.45); width: 28px; font-family: 'Fira Code',monospace; }

/* Mağaza rozetleri */
.mu-store-badges-mini { display: flex; gap: 8px; margin-top: 12px; }
.mu-sbm {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,.50);
}

/* Güvenlik ikonları */
.mu-sec-icons { display: flex; gap: 12px; margin-top: 14px; font-size: 20px; color: var(--mu-blue); }

/* ── SÜREÇ ─────────────────────────────── */
.mu-process-section { padding: 0 0 80px; }
.mu-process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
}
.mu-process-line {
  position: absolute;
  top: 24px; left: calc(50% / 3); right: calc(50% / 3);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,238,173,.25) 20%, rgba(99,238,173,.25) 80%, transparent);
  pointer-events: none;
}
.mu-process-step { display: flex; flex-direction: column; gap: 12px; }
.mu-ps-dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(99,238,173,.10); border: 1.5px solid rgba(99,238,173,.28);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fira Code', monospace;
  font-size: 11px; font-weight: 700; color: var(--mu-green);
  position: relative; z-index: 1;
  transition: all .25s;
}
.mu-process-step:hover .mu-ps-dot {
  background: rgba(99,238,173,.20);
  box-shadow: 0 0 0 6px rgba(99,238,173,.08);
}
.mu-ps-card {
  background: var(--mu-card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; padding: 22px;
  transition: border-color .25s, transform .25s;
}
.mu-process-step:hover .mu-ps-card {
  border-color: rgba(99,238,173,.18);
  transform: translateY(-3px);
}
.mu-ps-icon {
  font-size: 20px; color: var(--mu-green);
  margin-bottom: 10px;
}
.mu-ps-card h4 { font-size: 14.5px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.mu-ps-card p  { font-size: 12.5px; color: rgba(255,255,255,.38); line-height: 1.65; margin: 0; }

/* ── TEKNOLOJİ ─────────────────────────── */
.mu-tech-section { padding: 0 0 80px; }
.mu-tech-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.mu-tech-card {
  background: var(--mu-card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; padding: 22px;
  transition: transform .25s, border-color .25s;
}
.mu-tech-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.14);
}
.mu-tech-icon { font-size: 26px; margin-bottom: 10px; }
.mu-tech-name { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.75); margin-bottom: 12px; }
.mu-tech-bar { height: 5px; border-radius: 5px; background: rgba(255,255,255,.07); overflow: hidden; }
.mu-tech-fill {
  height: 100%; border-radius: 5px;
  width: 0; background: var(--tc);
  animation: mu-tech-grow .9s .5s both;
}
@keyframes mu-tech-grow { to { width: var(--tw); } }

/* ── CTA ──────────────────────────────── */
.mu-cta-section { padding: 0 0 80px; }
.mu-cta-card {
  border-radius: 28px; overflow: hidden;
  background: linear-gradient(135deg, rgba(10,12,28,.95), rgba(6,8,20,.98));
  border: 1px solid rgba(99,238,173,.15);
  padding: 64px 60px;
  position: relative;
  display: flex; align-items: center; gap: 40px;
  box-shadow: 0 0 80px rgba(99,238,173,.06);
}
.mu-cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(99,238,173,.07), transparent 55%),
    radial-gradient(ellipse 50% 70% at 100% 50%, rgba(99,179,237,.05), transparent 55%);
}
.mu-cta-phone-deco {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  font-size: 160px; color: rgba(99,238,173,.04);
  pointer-events: none; line-height: 1;
}
.mu-cta-content { position: relative; z-index: 1; }
.mu-cta-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900;
  color: #fff; line-height: 1.15; margin-bottom: 14px;
}
.mu-cta-content h2 span {
  background: linear-gradient(90deg, var(--mu-green), var(--mu-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mu-cta-content p { font-size: 14.5px; color: rgba(255,255,255,.38); line-height: 1.70; margin-bottom: 28px; }
.mu-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── RESPONSIVE ───────────────────────── */
@media(max-width:1100px){
  .mu-hero-grid { grid-template-columns: 1fr 400px; gap: 40px; }
  .mu-bento-grid { grid-template-columns: 1fr 1fr; }
  .mu-tech-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media(max-width:900px){
  .mu-hero-grid { grid-template-columns: 1fr; }
  .mu-hero-right { display: none; }
  .mu-tp-grid { grid-template-columns: 1fr; }
  .mu-process-timeline { grid-template-columns: 1fr 1fr; }
  .mu-tech-grid { grid-template-columns: 1fr 1fr; }
  .mu-cta-card { flex-direction: column; padding: 44px 36px; }
  .mu-cta-phone-deco { display: none; }
}
@media(max-width:600px){
  .mu-bento-grid { grid-template-columns: 1fr; }
  .mu-process-timeline { grid-template-columns: 1fr; }
  .mu-tech-grid { grid-template-columns: 1fr; }
  .mu-cta-card { padding: 36px 24px; }
  .mu-tp-grid { padding: 28px 22px; }
}
