  #bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
}
  /* ========== RESET & BASE ========== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body {
    font-family: 'Manrope', system-ui, sans-serif;
    background: #06090F;
    color: #E8EDF5;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

  /* ========== TOKENS ========== */
  :root {
    --bg-0: #06090F;
    --bg-1: #0B111C;
    --bg-2: #11192A;
    --surface: rgba(255, 255, 255, 0.035);
    --surface-strong: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text-1: #F0F4FA;
    --text-2: #A8B2C5;
    --text-3: #6B7488;
    --accent: #6BB7FF;
    --accent-soft: #88C7FF;
    --accent-deep: #2C7FD9;
    --glow: 107, 183, 255;
    --display: 'Bricolage Grotesque', system-ui, sans-serif;
    --serif: 'Instrument Serif', Georgia, serif;
    --container: 1200px;
  }

  /* ========== ATMOSPHERIC BACKGROUND ========== */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 15% 0%, rgba(44, 127, 217, 0.18), transparent 60%),
      radial-gradient(ellipse 60% 50% at 90% 30%, rgba(107, 183, 255, 0.12), transparent 60%),
      radial-gradient(ellipse 70% 50% at 50% 100%, rgba(80, 160, 240, 0.08), transparent 70%);
    z-index: -2;
    pointer-events: none;
  }
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' /><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
  }

  /* ========== LAYOUT ========== */
  .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

  /* ========== NAV ========== */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    transition: backdrop-filter 0.3s, background 0.3s, border-color 0.3s;
    border-bottom: 1px solid transparent;
  }
  .nav.scrolled {
    background: rgba(6, 9, 15, 0.72);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-bottom-color: var(--border);
  }
  .nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .brand {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--display);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .brand-mark {
    width: 28px; height: 28px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    position: relative;
    box-shadow: 0 0 24px rgba(var(--glow), 0.35);
  }
  .brand-mark::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 3px;
    background: var(--bg-0);
  }
  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px;
    color: var(--text-2);
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a:hover { color: var(--text-1); }
  .nav-cta {
    display: flex; align-items: center; gap: 12px;
  }
  .btn {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: transform 0.15s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.005em;
  }
  .btn-ghost {
    color: var(--text-1);
    border: 1px solid var(--border);
    background: var(--surface);
  }
  .btn-ghost:hover { background: var(--surface-strong); border-color: var(--border-strong); }
  .btn-primary {
    color: #06121F;
    background: linear-gradient(180deg, #88C7FF, #4F9CE8);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(var(--glow), 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(var(--glow), 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-primary:active { transform: translateY(0); }
  .nav-toggle { display: none; }

  /* ========== HERO ========== */
  .hero {
    padding: 180px 0 100px;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-2);
    margin-bottom: 28px;
  }
  .pulse {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(var(--glow), 0.6);
    animation: pulse 2.4s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(var(--glow), 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(var(--glow), 0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--glow), 0); }
  }
  .hero h1 {
    font-family: var(--display);
    font-size: clamp(40px, 5.4vw, 72px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    color: var(--text-1);
  }
  .hero h1 em {
    font-family: inherit;
    font-style: normal;
    font-weight: 500;
    color: var(--accent-soft);
    letter-spacing: -0.035em;
  }
  .hero p.lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-2);
    max-width: 540px;
    margin-bottom: 36px;
  }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
  .hero-stats {
    display: flex; gap: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
  }
  .stat-num {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-1);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
  .stat-label {
    font-size: 13px;
    color: var(--text-3);
  }

  /* Hero visual */
  .hero-viz {
    position: relative;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(44, 127, 217, 0.08), rgba(11, 17, 28, 0.6));
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
  .hero-viz model-viewer {
    width: 100%;
    height: 100%;
    background: transparent;
    --poster-color: transparent;
  }
  .viz-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    pointer-events: none;
  }
  .viz-tag {
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(6, 9, 15, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-strong);
    font-size: 12px;
    color: var(--text-2);
    font-family: var(--display);
    letter-spacing: 0.02em;
  }
  .viz-tag strong { color: var(--text-1); font-weight: 500; }
  .viz-corner {
    position: absolute;
    width: 28px; height: 28px;
    border-color: var(--accent);
    opacity: 0.7;
  }
  .viz-corner-tl { top: 16px; left: 16px; border-top: 1.5px solid; border-left: 1.5px solid; }
  .viz-corner-tr { top: 16px; right: 16px; border-top: 1.5px solid; border-right: 1.5px solid; }
  .viz-corner-bl { bottom: 16px; left: 16px; border-bottom: 1.5px solid; border-left: 1.5px solid; }
  .viz-corner-br { bottom: 16px; right: 16px; border-bottom: 1.5px solid; border-right: 1.5px solid; }

  /* ========== SECTION TITLES ========== */
  .section { padding: 120px 0; position: relative; }
  .section-head { margin-bottom: 64px; max-width: 720px; }
  .section-eyebrow {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--accent);
  }
  .section-title {
    font-family: var(--display);
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--text-1);
    margin-bottom: 20px;
  }
  .section-title em {
    font-family: inherit;
    font-style: normal;
    font-weight: 500;
    color: var(--accent-soft);
  }
  .section-sub {
    font-size: 17px;
    color: var(--text-2);
    line-height: 1.6;
  }

  /* ========== SERVICES ========== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
  }
  .service-card {
    grid-column: span 4;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s, background 0.3s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    background: var(--surface-strong);
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--glow), 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .service-card:hover::before { opacity: 1; }

  /* Asymmetric layout: featured cards span more */
  .service-card.featured { grid-column: span 6; }
  .service-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--glow), 0.15), rgba(var(--glow), 0.05));
    border: 1px solid rgba(var(--glow), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
  }
  .service-icon svg { width: 22px; height: 22px; }
  .service-card h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-1);
    margin-bottom: 12px;
    letter-spacing: -0.015em;
    line-height: 1.2;
  }
  .service-card p {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .service-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 10px; }

  /* ========== INNOVATION SHOWCASE ========== */
  .innovation {
    padding: 120px 0;
  }
  .innovation-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .innovation-card::after {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(var(--glow), 0.12), transparent 60%);
    pointer-events: none;
  }
  .innovation-content { position: relative; z-index: 1; }
  .innovation-badges {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-top: 24px;
  }
  .badge {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(var(--glow), 0.1);
    border: 1px solid rgba(var(--glow), 0.2);
    font-size: 12px;
    color: var(--accent-soft);
    font-weight: 500;
  }
  .panel-mock {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(11, 17, 28, 0.9), rgba(17, 25, 42, 0.6));
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  }
  .panel-bar {
    height: 28px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    margin-bottom: 12px;
  }
  .panel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); }
  .panel-body {
    height: calc(100% - 40px);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 12px;
  }
  .panel-side {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .panel-row { height: 10px; background: rgba(255,255,255,0.06); border-radius: 4px; }
  .panel-row.active { background: rgba(var(--glow), 0.25); width: 70%; }
  .panel-row.short { width: 60%; }
  .panel-main {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .panel-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 30% 50%, rgba(var(--glow), 0.18), transparent 60%),
      radial-gradient(circle at 70% 50%, rgba(120, 100, 200, 0.1), transparent 60%);
  }
  .skull-svg { position: relative; z-index: 1; opacity: 0.85; width: 65%; height: 65%; }

  /* ========== ABOUT ========== */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .about-text { font-size: 17px; line-height: 1.75; color: var(--text-2); }
  .about-text p + p { margin-top: 20px; }
  .about-text strong { color: var(--text-1); font-weight: 500; }
  .about-meta {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
  }
  .meta-row { padding: 16px 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
  .meta-row:last-child { border-bottom: none; }
  .meta-row:first-child { padding-top: 0; }
  .meta-key { font-size: 13px; color: var(--text-3); letter-spacing: 0.02em; }
  .meta-val { font-family: var(--display); font-size: 15px; color: var(--text-1); font-weight: 500; }

  /* ========== TEAM ========== */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
  }
  .team-card:hover { border-color: var(--border-strong); background: var(--surface-strong); transform: translateY(-3px); }
  .avatar {
    width: 128px; height: 128px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    display: flex; align-items: center; justify-content: center;
    color: #06121F;
    font-family: var(--display);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 20px;
    border: 1px solid var(--border-strong);
    object-fit: cover;
  overflow: hidden;
  }
  .team-card h4 {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-1);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .team-role {
    font-size: 14px;
    color: var(--accent-soft);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .team-links { display: flex; gap: 10px; }
  .team-links a {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--surface-strong);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-2);
    transition: color 0.2s, background 0.2s, border-color 0.2s;
  }
  .team-links a:hover { color: var(--accent); border-color: rgba(var(--glow), 0.4); background: rgba(var(--glow), 0.08); }
  .team-links svg { width: 16px; height: 16px; }

  /* ========== CONTACT ========== */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
  }
  .contact-info p {
    color: var(--text-2);
    margin-bottom: 32px;
    font-size: 17px;
  }
  .contact-row {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }
  .contact-row:last-child { border-bottom: none; }
  .contact-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
  }
  .contact-icon svg { width: 18px; height: 18px; }
  .contact-row-text { flex: 1; }
  .contact-label { font-size: 12px; color: var(--text-3); margin-bottom: 2px; letter-spacing: 0.02em; text-transform: uppercase; }
  .contact-value { font-size: 15px; color: var(--text-1); }

  .contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
  }
  .form-row { margin-bottom: 18px; }
  .form-row label {
    display: block;
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
  }
  .form-row input, .form-row textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-1);
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s, background 0.2s;
  }
  .form-row input:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.35);
  }
  .form-row textarea { resize: vertical; min-height: 110px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  /* ========== FOOTER ========== */
  footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
    margin-top: 80px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
  }
  .footer-brand p { color: var(--text-3); font-size: 14px; line-height: 1.6; margin-top: 12px; max-width: 320px; }
  .footer-col h5 {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-1);
    margin-bottom: 18px;
    letter-spacing: 0.02em;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    font-size: 14px;
    color: var(--text-3);
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--text-1); }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-3);
    font-size: 13px;
  }

  /* ========== ANIMATIONS ========== */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ========== PAGE HERO (alt sayfalar için) ========== */
.page-hero {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.breadcrumb a {
  color: var(--text-3);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--accent); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-1);
  margin-bottom: 20px;
  max-width: 820px;
}
.page-lead {
  font-size: 19px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 680px;
}

/* ========== İKİ KOLONLU İÇERİK ========== */
.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.content-grid h2 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text-1);
}
.content-grid p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 18px;
}
.content-grid p strong { color: var(--text-1); font-weight: 500; }
.content-grid img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
}

/* ========== SÜREÇ ADIMLARI (3 adımlık kart grid'i) ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.step-num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.process-step h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ========== CTA BANDI (sayfa sonu) ========== */
.cta-band {
  background: linear-gradient(135deg, rgba(44, 127, 217, 0.12), rgba(11, 17, 28, 0.4));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive (mevcut media query'lerin içine ekle) */
@media (max-width: 960px) {
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 28px; }
  .page-hero { padding: 120px 0 60px; }
}
  /* ========== RESPONSIVE ========== */
  @media (max-width: 960px) {
    .hero { padding: 140px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-viz { max-width: 480px; margin: 0 auto; min-height: 360px; }
    .section { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card, .service-card.featured { grid-column: 1 / -1; }
    .innovation-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 36px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .nav-links { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
  }
  @media (max-width: 540px) {
    .nav-cta .btn-ghost { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .form-grid { grid-template-columns: 1fr; }
  }
