/* ── RESET & BASE ───────────────────────────────── */


.tech-home-page *, .tech-home-page *::before, .tech-home-page *::after {
box-sizing: border-box; margin: 0; padding: 0;
}


.tech-home-page {
scroll-behavior: smooth;
}



.tech-home-page {
background: var(--background-color);
  color: var(--default-color);
  font-family: var(--default-font);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}



/* ── CSS VARS ───────────────────────────────────── */


.tech-home-page {
  --tech-accent-rgb: 4, 65, 95;
  --tech-support-rgb: 44, 125, 160;
  --tech-amber-rgb: 154, 116, 65;
  --tech-green-rgb: 43, 111, 99;
  --blue: var(--accent-color);
  --blue-bright: #0d5c84;
  --blue-text: var(--accent-color);
  --cyan: #2c7da0;
  --amber: #9a7441;
  --green: #2b6f63;
  --bg-0: var(--background-color);
  --bg-1: #f8fbfc;
  --bg-2: var(--surface-color);
  --bg-alt: #edf3f6;
  --card: var(--surface-color);
  --text: var(--heading-color);
  --muted: rgba(1, 30, 44, 0.62);
  --muted-light: rgba(1, 30, 44, 0.42);
  --border: rgba(1, 30, 44, 0.10);
  --border-hover: rgba(1, 30, 44, 0.18);
  --border-blue: rgba(4, 65, 95, 0.20);
  --shadow-sm: 0 4px 16px rgba(1, 30, 44, 0.06);
  --shadow-md: 0 12px 36px rgba(1, 30, 44, 0.10);
  --shadow-lg: 0 20px 56px rgba(1, 30, 44, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
}



/* ── UTILITY ────────────────────────────────────── */


.tech-home-page .container {
max-width: 1240px; margin: 0 auto; padding: 0 32px;
}


.tech-home-page .tag {
display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.70);
  color: var(--muted);
  margin-bottom: 20px;
}


.tech-home-page .tag-blue {
background: rgba(var(--tech-accent-rgb),0.08); border-color: rgba(var(--tech-accent-rgb),0.20); color: var(--blue-text);
}


.tech-home-page .tag-cyan {
background: rgba(var(--tech-support-rgb),0.08); border-color: rgba(var(--tech-support-rgb),0.20); color: #256987;
}


.tech-home-page .tag-amber {
background: rgba(var(--tech-amber-rgb),0.08); border-color: rgba(var(--tech-amber-rgb),0.20); color: #7d5c31;
}


.tech-home-page .tag-green {
background: rgba(var(--tech-green-rgb),0.08); border-color: rgba(var(--tech-green-rgb),0.20); color: #255f55;
}



.tech-home-page .pill {
display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 500;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.75);
  color: var(--muted);
  transition: all 0.25s ease;
  cursor: default;
}


.tech-home-page .pill:hover {
background: #fff; border-color: var(--border-hover); color: var(--text);
}


.tech-home-page .pill-dot {
width: 6px; height: 6px; border-radius: 50%;
}


.tech-home-page .pill-dot-blue {
background: var(--blue-bright);
}


.tech-home-page .pill-dot-cyan {
background: #2c7da0;
}


.tech-home-page .pill-dot-amber {
background: #9a7441;
}


.tech-home-page .pill-dot-green {
background: #2b6f63;
}



.tech-home-page h1 {
font-family: var(--heading-font); font-weight: 800;
}


.tech-home-page h2, .tech-home-page h3, .tech-home-page h4 {
font-family: var(--heading-font); font-weight: 700;
}


.tech-home-page .mono {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}



.tech-home-page .reveal {
opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}


.tech-home-page .reveal.visible {
opacity: 1; transform: translateY(0);
}


.tech-home-page .reveal-left {
opacity: 0; transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}


.tech-home-page .reveal-left.visible {
opacity: 1; transform: translateX(0);
}


.tech-home-page .reveal-right {
opacity: 0; transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;

}


.tech-home-page .reveal-right.visible {
opacity: 1; transform: translateX(0);
}



/* ── HERO ───────────────────────────────────────── */


.tech-home-page .hero {
position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 20px 0;
  background: radial-gradient(ellipse at 15% 25%, rgba(var(--tech-accent-rgb),0.09) 0%, transparent 45%),
              radial-gradient(ellipse at 85% 20%, rgba(var(--tech-support-rgb),0.07) 0%, transparent 40%),
              linear-gradient(160deg, #fbfcfe 0%, var(--background-color) 55%, #f3f8fb 100%);
}



.tech-home-page .hero-canvas {
position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}



.tech-home-page .hero-glow-1 {
position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--tech-accent-rgb),0.08) 0%, transparent 70%);
  top: -200px; left: -200px;
  z-index: 1; pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}


.tech-home-page .hero-glow-2 {
position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--tech-support-rgb),0.06) 0%, transparent 70%);
  bottom: -100px; right: -150px;
  z-index: 1; pointer-events: none;
  animation: glowPulse 10s ease-in-out infinite reverse;
}



@keyframes glowPulse {
0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}



.tech-home-page .hero-inner {
position: relative; z-index: 5;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}



.tech-home-page .hero-copy h1 {
font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
}


.tech-home-page .hero-copy h1 span {
background: linear-gradient(135deg, var(--accent-color) 0%, #2c7da0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}


.tech-home-page .hero-copy p {
font-size: 1.1rem; line-height: 1.75;
  color: var(--muted); max-width: 520px;
  margin-bottom: 36px;
}



.tech-home-page .hero-actions {
display: flex; flex-wrap: wrap; gap: 14px;
}


.tech-home-page .tech-btn-primary {
  padding: 14px 28px; border-radius: 999px; border: none;
  background: linear-gradient(135deg, var(--accent-color) 0%, #0d5c84 100%);
  color: #fff; font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none; display: inline-block;
  margin-top: 20px;

}


.tech-home-page .tech-btn-primary:hover {
transform: translateY(-2px); box-shadow: 0 22px 44px rgba(var(--tech-accent-rgb),0.32); color: #fff;
}



.tech-home-page .tech-btn-ghost {
padding: 14px 28px; border-radius: 999px;
  background: rgba(255,255,255,0.70); border: 1px solid var(--border);
  color: var(--text); font-weight: 500; font-size: 0.95rem; cursor: pointer;
  backdrop-filter: blur(10px); transition: all 0.25s ease;
  text-decoration: none; display: inline-block;
}


.tech-home-page .tech-btn-ghost:hover {
background: #fff; border-color: var(--border-hover); transform: translateY(-2px);
}



/* Hero visual */


.tech-home-page .hero-visual {
position: relative; height: 560px;
}



.tech-home-page .hero-orb {
position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(var(--tech-accent-rgb),0.08), rgba(var(--tech-support-rgb),0.04) 50%, transparent 75%);
  border: 1px solid rgba(var(--tech-accent-rgb),0.10);
  animation: orbFloat 7s ease-in-out infinite;
}


.tech-home-page .hero-orb::before {
content: "";
  position: absolute; inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(var(--tech-support-rgb),0.07);
}


.tech-home-page .hero-orb::after {
content: "";
  position: absolute; inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(var(--tech-accent-rgb),0.05);
  animation: orbRotate 20s linear infinite;
}



@keyframes orbFloat {
0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -52%) scale(1.02); }
}


@keyframes orbRotate {
from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}



.tech-home-page .hero-tech-cards {
position: absolute;
  inset: 0;
}



.tech-home-page .hero-tech-card {
position: absolute;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  min-width: 160px;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}


.tech-home-page .htc-icon {
width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; margin-bottom: 8px;
  color: var(--text);
}
.tech-home-page .htc-icon svg { width: 18px; height: 18px; }


.tech-home-page .htc-title {
font-size: 0.75rem; font-weight: 600; color: var(--text); margin-bottom: 2px;
}


.tech-home-page .htc-sub {
font-size: 0.68rem; color: var(--muted);
}



.tech-home-page .htc-1 {
top: 7%; left: 25%; animation-name: floatA;
}


.tech-home-page .htc-2 {
top: 3%; right: 17%; animation-name: floatB; animation-delay: -1.5s;
}


.tech-home-page .htc-3 {
top: 42%; right: 1%; animation-name: floatC; animation-delay: -3s;
}


.tech-home-page .htc-4 {
bottom: 18%; left: 8%; animation-name: floatD; animation-delay: -2s;
}


.tech-home-page .htc-5 {
bottom: 20%; right: 12%; animation-name: floatA; animation-delay: -4s;
}

.tech-home-page .htc-6 {
    top: 46%;
    left: 4%;
    animation-name: floatA;
    animation-delay: -4s;
}
.tech-home-page .htc-7 {
    top: 25%;
    left: 16%;
    animation-name: floatB;
    animation-delay: -1s;
}

.tech-home-page .htc-8 {
    top: 23%;
    right: 10%;
    animation-name: floatD;
    animation-delay: -2.8s;
}

.tech-home-page .htc-9 {
    bottom: 1%;
    left: 35%;
    animation-name: floatC;
    animation-delay: -3.6s;
}



@keyframes floatA {
0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)}
}


@keyframes floatB {
0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)}
}


@keyframes floatC {
0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)}
}


@keyframes floatD {
0%,100%{transform:translateY(0)} 50%{transform:translateY(11px)}
}



/* ── TECH OVERVIEW GRID ─────────────────────────── */


.tech-home-page .overview {
padding: 20px 0;
  position: relative;
  background: var(--bg-0);
}


.tech-home-page .overview-title {
text-align: center; margin-bottom: 60px;
}


.tech-home-page .overview-title h2 {
font-size: clamp(2rem, 3vw, 2.8rem); color: var(--text); margin-bottom: 14px;
}


.tech-home-page .overview-title p {
font-size: 1.05rem; color: var(--muted); max-width: 560px; margin: 0 auto;
}



.tech-home-page .tech-grid {
display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-radius: var(--radius);
}



.tech-home-page .tech-tile {
background: var(--card);
  padding: 36px 28px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
  text-decoration: none; display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}


.tech-home-page .tech-tile::before {
content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}


.tech-home-page .tech-tile:hover {
transform: translateY(-4px); box-shadow: var(--shadow-lg);
}


.tech-home-page .tech-tile:hover::before {
transform: scaleX(1);
}



.tech-home-page .tt-blue::before {
background: linear-gradient(90deg, var(--blue), #2c7da0);
}


.tech-home-page .tt-cyan::before {
background: linear-gradient(90deg, #2c7da0, #256987);
}


.tech-home-page .tt-amber::before {
background: linear-gradient(90deg, #9a7441, #7d5c31);
}


.tech-home-page .tt-green::before {
background: linear-gradient(90deg, #2b6f63, #256987);
}



.tech-home-page .tile-icon {
width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
  color: var(--text);
}
.tech-home-page .tile-icon svg { width: 24px; height: 24px; }


.tech-home-page .tile-icon-blue {
background: rgba(var(--tech-accent-rgb),0.10); border: 1px solid rgba(var(--tech-accent-rgb),0.15);
}


.tech-home-page .tile-icon-cyan {
background: rgba(var(--tech-support-rgb),0.10); border: 1px solid rgba(var(--tech-support-rgb),0.15);
}


.tech-home-page .tile-icon-amber {
    background: rgba(var(--tech-accent-rgb), 0.10);
    border: 1px solid rgba(var(--tech-accent-rgb), 0.15);
}

.tech-home-page .tile-icon-green {
background: rgba(var(--tech-green-rgb),0.10); border: 1px solid rgba(var(--tech-green-rgb),0.15);
}



.tech-home-page .tile-num {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem; color: var(--muted-light);
  letter-spacing: 0.12em; margin-bottom: 8px;
}


.tech-home-page .tile-title {
font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px;
}


.tech-home-page .tile-desc {
font-size: 0.85rem; color: var(--muted); line-height: 1.6;
}


.tech-home-page .tile-arrow {
position: absolute; bottom: 24px; right: 24px;
  color: var(--muted-light); font-size: 1.1rem;
  transition: transform 0.25s ease, color 0.25s ease;
}


.tech-home-page .tech-tile:hover .tile-arrow {
transform: translate(4px, -4px); color: var(--blue-bright);
}



/* ── SECTION SHARED ─────────────────────────────── */


.tech-home-page .tech-section {
padding: 20px 0; position: relative;
}


.tech-home-page .tech-section-dark {
background: var(--bg-1);
}


.tech-home-page .tech-section-darker {
background: var(--bg-0);
}



.tech-home-page .tech-section-label {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}



.tech-home-page .tech-section-header {
display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
  margin-bottom: 64px;
}


.tech-home-page .tech-section-header-full {
max-width: 680px; margin: 0 auto 64px; text-align: center;
}



.tech-home-page .tech-section-h2 {
font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 16px;
}


.tech-home-page .tech-section-p {
font-size: 1.0rem; color: var(--muted); line-height: 1.8;
}



/* ── SMART TRACKING SECTION ─────────────────────── */


.tech-home-page .tracking-grid {
display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}



.tech-home-page .spec-cards {
display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 32px;
}



.tech-home-page .spec-card {
padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}


.tech-home-page .spec-card:hover {
box-shadow: var(--shadow-md); border-color: var(--border-hover);
}


.tech-home-page .sc-value {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 1.3rem; font-weight: 500;
  color: var(--text); margin-bottom: 2px;
}


.tech-home-page .sc-value span {
font-size: 0.75rem; color: var(--muted);
}


.tech-home-page .sc-label {
font-size: 0.78rem; color: var(--muted);
}



/* Camera visual */


.tech-home-page .camera-visual {
position: relative; height: 480px;
  display: flex; align-items: center; justify-content: center;
}



.tech-home-page .cam-device {
    position: relative;
    z-index: 2;
    width: 260px;
    height: 180px;
    background: linear-gradient(145deg, #0f1e3a, #081530);
    border-radius: 16px;
    border: 1px solid rgba(77,144,255,0.25);
    box-shadow: 0 0 60px rgba(var(--tech-accent-rgb),0.12), var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scale: 1.3;
}


.tech-home-page .cam-lens {
position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a2a4e, #040d1e);
  border: 2px solid rgba(77,144,255,0.30);
  box-shadow: 0 0 20px rgba(var(--tech-support-rgb),0.15);
}


.tech-home-page .cam-lens::after {
content: "";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--accent-color), #04080f);
}


.tech-home-page .cam-screen {
position: absolute; right: 14px; top: 12px;
  width: 150px; height: 156px; border-radius: 8px;
  background: rgba(4,8,20,0.9);
  overflow: hidden;
}


.tech-home-page .cam-screen-inner {
width: 100%; height: 100%; position: relative;
  background: linear-gradient(160deg, #061020 0%, #030810 100%);
}


.tech-home-page .scan-line {
position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--tech-support-rgb),0.8), transparent);
  animation: scanDown 2.5s ease-in-out infinite;
}


@keyframes scanDown {
0% { top: 0; opacity: 1; }
  90% { top: calc(100% - 2px); opacity: 1; }
  100% { top: calc(100% - 2px); opacity: 0; }
}



.tech-home-page .cam-overlay-badge {
position: absolute; padding: 4px 10px; border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.6rem; font-weight: 500;
}


.tech-home-page .cob-tl {
top: 8px; left: 8px; background: rgba(var(--tech-green-rgb),0.25); color: #34d399; border: 1px solid rgba(var(--tech-green-rgb),0.35);
}


.tech-home-page .cob-tr {
top: 8px; right: 8px; background: rgba(var(--tech-accent-rgb),0.25); color: #93c5fd; border: 1px solid rgba(var(--tech-accent-rgb),0.35);
}


.tech-home-page .cob-br {
bottom: 8px; right: 8px; background: rgba(var(--tech-amber-rgb),0.20); color: #fcd34d; border: 1px solid rgba(var(--tech-amber-rgb),0.30);
}



.tech-home-page .detection-box {
position: absolute; border: 1px solid #34d399;
  border-radius: 4px; animation: detectPulse 3s ease-in-out infinite;
}


.tech-home-page .detection-box-2 {
border-color: #fcd34d; animation-delay: -1.5s;
}


.tech-home-page .db-label {
position: absolute; top: -18px; left: 0; white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.55rem; font-weight: 500;
}


@keyframes detectPulse {
0%, 100% { opacity: 0.7; }
  50% { opacity: 1; box-shadow: 0 0 8px currentColor; }
}



/* Floating stats */


.tech-home-page .cam-stat {
position: absolute; z-index: 3;
  padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.92); border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}


.tech-home-page .cs-label {
font-size: 0.68rem; color: var(--muted); margin-bottom: 2px;
}


.tech-home-page .cs-val {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; font-size: 1.1rem; font-weight: 500; color: var(--text);
}


.tech-home-page .cs-val small {
font-size: 0.65rem; color: var(--muted);
}



/* ── DSM / ADAS CARDS ────────────────────────────── */


.tech-home-page .subsystem-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 28px;
}



.tech-home-page .sys-card {
padding: 32px 28px; border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


.tech-home-page .sys-card:hover {
transform: translateY(-6px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-lg);
}


.tech-home-page .sys-card::before {
content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
}


.tech-home-page .sc-blue::before {
background: linear-gradient(90deg, transparent, var(--blue), transparent);
}


.tech-home-page .sc-cyan::before {
background: linear-gradient(90deg, transparent, #2c7da0, transparent);
}


.tech-home-page .sc-amber::before {
background: linear-gradient(90deg, transparent, #9a7441, transparent);
}


.tech-home-page .sc-green::before {
background: linear-gradient(90deg, transparent, #2b6f63, transparent);
}



.tech-home-page .sys-icon {
width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 20px;
  color: var(--text);
}
.tech-home-page .sys-icon svg { width: 22px; height: 22px; }


.tech-home-page .si-blue {
background: rgba(var(--tech-accent-rgb),0.10); border: 1px solid rgba(var(--tech-accent-rgb),0.14);
}


.tech-home-page .si-cyan {
background: rgba(var(--tech-support-rgb),0.10); border: 1px solid rgba(var(--tech-support-rgb),0.14);
}


.tech-home-page .si-amber {
background: rgba(var(--tech-amber-rgb),0.10); border: 1px solid rgba(var(--tech-amber-rgb),0.14);
}


.tech-home-page .si-green {
background: rgba(var(--tech-green-rgb),0.10); border: 1px solid rgba(var(--tech-green-rgb),0.14);
}



.tech-home-page .sys-badge {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted-light); margin-bottom: 6px;
}


.tech-home-page .sys-title {
font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 12px;
}


.tech-home-page .sys-desc {
font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px;
}



.tech-home-page .feature-list {
list-style: none; display: flex; flex-direction: column; gap: 8px;
}


.tech-home-page .feature-list li {
display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--muted);
}


.tech-home-page .feature-list li::before {
content: "";
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--blue-bright); flex-shrink: 0;
}



.tech-home-page .sys-link {
display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 0.82rem; font-weight: 600;
  color: var(--blue-text); text-decoration: none;
  transition: gap 0.2s ease;
}


.tech-home-page .sys-link:hover {
gap: 10px;
}



/* ── ROUTE OPTIMIZATION ─────────────────────────── */


.tech-home-page .route-opt-grid {
display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
height: 500px;
}


.tech-home-page .route-visual {
position: relative; height: 460px;
  background: #f3f8fb;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}


.tech-home-page .map-grid {
position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(var(--tech-accent-rgb),0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--tech-accent-rgb),0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}



.tech-home-page .route-path {
position: absolute; inset: 0;
}



.tech-home-page .route-node {
position: absolute;
  width: 12px; height: 12px; border-radius: 50%;
  transform: translate(-50%, -50%);
}


.tech-home-page .rn-start {
background: #2b6f63; box-shadow: 0 0 10px rgba(var(--tech-green-rgb),0.5);
  width: 16px; height: 16px;
  animation: nodePulseGreen 2s ease-in-out infinite;
}


.tech-home-page .rn-stop {
background: var(--blue-bright); box-shadow: 0 0 6px rgba(var(--tech-accent-rgb),0.35);
}


.tech-home-page .rn-end {
background: #9a7441; box-shadow: 0 0 10px rgba(var(--tech-amber-rgb),0.45);
}



@keyframes nodePulseGreen {
0%, 100% { box-shadow: 0 0 10px rgba(var(--tech-green-rgb),0.5); }
  50% { box-shadow: 0 0 20px rgba(var(--tech-green-rgb),0.7), 0 0 36px rgba(var(--tech-green-rgb),0.25); }
}



.tech-home-page .route-panel {
position: absolute; top: 16px; right: 16px;
  width: 200px;
  background: rgba(255,255,255,0.92); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}


.tech-home-page .rp-title {
font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}


.tech-home-page .rp-vehicle {
display: flex; align-items: center; justify-content: space-between;
  padding: 7px 0; border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
}


.tech-home-page .rp-vehicle:last-child {
border-bottom: none;
}


.tech-home-page .rpv-plate {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; color: var(--text); font-weight: 500;
}


.tech-home-page .rpv-bar {
width: 60px; height: 4px; border-radius: 2px; background: rgba(13,30,56,0.08); overflow: hidden;
}


.tech-home-page .rpv-fill {
height: 100%; border-radius: 2px;
}



.tech-home-page .route-steps {
display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}


.tech-home-page .step-card {
padding: 24px 20px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}


.tech-home-page .step-card:hover {
box-shadow: var(--shadow-md); border-color: var(--border-blue); transform: translateY(-3px);
}


.tech-home-page .step-num {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 1.8rem; font-weight: 500;
  background: linear-gradient(135deg, var(--blue), #2c7da0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 10px;
}


.tech-home-page .step-title {
font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 6px;
}


.tech-home-page .step-desc {
font-size: 0.78rem; color: var(--muted); line-height: 1.55;
}



/* ── STATS BAND ─────────────────────────────────── */


.tech-home-page .stats-band {
padding: 20px 0;
  background: linear-gradient(135deg, rgba(var(--tech-accent-rgb),0.06) 0%, rgba(var(--tech-support-rgb),0.04) 100%);
  border-top: 1px solid rgba(var(--tech-accent-rgb),0.10);
  border-bottom: 1px solid rgba(var(--tech-accent-rgb),0.10);
}


.tech-home-page .stats-inner {
display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}


.tech-home-page .stats-inner > * + *::before {
content: "";
  position: absolute; left: 0; top: 20%; height: 60%;
  width: 1px; background: var(--border);
}


.tech-home-page .stat-item {
text-align: center; padding: 20px;
  position: relative;
}


.tech-home-page .stat-item + .stat-item::before {
content: "";
  position: absolute; left: 0; top: 20%; height: 60%;
  width: 1px; background: var(--border);
}



.tech-home-page .stat-val {
font-family: var(--heading-font);
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px; display: block;
}


.tech-home-page .stat-val span {
background: linear-gradient(135deg, var(--blue), #2c7da0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}


.tech-home-page .stat-label {
font-size: 0.85rem; color: var(--muted);
}



/* ── PASSENGER APP ──────────────────────────────── */


.tech-home-page .app-grid {
display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}



/* =========================================================
   Phone Mockup — Transay Yolcu App UI Replica
   ========================================================= */

.tech-home-page .phone-mockup {
  position: relative; width: 270px; margin: 0 auto;
}

.tech-home-page .phone-frame {
  width: 270px; height: 540px;
  background: linear-gradient(145deg, #111d35, #0a1428);
  border-radius: 42px;
  border: 2px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.tech-home-page .phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; border-radius: 0 0 14px 14px;
  background: #0a1428; z-index: 20;
}

.tech-home-page .phone-screen {
  position: absolute; inset: 10px;
  border-radius: 34px;
  background: #ffffff;
  overflow: hidden;
}

.tech-home-page .phone-content {
  height: 100%;
  display: flex; flex-direction: column;
  background: #ffffff;
}

/* --- Top bar with TRANSAY logo --- */
.tech-home-page .ph-topbar {
  height: 52px; flex-shrink: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0 0 6px;
  background: #ffffff;
  position: relative; z-index: 5;
}

.tech-home-page .ph-logo {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 1px;
  line-height: 1;
}
.tech-home-page .ph-logo-trans { color: #1a2a6b; }
.tech-home-page .ph-logo-ay    { color: #c1272d; }

/* --- Map stage (fills the middle) --- */
.tech-home-page .ph-map {
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
  background: #eef4e8;
}

.tech-home-page .ph-map-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

.tech-home-page .ph-route-line {
  filter: drop-shadow(0 1px 1.5px rgba(11,46,134,0.35));
}

/* "◀ GERİ DÖN" button */
.tech-home-page .ph-back-btn {
  position: absolute; top: 8px; left: 8px;
  background: #ffffff;
  color: #c1272d;
  font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.4px;
  padding: 4px 8px; border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  z-index: 4;
}

/* Map markers (shared) */
.tech-home-page .ph-marker {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -50%);
}

.tech-home-page .ph-marker-origin {
  top: 17%; left: 22.5%;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
}

.tech-home-page .ph-marker-vehicle {
  top: 53%; left: 36%;
  width: 14px; height: 14px; border-radius: 50%;
  background: #e63946;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25), 0 2px 4px rgba(0,0,0,0.35);
}

.tech-home-page .ph-marker-vehicle .ph-pulse {
  position: absolute; inset: -6px; border-radius: 50%;
  background: rgba(230,57,70,0.35);
  animation: phPulseRed 1.8s ease-out infinite;
}

@keyframes phPulseRed {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

.tech-home-page .ph-marker-stop {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ffffff;
  border: 2px solid #0b2e86;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.tech-home-page .ph-stop-1 { top: 69%; left: 42%; }
.tech-home-page .ph-stop-2 { top: 83%; left: 47%; }

/* --- Right-side controls (toggles) --- */
.tech-home-page .ph-controls {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 8px;
  z-index: 5;
}

.tech-home-page .ph-ctrl {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 6px;
}

.tech-home-page .ph-ctrl-label {
  font-size: 0.58rem;
  font-weight: 700;
  color: #2b2b2b;
  background: rgba(255,255,255,0.85);
  padding: 2px 5px; border-radius: 3px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}

.tech-home-page .ph-toggle {
  position: relative;
  display: inline-block;
  width: 28px; height: 14px;
  border-radius: 999px;
  background: #30b55a;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
  flex-shrink: 0;
}

.tech-home-page .ph-toggle-knob {
  position: absolute;
  top: 1px; right: 1px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

.tech-home-page .ph-ctrl-focus { margin-top: 2px; }

.tech-home-page .ph-ctrl-focus .ph-ctrl-label {
  background: rgba(255,255,255,0.85);
  color: #3a3a3a;
  font-weight: 700;
}

.tech-home-page .ph-focus-btn {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #ffffff;
  color: #1a2a6b;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  flex-shrink: 0;
}

/* --- Bottom bar --- */
.tech-home-page .ph-bottombar {
  flex-shrink: 0;
  height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: #ffffff;
  color: #1a2a6b;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 2px;
  border-top: 1px solid rgba(0,0,0,0.05);
}



.tech-home-page .app-features {
display: flex; flex-direction: column; gap: 20px;
}


.tech-home-page .app-feat {
padding: 22px 24px; border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: flex-start; gap: 18px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}


.tech-home-page .app-feat:hover {
box-shadow: var(--shadow-md); border-color: var(--border-blue); transform: translateY(-2px);
}


.tech-home-page .af-icon {
width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  color: var(--text);
}
.tech-home-page .af-icon svg { width: 20px; height: 20px; }


.tech-home-page .af-title {
font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 4px;
}


.tech-home-page .af-desc {
font-size: 0.8rem; color: var(--muted); line-height: 1.55;
}



/* ── REPORTING ───────────────────────────────────── */


.tech-home-page .reporting-grid {
display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}



.tech-home-page .report-dashboard {
background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}


.tech-home-page .rd-header {
padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}


.tech-home-page .rd-title {
font-size: 0.82rem; font-weight: 600; color: var(--text);
}


.tech-home-page .rd-live {
display: flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  color: #2b6f63;
}


.tech-home-page .rd-live-dot {
width: 6px; height: 6px; border-radius: 50%; background: #2b6f63; animation: nodePulse 1.5s infinite;
}



@keyframes nodePulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(var(--tech-green-rgb),0.4); }
  50% { box-shadow: 0 0 0 6px rgba(var(--tech-green-rgb),0); }
}



.tech-home-page .rd-kpi-row {
display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border-bottom: 1px solid var(--border);
}


.tech-home-page .rd-kpi {
background: var(--bg-1);
  padding: 16px; text-align: center;
}


.tech-home-page .rdkpi-val {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; font-size: 1.4rem; font-weight: 500; color: var(--text);
}


.tech-home-page .rdkpi-label {
font-size: 0.65rem; color: var(--muted); margin-top: 2px;
}



.tech-home-page .rd-chart-area {
padding: 20px;
  height: 160px; position: relative;
  display: flex; align-items: flex-end; gap: 6px;
}


.tech-home-page .chart-bar {
flex: 1; border-radius: 4px 4px 0 0;
  background: rgba(var(--tech-accent-rgb),0.18);
  border-top: 1px solid rgba(var(--tech-accent-rgb),0.35);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  position: relative; cursor: pointer;
  filter: saturate(0.85) brightness(0.95);
}

/* Her çubuk farklı renk — hafif, şeffaf gradyanlar */
.tech-home-page .chart-bar-c1  { background: linear-gradient(180deg, rgba(96,165,250,0.55), rgba(96,165,250,0.15)); border-top-color: #60a5fa; }
.tech-home-page .chart-bar-c2  { background: linear-gradient(180deg, rgba(52,211,153,0.55), rgba(52,211,153,0.15)); border-top-color: #34d399; }
.tech-home-page .chart-bar-c3  { background: linear-gradient(180deg, rgba(250,204,21,0.55),  rgba(250,204,21,0.15));  border-top-color: #facc15; }
.tech-home-page .chart-bar-c4  { background: linear-gradient(180deg, rgba(244,114,182,0.55), rgba(244,114,182,0.15)); border-top-color: #f472b6; }
.tech-home-page .chart-bar-c5  { background: linear-gradient(180deg, rgba(129,140,248,0.55), rgba(129,140,248,0.15)); border-top-color: #818cf8; }
.tech-home-page .chart-bar-c6  { background: linear-gradient(180deg, rgba(251,146,60,0.55),  rgba(251,146,60,0.15));  border-top-color: #fb923c; }
.tech-home-page .chart-bar-c7  { background: linear-gradient(180deg, rgba(45,212,191,0.55),  rgba(45,212,191,0.15));  border-top-color: #2dd4bf; }
.tech-home-page .chart-bar-c8  { background: linear-gradient(180deg, rgba(239,68,68,0.55),   rgba(239,68,68,0.15));   border-top-color: #ef4444; }
.tech-home-page .chart-bar-c9  { background: linear-gradient(180deg, rgba(167,139,250,0.55), rgba(167,139,250,0.15)); border-top-color: #a78bfa; }
.tech-home-page .chart-bar-c10 { background: linear-gradient(180deg, rgba(16,185,129,0.55),  rgba(16,185,129,0.15));  border-top-color: #10b981; }
.tech-home-page .chart-bar-c11 { background: linear-gradient(180deg, rgba(14,165,233,0.55),  rgba(14,165,233,0.15));  border-top-color: #0ea5e9; }
.tech-home-page .chart-bar-c12 { background: linear-gradient(180deg, rgba(236,72,153,0.55),  rgba(236,72,153,0.15));  border-top-color: #ec4899; }

.tech-home-page .chart-bar:hover {
  filter: saturate(1.1) brightness(1.05);
  transform: translateY(-2px);
}

.tech-home-page .chart-bar.is-selected {
  filter: saturate(1.3) brightness(1.15);
  box-shadow: 0 -4px 14px rgba(255,255,255,0.08),
              0 0 0 1px rgba(255,255,255,0.18) inset;
  transform: translateY(-3px);
}
.tech-home-page .chart-bar.is-selected::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -6px;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  color: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
}

/* Eski highlight sınıfı — dursun, geçici vurgu olarak */
.tech-home-page .chart-bar.highlight {
  filter: saturate(1.15) brightness(1.08);
}



.tech-home-page .rd-list {
padding: 0 20px 16px;
}


.tech-home-page .rd-row {
display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
}


.tech-home-page .rd-row:last-child {
border-bottom: none;
}


.tech-home-page .rdr-route {
color: var(--text); font-weight: 500;
}


.tech-home-page .rdr-bar {
width: 80px; height: 3px; border-radius: 2px; background: rgba(13,30,56,0.08); overflow: hidden;
}


.tech-home-page .rdr-fill {
height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--blue), #2c7da0);
}


.tech-home-page .rdr-val {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; color: var(--text); font-weight: 500;
}



.tech-home-page .report-features {
display: flex; flex-direction: column; gap: 16px;
}


.tech-home-page .rf-item {
display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}


.tech-home-page .rf-item:hover {
box-shadow: var(--shadow-md); border-color: var(--border-blue); transform: translateY(-2px);
}


.tech-home-page .rf-icon {
width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--text);
}
.tech-home-page .rf-icon svg { width: 20px; height: 20px; }


.tech-home-page .rf-title {
font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 4px;
}


.tech-home-page .rf-desc {
font-size: 0.78rem; color: var(--muted); line-height: 1.5;
}



/* ── AUTOMATION BAND ────────────────────────────── */


.tech-home-page .automation-band {
padding: 20px 0;
}


.tech-home-page .auto-cards {
display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 48px;
}


.tech-home-page .auto-card {
padding: 28px 22px; border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}


.tech-home-page .auto-card:hover {
transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-blue);
}


.tech-home-page .ac-icon {
width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
  color: var(--text);
}
.tech-home-page .ac-icon svg { width: 22px; height: 22px; }


.tech-home-page .ac-title {
font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 8px;
}


.tech-home-page .ac-desc {
font-size: 0.8rem; color: var(--muted); line-height: 1.55;
}



/* ── CTA ────────────────────────────────────────── */


.tech-home-page .cta-section {
padding: 20px 0;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--background-color) 0%, #edf4f8 100%);
  border-top: 1px solid var(--border);
}


.tech-home-page .cta-glow {
position: absolute;
  width: 800px; height: 400px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(var(--tech-accent-rgb),0.07) 0%, transparent 70%);
  pointer-events: none;
}


.tech-home-page .cta-inner {
position: relative; z-index: 2;
  text-align: center; max-width: 640px; margin: 0 auto;
}


.tech-home-page .cta-inner h2 {
font-size: clamp(2rem, 3.5vw, 3rem); color: var(--text); margin-bottom: 20px;
}


.tech-home-page .cta-inner p {
font-size: 1.05rem; color: var(--muted); margin-bottom: 40px; line-height: 1.75;
}


.tech-home-page .cta-actions {
display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}



/* ── DIVIDER ────────────────────────────────────── */


.tech-home-page .tech-section-divider {
height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13,30,56,0.07) 30%, rgba(13,30,56,0.07) 70%, transparent);
}



/* ── RESPONSIVE ─────────────────────────────────── */


@media (max-width: 1100px) {

  
.tech-home-page .tech-grid {
grid-template-columns: repeat(2, 1fr);
}

  
.tech-home-page .subsystem-grid {
grid-template-columns: 1fr 1fr;
}

  
.tech-home-page .route-steps {
grid-template-columns: repeat(2, 1fr);
}

  
.tech-home-page .auto-cards {
grid-template-columns: repeat(2, 1fr);
}

  
.tech-home-page .stats-inner {
grid-template-columns: repeat(2, 1fr);
}


}



@media (max-width: 860px) {


    .tech-home-page .hero-inner {
        grid-template-columns: 1fr;
    }


    .tech-home-page .hero-visual {
        height: 420px;
    }


    .tech-home-page .tracking-grid {
        grid-template-columns: 1fr;
    }


    .tech-home-page .app-grid {
        grid-template-columns: 1fr;
    }


    .tech-home-page .reporting-grid {
        grid-template-columns: 1fr;
    }


    .tech-home-page .route-opt-grid {
        grid-template-columns: 1fr;
    }


    .tech-home-page .tech-section-header {
        grid-template-columns: 1fr;
    }


    .tech-home-page .subsystem-grid {
        grid-template-columns: 1fr;
    }

}



@media (max-width: 600px) {

  
    .tech-home-page .container {
    padding: 0 20px;
    }

  
    .tech-home-page .tech-grid {
    grid-template-columns: 1fr;
    }

  
    .tech-home-page .spec-cards {
    grid-template-columns: 1fr 1fr;
    }

  
    .tech-home-page .route-steps {
    grid-template-columns: 1fr 1fr;
    }

  
    .tech-home-page .auto-cards {
    grid-template-columns: 1fr 1fr;
    }

  
    .tech-home-page .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    }
    .tech-home-page .hero-tech-card {
        min-width: 126px;
        padding: 11px 12px;
      }

      .tech-home-page .htc-title {
        font-size: 0.66rem;
      }

      .tech-home-page .htc-sub {
        font-size: 0.58rem;
      }

    .tech-home-page .reveal-right{
        width:80%
    }

    .tech-home-page .fm-map{
        width: 85%;
    }
}



/* ── HERO EXPANSION ─────────────────────────────── */

.tech-home-page .hero-visual {
  height: 640px;
}

.tech-home-page .hero-tech-card {
  min-width: 154px;
  max-width: 178px;
  isolation: isolate;
}

.tech-home-page .hero-tech-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -55% auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--tech-support-rgb), 0.18), transparent 68%);
  z-index: -1;
  opacity: 0.8;
}



/* ── OVERVIEW EXPANSION ─────────────────────────── */

.tech-home-page .tech-grid.tech-grid--expanded {
  grid-template-columns: repeat(4, 1fr);
}

.tech-home-page .tech-tile {
  transform-origin: center;
}

.tech-home-page .tech-tile::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--tech-accent-rgb), 0.10), transparent 68%);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(18px);
}

.tech-home-page .tech-tile:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ── NEW SHOWCASE SECTIONS ──────────────────────── */

.tech-home-page .tps-showcase {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.tech-home-page .tps-showcase-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.tech-home-page .tps-showcase-shell--reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.tech-home-page .tps-showcase-copy {
  position: relative;
  z-index: 2;
}

.tech-home-page .tps-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.tech-home-page .tps-list-item {
  position: relative;
  padding: 18px 18px 18px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.tech-home-page .tps-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), #2c7da0);
}

.tech-home-page .tps-list-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-blue);
}

.tech-home-page .tps-list-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.tech-home-page .tps-list-item span {
  display: block;
  font-size: 0.84rem;
  line-height: 1.62;
  color: var(--muted);
}

.tech-home-page .tps-showcase-visual {
  position: relative;
  min-height: 500px;
}

.tech-home-page .tps-visual-glow {
  position: absolute;
  inset: 12% 10% auto auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--tech-support-rgb), 0.14), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
  animation: tpsGlow 6.5s ease-in-out infinite;
}

.tech-home-page .tps-visual-panel,
.tech-home-page .tps-dashboard,
.tech-home-page .tps-monitor {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,251,252,0.96) 100%);
  box-shadow: var(--shadow-lg);
  padding: 22px;
}

.tech-home-page .tps-dashboard {
    padding: 40px;
    margin-top: 70px;
}

.tech-home-page .tps-monitor {
    margin-top: 60px;
}

    .tech-home-page .tps-visual-panel::before,
    .tech-home-page .tps-dashboard::before,
    .tech-home-page .tps-monitor::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.52) 46%, transparent 72%);
        transform: translateX(-140%);
        animation: tpsSheen 7.2s linear infinite;
        pointer-events: none;
    }

    .tech-home-page .tps-visual-head,
    .tech-home-page .tps-dashboard__top,
    .tech-home-page .tps-monitor__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 22px;
    }

        .tech-home-page .tps-visual-head > span:first-child,
        .tech-home-page .tps-dashboard__label,
        .tech-home-page .tps-monitor__head > span:first-child {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--muted);
        }

    .tech-home-page .tps-live-dot {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.68rem;
        color: #2b6f63;
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    }

        .tech-home-page .tps-live-dot span {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #2b6f63;
            animation: nodePulse 1.8s infinite;
        }

    .tech-home-page .tps-module-stack {
        display: grid;
        gap: 12px;
    }

    .tech-home-page .tps-module-chip {
        position: relative;
        padding: 14px 16px;
        border-radius: 14px;
        background: rgba(var(--tech-accent-rgb),0.04);
        border: 1px solid rgba(var(--tech-accent-rgb),0.10);
        color: var(--text);
        font-size: 0.86rem;
        font-weight: 600;
        transform: translateX(0);
        animation: tpsFloatChip 4.8s ease-in-out infinite;
    }

        .tech-home-page .tps-module-chip:nth-child(2) {
            animation-delay: -.6s;
        }

        .tech-home-page .tps-module-chip:nth-child(3) {
            animation-delay: -1.2s;
        }

        .tech-home-page .tps-module-chip:nth-child(4) {
            animation-delay: -1.8s;
        }

        .tech-home-page .tps-module-chip:nth-child(5) {
            animation-delay: -2.4s;
        }

    .tech-home-page .tps-core-line {
        position: absolute;
        top: 84px;
        bottom: 24px;
        left: 38px;
        width: 2px;
        background: linear-gradient(180deg, rgba(var(--tech-accent-rgb),0.12), rgba(var(--tech-support-rgb),0.42), rgba(var(--tech-accent-rgb),0.12));
        opacity: 0.7;
    }

    .tech-home-page .tps-floating-pill {
        position: absolute;
        display: inline-flex;
        align-items: center;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255,255,255,0.92);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--text);
    }

    .tech-home-page .tps-floating-pill--a {
        top: 18px;
        right: 18px;
        animation: tpsFloat 5.2s ease-in-out infinite;
    }

    .tech-home-page .tps-floating-pill--b {
        bottom: 18px;
        right: 28px;
        animation: tpsFloat 5.8s ease-in-out infinite reverse;
    }

    .tech-home-page .tps-dashboard__top strong {
        display: block;
        font-size: 1rem;
        color: var(--text);
        margin-top: 4px;
    }

    .tech-home-page .tps-dashboard-grid,
    .tech-home-page .tps-monitor__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tech-home-page .tps-dashboard-card,
    .tech-home-page .tps-monitor-box {
        padding: 16px;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: rgba(255,255,255,0.82);
        box-shadow: var(--shadow-sm);
        transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

        .tech-home-page .tps-dashboard-card:hover,
        .tech-home-page .tps-monitor-box:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .tech-home-page .tps-dashboard-card strong {
            display: block;
            font-size: 0.88rem;
            color: var(--text);
            margin-bottom: 5px;
        }

        .tech-home-page .tps-dashboard-card span {
            display: block;
            font-size: 0.78rem;
            line-height: 1.55;
            color: var(--muted);
        }

    .tech-home-page .tps-monitor__stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 16px;
    }

        .tech-home-page .tps-monitor__stats div {
            padding: 14px 12px;
            border-radius: 14px;
            background: rgba(var(--tech-accent-rgb),0.04);
            border: 1px solid rgba(var(--tech-accent-rgb),0.10);
            text-align: center;
        }

        .tech-home-page .tps-monitor__stats strong {
            display: block;
            font-size: 1.1rem;
            color: var(--text);
            margin-bottom: 4px;
        }

        .tech-home-page .tps-monitor__stats span {
            display: block;
            font-size: 0.74rem;
            color: var(--muted);
        }

    .tech-home-page .tps-monitor-box {
        display: grid;
        place-items: center;
        min-height: 84px;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--text);
    }
    /* ── ANIMATIONS ─────────────────────────────────── */

    @keyframes tpsGlow {
        0%, 100% {
            opacity: 0.65;
            transform: scale(1);
        }

        50% {
            opacity: 1;
            transform: scale(1.08);
        }
    }

    @keyframes tpsSheen {
        0% {
            transform: translateX(-140%);
        }

        100% {
            transform: translateX(160%);
        }
    }

    @keyframes tpsFloat {
        0%, 100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes tpsFloatChip {
        0%, 100% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(6px);
        }
    }
    

    /* ══════════════════════════════════════════════════════════════════════
   TRANSAY — Teknoloji Anasayfa EKLEMELER
   technology-home.css sonuna eklenir.
   Kapsam:
     · htc-7/8/9 hero card pozisyonları
     · tech-grid--7 (4+3 layout)
     · Yönetim Paneli (.mp-*) animasyonlu konsol
     · Filo Yönetimi (.fm-*) canlı harita
     · Modüller (.md-*) orbital konstellasyon
   Global değişkenler (--tech-accent-rgb, --tech-green-rgb, vs.) ve
   global class'lar (.tag, .pill, .spec-card, .rf-item, .reveal-*) aynen
   kullanılır; yeniden tanımlanmaz.
   ══════════════════════════════════════════════════════════════════════ */

/* ── HERO: htc-7 / 8 / 9 yeni pozisyonlar ──────────────────────────── */
/* Mevcut htc-1..6 pozisyonları (dokunulmaz):
   htc-1: top 8%  / left 5%     (sol üst)
   htc-2: top 5%  / right 8%    (sağ üst)
   htc-3: top 42% / right 2%    (sağ orta)
   htc-4: bottom 12% / left 8%  (sol alt)
   htc-5: bottom 5%  / right 12%(sağ alt)
   htc-6: top 40% / left 4%     (sol orta)
   Yeni kartlar: biraz daha kompakt (--htc-compact) + merkez hattına oturur.
   Her animasyon fazı farklı olduğu için canlı sayfada örtüşme hissi azalır. */
.tech-home-page .htc-7,
.tech-home-page .htc-8,
.tech-home-page .htc-9 {
    min-width: 148px;
    padding: 12px 14px;
}
/* htc-7: merkez-üst (148px genişlik → sol ofset ~ 42% civarı merkez hattına denk) */
.tech-home-page .htc-7 {
    top: 22%;
    left: 42%;
    animation-name: floatB;
    animation-delay: -2.4s;
}

.tech-home-page .htc-9 {
    bottom: 18%;
    left: 50%;
    animation-name: floatD;
    animation-delay: -5s;
}

/* ── OVERVIEW: 7 tile layout (4 üstte + 3 altta ortalı) ──────────── */
.tech-home-page .tech-grid.tech-grid--7 {
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}
.tech-home-page .tech-grid--7 > .tech-tile {
    grid-column: span 3;
}
/* 5., 6., 7. tile ikinci satırda 4 sütun genişlikte ortalanır */
.tech-home-page .tech-grid--7 > .tech-tile:nth-child(n+5) {
    grid-column: span 4;
}

/* ══════════════════════════════════════════════════════════════════════
   1) YÖNETİM PANELİ SECTION
   ══════════════════════════════════════════════════════════════════════ */
.tech-home-page .mp-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.tech-home-page .mp-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
}

/* Konsol çerçevesi */
.tech-home-page .mp-console {
    position: relative;
    border-radius: 18px;
    background: linear-gradient(180deg, #0d2238 0%, #061320 100%);
    border: 1px solid rgba(var(--tech-support-rgb), .25);
    overflow: hidden;
    min-height: 460px;
    color: #cfe1ee;
    font-family: var(--default-font);
}
.tech-home-page .mp-console-glow {
    position: absolute;
    inset: -40% -20% auto auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(var(--tech-support-rgb), .35), transparent 65%);
    filter: blur(60px);
    pointer-events: none;
}

/* Üst bar */
.tech-home-page .mp-console-top {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative;
    z-index: 2;
}
.tech-home-page .mp-dots {
    display: flex;
    gap: 6px;
}
.tech-home-page .mp-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
}
.tech-home-page .mp-dots span:nth-child(1) { background: rgba(255,99,99,.55); }
.tech-home-page .mp-dots span:nth-child(2) { background: rgba(255,200,99,.55); }
.tech-home-page .mp-dots span:nth-child(3) { background: rgba(99,210,140,.55); }

.tech-home-page .mp-tabs {
    display: flex;
    gap: 6px;
    margin-left: 8px;
}
.tech-home-page .mp-tab {
    padding: 5px 12px;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.48);
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50px;
    letter-spacing: .04em;
    transition: color .3s, background .3s, border-color .3s;
}
.tech-home-page .mp-tab.is-active {
    color: #fff;
    background: rgba(var(--tech-support-rgb), .2);
    border-color: rgba(var(--tech-support-rgb), .5);
}
.tech-home-page .mp-live {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .66rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}
.tech-home-page .mp-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px #34d399;
    animation: mpPulse 1.6s ease-in-out infinite;
}

/* Body: sidebar + main */
.tech-home-page .mp-console-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    min-height: 380px;
    position: relative;
    z-index: 2;
}

.tech-home-page .mp-side {
    border-right: 1px solid rgba(255,255,255,.06);
    padding: 18px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: rgba(255,255,255,.015);
}
.tech-home-page .mp-side-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    cursor: pointer;
    position: relative;
    transition: background .25s, color .25s;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}
.tech-home-page .mp-side-item:hover {
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.04);
}
.tech-home-page .mp-side-item .mp-side-ico {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    background: rgba(var(--tech-support-rgb), .3);
    border: 1px solid rgba(var(--tech-support-rgb), .5);
    flex-shrink: 0;
    transition: background .25s, border-color .25s;
}
.tech-home-page .mp-side-item.is-active {
    color: #fff;
    background: rgba(var(--tech-support-rgb), .14);
}
.tech-home-page .mp-side-item.is-active .mp-side-ico {
    background: #34d399;
    border-color: #34d399;
}
.tech-home-page .mp-side-item.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #34d399;
    border-radius: 2px;
}

.tech-home-page .mp-main {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 550px;
}

/* KPIs */
.tech-home-page .mp-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.tech-home-page .mp-kpi {
    padding: 14px 14px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    position: relative;
    overflow: hidden;
}
.tech-home-page .mp-kpi::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--tech-support-rgb),.8), transparent);
}
.tech-home-page .mp-kpi-label {
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 6px;
}
.tech-home-page .mp-kpi-val {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}
.tech-home-page .mp-kpi-trend {
    font-size: .66rem;
    margin-top: 6px;
    font-weight: 600;
    letter-spacing: .04em;
}
.tech-home-page .mp-kpi-trend--up { color: #34d399; }
.tech-home-page .mp-kpi-trend--down { color: #f87171; }

/* Activity feed */
.tech-home-page .mp-feed {
    flex: 1;
    border-radius: 10px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.tech-home-page .mp-feed-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: .72rem;
    letter-spacing: .06em;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
}
.tech-home-page .mp-feed-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.45);
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.tech-home-page .mp-feed-body {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.tech-home-page .mp-row {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    font-size: .78rem;
    color: rgba(255,255,255,.78);
    animation: mpRowSlideIn .8s ease backwards;
}
.tech-home-page .mp-row:last-child { border-bottom: none; }
.tech-home-page .mp-row:nth-child(1) { animation-delay: .2s; }
.tech-home-page .mp-row:nth-child(2) { animation-delay: .4s; }
.tech-home-page .mp-row:nth-child(3) { animation-delay: .6s; }
.tech-home-page .mp-row:nth-child(4) { animation-delay: .8s; }
.tech-home-page .mp-row:nth-child(5) { animation-delay: 1.0s; }
.tech-home-page .mp-row:nth-child(6) { animation-delay: 1.2s; }

.tech-home-page .mp-row-tag {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 3px 7px;
    border-radius: 4px;
    text-align: center;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.tech-home-page .mp-row-tag--ok   { background: rgba(52,211,153,.12); color: #34d399; border: 1px solid rgba(52,211,153,.3); }
.tech-home-page .mp-row-tag--info { background: rgba(var(--tech-support-rgb),.15); color: #93c5fd; border: 1px solid rgba(var(--tech-support-rgb),.4); }
.tech-home-page .mp-row-tag--warn { background: rgba(var(--tech-amber-rgb),.15); color: #fcd34d; border: 1px solid rgba(var(--tech-amber-rgb),.4); }

.tech-home-page .mp-row-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tech-home-page .mp-row-time {
    font-size: .66rem;
    color: rgba(255,255,255,.35);
    letter-spacing: .04em;
    font-family: ui-monospace, SFMono-Regular, monospace;
}

/* Scan line */
.tech-home-page .mp-scan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(180deg, transparent 0%, rgba(var(--tech-support-rgb),.08) 50%, transparent 100%);
    pointer-events: none;
    animation: mpScan 8s linear infinite;
}

@keyframes mpScan {
    0%   { transform: translateY(0); }
    100% { transform: translateY(500px); }
}
@keyframes mpPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.5); opacity: .6; }
}
@keyframes mpRowSlideIn {
    from { opacity: 0; transform: translateX(-8px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════════════════════════════════════════════
   2) FİLO YÖNETİMİ SECTION
   ══════════════════════════════════════════════════════════════════════ */
.tech-home-page .fm-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}

.tech-home-page .fm-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.tech-home-page .fm-actions { display: flex; gap: 12px; }

/* Harita konteyneri */
.tech-home-page .fm-map {
    position: relative;
    aspect-ratio: 4 / 3;
    min-height: 420px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, #0a1c2e 0%, #04101c 100%);
    border: 1px solid rgba(var(--tech-green-rgb), .25);
    box-shadow: 0 30px 70px -28px rgba(4, 65, 95, .55);
}
.tech-home-page .fm-map-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 30%, rgba(var(--tech-green-rgb), .15), transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(var(--tech-support-rgb), .1), transparent 65%);
}
.tech-home-page .fm-map-grid {
    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: 40px 40px;
    mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
}

/* Yollar (hafif çizgiler) */
.tech-home-page .fm-map-roads {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.tech-home-page .fm-road {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(var(--tech-green-rgb), .3), transparent);
}
.tech-home-page .fm-road--h1 { top: 22%; left: 4%; right: 4%; height: 2px; }
.tech-home-page .fm-road--h2 { top: 54%; left: 4%; right: 4%; height: 2px; }
.tech-home-page .fm-road--h3 { top: 80%; left: 4%; right: 4%; height: 2px; }
.tech-home-page .fm-road--v1 { left: 18%;  top: 6%; bottom: 6%; width: 2px; background: linear-gradient(180deg, transparent, rgba(var(--tech-green-rgb), .3), transparent); }
.tech-home-page .fm-road--v2 { left: 48%;  top: 6%; bottom: 6%; width: 2px; background: linear-gradient(180deg, transparent, rgba(var(--tech-green-rgb), .3), transparent); }
.tech-home-page .fm-road--v3 { left: 78%;  top: 6%; bottom: 6%; width: 2px; background: linear-gradient(180deg, transparent, rgba(var(--tech-green-rgb), .3), transparent); }

/* Rota çizgisi (SVG) */
.tech-home-page .fm-route {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}
.tech-home-page .fm-route-back {
    stroke: rgba(255,255,255,.08);
    stroke-width: 2.5;
}
.tech-home-page .fm-route-front {
    stroke: #34d399;
    stroke-width: 2;
    stroke-dasharray: 6 6;
    filter: drop-shadow(0 0 6px rgba(52,211,153,.5));
    animation: fmDash 14s linear infinite;
}

@keyframes fmDash {
    to { stroke-dashoffset: -200; }
}

/* Araçlar */
.tech-home-page .fm-vehicle {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transform: translate(-50%, -50%);
}
.tech-home-page .fm-veh-core {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #fff;
    color: #064e3b;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0,0,0,.45), 0 0 0 3px rgba(52,211,153,.25);
    position: relative;
    z-index: 2;
}
.tech-home-page .fm-veh-ping {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(52,211,153,.7);
    animation: fmPing 2.4s ease-out infinite;
    z-index: 1;
}
.tech-home-page .fm-veh-tag {
    font-size: .6rem;
    font-weight: 700;
    color: #e8f7ef;
    background: rgba(4, 20, 12, .75);
    border: 1px solid rgba(52,211,153,.35);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    font-family: ui-monospace, SFMono-Regular, monospace;
    backdrop-filter: blur(4px);
}

@keyframes fmPing {
    0%   { transform: scale(1); opacity: .85; }
    80%  { transform: scale(2.6); opacity: 0; }
    100% { opacity: 0; }
}

/* Araç pozisyonları — hafif salınımla hareket */
.tech-home-page .fm-vehicle--a {
    top: 80%; left: 18%;
    animation: fmVehMoveA 16s ease-in-out infinite;
}
.tech-home-page .fm-vehicle--b {
    top: 58%; left: 56%;
    animation: fmVehMoveB 18s ease-in-out infinite;
}
.tech-home-page .fm-vehicle--c {
    top: 32%; left: 80%;
    animation: fmVehMoveC 20s ease-in-out infinite;
}
.tech-home-page .fm-vehicle--a .fm-veh-ping { animation-delay: 0s; }
.tech-home-page .fm-vehicle--b .fm-veh-ping { animation-delay: -.8s; }
.tech-home-page .fm-vehicle--c .fm-veh-ping { animation-delay: -1.6s; }

@keyframes fmVehMoveA {
    0%   { top: 80%; left: 18%; }
    25%  { top: 62%; left: 30%; }
    50%  { top: 56%; left: 50%; }
    75%  { top: 62%; left: 32%; }
    100% { top: 80%; left: 18%; }
}
@keyframes fmVehMoveB {
    0%   { top: 58%; left: 56%; }
    50%  { top: 34%; left: 70%; }
    100% { top: 58%; left: 56%; }
}
@keyframes fmVehMoveC {
    0%   { top: 32%; left: 80%; }
    50%  { top: 18%; left: 64%; }
    100% { top: 32%; left: 80%; }
}

/* POI noktalar (depo/servis/garaj) */
.tech-home-page .fm-poi {
    position: absolute;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: rgba(255,255,255,.55);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    background: rgba(4, 16, 28, .7);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(var(--tech-support-rgb), .3);
}
.tech-home-page .fm-poi span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(var(--tech-support-rgb), .8);
}
.tech-home-page .fm-poi--1 { top: 12%; left: 8%; }
.tech-home-page .fm-poi--2 { top: 68%; right: 10%; }
.tech-home-page .fm-poi--3 { bottom: 8%; left: 42%; }

/* HUD — köşe rozetleri */
.tech-home-page .fm-hud {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 12px;
    background: rgba(4, 16, 28, .7);
    border: 1px solid rgba(52, 211, 153, .3);
    border-radius: 8px;
    backdrop-filter: blur(6px);
    font-family: ui-monospace, SFMono-Regular, monospace;
}
.tech-home-page .fm-hud--tl { top: 14px; left: 14px; }
.tech-home-page .fm-hud--tr { top: 14px; right: 14px; }
.tech-home-page .fm-hud--br {
    bottom: 14px; right: 14px;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: .65rem;
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.tech-home-page .fm-hud-lbl {
    font-size: .58rem;
    letter-spacing: .14em;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
}
.tech-home-page .fm-hud-val {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.tech-home-page .fm-hud-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px #34d399;
    animation: mpPulse 1.6s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════════════
   3) MODÜLLER SECTION — Orbital constellation
   ══════════════════════════════════════════════════════════════════════ */
.tech-home-page .md-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
}
.tech-home-page .md-actions { display: flex; gap: 12px; }

/* Orbit konteyneri */
.tech-home-page .md-orbit {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d2238 0%, #061320 100%);
    border: 1px solid rgba(var(--tech-amber-rgb), .22);
    box-shadow: 0 30px 70px -28px rgba(4, 65, 95, .5);
}
.tech-home-page .md-orbit-aurora {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 50% 50%, rgba(var(--tech-amber-rgb), .28), transparent 55%);
    filter: blur(60px);
    pointer-events: none;
}
.tech-home-page .md-orbit-grid {
    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: 36px 36px;
    mask-image: radial-gradient(circle at 50% 50%, black 35%, transparent 80%);
    pointer-events: none;
}

/* Rings */
.tech-home-page .md-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(var(--tech-amber-rgb), .35);
    pointer-events: none;
}
.tech-home-page .md-ring--outer {
    width: 82%;
    height: 82%;
    animation: mdRingSpin 90s linear infinite;
    border-color: rgba(var(--tech-amber-rgb), .25);
}
.tech-home-page .md-ring--mid {
    width: 62%;
    height: 62%;
    animation: mdRingSpin 60s linear infinite reverse;
    border-color: rgba(var(--tech-amber-rgb), .35);
}
.tech-home-page .md-ring--inner {
    width: 42%;
    height: 42%;
    animation: mdRingSpin 40s linear infinite;
    border-color: rgba(var(--tech-amber-rgb), .5);
}
.tech-home-page .md-ring::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f0b266;
    box-shadow: 0 0 10px #f0b266;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes mdRingSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Core */
.tech-home-page .md-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(var(--tech-amber-rgb), .5), rgba(var(--tech-amber-rgb), .1) 60%, transparent 85%);
    border: 1px solid rgba(var(--tech-amber-rgb), .6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: inset 0 0 40px rgba(var(--tech-amber-rgb), .35);
    animation: mdCoreBreathe 4s ease-in-out infinite;
    z-index: 3;
}
.tech-home-page .md-core-num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.03em;
    background: linear-gradient(135deg, #fff, #f0b266);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tech-home-page .md-core-lbl {
    font-size: .58rem;
    letter-spacing: .35em;
    color: rgba(255,255,255,.6);
    margin-top: 4px;
}
.tech-home-page .md-core-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(var(--tech-amber-rgb), .6);
    animation: mdCorePulse 3s ease-out infinite;
}

@keyframes mdCoreBreathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%      { transform: translate(-50%, -50%) scale(1.06); }
}
@keyframes mdCorePulse {
    0%   { transform: scale(1); opacity: .8; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* 20 nodes */
.tech-home-page .md-nodes {
    position: absolute;
    inset: 0;
    animation: mdRingSpin 120s linear infinite;
    z-index: 2;
}
.tech-home-page .md-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:
        rotate(calc(360deg / 20 * (var(--n) - 1)))
        translate(var(--md-radius, 200px))
        rotate(calc(-360deg / 20 * (var(--n) - 1)));
    width: 56px;
    margin: -22px 0 0 -28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
/* Orbit konteynere radius değişkenini ilet — mevcut orbit boyutu max 560px */
.tech-home-page .md-orbit { --md-radius: 200px; }
.tech-home-page .md-node span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(var(--tech-accent-rgb), .18);
    border: 1px solid rgba(var(--tech-accent-rgb), .55);
    color: #f0b266;
    font-size: .6rem;
    font-weight: 700;
    backdrop-filter: blur(3px);
    letter-spacing: .04em;
    transition: transform .3s, background .3s;
}
.tech-home-page .md-node em {
    font-style: normal;
    font-size: .55rem;
    letter-spacing: .05em;
    color: rgba(255,255,255,.58);
    white-space: nowrap;
    text-align: center;
    max-width: 56px;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Karşıt counter-rotation — yazılar dik kalsın */
.tech-home-page .md-node > * {
    animation: mdRingSpin 120s linear infinite reverse;
}
/* Node pulse — sıralı alternatif */
.tech-home-page .md-node:nth-child(odd) span  { animation: mdNodePulse 3.2s ease-in-out infinite; }
.tech-home-page .md-node:nth-child(even) span { animation: mdNodePulse 3.2s ease-in-out infinite 1.6s; }

@keyframes mdNodePulse {
    0%, 100% { box-shadow: 0 0 0 rgba(var(--tech-amber-rgb), 0); }
    50%      { box-shadow: 0 0 12px rgba(var(--tech-amber-rgb), .7); }
}

/* Data flow SVG */
.tech-home-page .md-flow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: mdRingSpin 180s linear infinite;
    z-index: 1;
}

/* ══════════════════════════════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .tech-home-page .mp-grid,
    .tech-home-page .fm-grid,
    .tech-home-page .md-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tech-home-page .mp-console-body {
        grid-template-columns: 150px 1fr;
    }
    .tech-home-page .mp-side-item { font-size: .74rem; padding: 8px 10px; }
    .tech-home-page .mp-kpis { grid-template-columns: repeat(2, 1fr); }
    .tech-home-page .md-orbit { max-width: 460px; --md-radius: 165px; }

    /* tech-grid--7 — tablet: 2 sütun */
    .tech-home-page .tech-grid.tech-grid--7,
    .tech-home-page .tech-grid--7 > .tech-tile,
    .tech-home-page .tech-grid--7 > .tech-tile:nth-child(n+5) {
        grid-template-columns: repeat(2, 1fr);
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .tech-home-page .mp-console-body { grid-template-columns: 1fr; }
    .tech-home-page .mp-side {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.06);
        padding: 10px;
        gap: 6px;
    }
    .tech-home-page .mp-side-item { white-space: nowrap; }
    .tech-home-page .mp-kpis { grid-template-columns: repeat(2, 1fr); }
    .tech-home-page .mp-row { grid-template-columns: 60px 1fr; }
    .tech-home-page .mp-row-time { display: none; }
    .tech-home-page .fm-map { min-height: 340px; }
    .tech-home-page .md-orbit { max-width: 380px; --md-radius: 135px; }
    .tech-home-page .md-node em { display: none; }
    .tech-home-page .md-core { width: 94px; height: 94px; }
    .tech-home-page .md-core-num { font-size: 2rem; }

    /* tech-grid--7 — mobile: tek sütun */
    .tech-home-page .tech-grid.tech-grid--7 {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tech-home-page .mp-scan,
    .tech-home-page .mp-live-dot,
    .tech-home-page .mp-side-item,
    .tech-home-page .mp-row,
    .tech-home-page .fm-route-front,
    .tech-home-page .fm-veh-ping,
    .tech-home-page .fm-vehicle,
    .tech-home-page .fm-hud-dot,
    .tech-home-page .md-ring,
    .tech-home-page .md-nodes,
    .tech-home-page .md-node > *,
    .tech-home-page .md-node span,
    .tech-home-page .md-core,
    .tech-home-page .md-core-pulse,
    .tech-home-page .md-flow {
        animation: none !important;
    }
}

.tech-home-page .htc-1 {
    top: 7%;
    left: 25%;
    animation-name: floatA;
}


.tech-home-page .htc-2 {
    top: 3%;
    right: 17%;
    animation-name: floatB;
    animation-delay: -1.5s;
}


.tech-home-page .htc-3 {
    top: 42%;
    right: 1%;
    animation-name: floatC;
    animation-delay: -3s;
}


.tech-home-page .htc-4 {
    bottom: 18%;
    left: 8%;
    animation-name: floatD;
    animation-delay: -2s;
}


.tech-home-page .htc-5 {
    bottom: 20%;
    right: 12%;
    animation-name: floatA;
    animation-delay: -4s;
}

.tech-home-page .htc-6 {
    top: 46%;
    left: 4%;
    animation-name: floatA;
    animation-delay: -4s;
}

.tech-home-page .htc-7 {
    top: 25%;
    left: 16%;
    animation-name: floatB;
    animation-delay: -1s;
}

.tech-home-page .htc-8 {
    top: 23%;
    right: 10%;
    animation-name: floatD;
    animation-delay: -2.8s;
}

.tech-home-page .htc-9 {
    bottom: 1%;
    left: 35%;
    animation-name: floatC;
    animation-delay: -3.6s;
}

/* ── RESPONSIVE EXTENSION ───────────────────────── */

@media (max-width: 1100px) {
    .tech-home-page .hero-visual {
        height: 600px;
    }

    .tech-home-page .htc-7 {
        top: 16%;
        left: 12%;
    }

    .tech-home-page .htc-8 {
        top: 20%;
        right: 12%;
    }

    .tech-home-page .htc-9 {
        bottom: 14%;
        left: 22%;
    }
}

@media (max-width: 860px) {
    .tech-home-page .hero-visual {
        height: 500px;
    }

    .tech-home-page .hero-tech-cards {
        transform: scale(0.88);
        transform-origin: center;
    }

    .tech-home-page .tps-showcase-shell,
    .tech-home-page .tps-showcase-shell--reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .tech-home-page .tps-showcase-visual {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .tech-home-page .hero-tech-cards {
        transform: scale(0.78);
    }


    .tech-home-page .tech-grid.tech-grid--expanded {
        grid-template-columns: 1fr;
    }

    .tech-home-page .tps-dashboard-grid,
    .tech-home-page .tps-monitor__grid,
    .tech-home-page .tps-monitor__stats {
        grid-template-columns: 1fr;
    }

    .tech-home-page .tps-visual-panel,
    .tech-home-page .tps-dashboard,
    .tech-home-page .tps-monitor {
        padding: 18px;
    }

    .tech-home-page .htc-1 {
        top: 7%;
        left: 1%;
        animation-name: floatA;
    }


    .tech-home-page .htc-2 {
        top: 3%;
        right: 2%;
        animation-name: floatB;
        animation-delay: -1.5s;
    }


    .tech-home-page .htc-3 {
        top: 42%;
        right: 1%;
        animation-name: floatC;
        animation-delay: -3s;
    }


    .tech-home-page .htc-4 {
        bottom: 18%;
        left: -6%;
        animation-name: floatD;
        animation-delay: -2s;
    }


    .tech-home-page .htc-5 {
        bottom: 20%;
        right: 12%;
        animation-name: floatA;
        animation-delay: -4s;
    }

    .tech-home-page .htc-6 {
        top: 46%;
        left: -12%;
        animation-name: floatA;
        animation-delay: -4s;
    }

    .tech-home-page .htc-7 {
        top: 25%;
        left: -5%;
        animation-name: floatB;
        animation-delay: -1s;
    }

    .tech-home-page .htc-8 {
        top: 23%;
        right: 5%;
        animation-name: floatD;
        animation-delay: -2.8s;
    }

    .tech-home-page .htc-9 {
        bottom: 1%;
        left: 25%;
        animation-name: floatC;
        animation-delay: -3.6s;
    }
}

/* ═══════════════════════════════════════════════════════════
   TH-HERO — Teknoloji Anasayfa Hero (90vh, AATS tarzı + dallanan araç)
   ═══════════════════════════════════════════════════════════ */

.tech-home-page .th-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #060c18;
}

.tech-home-page .th-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 0;
}

.tech-home-page .th-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(var(--accent-color-rgb), 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-color-rgb), 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
}

.tech-home-page .th-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 55% 65% at 72% 45%, rgba(var(--accent-color-rgb), 0.22) 0%, transparent 65%),
        radial-gradient(ellipse 35% 40% at 15% 75%, rgba(var(--accent-color-rgb), 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 85% 85%, rgba(var(--accent-color-rgb), 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.tech-home-page .th-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.6;
    z-index: 2;
}

.tech-home-page .th-hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    width: 100%;
    padding: 20px 0;
}

/* ── Sol: copy ───────────────────────────────────────────── */
.tech-home-page .th-hero-copy { max-width: 640px; }

.tech-home-page .th-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid rgba(var(--accent-color-rgb), 0.4);
    border-radius: 50px;
    background: rgba(var(--accent-color-rgb), 0.06);
}

.tech-home-page .th-hero-title {
    font-size: clamp(2.6rem, 4.8vw, 4.2rem);
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.tech-home-page .th-hero-title span {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2c7da0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.tech-home-page .th-hero-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.58);
    max-width: 560px;
    margin-bottom: 36px;
}

.tech-home-page .th-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.tech-home-page .th-hero-btn {
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    border: 1px solid transparent;
}
.tech-home-page .th-hero-btn--primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #0d5c84 100%);
    color: #fff;
    box-shadow: 0 16px 36px rgba(var(--tech-accent-rgb), 0.28);
}
.tech-home-page .th-hero-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(var(--tech-accent-rgb), 0.4);
    color: #fff;
    text-decoration: none;
}
.tech-home-page .th-hero-btn--ghost {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.88);
    backdrop-filter: blur(8px);
}
.tech-home-page .th-hero-btn--ghost:hover {
    background: rgba(var(--accent-color-rgb), 0.16);
    border-color: rgba(var(--accent-color-rgb), 0.45);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ── Scroll indicator ────────────────────────────────────── */
.tech-home-page .th-hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.25);
    font-size: 1.2rem;
    z-index: 3;
    animation: thScrollBounce 2s ease-in-out infinite;
}
@keyframes thScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════
   TH-STAGE — Sağ taraf: araç + 7 dallanan teknoloji balonu
   ═══════════════════════════════════════════════════════════ */

.tech-home-page .th-hero-stage {
    position: relative;
    aspect-ratio: 600 / 520;
    width: 100%;
    max-width: 620px;
    margin-left: auto;
}

/* Bağlantı çizgileri */
.tech-home-page .th-stage-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}
.tech-home-page .th-line {
    fill: none;
    stroke: rgba(var(--accent-color-rgb), 0.35);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: thLineDraw 1.1s ease forwards;
    filter: drop-shadow(0 0 4px rgba(var(--accent-color-rgb), 0.25));
}
.tech-home-page .th-line-1 { animation-delay: 0.55s; }
.tech-home-page .th-line-2 { animation-delay: 0.70s; }
.tech-home-page .th-line-3 { animation-delay: 0.85s; }
.tech-home-page .th-line-4 { animation-delay: 0.60s; }
.tech-home-page .th-line-5 { animation-delay: 0.75s; }
.tech-home-page .th-line-6 { animation-delay: 0.90s; }
.tech-home-page .th-line-7 { animation-delay: 1.05s; }

@keyframes thLineDraw {
    0%   { stroke-dashoffset: 600; opacity: 0; }
    25%  { opacity: 1; }
    100% { stroke-dashoffset: 0;   opacity: 1; }
}

/* Araç görseli */
.tech-home-page .th-stage-vehicle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62%;
    z-index: 2;
    opacity: 0;
    animation: thVehicleIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.tech-home-page .th-stage-vehicle img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: screen;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55));
    transform: scale(1.65);
}
.tech-home-page .th-stage-vehicle-shadow {
    position: absolute;
    bottom: -4%;
    left: 10%;
    right: 10%;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(var(--accent-color-rgb), 0.35) 0%,
        rgba(var(--accent-color-rgb), 0.12) 40%,
        transparent 75%);
    filter: blur(14px);
    z-index: 1;
    animation: thShadowPulse 4s ease-in-out infinite;
}
@keyframes thVehicleIn {
    0%   { opacity: 0; transform: translate(-50%, -46%) scale(0.88); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes thShadowPulse {
    0%, 100% { opacity: 0.65; transform: scaleX(1); }
    50%      { opacity: 1;    transform: scaleX(1.04); }
}

/* Teknoloji kartları (nodes) */
.tech-home-page .th-node {
    position: absolute;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 18px;
    min-width: 175px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.35), 0 2px 6px rgba(0,0,0,0.15);
    color: inherit;
    text-decoration: none;
    z-index: 3;
    opacity: 0;
    transform: translateY(8px) scale(0.92);
    animation:
        thNodeIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) calc(0.9s + var(--i, 1) * 0.11s) forwards,
        thNodeBreathe 4.5s ease-in-out calc(2s + var(--i, 1) * 0.3s) infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tech-home-page .th-node:hover {
    border-color: rgba(var(--accent-color-rgb), 0.45);
    box-shadow: 0 18px 44px rgba(0,0,0,0.45), 0 0 0 3px rgba(var(--accent-color-rgb), 0.18);
    color: inherit;
    text-decoration: none;
    z-index: 4;
    animation-play-state: paused, paused;
    transform: translateY(-3px) scale(1.04);
}

.tech-home-page .th-node-ring {
    position: absolute;
    inset: -4px;
    border-radius: 14px;
    border: 1px solid rgba(var(--accent-color-rgb), 0.4);
    opacity: 0;
    pointer-events: none;
}
.tech-home-page .th-node:hover .th-node-ring {
    opacity: 1;
    animation: thNodeRing 1.4s ease-out infinite;
}
@keyframes thNodeRing {
    0%   { transform: scale(1);    opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 0;   }
}

.tech-home-page .th-node-ico {
    width: 34px; height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-color-rgb), 0.10);
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
    margin-bottom: 2px;
    transition: background 0.25s, color 0.25s;
}
.tech-home-page .th-node:hover .th-node-ico {
    background: var(--accent-color);
    color: #fff;
}

.tech-home-page .th-node-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #ffffff;
    line-height: 1.25;
}

.tech-home-page .th-node-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: #6b7a8a;
    line-height: 1.3;
}

/* Giriş animasyonu */
@keyframes thNodeIn {
    0%   { opacity: 0; transform: translateY(10px) scale(0.88); }
    100% { opacity: 1; transform: translateY(0)    scale(1);    }
}
/* Nefes alma animasyonu (hafif büyüyüp küçülme) */
@keyframes thNodeBreathe {
    0%, 100% { transform: translateY(0)    scale(1);    }
    50%      { transform: translateY(-2px) scale(1.035); }
}

/* Konumlar — asimetrik, aracın etrafına dağılmış */
.tech-home-page .th-node-1 { top:  -2%;  left:  -10%;  }   /* sol üst */
.tech-home-page .th-node-2 { top: 38%;  left: -25%;  }   /* sol orta */
.tech-home-page .th-node-3 { top: 78%;  left:  -10%;  }   /* sol alt */
.tech-home-page .th-node-4 { top:  -2%;  right: -5%;  }   /* sağ üst */
.tech-home-page .th-node-5 { top: 38%;  right: -25%; }   /* sağ orta üst */
.tech-home-page .th-node-6 { top: 78%;  right: -5%; }   /* sağ orta alt */


.tech-home-page .th-node{
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
}



/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1199px) {
    .tech-home-page .th-hero-inner { gap: 32px; }
    .tech-home-page .th-node-label { font-size: 0.76rem; }
    .tech-home-page .th-node { padding: 8px 14px 8px 8px; }
    .tech-home-page .th-node-ico { width: 30px; height: 30px; font-size: 0.95rem; }
}

@media (max-width: 991px) {
    .tech-home-page .th-hero { min-height: auto; padding: 90px 0 60px; }
    .tech-home-page .th-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tech-home-page .th-hero-copy { max-width: 100%; text-align: center; margin: 0 auto; }
    .tech-home-page .th-hero-desc { margin-left: auto; margin-right: auto; }
    .tech-home-page .th-hero-actions { justify-content: center; }
    .tech-home-page .th-hero-stage {
        margin: 0 auto;
        max-width: 520px;
    }
}

@media (max-width: 575px) {
    .tech-home-page .th-hero-title { font-size: clamp(2rem, 8vw, 2.6rem); }
    .tech-home-page .th-node {
        min-width: 0;
        padding: 8px 10px;
    }
    .tech-home-page .th-node-ico {
        width: 28px; height: 28px;
        font-size: 0.85rem;
    }
    .tech-home-page .th-node-label { font-size: 0.7rem; }
    .tech-home-page .th-node-sub { display: none; }
    .tech-home-page .th-hero-scroll { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   GPS Visual — İzleme Merkezi (SmartTracking section)
   ═══════════════════════════════════════════════════════════ */
.tech-home-page .gps-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video-wall ana kasası */
.tech-home-page .gps-wall {
    position: relative;
    width: 100%;
    max-width: 560px;
    background: linear-gradient(160deg, #0f1a2e 0%, #0a1120 100%);
    border: 1px solid rgba(var(--accent-color-rgb), 0.22);
    border-radius: 14px;
    box-shadow:
        0 25px 70px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 0 40px rgba(var(--accent-color-rgb), 0.18);
    overflow: hidden;
    z-index: 2;
}

/* Üst bar */
.tech-home-page .gps-wall-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: rgba(0,0,0,0.35);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tech-home-page .gps-wall-dots { display: flex; gap: 6px; }
.tech-home-page .gps-wall-dots span {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(255,255,255,0.16);
}
.tech-home-page .gps-wall-title {
    flex: 1;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    font-family: ui-monospace, Menlo, Consolas, monospace;
}
.tech-home-page .gps-wall-live {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 3px 10px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: 50px;
    color: #ef5a5a;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.tech-home-page .gps-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ef5a5a;
    animation: gpsLiveBlink 1.2s ease-in-out infinite;
}
@keyframes gpsLiveBlink {
    0%, 100% { opacity: 1;   box-shadow: 0 0 0 0 rgba(239,90,90,0.5); }
    50%      { opacity: 0.4; box-shadow: 0 0 0 6px rgba(239,90,90,0);  }
}

/* Gövde: sol kameralar, sağ harita */
.tech-home-page .gps-wall-body {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 8px;
    padding: 10px;
    min-height: 260px;
}

/* Kamera ızgarası */
.tech-home-page .gps-cam-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}
.tech-home-page .gps-cam-cell {
    position: relative;
    aspect-ratio: 4 / 3;
    background:
        linear-gradient(135deg, #1a2540 0%, #0d1628 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 5px;
    overflow: hidden;
}
.tech-home-page .gps-cam-cell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, transparent 40%, rgba(var(--accent-color-rgb),0.08) 100%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 4px);
}
.tech-home-page .gps-cam-active {
    border-color: rgba(var(--accent-color-rgb), 0.45);
    box-shadow: 0 0 10px rgba(var(--accent-color-rgb), 0.25) inset;
}
.tech-home-page .gps-cam-active::before {
    background:
        radial-gradient(ellipse at 30% 40%, rgba(var(--accent-color-rgb), 0.25) 0%, transparent 55%),
        linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.10) 0%, transparent 70%);
}
.tech-home-page .gps-cam-scan {
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-color-rgb), 0.85), transparent);
    animation: gpsCamScan 3.5s linear infinite;
    opacity: 0.8;
}
.tech-home-page .gps-cam-cell:nth-child(2) .gps-cam-scan { animation-delay: -0.7s; }
.tech-home-page .gps-cam-cell:nth-child(3) .gps-cam-scan { animation-delay: -1.4s; }
.tech-home-page .gps-cam-cell:nth-child(4) .gps-cam-scan { animation-delay: -2.1s; }
.tech-home-page .gps-cam-cell:nth-child(5) .gps-cam-scan { animation-delay: -0.35s; }
.tech-home-page .gps-cam-cell:nth-child(6) .gps-cam-scan { animation-delay: -1.75s; }
@keyframes gpsCamScan {
    0%   { top: 0%;   opacity: 0; }
    10%  { opacity: 0.9; }
    90%  { opacity: 0.9; }
    100% { top: 100%; opacity: 0; }
}
.tech-home-page .gps-cam-tag {
    position: absolute;
    bottom: 4px; left: 5px;
    font-size: 0.55rem;
    color: rgba(255,255,255,0.65);
    font-family: ui-monospace, Menlo, Consolas, monospace;
    letter-spacing: 0.05em;
    padding: 2px 5px;
    background: rgba(0,0,0,0.5);
    border-radius: 3px;
    z-index: 2;
}

/* Harita */
.tech-home-page .gps-map {
    position: relative;
    border-radius: 6px;
    background: linear-gradient(135deg, #0c1428 0%, #121f3a 100%);
    border: 1px solid rgba(var(--accent-color-rgb), 0.18);
    overflow: hidden;
}
.tech-home-page .gps-map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--accent-color-rgb),0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-color-rgb),0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 40%, transparent 100%);
}
.tech-home-page .gps-map-roads {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
}
.tech-home-page .gps-road {
    fill: none;
    stroke: rgba(var(--accent-color-rgb), 0.35);
    stroke-width: 0.6;
    stroke-linecap: round;
}
.tech-home-page .gps-road-2 { stroke: rgba(var(--accent-color-rgb), 0.22); }
.tech-home-page .gps-road-3 { stroke-dasharray: 2 1.5; stroke: rgba(var(--accent-color-rgb), 0.3); }
.tech-home-page .gps-road-4 { stroke: rgba(var(--accent-color-rgb), 0.22); }

/* Araç pinleri */
.tech-home-page .gps-pin {
    position: absolute;
    width: 18px; height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 0.8rem;
    transform: translate(-50%, -100%);
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}
.tech-home-page .gps-pin i {
    position: relative;
    z-index: 2;
}
.tech-home-page .gps-pin-pulse {
    position: absolute;
    left: 50%; top: 70%;
    transform: translate(-50%, -50%);
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(var(--accent-color-rgb), 0.55);
    animation: gpsPinPulse 2.2s ease-out infinite;
}
.tech-home-page .gps-pin:nth-of-type(2) .gps-pin-pulse { animation-delay: -0.4s; }
.tech-home-page .gps-pin:nth-of-type(3) .gps-pin-pulse { animation-delay: -0.9s; }
.tech-home-page .gps-pin:nth-of-type(4) .gps-pin-pulse { animation-delay: -1.3s; }
.tech-home-page .gps-pin:nth-of-type(5) .gps-pin-pulse { animation-delay: -1.8s; }
.tech-home-page .gps-pin:nth-of-type(6) .gps-pin-pulse { animation-delay: -0.6s; }
@keyframes gpsPinPulse {
    0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0;   }
}
.tech-home-page .gps-pin-alarm { color: #ef5a5a; }
.tech-home-page .gps-pin-alarm .gps-pin-pulse {
    background: rgba(239, 90, 90, 0.6);
}

.tech-home-page .gps-map-vehicle {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

/* Alt footer */
.tech-home-page .gps-wall-footer {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 9px 14px;
    background: rgba(0,0,0,0.35);
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}
.tech-home-page .gps-wall-footer span {
    display: inline-flex; align-items: center; gap: 6px;
}
.tech-home-page .gps-wall-footer .bi-circle-fill {
    color: #4ade80;
    font-size: 0.45rem;
}
.tech-home-page .gps-wall-footer .bi-exclamation-triangle-fill {
    color: #f59e0b;
}

/* Uçan istatistikler */
.tech-home-page .gps-float {
    position: absolute;
    padding: 10px 14px;
    background: rgba(255,255,255,0.93);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
    min-width: 110px;
    z-index: 3;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.tech-home-page .gpsf-label {
    font-size: 0.62rem;
    color: #6b7a8a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 3px;
}
.tech-home-page .gpsf-val {
    font-family: ui-monospace, Menlo, Consolas, monospace;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a2332;
    line-height: 1;
}
.tech-home-page .gpsf-val small {
    font-size: 0.7rem;
    color: #6b7a8a;
    font-weight: 500;
}
.tech-home-page .gpsf-val-ok { color: #059669; font-size: 0.95rem; }

.tech-home-page .gps-float-1 { top: -6%; left: -4%; animation-name: floatA; }
.tech-home-page .gps-float-2 { top: 18%; right: -6%; animation-name: floatB; animation-delay: -2s; }
.tech-home-page .gps-float-3 { bottom: 4%; right: -2%; animation-name: floatC; animation-delay: -3.5s; }

/* Glow */
.tech-home-page .gps-visual-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 520px; height: 340px;
    background: radial-gradient(ellipse, rgba(var(--accent-color-rgb), 0.14) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .tech-home-page .gps-float { position: relative; inset: auto; animation: none; }
    .tech-home-page .gps-float-1, .tech-home-page .gps-float-2, .tech-home-page .gps-float-3 {
        top: auto; left: auto; right: auto; bottom: auto;
    }
    .tech-home-page .gps-wall { max-width: 100%; }
}
@media (max-width: 575px) {
    .tech-home-page .gps-wall-body { grid-template-columns: 1fr; min-height: auto; }
    .tech-home-page .gps-cam-grid { grid-template-columns: repeat(3, 1fr); }
    .tech-home-page .gps-wall-footer { gap: 10px; font-size: 0.62rem; }
}

/* ═══════════════════════════════════════════════════════════
   Yönetim Paneli — İnteraktif sekmeli paneller
   ═══════════════════════════════════════════════════════════ */

/* Panel geçişleri */
.tech-home-page .mp-panel {
    display: none;
    animation: mpPanelIn 0.35s ease both;
}
.tech-home-page .mp-panel.is-active {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@keyframes mpPanelIn {
    0%   { opacity: 0; transform: translateX(6px); }
    100% { opacity: 1; transform: none; }
}

.tech-home-page .mp-panel-head {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tech-home-page .mp-panel-title {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 3px;
}
.tech-home-page .mp-panel-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
}

/* Tablo */
.tech-home-page .mp-table {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}
.tech-home-page .mp-thead,
.tech-home-page .mp-trow {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 10px;
    align-items: center;
    padding: 9px 14px;
    font-size: 0.76rem;
    background: rgba(255,255,255,0.02);
}
.tech-home-page .mp-thead {
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.64rem;
    background: rgba(255,255,255,0.05);
}
.tech-home-page .mp-trow {
    color: rgba(255,255,255,0.82);
    transition: background 0.2s;
}
.tech-home-page .mp-trow:hover {
    background: rgba(255,255,255,0.06);
}

.tech-home-page .mp-user {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}
.tech-home-page .mp-avatar {
    width: 26px; height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}
.tech-home-page .mp-av-1 { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.tech-home-page .mp-av-2 { background: linear-gradient(135deg, #f472b6, #db2777); }
.tech-home-page .mp-av-3 { background: linear-gradient(135deg, #34d399, #059669); }
.tech-home-page .mp-av-4 { background: linear-gradient(135deg, #facc15, #ca8a04); }
.tech-home-page .mp-av-5 { background: linear-gradient(135deg, #a78bfa, #7c3aed); }

/* Chip */
.tech-home-page .mp-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    justify-self: start;
}
.tech-home-page .mp-chip--ok   { background: rgba(52,211,153,0.15);  color: #34d399; border: 1px solid rgba(52,211,153,0.3); }
.tech-home-page .mp-chip--idle { background: rgba(250,204,21,0.15);  color: #facc15; border: 1px solid rgba(250,204,21,0.3); }
.tech-home-page .mp-chip--off  { background: rgba(148,163,184,0.15); color: #94a3b8; border: 1px solid rgba(148,163,184,0.3); }
.tech-home-page .mp-chip--warn { background: rgba(251,146,60,0.15);  color: #fb923c; border: 1px solid rgba(251,146,60,0.3); }

/* Yetki matrisi */
.tech-home-page .mp-matrix {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,0.06);
}
.tech-home-page .mp-mx-head,
.tech-home-page .mp-mx-row {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 6px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
}
.tech-home-page .mp-mx-head {
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.58rem;
}
.tech-home-page .mp-mx-head span:not(:first-child) {
    text-align: center;
}
.tech-home-page .mp-mx-row {
    background: rgba(255,255,255,0.02);
    color: rgba(255,255,255,0.82);
}
.tech-home-page .mp-mx-label {
    font-weight: 500;
}
.tech-home-page .mp-mx-cell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    border-radius: 5px;
    justify-self: center;
    font-size: 0.7rem;
}
.tech-home-page .mp-mx-on {
    background: rgba(52,211,153,0.18);
    color: #34d399;
    border: 1px solid rgba(52,211,153,0.35);
}
.tech-home-page .mp-mx-off {
    background: rgba(148,163,184,0.12);
    color: rgba(148,163,184,0.55);
    border: 1px solid rgba(148,163,184,0.2);
}

/* Entegrasyonlar */
.tech-home-page .mp-int-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.tech-home-page .mp-int {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
}
.tech-home-page .mp-int-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(148,163,184,0.4);
    flex-shrink: 0;
}
.tech-home-page .mp-int-dot--ok   { background: #34d399; box-shadow: 0 0 8px rgba(52,211,153,0.6); }
.tech-home-page .mp-int-dot--warn { background: #fb923c; box-shadow: 0 0 8px rgba(251,146,60,0.6); }
.tech-home-page .mp-int-dot--err  { background: #ef4444; box-shadow: 0 0 8px rgba(239,68,68,0.6); }
.tech-home-page .mp-int-name {
    font-size: 0.82rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2px;
}
.tech-home-page .mp-int-meta {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
}

/* Bildirim listesi */
.tech-home-page .mp-notif-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.tech-home-page .mp-notif {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    transition: background 0.2s, border-color 0.2s;
}
.tech-home-page .mp-notif:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
}
.tech-home-page .mp-notif-ico {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.tech-home-page .mp-notif-ico--err  { background: rgba(239,68,68,0.15);   color: #ef4444; }
.tech-home-page .mp-notif-ico--warn { background: rgba(251,146,60,0.15);  color: #fb923c; }
.tech-home-page .mp-notif-ico--ok   { background: rgba(52,211,153,0.15);  color: #34d399; }
.tech-home-page .mp-notif-ico--info { background: rgba(96,165,250,0.15);  color: #60a5fa; }
.tech-home-page .mp-notif-title {
    font-size: 0.82rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 2px;
}
.tech-home-page .mp-notif-meta {
    font-size: 0.66rem;
    color: rgba(255,255,255,0.45);
}

/* Geniş feed (loglar için) */
.tech-home-page .mp-feed-body--tall .mp-row {
    padding: 8px 0;
}

/* Row log error tag */
.tech-home-page .mp-row-tag--err {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .tech-home-page .mp-int-grid { grid-template-columns: 1fr; }
    .tech-home-page .mp-thead,
    .tech-home-page .mp-trow { grid-template-columns: 1.3fr 1fr 0.8fr; gap: 6px; font-size: 0.7rem; }
    .tech-home-page .mp-mx-head,
    .tech-home-page .mp-mx-row { grid-template-columns: 1fr repeat(4, 0.7fr); font-size: 0.64rem; }
}
