:root {
  --bg: #050816;
  --bg-soft: #0b1020;
  --bg-softer: #12172a;
  --accent: #8b5cf6;
  --accent-soft: rgba(139, 92, 246, 0.25);
  --accent-strong: #a855f7;
  --text: #f9fafb;
  --muted: #9ca3af;
  --danger: #f97373;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --transition-fast: 0.18s ease-out;
  --transition-normal: 0.25s ease-out;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.5);
  --container-width: 1150px;
}

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

html, body {
  scroll-behavior: smooth;
  background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(3, 7, 18, 0.9), rgba(3, 7, 18, 0.85), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-badge {
  height: 34px;
  width: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0%, #22d3ee 0, #8b5cf6 40%, #4c1d95 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.logo-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.45) 0, transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.8;
}

.logo-badge span {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
  color: #e5e7eb;
  position: relative;
  z-index: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text-main {
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 15px;
  text-transform: uppercase;
}

.logo-text-sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(to right, #22d3ee, #8b5cf6, #f97316);
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: #e5e7eb;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.btn {
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  background: transparent;
  color: var(--muted);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.7);
}

.btn-outline:hover {
  border-color: rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.7);
}

.btn-primary {
  background: radial-gradient(circle at 0% 0%, #22d3ee 0, #8b5cf6 35%, #f97316 100%);
  color: #0b1020;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 18px 45px rgba(88, 28, 135, 0.8);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 12px;
}

/* Hamburger Menü */
.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-line + .nav-toggle-line {
  margin-top: 4px;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobil menü container (default gizli) */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 8px 0 12px;
}

/* Hero */
.hero {
  padding: 40px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.6));
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 16px;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

.hero-title {
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero-gradient {
  background: linear-gradient(to right, #e5e7eb, #c4b5fd, #22d3ee);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.tag {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 4px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.8);
}

.tag-strong {
  border-color: rgba(139, 92, 246, 0.7);
  color: #e5e7eb;
  background: radial-gradient(circle at 0 0, rgba(139, 92, 246, 0.45), rgba(15, 23, 42, 0.95));
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
}

.hero-note {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-note-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.9);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric strong {
  font-size: 16px;
  color: #e5e7eb;
}

/* Hero visual card */
.hero-visual {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.1), transparent 40%),
              radial-gradient(circle at 100% 0, rgba(139, 92, 246, 0.16), transparent 45%),
              linear-gradient(to bottom right, #020617, #020617);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.35), rgba(139, 92, 246, 0.55), rgba(249, 115, 22, 0.3));
  mix-blend-mode: soft-light;
  opacity: 0.5;
  pointer-events: none;
}

.hero-visual-inner {
  position: relative;
  border-radius: calc(var(--radius-xl) - 6px);
  background: radial-gradient(circle at 15% 0, rgba(56, 189, 248, 0.12), transparent 55%),
              radial-gradient(circle at 80% 100%, rgba(139, 92, 246, 0.16), transparent 40%),
              #020617;
  border: 1px solid rgba(30, 64, 175, 0.7);
  padding: 18px;
  min-height: 260px;
  overflow: hidden;
}

.hero-glitch {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.38em;
  color: rgba(148, 163, 184, 0.7);
  margin-bottom: 18px;
}

.hero-screen-main {
  border-radius: var(--radius-md);
  background: radial-gradient(circle at 0 0, rgba(8, 47, 73, 0.8), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(59, 130, 246, 0.65);
  padding: 14px 14px 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
}

.hero-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.hero-screen-dots {
  display: flex;
  gap: 5px;
}

.hero-screen-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.9);
}

.hero-screen-dot:nth-child(1) { background: #f97373; }
.hero-screen-dot:nth-child(2) { background: #facc15; }
.hero-screen-dot:nth-child(3) { background: #22c55e; }

.hero-screen-title {
  font-size: 11px;
  color: rgba(148, 163, 184, 0.9);
}

.hero-code {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  color: #e5e7eb;
  line-height: 1.7;
  white-space: pre;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.1), transparent 50%);
  border-radius: 10px;
  padding: 10px;
  border: 1px solid rgba(59, 130, 246, 0.4);
  position: relative;
  overflow: auto;
}

.hero-code span.kw { color: #a5b4fc; }
.hero-code span.fn { color: #f97316; }
.hero-code span.str { color: #facc15; }
.hero-code span.cm { color: #6b7280; }

.hero-stats-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 10px;
  margin-top: 12px;
  color: rgba(209, 213, 219, 0.9);
}

.hero-stat-chip {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}

.hero-orbit-circle {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.35);
}

.hero-orbit-circle:nth-child(1) {
  width: 130%;
  height: 130%;
  top: -10%;
  left: -15%;
}

.hero-orbit-circle:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-style: solid;
  border-color: rgba(56, 189, 248, 0.35);
}

.hero-pill-floating {
  position: absolute;
  right: 14px;
  bottom: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(56, 189, 248, 0.7);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.45), rgba(15, 23, 42, 0.95));
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e5e7eb;
  box-shadow: 0 12px 30px rgba(8, 47, 73, 0.9);
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.95);
}

/* Sections */
section {
  padding: 40px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.section-kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title {
  font-size: 22px;
  font-weight: 700;
}

.section-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.85);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal), background var(--transition-normal);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.15), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  transform: translate3d(-10px, -10px, 0);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(148, 163, 184, 0.5);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.95);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.98));
}

.service-card:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.service-pill {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.95);
}

.service-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.9);
}

.service-title {
  font-size: 15px;
  font-weight: 600;
}

.service-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.service-tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: rgba(209, 213, 219, 0.9);
}

/* Works */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.work-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.98), rgba(17, 24, 39, 1));
  border: 1px solid rgba(31, 41, 55, 1);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 55px rgba(15, 23, 42, 1);
  border-color: rgba(148, 163, 184, 0.6);
}

.work-thumb {
  border-radius: 14px;
  border: 1px solid rgba(55, 65, 81, 0.95);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.11), transparent 55%);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
}

.work-title {
  font-size: 14px;
  font-weight: 600;
}

.work-body {
  font-size: 13px;
  color: var(--muted);
}

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(148, 163, 184, 0.9);
}

.work-pill {
  border-radius: 999px;
  padding: 3px 8px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 10px;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.process-step {
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(31, 41, 55, 1);
  padding: 12px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.process-step-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.process-step-index {
  font-size: 11px;
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(15, 23, 42, 1);
  border: 1px solid rgba(55, 65, 81, 1);
  color: rgba(209, 213, 219, 0.95);
}

.process-step-title {
  font-size: 13px;
  font-weight: 600;
  color: #e5e7eb;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.about-card {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(31, 41, 55, 1);
  padding: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.about-card strong {
  color: #e5e7eb;
}

.about-list {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 8px 16px;
  font-size: 12px;
}

.about-list span {
  color: #e5e7eb;
}

.about-highlight {
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.15), rgba(15, 23, 42, 0.98));
  font-size: 12px;
  color: rgba(209, 213, 219, 0.96);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.contact-card {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(31, 41, 55, 1);
  padding: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
  font-size: 12px;
  flex: 1;
}

.form-field label {
  color: rgba(209, 213, 219, 0.9);
}

.form-input,
.form-textarea {
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 1);
  background: rgba(15, 23, 42, 0.98);
  padding: 9px 12px;
  font-size: 13px;
  color: #e5e7eb;
  outline: none;
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-textarea {
  border-radius: 14px;
  min-height: 90px;
  resize: vertical;
  line-height: 1.5;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(107, 114, 128, 0.9);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.4);
  background: rgba(15, 23, 42, 1);
}

.contact-info {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-info-item span {
  font-size: 11px;
  color: rgba(148, 163, 184, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.contact-info-item strong {
  font-size: 13px;
  color: #e5e7eb;
}

.contact-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
}

.contact-chip {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 4px 9px;
  color: rgba(209, 213, 219, 0.95);
  background: rgba(15, 23, 42, 0.97);
}

/* Footer */
footer {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(15, 23, 42, 1);
  margin-top: auto;
  background: radial-gradient(circle at top, rgba(30, 64, 175, 0.3), rgba(3, 7, 18, 1));
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: #e5e7eb;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero-visual {
    order: -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    border-bottom-color: rgba(15, 23, 42, 1);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav {
    height: 70px;
  }

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

  .nav-mobile.open {
    display: flex;
  }

  .nav-mobile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
  }

  .nav-mobile-links a {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(31, 41, 55, 1);
    background: rgba(15, 23, 42, 0.98);
  }

  .nav-mobile-cta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
  }

  .hero {
    padding-top: 28px;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .works-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  section {
    padding: 32px 0;
  }
}

/* Daha küçük ekranlarda form satırlarını alt alta al */
@media (max-width: 540px) {
  .form-row {
    flex-direction: column;
  }
}
 /* LOGO - TEMİZ AYAR */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 120px;      /* burada boyutu kontrol ediyorsun */
  width: auto;
  display: block;
  object-fit: contain;
}
