:root {
  --primary-blue: #0056b3;
  --primary-dark: #003d82;
  --accent-orange: #f4a261;
  --accent-red: #e63946;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --border-color: #eaeaea;
  --text-dark: #1f2937;
  --text-muted: #4b5563;
  --transition: all 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-blue { color: var(--primary-blue); }
.text-orange { color: var(--accent-orange); }
.w-100 { width: 100%; }
.no-scroll { overflow: hidden; }

h1 { font-size: 3.05rem; font-weight: 800; line-height: 1.15; margin-bottom: 18px; letter-spacing: -1px; }
h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.5px; }
h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; color: #fff; }
p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 14px; }
.section-title { max-width: 780px; margin: 0 auto 60px; text-align: center; }
code { background: #f1f5f9; border: 1px solid #e2e8f0; padding: 2px 6px; border-radius: 8px; }

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}
.btn-primary {
  background-color: var(--primary-blue);
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(0, 86, 179, 0.18);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 86, 179, 0.24);
}
.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid #e5e7eb;
}
.btn-secondary:hover { border-color: var(--primary-blue); color: var(--primary-blue); }
.btn-nav { padding: 11px 16px; }

/* TOPBAR (clean & consistent) */
.topbar{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1200;
  background: rgba(7, 18, 36, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(226,232,240,0.95);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 8px 0;
}
.topbar-left{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  flex:1;
}
.topbar-pill{
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  color: rgba(255, 221, 193, 0.95);
  background: rgba(244,162,97,0.12);
  border: 1px solid rgba(244,162,97,0.18);
  flex:0 0 auto;
}
.topbar-msg{
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(226,232,240,0.80);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar-right{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}
.topbar-link{
  font-size: 0.86rem;
  font-weight: 800;
  color: rgba(226,232,240,0.92);
}
.topbar-link:hover{ color: rgba(244,162,97,0.95); }
.topbar-sep{ opacity:0.5; }

/* Desktop/Mobile switch */
.topbar-desktop{ display:inline; }
.topbar-mobile{ display:none; }

/* Mobile marquee */
.topbar-marquee{
  position: relative;
  overflow: hidden;
  height: 18px;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.topbar-track{
  display:flex;
  gap: 40px;
  white-space: nowrap;
  will-change: transform;
  animation: topbarMarquee 16s linear infinite;
  font-size: 0.80rem;
  font-weight: 700;
  color: rgba(226,232,240,0.78);
}
@keyframes topbarMarquee{
  to { transform: translateX(-50%); }
}

/* Mobile behavior */
@media (max-width: 768px){
  .topbar-inner{ padding: 7px 0; }
  .topbar-desktop{ display:none; }
  .topbar-mobile{ display:block; }
  .topbar-link{ font-size: 0.80rem; }
  .topbar-pill{ font-size: 0.68rem; padding: 3px 8px; }
}
/* TOPBAR mobile fix: marquee düzgün, taşma yok */
@media (max-width: 768px){
  /* Mobilde kampanya pill yok */
  .topbar-pill-desktop{ display:none; }

  /* Layout: solda marquee, sağda sadece telefon */
  .topbar-inner{
    padding: 6px 0;
    gap: 10px;
    align-items: center;
  }

  /* Sağ tarafta mail + nokta kapansın (telefon kalsın) */
  .topbar-right .topbar-sep,
  .topbar-right a[href^="mailto:"]{
    display:none;
  }

  /* Marquee gerçekten ortalansın ve okunabilir olsun */
  .topbar-left{
    flex: 1;
    min-width: 0;
    gap: 0;
    align-items: center;
  }

  .topbar-marquee{
    display:block;
    height: 20px;              /* kesilme olmasın */
    line-height: 20px;         /* dikey ortalama */
  }

  .topbar-track{
    align-items: center;
    font-size: 0.78rem;
    line-height: 20px;
    gap: 26px;
    animation-duration: 5s;   /* daha rahat */
  }

  /* Telefon linki kompakt */
  .topbar-link{
    font-size: 0.80rem;
    font-weight: 800;
    white-space: nowrap;
  }
}

/* Daha dar ekranlarda (çok küçük telefonlar) marquee biraz daha küçük */
@media (max-width: 420px){
  .topbar-track{ font-size: 0.74rem; }
  .topbar-link{ font-size: 0.76rem; }
}


/* NAVBAR */
.navbar {
  position: fixed;
  top: 30px; /* topbar height */
  width: 100%;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1100;
  padding: 14px 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.logo-img { height: 44px; width: auto; display: block; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 26px; }
.nav-links li a { font-weight: 800; font-size: 0.95rem; }
.nav-links li a:hover:not(.btn-primary) { color: var(--primary-blue); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
}
.menu-toggle:hover { transform: translateY(-1px); box-shadow: 0 10px 18px rgba(0,0,0,0.06); }
.burger {
  position: relative;
  display: block;
  width: 20px; height: 2px;
  background: var(--text-dark);
  margin: 0 auto;
  border-radius: 999px;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--text-dark);
  border-radius: 999px;
}
.burger::before { top: -7px; }
.burger::after { top: 7px; }

/* Mobile drawer */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.55);
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 1080;
}
.mobile-overlay.show { opacity: 1; }
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(86vw, 360px);
  background: #fff;
  z-index: 1090;
  transform: translateX(100%);
  transition: transform .2s ease;
  border-left: 1px solid #eef2f7;
  box-shadow: -30px 0 60px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  padding: 16px 16px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eef2f7;
}
.mobile-menu-title { font-weight: 900; }
.mobile-close {
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
}
.mobile-links {
  list-style: none;
  padding: 14px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-links a {
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  font-weight: 800;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}
.mobile-links a:hover { border-color: #dbe5f5; background: #f3f7ff; }

/* HERO */
.hero-section {
  padding: 210px 0 90px; /* topbar+navbar offset */
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-desc { font-size: 1.12rem; line-height: 1.75; }
.badge {
  display: inline-block;
  background-color: rgba(0, 86, 179, 0.1);
  color: var(--primary-blue);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 16px;
  border: 1px solid rgba(0,86,179,0.2);
}
.hero-buttons { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.hero-metrics {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.metric {
  background: rgba(255,255,255,0.8);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px;
}
.metric-title { font-weight: 900; font-size: 1.1rem; color: var(--text-dark); }
.metric-sub { font-weight: 700; font-size: 0.9rem; color: #64748b; }

/* 3D Parallax */
.parallax-wrap {
  width: min(460px, 100%);
  aspect-ratio: 1/1;
  position: relative;
  transform-style: preserve-3d;
  border-radius: 24px;
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .12s ease-out;
}
.p-layer {
  position: absolute;
  inset: 0;
  transform: translate3d(var(--dx, 0px), var(--dy, 0px), var(--z, 0px));
  border-radius: 24px;
}
.layer-bg {
  --z: -60px;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,86,179,0.22), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(244,162,97,0.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(240,244,248,1));
  filter: blur(0px);
  border: 1px solid rgba(226,232,240,0.7);
}
.layer-grid {
  --z: -20px;
  background-image: linear-gradient(rgba(0,86,179,0.12) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,86,179,0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at 50% 45%, rgba(0,0,0,0.9), transparent 60%);
  opacity: 0.55;
}
.layer-card { --z: 10px; display: grid; place-items: center; }
.dc-card {
  width: 86%;
  height: 86%;
  background: rgba(255,255,255,0.85);
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,86,179,0.12);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.dc-top { display: flex; align-items: center; gap: 8px; }
.dc-dot { width: 10px; height: 10px; border-radius: 50%; background: #e2e8f0; }
.dc-title { margin-left: auto; font-weight: 900; color: #0f172a; letter-spacing: -0.2px; }

.dc-racks { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rack {
  background: #0b1b33;
  border: 1px solid #1f3a6a;
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 10px;
  position: relative;
}
.rack::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: radial-gradient(circle at 40% 20%, rgba(96,165,250,0.25), transparent 45%);
  pointer-events: none;
  opacity: .7;
}
.rack-slot {
  height: 22px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 0 8px;
  position: relative;
  overflow: hidden;
}
.rack-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.35), transparent);
  transform: translateX(-60%);
  animation: slotFlow 2.2s linear infinite;
  opacity: .55;
}
.rack-led { width: 7px; height: 7px; border-radius: 50%; filter: drop-shadow(0 0 6px currentColor); }
.rack-led.blue { background: #60a5fa; color: #60a5fa; animation: ledBlink 1.9s infinite; }
.rack-led.green { background: #22c55e; color: #22c55e; animation: ledBlink 1.4s infinite alternate; }
.rack-led.orange { background: #f4a261; color: #f4a261; animation: ledBlink 2.4s infinite; }
.rack-led.red { background: #e63946; color: #e63946; animation: ledBlink 1.2s infinite; }

.dc-flow { position: absolute; left: 0; right: 0; bottom: 58px; height: 60px; }
.flow-line {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,86,179,0.9), transparent);
  opacity: .55;
  animation: flowMove 2.2s linear infinite;
}
.flow-line:nth-child(1) { top: 10px; animation-delay: .0s; }
.flow-line:nth-child(2) { top: 28px; animation-delay: .6s; }
.flow-line:nth-child(3) { top: 46px; animation-delay: 1.2s; }

.dc-badges {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.pill {
  font-weight: 900;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,86,179,0.10);
  border: 1px solid rgba(0,86,179,0.22);
  color: var(--primary-blue);
}
.pill.soft {
  background: rgba(244,162,97,0.12);
  border-color: rgba(244,162,97,0.25);
  color: #9a4f12;
}

.layer-float { --z: 40px; pointer-events: none; }
.float-node {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: rgba(0,86,179,0.18);
  border: 1px solid rgba(0,86,179,0.30);
  box-shadow: 0 12px 26px rgba(0,86,179,0.14);
  animation: floaty 3.2s ease-in-out infinite;
}
.float-node.n1 { left: 18%; top: 18%; animation-duration: 2.8s; }
.float-node.n2 { right: 18%; top: 34%; animation-duration: 3.6s; background: rgba(244,162,97,0.18); border-color: rgba(244,162,97,0.35); }
.float-node.n3 { left: 28%; bottom: 20%; animation-duration: 3.0s; width: 12px; height: 12px; }

.layer-glow {
  --z: 70px;
  background: radial-gradient(circle at 45% 35%, rgba(0,86,179,0.18), transparent 55%);
  filter: blur(18px);
  opacity: 0.9;
}

@keyframes ledBlink { 0%,100%{opacity:1} 50%{opacity:.25} }
@keyframes slotFlow { to { transform: translateX(60%); } }
@keyframes flowMove {
  0% { transform: translateX(-15%); opacity: .2; }
  50% { opacity: .7; }
  100% { transform: translateX(15%); opacity: .2; }
}
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-10px) } }

/* GLOBAL */
.global-section { padding: 86px 0; background: #f1f5f9; border-bottom: 1px solid var(--border-color); }
.global-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
  background: #fff;
  padding: 50px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid #eef2f7;
}
.country-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.country-list li { font-weight: 800; color: var(--text-dark); display: flex; align-items: center; gap: 8px; }

.mini-logos {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mini-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #eef2f7;
  background: #f8fafc;
}
.mini-logo svg { width: 120px; height: 26px; }
.mini-logo span { font-weight: 900; font-size: 0.9rem; color: #111827; }

.partners-box { display: flex; flex-direction: column; gap: 18px; }
.partner-card {
  background: #f8fafc;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  border-left: 5px solid var(--primary-blue);
  transition: var(--transition);
}
.partner-card:hover { transform: translateY(-4px); border-left-color: var(--accent-orange); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.partner-card h4 { color: var(--text-dark); font-size: 1.35rem; margin-bottom: 6px; }
.partner-card p { margin: 0; font-size: 0.95rem; font-weight: 800; color: #64748b; }

.global-note {
  background: #071224;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}
.global-note-title { font-weight: 900; color: #fff; margin-bottom: 8px; }
.global-note p { color: #cbd5e1; font-size: 0.98rem; }
.global-note .btn-secondary { border-color: rgba(255,255,255,0.18); color: #fff; }
.global-note .btn-secondary:hover { border-color: rgba(244,162,97,0.6); color: #fff; }

/* SERVICES */
.services-section { padding: 96px 0; background: #fff; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }

.card {
  background: #fff;
  padding: 42px 34px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.10); border-color: transparent; }

.icon-wrap {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
}
.icon-wrap svg { width: 28px; height: 28px; }
.icon-wrap.blue { background: rgba(0,86,179,0.95); }
.icon-wrap.orange { background: rgba(244,162,97,0.95); }
.icon-wrap.red { background: rgba(230,57,70,0.95); }

/* REFERENCES */
.references-section { padding: 96px 0; background: #f8fafc; border-top: 1px solid #eef2f7; border-bottom: 1px solid #eef2f7; }
.ref-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 18px 0;
}
.ref-marquee::before, .ref-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.ref-marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.ref-marquee::after { right: 0; background: linear-gradient(270deg, #fff, transparent); }

.ref-track {
  display: flex;
  gap: 26px;
  align-items: center;
  width: max-content;
  animation: marquee 18s linear infinite;
}
.ref-item {
  width: 160px;
  height: 70px;
  border-radius: 14px;
  border: 1px solid #eef2f7;
  background: #f8fafc;
  display: grid;
  place-items: center;
  padding: 10px;
}
.ref-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.9;
  transition: var(--transition);
}
.ref-item:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.02); }

.ref-cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ref-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px;
}
.ref-card-title { font-weight: 900; margin-bottom: 8px; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* MANAGED */
.managed-section { padding: 96px 0; background: var(--bg-light); border-top: 1px solid var(--border-color); }
.managed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: center; }

.feature-list { list-style: none; margin-top: 26px; }
.feature-list li {
  margin-bottom: 18px;
  padding-left: 35px;
  position: relative;
  color: var(--text-dark);
  line-height: 1.65;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  color: var(--primary-blue);
  font-weight: 900;
  font-size: 1.1rem;
  background: rgba(0,86,179,0.12);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.contact-form-wrapper {
  background: #fff;
  padding: 38px;
  border-radius: 18px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.10);
  border: 1px solid var(--border-color);
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  background-color: #f9fafb;
  transition: var(--transition);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(0,86,179,0.10);
}

/* FAQ */
.faq-section { padding: 96px 0; background: #fff; border-top: 1px solid var(--border-color); }
.faq-accordion { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.faq-item summary {
  padding: 20px 22px;
  font-weight: 900;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-blue);
  font-weight: 300;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  width: 24px;
  text-align: center;
}
.faq-item[open] { border-color: var(--primary-blue); box-shadow: 0 10px 25px rgba(0,86,179,0.10); }
.faq-item[open] .faq-icon { transform: rotate(45deg); color: var(--accent-red); }
.faq-content {
  padding: 0 22px 22px;
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.75;
  background-color: rgba(0,86,179,0.03);
}
.faq-content p { margin: 0; border-top: 1px solid #e2e8f0; padding-top: 14px; }

/* FOOTER */
.footer { background-color: #111827; color: #fff; padding: 76px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-logo-img { height: 40px; width: auto; display: block; }
.footer-desc { color: #8892B0; font-size: 0.95rem; line-height: 1.6; margin-bottom: 18px; padding-right: 18px; }

.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #e5e7eb;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  transition: var(--transition);
}
.social-icon svg { width: 20px; height: 20px; }
.social-icon:hover { background: var(--primary-blue); transform: translateY(-3px); color: #fff; }

.footer h4 { position: relative; padding-bottom: 10px; margin-bottom: 14px; }
.footer h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--accent-orange); }

.footer-links ul { list-style: none; display: grid; gap: 10px; }
.footer-links a { color: #8892B0; font-size: 0.95rem; font-weight: 600; }
.footer-links a:hover { color: var(--accent-orange); }

.footer-contact p { color: #8892B0; font-size: 0.95rem; margin-bottom: 10px; }
.footer-contact a { color: #8892B0; font-weight: 700; }
.footer-contact a:hover { color: var(--accent-orange); }
.footer-cta { margin-top: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  background: #071224;
  text-align: center;
}
.footer-bottom p { margin: 0; color: #64748b; font-size: 0.9rem; }

/* Animations */
.fade-in-up { animation: fadeInUp 0.9s ease-out forwards; opacity: 0; }
.delay-1 { animation-delay: 0.22s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 34px; }
  .hero-buttons { justify-content: center; }
  .global-grid { grid-template-columns: 1fr; gap: 22px; padding: 34px; }
  .managed-grid { grid-template-columns: 1fr; gap: 34px; }
  .grid-3 { grid-template-columns: 1fr; }
  .ref-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.15rem; }
  h2 { font-size: 1.9rem; }

  .topbar-text { display: none; }
  .navbar { top: 30px; padding: 12px 0; }

  .nav-desktop { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .hero-section { padding: 190px 0 62px; }
  .hero-metrics { grid-template-columns: 1fr; }

  .country-list { grid-template-columns: 1fr; }

  /* footer mobile improvements */
  .footer-grid { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .footer-desc { padding-right: 0; }
  .social-icons { justify-content: center; }
  .footer h4::after { left: 50%; transform: translateX(-50%); }
  .footer-links ul { grid-template-columns: 1fr 1fr; }
  .footer-contact p { margin-bottom: 8px; }
}

@media (max-width: 420px) {
  .btn-primary, .btn-secondary { width: 100%; }
  .hero-buttons { gap: 10px; }
  .global-grid { padding: 24px; }
  .card { padding: 34px 26px; }
  .contact-form-wrapper { padding: 28px; }
  .footer-links ul { grid-template-columns: 1fr; }
}

/* TOPBAR YENİ TASARIM */
.topbar {
  height: 34px; /* Daha ince */
  line-height: 34px;
  background: #0a192f; /* alfabulut.com tonu */
  padding: 0;
}
.topbar-inner { padding: 0; height: 100%; }
.topbar-pill {
  font-size: 0.7rem;
  padding: 2px 8px;
  margin-right: 8px;
}
.topbar-text { font-size: 0.85rem; font-weight: 500; }
.topbar-link { font-size: 0.8rem; }

/* MOBİL TOPBAR KAYAN YAZI */
@media (max-width: 768px) {
  .topbar-right { display: none; } /* Mobilde sağ taraf gizlendi */
  .topbar-left { width: 100%; display: flex; overflow: hidden; }
  .topbar-scroll-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }
  .topbar-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-mobile 15s linear infinite;
  }
}
/* Desktop topbar hizalama + pill ölçüsü */
.topbar-inner{
  display:flex;
  align-items:center;     /* en kritik satır: dikey ortalar */
  height: 30px;           /* sen 30 kullanıyorsun */
  padding: 0;             /* taşmayı engeller */
}

.topbar-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 20px;           /* pill'in “kendi” yüksekliği */
  padding: 0 10px;        /* yatay boşluk */
  font-size: 0.70rem;
  line-height: 1;         /* taşmayı engeller */
  margin: 0;              /* aşağı taşmayı engeller */
}

@keyframes marquee-mobile {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* FOOTER MOBİL GÜNCELLEMELERİ */
.footer-contact-highlight { display: none; } /* Desktopta gizli */

@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  
  .footer-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    text-align: left; 
    padding-top: 20px;
  }

  /* Öne Çıkan İletişim Alanı */
  .footer-contact-highlight {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    margin-bottom: 20px;
  }
  .contact-item {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
  }
  .btn-sm { padding: 10px 20px; font-size: 0.9rem; }

  /* Accordion Menüler */
  .footer-accordion {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .footer-accordion summary {
    list-style: none;
    font-weight: 700;
    color: #fff;
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
  }
  .footer-accordion summary::-webkit-details-marker { display: none; }
  .footer-accordion ul {
    padding: 10px 0;
    list-style: none;
  }
  .footer-accordion ul li a {
    display: block;
    padding: 8px 0;
    color: #8892B0;
  }
  .acc-icon { color: var(--accent-orange); }
}
/* Desktop pill: red bg + white text */
.topbar-pill{
  background: rgba(230, 57, 70, 0.95);
  border: 1px solid rgba(230, 57, 70, 0.35);
  color: #ffffff;
}

/* Mobilde pill gösterme */
.topbar-pill-desktop{ display: inline-flex; }
@media (max-width: 768px){
  .topbar-pill-desktop{ display: none; }
}

/* Mobil topbar: sade + düzgün görünüm */
@media (max-width: 768px){
  /* sağdaki mail/telefonu koru ama sıkıştır */
  .topbar-inner{
    gap: 10px;
    padding: 6px 0;
  }

  /* solda sadece marquee kalsın, daha derli toplu olsun */
  .topbar-left{ gap: 0; }
  .topbar-marquee{
    height: 16px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  }
  .topbar-track{
    font-size: 0.78rem;
    gap: 28px;
    animation-duration: 18s; /* daha yavaş, daha rahat okunur */
  }

  /* mobilde linkler daha küçük ve tek satır */
  .topbar-right{ gap: 8px; }
  .topbar-link{
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
  }

  /* eğer mobildə alan darsa: maili gizleyip sadece telefonu bırakmak istersen aç */
  /* .topbar-right a:last-child, .topbar-sep { display:none; } */
}

/* Topbar brand color + lighter typography */
.topbar{
  background: #6d1661; /* koyu turkuaz/lacivert ton (logo ile uyumlu) */
  color: rgba(226,232,240,0.92);
}
.topbar-msg,
.topbar-link,
.topbar-track{
  font-weight: 500; /* bold değil */
}

/* Mobilde: sağ taraftaki linkleri gizle (zaten marquee içinde akıyor) */
@media (max-width: 768px){
  .topbar-right{ display:none; }      /* telefon+mail marquee'de var */
  .topbar-pill-desktop{ display:none; } /* mobilde kampanya pill yok */

  .topbar-inner{ padding: 6px 0; }
  .topbar-marquee{ height: 20px; line-height: 20px; }
  .topbar-track{
    font-size: 0.78rem;
    line-height: 20px;
    animation-duration: 7s;
  }
}

/* Çok küçük ekranlar */
@media (max-width: 420px){
  .topbar-track{ font-size: 0.74rem; }
}
/* Hero hareketli görsel: beyaz arkaplan + gölgeyi kaldır */
.parallax-wrap,
.animated-datacenter,
.dc-card{
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Eğer içte ekstra “cam/white panel” efekti varsa kapat */
.dc-slab{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Bazı sürümlerde kartın dış parlama/halo efekti */
.dc-glow,
.layer-bg{
  display: none !important;
}
@media (max-width: 768px){
  /* Grid kalsın: tek kolon */
  .hero-content{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Sıralama: görsel üstte */
  .hero-visual{ order: 1 !important; }
  .hero-text{ order: 2 !important; }

  /* Görselin kaybolmaması için alanını garantiye al */
  .hero-visual{
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Parallax/animasyon kutusu: mobilde sabit oran + minimum yükseklik */
  .parallax-wrap{
    width: min(420px, 100%) !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    margin: 0 auto !important;
  }
}
@media (max-width: 768px){
  .hero-section{
    padding-top: 120px !important; /* ihtiyaca göre 110-140 arası */
  }
}

/* HERO metrics: logo renkleri */
.hero-metrics .metric{
  border: 1px solid #e5e7eb;
  background: rgba(255,255,255,0.85);
}

/* 1: Turkuaz */
.hero-metrics .metric:nth-child(1){
  border-color: rgba(20, 184, 166, 0.35);
  background: rgba(20, 184, 166, 0.08);
}
.hero-metrics .metric:nth-child(1) .metric-title{ color: #14B8A6; }

/* 2: Turuncu */
.hero-metrics .metric:nth-child(2){
  border-color: rgba(244, 162, 97, 0.45);
  background: rgba(244, 162, 97, 0.10);
}
.hero-metrics .metric:nth-child(2) .metric-title{ color: #F4A261; }

/* 3: Kırmızı */
.hero-metrics .metric:nth-child(3){
  border-color: rgba(230, 57, 70, 0.40);
  background: rgba(230, 57, 70, 0.08);
}
.hero-metrics .metric:nth-child(3) .metric-title{ color: #E63946; }

/* Alt yazıyı biraz daha soft yap */
.hero-metrics .metric-sub{ color: rgba(31,41,55,0.70); }

/* Mobil menü: İletişime Geç butonunu gerçek btn-primary gibi göster */
.mobile-menu .mobile-links a.btn-primary{
  background: var(--primary-blue) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 10px 26px rgba(0, 86, 179, 0.18) !important;
}

/* Hover/tap efekti */
.mobile-menu .mobile-links a.btn-primary:hover{
  background: var(--primary-dark) !important;
}

/* Eğer mobile-links a için genel bir background/border varsa butonu etkilemesin diye */
.mobile-menu .mobile-links a.btn-primary{
  padding: 14px 14px !important;
  border-radius: 12px !important;
  text-align: center !important;
}

/* FAQ v2 (professional) */
.faq2{
  padding: 96px 0;
  background: #fff;
  border-top: 1px solid var(--border-color);
}

.faq2-grid{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.faq2-left h2{
  margin: 0 0 10px;
  letter-spacing: -0.4px;
}
.faq2-left p{
  margin: 0 0 16px;
  color: rgba(31,41,55,0.72);
  line-height: 1.7;
}

.faq2-stats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0 18px;
}
.faq2-stat{
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  border-radius: 16px;
  padding: 14px;
}
.faq2-stat-title{
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--text-dark);
}
.faq2-stat-sub{
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(31,41,55,0.65);
  margin-top: 2px;
}
.faq2-cta{ display: inline-block; }

.faq2-right{
  border: 1px solid #eef2f7;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15,23,42,0.06);
  overflow: hidden;
}

/* item */
.faq2-item{
  border-bottom: 1px solid #eef2f7;
}
.faq2-item:last-child{ border-bottom: none; }

.faq2-item summary{
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
}
.faq2-item summary::-webkit-details-marker{ display:none; }

.faq2-q{
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
}

.faq2-icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  position: relative;
  flex: 0 0 auto;
}
.faq2-icon::before,
.faq2-icon::after{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  background:#111827;
  border-radius:999px;
}
.faq2-icon::before{ width: 14px; height: 2px; }
.faq2-icon::after{ width: 2px; height: 14px; }

.faq2-item[open] summary{
  background: rgba(0,86,179,0.03);
}
.faq2-item[open] .faq2-icon{
  border-color: rgba(0,86,179,0.25);
  background: rgba(0,86,179,0.08);
}
.faq2-item[open] .faq2-icon::after{ opacity: 0; } /* + -> - */

.faq2-a{
  padding: 0 18px 18px;
  color: rgba(31,41,55,0.72);
  line-height: 1.75;
}

/* hover (desktop) */
@media (hover:hover){
  .faq2-item summary:hover{
    background: rgba(15,23,42,0.02);
  }
}

/* Mobile */
@media (max-width: 768px){
  .faq2{ padding: 84px 0; }
  .faq2-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .faq2-stats{
    grid-template-columns: 1fr 1fr;
  }
  .faq2-right{
    border-radius: 16px;
  }
  .faq2-item summary{
    padding: 16px;
  }
  .faq2-a{
    padding: 0 16px 16px;
  }
}
/* Desktop: header altı boşluğu azalt */
.hero-section{
  padding-top: 140px;   /* 140-160 arası deneyebilirsin */
}

/* Desktop/Mobile footer toggle */
.footer-mobile-only{ display:none; }
.footer-desktop-only{ display:block; }

@media (max-width: 768px){
  /* Mobilde desktop kolonları gizle, sadece mobil footer kalsın */
  .footer-desktop-only{ display:none !important; }
  .footer-mobile-only{
    display:block;
    padding: 18px 0 6px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  /* İletişim üstte */
  .footer-mobile-contact{
    display:grid;
    gap: 10px;
    margin-bottom: 14px;
  }
  .fmc-item{
    display:block;
    padding: 12px 12px;
    border-radius: 14px;
    font-weight: 800;
    color: #fff;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
  }
  .fmc-cta{ margin-top: 2px; }

  /* Accordion */
  .facc{
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    overflow: hidden;
    margin-bottom: 10px;
  }
  .facc summary{
    cursor:pointer;
    list-style:none;
    padding: 14px 14px;
    font-weight: 900;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color: #fff;
  }
  .facc summary::-webkit-details-marker{ display:none; }
  .facc summary::after{
    content:"+";
    width: 28px; height: 28px;
    border-radius: 10px;
    display:grid;
    place-items:center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
  }
  .facc[open] summary::after{ content:"–"; }

  .facc ul{
    list-style:none;
    padding: 0 14px 14px;
    display:grid;
    gap: 10px;
  }
  .facc a{
    color:#cbd5e1;
    font-weight: 700;
  }
  .facc a:hover{ color: var(--accent-orange); }

  /* Sosyal ikonlar */
  .footer-mobile-social{
    display:flex;
    justify-content:center;
    gap: 10px;
    padding-top: 6px;
  }
}
/* MOBILE FOOTER - Corporate style override */
@media (max-width: 768px){
  .footer-mobile-only{
    padding: 20px 0 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  /* Contact: tek kurumsal kart */
  .footer-mobile-contact{
    gap: 10px;
    margin-bottom: 14px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .fmc-item{
    background: transparent;
    border: none;
    padding: 10px 2px;
    border-radius: 0;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
  }

  .fmc-item + .fmc-item{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 12px;
    margin-top: 2px;
  }

  .fmc-cta{
    margin-top: 10px;
    border-radius: 14px;
    padding: 14px 14px;
  }

  /* Accordion: daha hafif ve kurumsal */
  .facc{
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    margin-bottom: 10px;
  }

  .facc summary{
    padding: 14px 14px;
    font-weight: 800;
    color: rgba(255,255,255,0.92);
  }

  /* + / - yerine chevron */
  .facc summary::after{
    content: "⌄";
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-1px);
    transition: transform .18s ease;
  }
  .facc[open] summary::after{
    transform: rotate(180deg);
  }

  /* Linkler: kutu değil, temiz liste */
  .facc ul{
    padding: 0 14px 12px;
    gap: 0;
  }

  .facc li + li{
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .facc a{
    display: block;
    padding: 12px 0;
    color: rgba(203,213,225,0.92);
    font-weight: 600;
  }
  .facc a:hover{
    color: var(--accent-orange);
  }

  /* Sosyal ikonlar: daha küçük, daha zarif */
  .footer-mobile-social{
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-mobile-social .social-icon{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
  }
}
@media (max-width: 768px){
  /* İletişim kartı footer'dan ayrışsın */
  .footer-mobile-contact{
    background: rgba(255,255,255,0.10) !important;     /* daha açık */
    border: 1px solid rgba(255,255,255,0.16) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25) !important; /* hafif derinlik */
  }

  /* İç satırlar daha net */
  .fmc-item{
    color: rgba(255,255,255,0.95) !important;
  }

  .fmc-item + .fmc-item{
    border-top: 1px solid rgba(255,255,255,0.14) !important;
  }

  /* Buton kartla uyumlu dursun */
  .fmc-cta{
    margin-top: 12px !important;
  }
}

@media (max-width: 768px){
  /* Mobilde sadece footer-mobile-social kalsın */
  .footer-grid .footer-brand .social-icons{
    display: none !important;
  }
}
/* Slider altı yetkinlik şeridi */
.cap-strip{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cap-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 12px 28px rgba(15,23,42,0.06);
  white-space: nowrap;
}

.cap-ico{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(0,86,179,0.10);
  border: 1px solid rgba(0,86,179,0.16);
  font-size: 16px;
}

.cap-txt{
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(31,41,55,0.85);
}

/* Mobilde yatay kaydırmalı şerit (daha şık) */
@media (max-width: 768px){
  .cap-strip{
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px 0 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cap-strip::-webkit-scrollbar{ display:none; }
  .cap-item{ flex: 0 0 auto; }
}
.cap-section{
  padding: 18px 0 10px;
  background: #ffffff;
  border-bottom: 1px solid #eef2f7;
}

/* GLOBAL v2 (more corporate) */
.global2{
  padding: 90px 0;
  background: #f1f5f9;
  border-bottom: 1px solid #eaeaea;
}

.global2-head{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
}
.global2-head p{
  margin: 0;
  color: rgba(31,41,55,0.70);
}

.global2-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.global2-left{ display:flex; flex-direction: column; gap: 14px; }

.global2-kpis{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.kpi{
  border: 1px solid #e2e8f0;
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  padding: 14px;
}
.kpi-val{
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--text-dark);
}
.kpi-lbl{
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(31,41,55,0.60);
  margin-top: 2px;
}

.global2-card{
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.06);
}
.global2-card-title{
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.global2-card p{
  margin: 0 0 12px;
  color: rgba(31,41,55,0.72);
  line-height: 1.7;
}

.global2-chips{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.global2-chips .chip{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid #eef2f7;
  background: #f8fafc;
  font-weight: 700;
  color: rgba(31,41,55,0.78);
  font-size: 0.9rem;
}

.global2-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.global2-partners{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: rgba(255,255,255,0.70);
}
.p-label{
  font-weight: 900;
  font-size: 0.9rem;
  color: rgba(31,41,55,0.72);
}
.p-logos{ display:flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.p-logo{
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid #eef2f7;
  background: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  color: rgba(31,41,55,0.82);
}

/* RIGHT mesh card */
.global2-right{ display:flex; }
.mesh{
  width: 100%;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15,23,42,0.06);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.mesh-title{
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.mesh-map{
  position: relative;
  height: 280px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,86,179,0.12), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(244,162,97,0.10), transparent 55%),
    linear-gradient(180deg, #f8fafc, #ffffff);
  border: 1px solid #eef2f7;
  overflow: hidden;
}

/* nodes */
.node{
  position:absolute;
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--primary-blue);
  box-shadow: 0 0 0 6px rgba(0,86,179,0.12);
}
.n-tr{ left: 52%; top: 48%; }
.n-us{ left: 18%; top: 52%; }
.n-uk{ left: 44%; top: 36%; }
.n-fr{ left: 46%; top: 44%; }
.n-nl{ left: 48%; top: 34%; }
.n-sg{ left: 78%; top: 62%; }

/* lines (simple connections) */
.line{
  position:absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,86,179,0.7), transparent);
  opacity: .8;
  transform-origin: left center;
  animation: meshFlow 2.6s linear infinite;
}
.l1{ left: 18%; top: 52%; width: 38%; transform: rotate(-6deg); } /* US -> EU */
.l2{ left: 44%; top: 36%; width: 10%; transform: rotate(18deg); } /* UK -> NL */
.l3{ left: 46%; top: 44%; width: 8%; transform: rotate(32deg); }  /* FR -> NL */
.l4{ left: 52%; top: 48%; width: 26%; transform: rotate(12deg); } /* TR -> SG */
.l5{ left: 18%; top: 52%; width: 60%; transform: rotate(6deg); }  /* US -> SG (approx) */

@keyframes meshFlow{
  0%{ filter: brightness(1); }
  50%{ filter: brightness(1.3); }
  100%{ filter: brightness(1); }
}

/* subtle pulses */
.pulse{
  position:absolute;
  width: 120px; height: 120px;
  border-radius: 999px;
  border: 1px solid rgba(0,86,179,0.14);
  background: radial-gradient(circle, rgba(0,86,179,0.10), transparent 60%);
  animation: pulse 3.2s ease-in-out infinite;
}
.p1{ left: -30px; top: -30px; }
.p2{ right: -40px; bottom: -40px; animation-delay: 1.2s; }

@keyframes pulse{
  0%,100%{ transform: scale(1); opacity: .55; }
  50%{ transform: scale(1.08); opacity: .85; }
}

.mesh-note{
  margin-top: 12px;
  color: rgba(31,41,55,0.70);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 1024px){
  .global2-grid{ grid-template-columns: 1fr; }
  .mesh-map{ height: 260px; }
}
@media (max-width: 768px){
  .global2{ padding: 78px 0; }
  .global2-kpis{ grid-template-columns: 1fr; }
  .global2-actions a{ width: 100%; }
}
.text-red{ color: var(--accent-red); }

/* PROCESS */
.process-section{
  padding: 96px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
}
.process-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  align-items: stretch;
}
.process-card{
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.06);
}
.process-step{
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: var(--primary-blue);
  margin-bottom: 12px;
}
.process-card h3{ margin-bottom: 8px; }
.process-card p{ margin-bottom: 12px; color: rgba(31,41,55,0.72); }

.process-bullets{
  list-style: none;
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.process-bullets li{
  position: relative;
  padding-left: 22px;
  color: rgba(31,41,55,0.78);
  font-weight: 600;
}
.process-bullets li::before{
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: #14B8A6;
  font-weight: 900;
}

/* USE CASES */
.usecases-section{
  padding: 96px 0;
  background: #f8fafc;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}
.usecases-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.usecase-card{
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.06);
}
.usecase-head{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.usecase-ico{
  width: 42px; height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0,86,179,0.10);
  border: 1px solid rgba(0,86,179,0.16);
  font-size: 18px;
}
.usecase-card p{ margin-bottom: 12px; color: rgba(31,41,55,0.72); }
.usecase-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.usecase-list li{
  padding-left: 18px;
  position: relative;
  color: rgba(31,41,55,0.78);
  font-weight: 600;
}
.usecase-list li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(0,86,179,0.9);
  font-weight: 900;
}

.usecases-cta{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px){
  .process-grid{ grid-template-columns: 1fr; }
  .usecases-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 768px){
  .process-section, .usecases-section{ padding: 84px 0; }
  .usecases-cta a{ width: 100%; }
}
/* SERVICES bölümü: daha kurumsal görünüm (CSS-only) */
.services-section{
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.services-section .card{
  border-radius: 20px;
  border-color: #e6edf5;
  box-shadow: 0 18px 50px rgba(15,23,42,0.06);
}

.services-section .card:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(15,23,42,0.10);
}

/* başlık/alt açıklama daha derli toplu */
.services-section .section-title p{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ikon kutuları daha “enterprise” dursun */
.services-section .icon-box{
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.services-section .icon-box::after{
  content:"";
  position:absolute;
  inset:-20%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), transparent 55%);
  opacity: .7;
}

/* kart içindeki metinleri biraz daha okunaklı */
.services-section .card p{
  color: rgba(31,41,55,0.72);
  line-height: 1.75;
}

/* Kurumsal Altyapı Çözümlerimiz: üst boşluğu azalt */
.services-section{
  padding-top: 20px !important; /* mevcut 90-100 civarıysa bunu kısar */
}
/* Kullanım Senaryoları: fazla boşluğu azalt */
.usecases-section{
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

/* Başlık ile kartlar arasını biraz kıs */
.usecases-section .section-title{
  margin-bottom: 36px !important;
}
/* KVKK - sadece form içinde düzgün hizalama */
.contact-form .kvkk-consent{
  width: 100%;
  margin: 8px 0 14px;
}

.contact-form .kvkk-label{
  width: 100%;
  display: grid;
  grid-template-columns: 18px 1fr; /* checkbox + metin */
  gap: 10px;
  align-items: start;
  justify-items: start;
  text-align: left;
}

.contact-form .kvkk-label input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin: 2px 0 0 0;
}

.contact-form .kvkk-label span{
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(31,41,55,0.75);
}

.contact-form .kvkk-label a{
  color: var(--primary-blue);
  font-weight: 700;
  text-decoration: underline;
}
/* Global Footprint: akış animasyonu */
.mesh-map{
  position: relative;
  overflow: hidden;
}

/* Çizgilerde akan ışık */
.mesh-map .line{
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(0,86,179,0) 0%,
    rgba(0,86,179,0.85) 50%,
    rgba(0,86,179,0) 100%);
  opacity: .85;

  /* akış efekti */
  background-size: 160px 2px;
  animation: flowLine 1.8s linear infinite;
}

@keyframes flowLine{
  0%   { background-position: -160px 0; }
  100% { background-position:  160px 0; }
}

/* Node’lara nabız/pulse */
.mesh-map .node{
  position: absolute;
  border-radius: 999px;
  animation: nodePulse 2.2s ease-in-out infinite;
}

@keyframes nodePulse{
  0%,100% { box-shadow: 0 0 0 6px rgba(0,86,179,0.10); transform: scale(1); }
  50%     { box-shadow: 0 0 0 12px rgba(0,86,179,0.14); transform: scale(1.06); }
}

/* Biraz varyasyon (hepsi aynı anda atmasın) */
.mesh-map .node.n-us{ animation-delay: .2s; }
.mesh-map .node.n-uk{ animation-delay: .5s; }
.mesh-map .node.n-fr{ animation-delay: .8s; }
.mesh-map .node.n-nl{ animation-delay: .35s; }
.mesh-map .node.n-tr{ animation-delay: .65s; }
.mesh-map .node.n-sg{ animation-delay: .95s; }

/* Kullanıcı hareket azaltma tercih ederse animasyonu kapat */
@media (prefers-reduced-motion: reduce){
  .mesh-map .line, .mesh-map .node{ animation: none !important; }
}

/* ====== NEW HERO VISUAL: vdc-anim ====== */
.vdc-anim{
  width: min(460px, 100%);
  height: 420px;
  border-radius: 24px;
  background: transparent;
  position: relative;
  margin-left: auto;
  isolation: isolate;
}

/* header */
.vdc-header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 6px 12px;
}
.vdc-dots{ display:flex; gap:8px; align-items:center; }
.vdc-dots span{
  width:10px; height:10px; border-radius:999px;
  background: rgba(148,163,184,0.45);
}
.vdc-title{
  font-weight: 900;
  letter-spacing: -0.4px;
  color: rgba(15,23,42,0.85);
}

/* canvas */
.vdc-canvas{
  position: relative;
  height: 330px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 25% 25%, rgba(0,86,179,0.10), transparent 52%),
    radial-gradient(circle at 80% 70%, rgba(244,162,97,0.10), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.85), rgba(248,250,252,0.55));
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 30px 70px rgba(15,23,42,0.10);
  overflow:hidden;
}

/* subtle animated grid */
.vdc-canvas::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(0,86,179,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,86,179,0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.9), transparent 70%);
  opacity: .35;
  animation: gridDrift 8s linear infinite;
}
@keyframes gridDrift{
  from{ background-position: 0 0, 0 0; }
  to{ background-position: 56px 56px, 56px 56px; }
}

/* network nodes */
.node{
  position:absolute;
  width: 12px; height: 12px;
  border-radius: 999px;
  background: rgba(0,86,179,0.95);
  box-shadow: 0 0 0 10px rgba(0,86,179,0.10);
  animation: nodePulse 2.4s ease-in-out infinite;
  z-index: 4;
}
@keyframes nodePulse{
  0%,100%{ transform: scale(1); box-shadow:0 0 0 10px rgba(0,86,179,0.10); }
  50%{ transform: scale(1.08); box-shadow:0 0 0 16px rgba(0,86,179,0.14); }
}
.n1{ left: 18%; top: 58%; animation-delay: .1s; }
.n2{ left: 50%; top: 32%; animation-delay: .6s; }
.n3{ left: 60%; top: 44%; animation-delay: .3s; }
.n4{ left: 80%; top: 64%; animation-delay: .9s; }

/* network lines with flowing highlight */
.net-line{
  position:absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(0,86,179,0) 0%,
    rgba(0,86,179,0.80) 50%,
    rgba(0,86,179,0) 100%);
  background-size: 220px 2px;
  opacity: .85;
  animation: lineFlow 1.7s linear infinite;
  z-index: 3;
  transform-origin: left center;
}
@keyframes lineFlow{
  from{ background-position: -220px 0; }
  to{ background-position: 220px 0; }
}
.l1{ left: 18%; top: 58%; width: 34%; transform: rotate(-10deg); }
.l2{ left: 50%; top: 32%; width: 18%; transform: rotate(18deg); animation-duration: 2.1s; opacity:.75; }
.l3{ left: 50%; top: 32%; width: 32%; transform: rotate(6deg); animation-duration: 1.9s; }
.l4{ left: 18%; top: 58%; width: 64%; transform: rotate(3deg); animation-duration: 2.4s; opacity:.55; }

/* moving packets (animatik) */
.packet{
  position:absolute;
  width: 10px; height: 10px;
  border-radius: 999px;
  z-index: 5;
  opacity: 0;
}
.packet::after{
  content:"";
  position:absolute; inset:0;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 12px color-mix(in srgb, currentColor 18%, transparent);
}
.p1{ color: rgba(0,86,179,0.95); animation: packetA 2.6s linear infinite; }
.p2{ color: rgba(20,184,166,0.95); animation: packetB 3.2s linear infinite .4s; width: 8px; height: 8px; }
.p3{ color: rgba(244,162,97,0.95); animation: packetC 3.8s linear infinite 1.0s; width: 7px; height: 7px; }

@keyframes packetA{
  0%{ left: 18%; top: 58%; opacity: 0; transform: scale(.9); }
  10%{ opacity: 1; }
  70%{ opacity: 1; }
  100%{ left: 60%; top: 44%; opacity: 0; transform: scale(1.1); }
}
@keyframes packetB{
  0%{ left: 50%; top: 32%; opacity: 0; transform: scale(.9); }
  12%{ opacity: 1; }
  72%{ opacity: 1; }
  100%{ left: 80%; top: 64%; opacity: 0; transform: scale(1.1); }
}
@keyframes packetC{
  0%{ left: 18%; top: 58%; opacity: 0; transform: scale(.9); }
  12%{ opacity: 1; }
  68%{ opacity: 1; }
  100%{ left: 80%; top: 64%; opacity: 0; transform: scale(1.1); }
}

/* racks */
.racks{
  position:absolute;
  left: 10%;
  right: 10%;
  top: 18%;
  bottom: 18%;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  z-index: 6;
}
.rack{
  border-radius: 18px;
  background: rgba(11,27,51,0.96);
  border: 1px solid rgba(31,58,106,0.85);
  box-shadow: 0 22px 50px rgba(2,6,23,0.22);
  padding: 14px;
  display:grid;
  gap: 10px;
  position: relative;
  overflow:hidden;
}
.rack::before{
  content:"";
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 35% 25%, rgba(96,165,250,0.20), transparent 45%);
  opacity:.7;
}
.rack-top{
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.slot{
  height: 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 0 10px;
  position: relative;
  overflow:hidden;
}
.slot em{
  margin-left:auto;
  width: 56%;
  height: 4px;
  border-radius: 999px;
  background: rgba(226,232,240,0.18);
  position: relative;
  overflow:hidden;
}
.slot em::after{
  content:"";
  position:absolute; top:0; left:-60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.75), transparent);
  animation: slotFlow 2.1s linear infinite;
}
@keyframes slotFlow{
  to{ left: 120%; }
}

/* leds */
.led{
  width: 8px; height: 8px;
  border-radius: 999px;
  filter: drop-shadow(0 0 6px currentColor);
  opacity: .95;
}
.led.b{ background:#60a5fa; color:#60a5fa; animation: led 1.8s infinite; }
.led.g{ background:#22c55e; color:#22c55e; animation: led 1.4s infinite alternate; }
.led.o{ background:#f4a261; color:#f4a261; animation: led 2.6s infinite; }
.led.r{ background:#e63946; color:#e63946; animation: led 1.1s infinite; }
@keyframes led{ 0%,100%{ opacity:1 } 50%{ opacity:.25 } }

/* glow */
.vdc-glow{
  position:absolute;
  inset:-40px;
  background: radial-gradient(circle at 50% 45%, rgba(0,86,179,0.12), transparent 60%);
  filter: blur(18px);
  opacity: .9;
  z-index: 1;
}

/* badges */
.vdc-badges{
  margin-top: 10px;
  display:flex;
  gap: 10px;
  justify-content: center;
}
.vdc-pill{
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,86,179,0.10);
  border: 1px solid rgba(0,86,179,0.20);
  color: rgba(0,86,179,0.95);
}
.vdc-pill.warm{
  background: rgba(244,162,97,0.14);
  border-color: rgba(244,162,97,0.28);
  color: rgba(154,79,18,0.95);
}

/* responsive */
@media (max-width: 768px){
  .vdc-anim{ height: 380px; }
  .vdc-canvas{ height: 290px; }
}

/* motion reduce */
@media (prefers-reduced-motion: reduce){
  .net-line, .packet, .node, .slot em::after, .led, .vdc-canvas::before{
    animation: none !important;
  }
}
/* vDC görsel: beyaz paneli kaldır (tam şeffaf) */
.vdc-canvas{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* grid/arka desen varsa kapat */
.vdc-canvas::before{
  display: none !important;
}

/* dış glow’u çok hafiflet (istersen tamamen kapat) */
.vdc-glow{
  opacity: .35 !important;
  /* tamamen kapatmak istersen: display:none !important; */
}
@media (max-width: 768px){
  /* Animasyon container'ındaki gereksiz sabit yükseklikleri kaldır */
  .vdc-anim{
    height: auto !important;
  }

  .vdc-canvas{
    height: auto !important;      /* sabit 330px gibi bir şey varsa boşluk yapıyor */
    padding-bottom: 16px;         /* çok az nefes */
  }

  /* İçerik (rack'ler) mutlak konumla yukarı yapışıyorsa alt boşluk büyür.
     Mobilde rack'leri normal akışa alıyoruz ki canvas yüksekliği içeriğe göre otursun. */
  .vdc-canvas .racks{
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 16px auto 0 !important;
    width: 86% !important;
  }

  /* Network çizgileri/nodelar absolute kalsın, ama rack'lerin üstüne taşmasın */
  .vdc-canvas .net-line,
  .vdc-canvas .node,
  .vdc-canvas .packet{
    z-index: 2 !important;
  }
  .vdc-canvas .racks{ z-index: 3 !important; }

  /* Animasyon ile badge arasını da sıkılaştır */
  .hero-visual{ margin-bottom: 10px !important; }
}
.form-notice{
  padding: 12px 14px;
  border-radius: 12px;
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 0.95rem;
}
.form-notice.success{
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  color: rgba(22,101,52,1);
}
.form-notice.error{
  background: rgba(230,57,70,0.10);
  border: 1px solid rgba(230,57,70,0.25);
  color: rgba(153,27,27,1);
}
