/* ============================
   BASE / RESET
============================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #111827;
  line-height: 1.6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: #ffffff; /* Arka plan beyaz */
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Canvas: mavi blob efekt için */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;         /* Her şeyin arkasında */
  pointer-events: none;
  background: #ffffff; /* Tamamen beyaz taban */
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================
   SECTION GENERIC
============================ */

.section {
  padding: 70px 0;
}

.section-alt {
  background: linear-gradient(180deg, #f9fafb, #f3f4f6);
}

.section h2 {
  font-size: 2rem;
  text-align: center;
  font-weight: 800;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 40px;
  font-size: 0.98rem;
}
