/* =========================================================================
   Cyntra Digital - tasarim sistemi v2
   Renk, yuzey, golge, yaricap ve hareket degerleri tek yerden yonetilir.
   Eski degisken adlari korunmustur; tum sayfalar otomatik olarak yeni
   sistemi kullanir.
   ========================================================================= */
:root {
  color-scheme: light;

  /* Marka mavisi olcegi */
  --blue-50: #eff5ff;
  --blue-100: #dbe8ff;
  --blue-200: #bed5ff;
  --blue-300: #92b7ff;
  --blue-400: #5e8ffb;
  --blue-500: #3b74f5;
  --blue-600: #155eef;
  --blue-700: #0f4bd0;
  --blue-800: #0b3f9c;
  --blue-900: #0a2f70;

  /* Notr / murekkep olcegi */
  --ink-950: #060a14;
  --ink-900: #0b1220;
  --ink-800: #131d2f;
  --ink-700: #1e2a40;
  --ink-600: #33415a;
  --ink-500: #4a5a75;
  --ink-400: #6b7a93;
  --ink-300: #97a4b8;
  --ink-200: #c3ccda;
  --ink-100: #e3e9f2;
  --ink-50: #f6f8fc;

  /* Anlamsal renkler */
  --primary: var(--blue-600);
  --primary-dark: var(--blue-800);
  --primary-soft: var(--blue-50);
  --primary-rgb: 21, 94, 239;
  --accent: #00a6ff;
  --text: var(--ink-900);
  --text-soft: var(--ink-600);
  --muted: #526071;
  --background: #ffffff;
  --surface: #ffffff;
  --section-light: var(--ink-50);
  --border: var(--ink-100);
  --border-strong: #d3dce9;
  --success: #0e7c46;
  --danger: #be1818;

  /* Koyu bolumler */
  --dark-bg: #0b1220;
  --dark-surface: #111c2f;
  --dark-border: #26334a;
  --dark-text: #e7edf6;
  --dark-muted: #9dacc1;

  /* Golge olcegi */
  --shadow-xs: 0 1px 2px rgba(11, 18, 32, 0.06);
  --shadow-sm: 0 2px 6px -2px rgba(11, 18, 32, 0.08), 0 1px 2px rgba(11, 18, 32, 0.04);
  --shadow-md: 0 10px 26px -8px rgba(11, 18, 32, 0.12), 0 3px 8px -3px rgba(11, 18, 32, 0.06);
  --shadow-lg: 0 24px 56px -16px rgba(11, 18, 32, 0.18), 0 8px 20px -10px rgba(11, 18, 32, 0.08);
  --shadow-primary: 0 12px 28px -10px rgba(21, 94, 239, 0.45);
  --shadow: var(--shadow-md);

  /* Yaricap olcegi */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --radius: var(--radius-md);

  /* Hareket */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 150ms;
  --t-base: 240ms;
  --t-slow: 420ms;

  /* Olcu */
  --container: 1240px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  color: #fff;
  background: rgba(21, 94, 239, 0.85);
}

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.newsletter-open { overflow: hidden; }

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: clamp(64px, 7.5vw, 104px) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-utility { color: var(--ink-500); font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.header-utility:hover { color: var(--primary); }
.mobile-utility { border-top: 1px solid var(--border); color: var(--primary-dark) !important; }

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 148px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 43px;
  max-width: 210px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-600);
}

.desktop-nav a {
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.desktop-nav a:hover {
  background: var(--ink-50);
}

.desktop-nav a.is-active {
  background: var(--primary-soft);
}

.desktop-nav a,
.mobile-nav a:not(.btn),
.footer-links a {
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover {
  color: var(--primary);
}

.desktop-nav a.is-active,
.mobile-nav a.is-active {
  color: var(--primary);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-base) var(--ease),
    background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
  transition-duration: 60ms;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--blue-500) 0%, var(--primary) 100%);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(180deg, var(--primary) 0%, var(--blue-700) 100%);
  box-shadow: var(--shadow-primary), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-secondary {
  color: var(--primary-dark);
  background: var(--surface);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  color: var(--primary);
  border-color: var(--blue-300);
  background: var(--primary-soft);
  box-shadow: var(--shadow-sm);
}

.btn-light {
  color: var(--primary-dark);
  background: #fff;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.4);
}

.btn-light:hover {
  color: var(--blue-900);
  box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.45);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.menu-toggle:hover {
  border-color: var(--blue-300);
  background: var(--primary-soft);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 12% -12%, rgba(21, 94, 239, 0.10), transparent 62%),
    radial-gradient(900px 560px at 92% 6%, rgba(0, 166, 255, 0.09), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--ink-50) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(11, 18, 32, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 18, 32, 0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(760px 520px at 22% 32%, #000 0%, transparent 78%);
  mask-image: radial-gradient(760px 520px at 22% 32%, #000 0%, transparent 78%);
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.55;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-text {
  max-width: 620px;
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 18.5px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  color: var(--dark-text);
  background: linear-gradient(165deg, #101b2e 0%, var(--dark-bg) 58%, #080e1a 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--border);
  box-shadow: var(--shadow-sm);
}

.hero-metrics div { display: grid; gap: 4px; padding: 18px 20px; background: rgba(255, 255, 255, 0.86); transition: background var(--t-fast) var(--ease); }
.hero-metrics div:hover { background: #fff; }
.hero-metrics strong { color: var(--primary-dark); font-size: 15px; font-weight: 800; letter-spacing: .06em; }
.hero-metrics span { color: var(--muted); font-size: 12.5px; }

.infra-head,
.infra-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 17px 20px; border-bottom: 1px solid #263247; color: #8fa1ba; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.infra-head i { color: #69d6a3; font-style: normal; }
.infra-map { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 1px; background: var(--dark-border); }
.infra-node { display: grid; align-content: center; min-height: 150px; padding: 23px; background: rgba(13, 22, 38, 0.92); transition: background var(--t-fast) var(--ease); }
.infra-node:hover { background: rgba(21, 34, 57, 0.96); }
.infra-node small { margin-bottom: 22px; color: #6f86a5; font-weight: 800; }
.infra-node strong { font-size: 17px; }
.infra-node span { margin-top: 7px; color: #93a2b7; font-size: 12px; }
.infra-node.infra-core { grid-column: 1 / -1; min-height: 130px; background: #14233b; }
.infra-node.infra-core small { margin-bottom: 10px; color: #6ba1ff; }
.infra-node.infra-core strong { font-size: 28px; }
.infra-foot { justify-content: flex-start; gap: 22px; border: 0; }

.architecture-section { background: var(--section-light); }
.architecture-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: 70px; align-items: center; }
.architecture-copy > p:not(.eyebrow) { max-width: 620px; margin-top: 20px; color: var(--text-soft); font-size: 17px; }
.architecture-features { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 0; padding: 0; list-style: none; }
.architecture-features li { padding: 8px 12px; border: 1px solid var(--border); border-radius: var(--radius-pill); color: var(--ink-600); background: #fff; font-size: 12px; font-weight: 700; }
.architecture-diagram { padding: 24px; border: 1px solid var(--dark-border); border-radius: var(--radius-lg); background: var(--dark-bg); box-shadow: var(--shadow-lg); }
.architecture-node { display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: center; min-height: 72px; padding: 14px 18px; border: 1px solid #2a3850; border-radius: var(--radius-md); color: var(--dark-text); background: var(--dark-surface); }
.architecture-node > span { color: #6ba1ff; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.architecture-node div { display: grid; gap: 3px; }
.architecture-node strong { font-size: 15px; }
.architecture-node small { color: var(--dark-muted); font-size: 12px; }
.architecture-diagram > i { display: block; height: 24px; color: #6ba1ff; text-align: center; font-style: normal; line-height: 24px; }

.use-case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--border); border-left: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.use-case-card { min-height: 170px; padding: 24px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.use-case-card span { color: var(--primary); font-size: 11px; font-weight: 800; }
.use-case-card h3 { margin-top: 26px; font-size: 18px; }
.use-case-card p { margin-top: 8px; color: var(--muted); font-size: 13.5px; }
.supporting-section { padding-top: 0; }

.proof-section { color: var(--dark-text); background: var(--dark-bg); }
.proof-section h2 { color: #fff; }
.proof-section .section-heading > p:not(.eyebrow) { color: var(--dark-muted); }
.proof-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 58px; align-items: start; }
.proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid var(--dark-border); border-radius: var(--radius-lg); background: var(--dark-border); }
.proof-card { display: flex; flex-direction: column; min-height: 270px; padding: 24px; background: var(--dark-surface); }
.proof-card > span { color: #6ba1ff; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.proof-card h3 { margin-top: 38px; font-size: 18px; }
.proof-card p { margin-top: 10px; color: var(--dark-muted); font-size: 13.5px; }
.proof-card .text-link { padding-top: 22px; color: #8cb5ff; }
.cta-text { max-width: 700px; margin-top: 14px; color: #dbe8ff; }

.section-heading > p:not(.eyebrow) { margin-top: 18px; color: var(--text-soft); font-size: 17.5px; line-height: 1.65; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--primary-dark); font-size: 14px; font-weight: 800; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.service-card { display: flex; flex-direction: column; }
.service-card .text-link { padding-top: 24px; }

.ai-section { color: #e7edf6; background: #0b1220; }
.ai-section h2 { color: #fff; }
.ai-section .split-grid > div > p:not(.eyebrow) { color: #aebbd0; }
.ai-section .btn { margin-top: 28px; }
.deployment-grid { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--dark-border); border-radius: var(--radius-lg); background: var(--dark-border); }
.deployment-grid article { padding: 24px; background: var(--dark-surface); transition: background var(--t-fast) var(--ease); }
.deployment-grid article:hover { background: #16233a; }
.deployment-grid span { color: #6ba1ff; font-size: 12px; font-weight: 800; }
.deployment-grid h3 { margin-top: 9px; font-size: 19px; }
.deployment-grid p { margin-top: 7px; color: #9dacc1; font-size: 14px; }
.investment-note { display: grid; grid-template-columns: 190px 1fr; gap: 30px; margin-top: 52px; padding-top: 28px; border-top: 1px solid #29364b; }
.investment-note strong { color: #6ba1ff; text-transform: uppercase; letter-spacing: .07em; }
.investment-note p { color: #aebbd0; }

.capability-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 64px; align-items: start; }
.capability-list { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-top: 1px solid var(--border); border-left: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; }
.capability-list article { min-height: 190px; padding: 24px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.capability-list span { color: var(--primary); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.capability-list h3 { margin-top: 28px; font-size: 19px; }
.capability-list p { margin-top: 8px; color: var(--muted); font-size: 14px; }

.security-section { background: var(--section-light); }
.security-steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.security-steps li { display: grid; grid-template-columns: 44px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.security-steps span { color: var(--primary); font-size: 12px; font-weight: 800; }
.security-steps strong { font-size: 17px; }
.security-steps p { margin-top: 5px; color: var(--muted); font-size: 14px; }

.web-panel { display: grid; grid-template-columns: 1fr .75fr; gap: 50px; align-items: end; padding: 44px; border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.web-panel > p { color: var(--muted); }
.web-panel .text-link { grid-column: 2; margin-top: -20px; }

.process-section { background: #f5f7fa; }
.process-grid { display: grid; grid-template-columns: repeat(7, 1fr); margin: 0; padding: 0; overflow: hidden; list-style: none; border-top: 1px solid var(--border); border-left: 1px solid var(--border); border-radius: var(--radius-lg); }
.process-grid li { display: grid; align-content: space-between; min-height: 150px; padding: 18px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.process-grid span { color: var(--primary); font-size: 12px; font-weight: 800; }
.process-grid strong { font-size: 14px; }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; max-width: none; gap: 30px; }
.home-blog .blog-card h3 { font-size: 21px; line-height: 1.25; }
.blog-card-media { display: block; background: #e9edf3; }
.blog-card { transition: transform 180ms ease, box-shadow 180ms ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card img { aspect-ratio: 16 / 9; height: auto; }
.cta { background: #155eef; }
.cta .eyebrow { color: #dbe8ff; }

@media (max-width: 1024px) {
  .capability-layout { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 820px) {
  .hero-metrics { grid-template-columns: 1fr; }
  .infra-map, .capability-list, .web-panel, .investment-note { grid-template-columns: 1fr; }
  .infra-node.infra-core, .web-panel .text-link { grid-column: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
  .web-panel { padding: 26px; }
  .infra-foot { flex-direction: column; align-items: flex-start; }
}

.visual-topbar {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--border);
}

.visual-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cfd6df;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 24px;
}

.metric-panel,
.chart-card,
.security-card,
.server-stack {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--section-light);
}

.metric-panel {
  grid-column: span 2;
  padding: 24px;
}

.metric-panel p,
.security-card p {
  color: var(--muted);
  font-size: 13px;
}

.metric-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 34px;
}

.progress {
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #d9e7f5;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
}

.server-stack {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.server-stack span {
  height: 42px;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  background:
    radial-gradient(circle at 18px 50%, var(--success) 0 4px, transparent 5px),
    linear-gradient(90deg, #fff 0%, #eef4fb 100%);
}

.chart-card {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
  min-height: 180px;
  padding: 18px;
}

.chart-card span {
  width: 22px;
  border-radius: 4px 4px 0 0;
  background: var(--primary);
}

.security-card {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #fff;
}

.security-card strong {
  color: var(--success);
}

.status-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--success) 0 5px, transparent 6px),
    rgba(16, 124, 16, 0.12);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 44px;
}

.page-hero {
  background:
    linear-gradient(90deg, #fff 0%, rgba(248, 249, 250, 0.84) 100%),
    var(--section-light);
}

.narrow {
  max-width: 840px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.product-hero {
  background:
    linear-gradient(100deg, #fff 0%, rgba(248, 249, 250, 0.9) 54%, rgba(234, 244, 253, 0.95) 100%),
    var(--section-light);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 56px;
  align-items: center;
}

.product-hero h1 {
  font-size: clamp(48px, 7vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

.product-subtitle {
  margin-top: 18px;
  color: var(--primary-dark);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.16;
}

.product-text {
  max-width: 700px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.product-price {
  display: inline-grid;
  gap: 2px;
  margin-top: 26px;
  padding: 14px 18px;
  border: 1px solid rgba(0, 103, 184, 0.18);
  border-radius: var(--radius);
  background: #fff;
}

.product-price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.product-price strong {
  color: var(--primary-dark);
  font-size: 30px;
}

.product-visual {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-visual img,
.product-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-placeholder {
  display: grid;
  align-content: center;
  min-height: 460px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(0, 103, 184, 0.08), rgba(16, 124, 16, 0.08)),
    linear-gradient(180deg, #fff, var(--section-light));
}

.product-placeholder span {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.product-placeholder strong {
  margin-top: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.product-placeholder p {
  max-width: 360px;
  margin-top: 18px;
  color: var(--muted);
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-feature {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-feature:hover {
  transform: translateY(-4px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow);
}

.product-feature h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.product-feature p {
  color: var(--muted);
}

.product-showcase {
  background: var(--section-light);
}

.product-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.product-gallery-item {
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(0, 103, 184, 0.08), rgba(255, 255, 255, 0.8)),
    #fff;
  font-weight: 800;
}

h2 {
  font-size: clamp(29px, 3.6vw, 42px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  min-height: 248px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-200);
  background: linear-gradient(180deg, var(--primary-soft) 0%, var(--surface) 46%);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-sm);
  color: var(--primary);
  background: linear-gradient(180deg, #fff 0%, var(--primary-soft) 100%);
  box-shadow: var(--shadow-xs);
  font-size: 14px;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p,
.security-band p,
.about-panel p {
  color: var(--muted);
}

.security-band,
.about {
  background: var(--section-light);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: start;
}

.split-grid p {
  max-width: 640px;
  margin-top: 18px;
  font-size: 17px;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 700;
}

.trust-list span {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(16, 124, 16, 0.12);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.solution-item {
  min-height: 146px;
  padding: 22px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.solution-item:hover {
  color: var(--primary-dark);
  background: var(--section-light);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: center;
  padding: 42px 0;
}

.about-panel p {
  font-size: 17px;
}

.cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(820px 440px at 88% -10%, rgba(0, 166, 255, 0.34), transparent 62%),
    linear-gradient(135deg, var(--blue-700) 0%, var(--primary) 52%, var(--blue-800) 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta h2 {
  max-width: 780px;
}

.site-footer {
  padding: 64px 0 28px;
  color: #cdd5e0;
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(21, 94, 239, 0.16), transparent 62%),
    var(--ink-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(190px, .8fr) minmax(480px, 1.7fr) minmax(150px, .5fr);
  gap: 40px;
  padding-bottom: 32px;
}

.footer-nav { display: grid; grid-template-columns: 1.2fr .9fr .8fr; gap: 36px; }
.footer-links h3 { color: #fff; font-size: 13px; letter-spacing: .04em; }
.footer-links a { color: #c4cedc; font-size: 13.5px; }
.footer-links > span { color: #77869b; font-size: 13.5px; }

.footer-brand {
  min-width: 0;
}

/*
 * Footer logosu koyu zemin icin tasarlanmis, cevresinde genis bir glow tasiyan
 * kare bir gorsel. 52px'te isaret ~10px'e dusup okunmaz hale geliyordu; glow'un
 * payini birakacak sekilde buyutuldu.
 */
.footer-logo {
  display: block;
  width: auto;
  height: 96px;
  max-width: 240px;
  margin-left: -10px;
  object-fit: contain;
}

.site-footer p {
  margin-top: 14px;
  color: #aab2bf;
}

.footer-social {
  display: grid;
  gap: 10px;
}

.footer-social h3 {
  color: #fff;
  font-size: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d5dbe3;
  transition: color 180ms ease;
}

.footer-social a:hover {
  color: #fff;
}

.footer-social span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(229, 231, 235, 0.16);
  border-radius: 4px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.footer-social span img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.social-mark {
  font-weight: 900;
  line-height: 1;
}

.social-mark svg {
  display: block;
  width: 17px;
  height: 17px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-mark svg .icon-fill {
  fill: currentColor;
  stroke: none;
}

.social-youtube svg > path:first-child {
  fill: currentColor;
  stroke: none;
}

.social-youtube svg .icon-fill {
  fill: #ff0033;
}

.social-youtube {
  color: #fff;
  background: #ff0033 !important;
  border-color: rgba(255, 0, 51, 0.35) !important;
}

.social-instagram {
  color: #fff;
  background: #c13584 !important;
  border-color: rgba(193, 53, 132, 0.35) !important;
}

.social-linkedin {
  color: #fff;
  background: #0a66c2 !important;
  border-color: rgba(10, 102, 194, 0.35) !important;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.blog-card img,
.blog-cover img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card div {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.blog-card span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.blog-card h2 {
  font-size: 22px;
}

.blog-card p,
.blog-content {
  color: var(--muted);
}

.blog-card .btn {
  width: fit-content;
}

.blog-cover {
  margin-top: 42px;
}

.blog-cover img {
  height: min(440px, 48vw);
  border-radius: var(--radius);
}

.blog-content {
  max-width: 860px;
  font-size: 18px;
  line-height: 1.8;
}

.blog-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
}

.blog-meta { display: flex; gap: 18px; margin-top: 22px; color: var(--muted); font-size: 13px; font-weight: 700; }
.blog-card-placeholder { display: grid; place-items: end start; aspect-ratio: 16 / 9; padding: 20px; color: #8fa1ba; background: #101a2c; font-size: 11px; font-weight: 800; letter-spacing: .1em; }

.newsletter-popup { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity 180ms ease, visibility 180ms ease; }
.newsletter-popup.is-open { visibility: visible; opacity: 1; }
.newsletter-backdrop { position: absolute; inset: 0; background: rgba(5,12,24,.72); backdrop-filter: blur(5px); }
.newsletter-dialog { position: relative; width: min(100%,560px); padding: 38px; border: 1px solid #263247; border-radius: 12px; color: #dbe4f0; background: #0b1220; box-shadow: 0 28px 90px rgba(0,0,0,.38); }
.newsletter-dialog h2 { color: #fff; font-size: clamp(27px,4vw,38px); letter-spacing: -.03em; }
.newsletter-dialog > p:not(.eyebrow) { margin-top: 14px; color: #aebbd0; }
.newsletter-dialog > small { display: block; margin-top: 16px; color: #8291a7; }
.newsletter-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border: 1px solid #334159; border-radius: 6px; color: #fff; background: transparent; font-size: 24px; cursor: pointer; }
.newsletter-form { display: grid; gap: 14px; margin-top: 24px; }
.newsletter-form > label:not(.newsletter-consent):not(.newsletter-honeypot) { display: grid; gap: 8px; color: #fff; font-size: 13px; font-weight: 700; }
.newsletter-form input[type="email"] { min-height: 48px; border: 1px solid #42516b; border-radius: 6px; padding: 0 14px; color: #172033; background: #fff; font: inherit; }
.newsletter-consent { display: flex; align-items: flex-start; gap: 9px; color: #aebbd0; font-size: 12px; line-height: 1.5; }
.newsletter-consent input { margin-top: 3px; accent-color: var(--primary); }
.newsletter-honeypot { position: absolute; left: -9999px; }
.newsletter-result { min-height: 20px; font-size: 13px; font-weight: 700; }.newsletter-result.success { color: #69d6a3; }.newsletter-result.error { color: #ff9d9d; }
.newsletter-form button:disabled { cursor: wait; opacity: .7; }

@media (max-width: 520px) { .newsletter-dialog { padding: 30px 22px 24px; }.newsletter-form .btn { width: 100%; } }

.footer-links {
  display: grid;
  gap: 10px;
  color: #d5dbe3;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(229, 231, 235, 0.16);
  color: #aab2bf;
  font-size: 14px;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.reference-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 160px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.reference-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow);
}

.reference-card span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reference-card h3 {
  font-size: 22px;
}

.reference-logo {
  width: 100%;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.reference-logo-placeholder {
  display: grid;
  place-items: center;
  width: 56px;
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--section-light);
  font-weight: 800;
  font-size: 22px;
}

.globe-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, rgba(248, 249, 250, 0.9) 52%, rgba(234, 244, 253, 0.9) 100%),
    var(--section-light);
}

.globe-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 48px;
  align-items: center;
}

.globe-grid p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.globe-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  overflow: hidden;
}

.world-orb {
  position: relative;
  width: min(92vw, 500px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 103, 184, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 42%, rgba(0, 166, 255, 0.18) 0 3%, transparent 8%),
    radial-gradient(circle at 50% 50%, #ffffff 0%, #eaf4fd 58%, #d8ecfb 100%);
  box-shadow:
    inset -28px -30px 60px rgba(0, 78, 140, 0.13),
    inset 24px 20px 40px rgba(255, 255, 255, 0.92),
    0 24px 70px rgba(0, 103, 184, 0.16);
  transform: perspective(900px) rotateX(10deg) rotateY(-14deg);
}

.world-orb::before,
.world-orb::after,
.orb-grid {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  content: "";
}

.world-orb::before {
  background:
    radial-gradient(ellipse at 50% 22%, transparent 0 30%, rgba(0, 103, 184, 0.18) 31%, transparent 32%),
    radial-gradient(ellipse at 50% 50%, transparent 0 48%, rgba(0, 103, 184, 0.2) 49%, transparent 50%),
    radial-gradient(ellipse at 50% 78%, transparent 0 30%, rgba(0, 103, 184, 0.18) 31%, transparent 32%);
}

.world-orb::after {
  background:
    linear-gradient(90deg, transparent 49.6%, rgba(0, 103, 184, 0.18) 49.8% 50.2%, transparent 50.4%),
    linear-gradient(60deg, transparent 49.6%, rgba(0, 103, 184, 0.12) 49.8% 50.2%, transparent 50.4%),
    linear-gradient(120deg, transparent 49.6%, rgba(0, 103, 184, 0.12) 49.8% 50.2%, transparent 50.4%);
}

.orb-grid {
  border: 1px solid rgba(0, 103, 184, 0.16);
  background:
    radial-gradient(ellipse at 47% 42%, rgba(0, 103, 184, 0.14) 0 5%, transparent 5.5%),
    radial-gradient(ellipse at 56% 35%, rgba(0, 103, 184, 0.18) 0 9%, transparent 9.5%),
    radial-gradient(ellipse at 61% 51%, rgba(0, 103, 184, 0.14) 0 7%, transparent 7.5%),
    radial-gradient(ellipse at 42% 57%, rgba(0, 103, 184, 0.12) 0 8%, transparent 8.5%);
  opacity: 0.9;
}

.turkey-zone {
  position: absolute;
  left: 55%;
  top: 40%;
  z-index: 3;
  width: 84px;
  height: 30px;
  border-radius: 54% 46% 58% 42% / 48% 44% 56% 52%;
  background: rgba(0, 103, 184, 0.22);
  filter: drop-shadow(0 0 12px rgba(0, 166, 255, 0.55));
  transform: rotate(-9deg);
}

.city-dot {
  position: absolute;
  left: 56.5%;
  top: 44.5%;
  z-index: 5;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #00a6ff;
  box-shadow: 0 0 0 10px rgba(0, 166, 255, 0.16), 0 0 24px rgba(0, 166, 255, 0.95);
}

.globe-label {
  position: absolute;
  left: 59%;
  top: 37%;
  z-index: 6;
  color: #00a6ff;
  text-shadow: 0 0 12px rgba(0, 166, 255, 0.95);
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.route {
  position: absolute;
  z-index: 4;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 166, 255, 0), #00a6ff, rgba(0, 166, 255, 0));
  box-shadow: 0 0 14px rgba(0, 166, 255, 0.92);
  transform-origin: left center;
  animation: route-pulse 2.4s ease-in-out infinite;
}

.route-one {
  left: 58%;
  top: 46%;
  width: 148px;
  transform: rotate(-24deg);
}

.route-two {
  left: 57%;
  top: 47%;
  width: 132px;
  transform: rotate(18deg);
  animation-delay: 0.35s;
}

.route-three {
  left: 55%;
  top: 46%;
  width: 112px;
  transform: rotate(150deg);
  animation-delay: 0.7s;
}

.route-four {
  left: 56%;
  top: 45%;
  width: 126px;
  transform: rotate(-148deg);
  animation-delay: 1.05s;
}

@keyframes route-pulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

.technologies {
  background: #fff;
}

.technologies .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tech-carousel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--section-light);
  max-width: 950px;
  margin: 0 auto;
}

.tech-track {
  display: flex;
  width: max-content;
  animation: tech-slide 30s linear infinite;
}

.tech-carousel:hover .tech-track {
  animation-play-state: paused;
}

.tech-item {
  display: grid;
  place-items: center;
  gap: 10px;
  width: 190px;
  min-height: 128px;
  border-right: 1px solid var(--border);
  background: #fff;
  font-weight: 800;
}

.tech-logo {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 103, 184, 0.18);
  border-radius: 8px;
  color: var(--primary);
  background: #eaf4fd;
  font-size: 15px;
  font-weight: 900;
}

.tech-item[data-tech="laravel"] .tech-logo,
.tech-item[data-tech="docker"] .tech-logo,
.tech-item[data-tech="microsoftazure"] .tech-logo {
  color: #fff;
  background: var(--primary);
}

/*
 * Rozet logolari hem kare ikon hem genis ortak rozeti olabiliyor. Belirli bir
 * yukseklik verilir, genislik oranindan hesaplanir; boylece icsel boyutu
 * olmayan SVG'ler de ongorulebilir sekilde yerlesir.
 */
.trust-badge img {
  width: auto;
  height: 48px;
  max-width: 100%;
  object-fit: contain;
}

@keyframes tech-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.trust-badges-section {
  background: #fff;
}

/* Rozet sayisi degistikce sutun sayisi kendini ayarlar; sabit 6 sutunda
   yedinci rozet tek basina alt satira dusuyordu. */
.trust-badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(152px, 1fr));
  gap: 16px;
}

.trust-badge {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 138px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  font-size: 13px;
  font-weight: 700;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease);
}

.trust-badge:hover {
  transform: translateY(-5px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
}

.project-track-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(420px, 1fr);
  gap: 24px;
  align-items: start;
}

.tracking-form,
.tracking-result {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
}

.tracking-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.tracking-form p {
  color: var(--muted);
}

.tracking-form p strong {
  color: var(--primary-dark);
}

.tracking-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
}

.tracking-form input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 13px 14px;
  font: inherit;
}

.tracking-result {
  display: grid;
  gap: 18px;
  min-height: 260px;
  padding: 28px;
}

.tracking-result p {
  color: var(--muted);
}

.tracking-code {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 4px;
  color: var(--primary);
  background: #eaf4fd;
  font-weight: 800;
}

.tracking-progress {
  display: grid;
  gap: 10px;
}

.tracking-progress-top,
.tracking-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.tracking-progress-top span {
  color: var(--primary);
  font-weight: 800;
}

.tracking-bar {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #d9e7f5;
}

.tracking-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #00a6ff);
}

.tracking-meta div {
  display: grid;
  gap: 4px;
  flex: 1;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--section-light);
}

.tracking-meta span {
  color: var(--muted);
  font-size: 13px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
  gap: 24px;
  align-items: start;
}

.contact-form,
.contact-details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 14px 15px;
  color: var(--text);
  background: var(--surface);
  font: inherit;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink-300);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.14);
}

.contact-form .btn {
  width: fit-content;
}

.form-status {
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.form-status.success {
  color: #0f5d0f;
  background: rgba(16, 124, 16, 0.1);
}

.form-status.error {
  color: #8a1f17;
  background: rgba(190, 24, 24, 0.1);
}

.contact-details {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.contact-details p,
.contact-details a {
  color: var(--muted);
}

.contact-details a:hover {
  color: var(--primary);
}

.contact-map {
  margin-top: 8px;
  overflow: hidden;
  border-radius: 14px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  border: 0;
}

.support-assistant {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
}

.assistant-toggle {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--blue-500) 0%, var(--primary) 100%);
  box-shadow: var(--shadow-primary);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.assistant-toggle:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 38px -10px rgba(21, 94, 239, 0.55);
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(360px, calc(100vw - 32px));
  height: 440px;
  max-height: calc(100vh - 120px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.support-assistant.is-open .assistant-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  background: var(--section-light);
}

.assistant-header div {
  display: grid;
}

.assistant-header strong {
  font-size: 15px;
}

.assistant-header span {
  color: var(--muted);
  font-size: 12px;
}

.assistant-header button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.assistant-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding: 16px;
  background: #fff;
}

.assistant-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.assistant-message.bot {
  justify-self: start;
  color: var(--text);
  background: var(--section-light);
}

.assistant-message.user {
  justify-self: end;
  color: #fff;
  background: var(--primary);
}

.assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.assistant-form input {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 11px 12px;
  font: inherit;
}

.assistant-form input:focus {
  outline: 2px solid rgba(0, 103, 184, 0.2);
  border-color: var(--primary);
}

.assistant-form button {
  border: 0;
  border-radius: 4px;
  padding: 0 14px;
  color: #fff;
  background: var(--primary);
  font-weight: 800;
  cursor: pointer;
}

.contact-choice {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.contact-choice.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-choice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(6px);
}

.contact-choice-panel {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(100%, 480px);
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.24);
}

.contact-choice-panel h2 {
  font-size: 30px;
}

.contact-choice-panel p:not(.eyebrow) {
  color: var(--muted);
}

.contact-choice-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.contact-choice-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--t-slow) var(--ease-out), transform 620ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Izgara icindeki kartlar sirayla belirsin */
.card-grid > .reveal:nth-child(2),
.blog-grid > .reveal:nth-child(2),
.reference-grid > .reveal:nth-child(2),
.trust-badge-grid > .reveal:nth-child(2),
.process-grid > .reveal:nth-child(2) { --reveal-delay: 70ms; }

.card-grid > .reveal:nth-child(3),
.blog-grid > .reveal:nth-child(3),
.reference-grid > .reveal:nth-child(3),
.trust-badge-grid > .reveal:nth-child(3),
.process-grid > .reveal:nth-child(3) { --reveal-delay: 140ms; }

.card-grid > .reveal:nth-child(n + 4),
.reference-grid > .reveal:nth-child(n + 4),
.trust-badge-grid > .reveal:nth-child(n + 4),
.process-grid > .reveal:nth-child(n + 4) { --reveal-delay: 210ms; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .product-hero-grid,
  .globe-grid,
  .project-track-grid,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .architecture-layout,
  .proof-layout { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .solution-grid,
  .reference-grid,
  .product-feature-grid,
  .trust-badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 2px;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
  }

  .mobile-nav a:not(.btn) {
    padding: 13px 0;
    color: #2d3748;
    font-weight: 600;
  }

  .mobile-nav .btn {
    margin-top: 8px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-visual {
    min-height: auto;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .metric-panel,
  .security-card {
    grid-column: auto;
  }

  .card-grid,
  .solution-grid,
  .reference-grid,
  .product-feature-grid,
  .trust-badge-grid {
    grid-template-columns: 1fr;
  }

  .use-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { min-height: 210px; }

  .globe-stage {
    min-height: 380px;
  }

  .tracking-progress-top,
  .tracking-meta {
    flex-direction: column;
  }

  .product-visual,
  .product-placeholder {
    min-height: 340px;
  }

  .service-card {
    min-height: 210px;
  }

  .solution-item {
    min-height: 100px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 128px;
  }

  .brand-logo {
    height: 37px;
    max-width: 180px;
  }

  .footer-logo {
    height: 46px;
    max-width: 230px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-actions {
    display: grid;
  }

  .use-case-grid,
  .footer-nav { grid-template-columns: 1fr; }
  .architecture-layout { gap: 38px; }
  .architecture-diagram { padding: 16px; }
  .architecture-node { grid-template-columns: 34px 1fr; padding: 12px; }

  .btn {
    width: 100%;
  }

  .contact-form .btn {
    width: 100%;
  }

  .chart-card {
    min-height: 140px;
  }

  .support-assistant {
    right: 16px;
    bottom: 16px;
  }

  .assistant-panel {
    height: 420px;
  }
}

/* Critical visual fixes for home technology carousel and about trust badges. */
.tech-carousel {
  display: block !important;
  width: min(100%, 950px) !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  background: var(--section-light) !important;
}

.tech-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  animation: tech-slide 30s linear infinite !important;
}

.tech-item {
  display: grid !important;
  flex: 0 0 190px !important;
  width: 190px !important;
  min-height: 128px !important;
  place-items: center !important;
  gap: 10px !important;
  border-right: 1px solid var(--border) !important;
  background: #fff !important;
  font-weight: 800 !important;
  text-align: center !important;
}

.tech-logo,
/*
 * Rozet doşemesi. Genislik sabit degil: kare ikonlar kare doseme alir, genis
 * ortak rozetleri (orn. Intel) oranini koruyarak yayilir. Sabit 46px kare
 * oldugunda 2:1 bir rozet 30x15 piksele dusup okunmaz hale geliyordu.
 */
.badge-logo {
  display: grid;
  place-items: center;
  width: auto;
  min-width: 52px;
  height: 52px;
  padding: 7px 9px;
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-sm);
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

img.tech-logo,
img.badge-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 52px;
  object-fit: contain;
}

/*
 * Gomulu marka isareti. Rozete gorsel tanimlanmadiginda kullanilir; her marka
 * kendi resmi renginde, ayni doseme olcusunde durur.
 */
.badge-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 11px;
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
}

.badge-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.badge-mark-letter {
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

/*
 * Yuklenemeyen rozet gorseli JS ile hidden isaretlenir. Yazar tarafindaki
 * display:block, tarayicinin [hidden]{display:none} kuralini ezdigi icin
 * burada acikca geri aliriz; aksi halde kirik gorsel ekranda kaliyor.
 */
.badge-logo[hidden] {
  display: none;
}

.microsoft-logo {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 3px !important;
  width: 46px !important;
  height: 46px !important;
  padding: 8px !important;
  border: 1px solid rgba(0, 103, 184, 0.18) !important;
  border-radius: 8px !important;
  background: #fff !important;
}

.microsoft-logo i:nth-child(1) {
  background: #f25022;
}

.microsoft-logo i:nth-child(2) {
  background: #7fba00;
}

.microsoft-logo i:nth-child(3) {
  background: #00a4ef;
}

.microsoft-logo i:nth-child(4) {
  background: #ffb900;
}

.breach-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--section-light) 100%);
}

.breach-section .section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.breach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.breach-card {
  display: grid;
  gap: 18px;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
}

.breach-card-top {
  display: grid;
  gap: 6px;
}

.breach-card h3 {
  font-size: 22px;
}

.breach-card-top span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breach-card strong {
  color: var(--primary-dark);
  font-size: 24px;
  line-height: 1.16;
}

.breach-bar {
  align-self: end;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #d9e7f5;
}

.breach-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #00a6ff);
}

.breach-copy {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 17px;
}

.breach-copy p:last-child {
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 1024px) {
  .trust-badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .breach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .trust-badge-grid {
    grid-template-columns: 1fr;
  }

  .breach-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================================
   Teknoloji ortaklik seridi
   Hero'nun hemen altinda duran sessiz guven bandi. Rozet one cikar ama
   bagirmaz: hairline cerceve, notr zemin, olculu yukseklik.
   ========================================================================= */
.partner-strip {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, var(--ink-50) 100%);
}

.partner-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-strip-lead {
  max-width: 420px;
}

.partner-strip-label {
  display: block;
  color: var(--ink-400);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.partner-strip-lead p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.partner-strip-marks {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partner-components { display: grid; gap: 8px; padding-left: 24px; border-left: 1px solid var(--border); }
.partner-components > span { color: var(--ink-400); font-size: 9px; font-weight: 800; letter-spacing: .1em; }

.partner-badge {
  display: inline-flex;
  align-items: center;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease);
}

/*
 * Resmi ortak rozeti kendi cercevesiyle gelir; uzerine ikinci bir kart
 * kaplamasi koymak cift cerceve yapar. Bu yuzden gorsel varyant ciplak durur,
 * sadece wordmark okunacak yuksekligi alir.
 */
.partner-badge-image img {
  display: block;
  width: auto;
  height: 56px;
  max-width: 220px;
  border-radius: var(--radius-xs);
  object-fit: contain;
}

a.partner-badge-image:hover {
  transform: translateY(-2px);
}

/* Resmi rozet dosyasi yuklenene kadar gosterilen metin kilidi */
.partner-badge-text {
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-xs);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
}

a.partner-badge-text:hover {
  transform: translateY(-2px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-sm);
}

.partner-badge-text::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: var(--primary);
}

.partner-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  list-style: none;
}

.partner-chips li {
  padding: 7px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--ink-500);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
}

/* Footer'daki kucuk rozet */
.footer-partner {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
}

.footer-partner img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 185px;
  border-radius: var(--radius-xs);
  object-fit: contain;
}

@media (max-width: 900px) {
  .partner-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .partner-strip-lead {
    max-width: none;
  }

  .partner-components { padding-left: 0; border-left: 0; }
}

@media (max-width: 520px) {
  .partner-badge-image img {
    height: 46px;
    max-width: 180px;
  }
}
