/* index.html’deki mevcut <style> içeriğini
   olduğu gibi buraya yapıştır. */

/* Örnek: */
:root {
  --bg-page: #e5e7eb;
  --bg-surface: #ffffff;
  --bg-muted: #f3f4f6;
  --primary: #1d4ed8;   /* mavi */
  --primary-soft: #dbeafe;
  --accent: #f97316;    /* turuncu */
  --accent-soft: #ffedd5;
  --text-main: #0f172a;
  --text-muted: #6b7280;
  --border-soft: #e5e7eb;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-soft: 0 22px 48px rgba(15,23,42,0.16);
}

/* ... devamı, senin dosyadaki her şey ... */
<style>
    :root {
      --bg-page: #e5e7eb;
      --bg-surface: #ffffff;
      --bg-muted: #f3f4f6;
      --primary: #1d4ed8;   /* mavi */
      --primary-soft: #dbeafe;
      --accent: #f97316;    /* turuncu */
      --accent-soft: #ffedd5;
      --text-main: #0f172a;
      --text-muted: #6b7280;
      --border-soft: #e5e7eb;
      --radius-lg: 26px;
      --radius-md: 18px;
      --shadow-soft: 0 22px 48px rgba(15,23,42,0.16);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: radial-gradient(circle at top, #f9fafb 40%, #e5e7eb 100%);
      color: var(--text-main);
      line-height: 1.6;
      min-height: 100vh;
    }

    a { color: inherit; text-decoration: none; }

    /* Sticky header nedeniyle anchor kaymasını önlemek için */
    section[id] {
      scroll-margin-top: 130px;
    }

    /* HEADER */

    header {
      background: #ffffffee;
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(148,163,184,0.25);
      position: sticky;
      top: 0;
      z-index: 50;
    }

    .header-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 10px 14px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-badge {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      background:
        radial-gradient(circle at 30% 20%, #bfdbfe, #1d4ed8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: white;
      box-shadow: 0 10px 24px rgba(37,99,235,0.5);
    }

    .logo-text-main {
      font-weight: 700;
      font-size: 19px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .logo-text-sub {
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .header-contact {
      text-align: right;
      font-size: 12px;
    }

    .header-contact strong {
      color: var(--primary);
      font-weight: 700;
    }

    .header-contact .mini {
      font-size: 11px;
      color: var(--text-muted);
    }

    nav {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto 8px;
      padding: 0 14px 8px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 13px;
    }

    nav a {
      padding: 6px 12px;
      border-radius: 999px;
      color: var(--text-muted);
      transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
    }

    nav a:hover,
    nav a.active {
      background: linear-gradient(120deg, #dbeafe, #fee2d5);
      color: var(--primary);
      box-shadow: 0 10px 24px rgba(148,163,184,0.4);
    }

    /* MAIN */

    main {
      max-width: 1120px;
      margin: 0 auto;
      padding: 22px 14px 40px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    /* HERO */

    .hero {
      background: radial-gradient(circle at top left, #ffffff, #e5e7eb);
      border-radius: 32px;
      box-shadow: var(--shadow-soft);
      padding: 20px 20px 20px;
      display: grid;
      grid-template-columns: minmax(0,1.35fr) minmax(0,1.1fr);
      gap: 22px;
      border: 1px solid #d0d7e2;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: -40px -40px auto auto;
      background:
        radial-gradient(circle at top right, rgba(37,99,235,0.3), transparent 60%),
        radial-gradient(circle at bottom left, rgba(249,115,22,0.18), transparent 55%);
      pointer-events: none;
    }

    .hero-left {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .hero-tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 11px;
    }

    .hero-tag {
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.9);
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(148,163,184,0.4);
      box-shadow: 0 8px 20px rgba(148,163,184,0.4);
    }

    .hero-tag--orange {
      color: var(--accent);
      border-color: rgba(248,113,22,0.4);
    }

    .hero-tag span {
      font-size: 14px;
    }

    .hero-title {
      font-size: 26px;
      line-height: 1.2;
      font-weight: 750;
      max-width: 460px;
    }

    .hero-title span {
      background: linear-gradient(120deg, #1d4ed8, #f97316);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-sub {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 440px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 18px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #1d4ed8, #2563eb);
      color: #f9fafb;
      box-shadow: 0 14px 34px rgba(37,99,235,0.6);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 46px rgba(37,99,235,0.7);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.9);
      border: 1px solid var(--border-soft);
      color: var(--text-main);
      box-shadow: 0 10px 26px rgba(148,163,184,0.25);
    }

    .btn-secondary:hover {
      background: #f9fafb;
    }

    .hero-note {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* mini profil + stats */

    .hero-profile-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 6px;
    }

    .hero-profile {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 8px;
      align-items: center;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.95);
      border: 1px solid #d0d7e2;
      box-shadow: 0 10px 26px rgba(15,23,42,0.12);
      font-size: 12px;
    }

    .hero-profile-avatar {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, #fed7aa, #f97316);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #111827;
      font-weight: 700;
      font-size: 13px;
      box-shadow: 0 10px 26px rgba(248,113,22,0.5);
    }

    .hero-profile-name {
      font-weight: 600;
      font-size: 12px;
    }

    .hero-profile-role {
      font-size: 11px;
      color: var(--text-muted);
    }

    .hero-stat-pill {
      border-radius: 999px;
      padding: 6px 10px;
      background: linear-gradient(120deg, #dbeafe, #ffedd5);
      font-size: 11px;
      color: #1f2933;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 10px 26px rgba(148,163,184,0.45);
    }

    .hero-stat-pill span {
      font-size: 13px;
    }

    /* hero hizmet kartları */

    .hero-services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
      gap: 10px;
      margin-top: 4px;
    }

    .hero-service-card {
      border-radius: 20px;
      background: radial-gradient(circle at top left, #ffffff, #e5e7eb);
      padding: 12px 12px 11px;
      display: grid;
      grid-template-columns: 42px 1fr;
      column-gap: 10px;
      align-items: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 18px 38px rgba(15,23,42,0.18);
      border: 1px solid rgba(209,213,219,0.9);
    }

    .hero-service-card::after {
      content: "";
      position: absolute;
      right: -16px;
      top: -16px;
      width: 60px;
      height: 60px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(249,115,22,0.24), transparent 60%);
      opacity: 0.9;
    }

    .hero-service-icon {
      width: 42px;
      height: 42px;
      border-radius: 18px;
      background: linear-gradient(145deg, #1d4ed8, #f97316);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: #f9fafb;
      position: relative;
      z-index: 1;
      box-shadow: 0 18px 36px rgba(15,23,42,0.4);
    }

    .hero-service-title {
      font-size: 14px;
      font-weight: 600;
      position: relative;
      z-index: 1;
    }

    .hero-service-text {
      font-size: 12px;
      color: var(--text-muted);
      position: relative;
      z-index: 1;
    }

    /* hero sağ taraf – before/after preview */

    .hero-right {
      position: relative;
      z-index: 1;
    }

    .hero-visual {
      background: radial-gradient(circle at top left, #eff6ff, #e0f2fe);
      border-radius: 22px;
      padding: 12px;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 10px;
      border: 1px solid #bfdbfe;
      position: relative;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(37,99,235,0.4);
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      left: -40px;
      bottom: -40px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(249,115,22,0.3), transparent 65%);
    }

    .hero-visual-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      position: relative;
      z-index: 1;
    }

    .hero-visual-badge {
      font-size: 11px;
      padding: 5px 10px;
      border-radius: 999px;
      background: #ffffff;
      color: var(--primary);
      border: 1px solid #bfdbfe;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      box-shadow: 0 10px 24px rgba(37,99,235,0.4);
    }

    .hero-visual-badge span {
      font-size: 13px;
    }

    .hero-visual-sub {
      font-size: 12px;
      color: var(--text-muted);
      position: relative;
      z-index: 1;
    }

    .hero-ba-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 8px;
      flex: 1;
      position: relative;
      z-index: 1;
    }

    .hero-ba-pane {
      background: #ffffff;
      border-radius: 14px;
      padding: 8px;
      font-size: 12px;
      border: 1px solid #e5e7eb;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .hero-ba-label {
      font-size: 11px;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .hero-ba-main {
      font-size: 12px;
      color: var(--text-main);
    }

    .hero-ba-tag {
      font-size: 11px;
      color: var(--primary);
    }

    .hero-visual-footer {
      font-size: 11px;
      color: var(--text-muted);
      position: relative;
      z-index: 1;
    }

    /* GENEL SECTION STİLİ */

    .section {
      background: var(--bg-surface);
      border-radius: var(--radius-lg);
      padding: 18px 18px 18px;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .section::before {
      content: "";
      position: absolute;
      inset: auto -60px -60px auto;
      background: radial-gradient(circle, rgba(37,99,235,0.14), transparent 60%);
      pointer-events: none;
    }

    .section-inner {
      position: relative;
      z-index: 1;
    }

    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 10px;
    }

    .section-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--primary);
      padding: 4px 10px;
      border-radius: 999px;
      background: var(--primary-soft);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .section-label span {
      font-size: 14px;
    }

    .section-header h2 {
      font-size: 18px;
      font-weight: 700;
    }

    .section-sub {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    /* GRİDLER & KARTLAR */

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
      gap: 12px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: minmax(0,1fr) minmax(0,1fr);
      gap: 16px;
    }

    .card {
      border-radius: var(--radius-md);
      background: var(--bg-muted);
      padding: 12px;
      border: 1px solid #dde1e7;
      position: relative;
      overflow: hidden;
    }

    .card::after {
      content: "";
      position: absolute;
      inset: auto -40px -40px auto;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(249,115,22,0.16), transparent 60%);
      opacity: 0.9;
    }

    .card-inner {
      position: relative;
      z-index: 1;
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }

    .card-icon {
      width: 36px;
      height: 36px;
      border-radius: 16px;
      background: linear-gradient(140deg, #1d4ed8, #f97316);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #f9fafb;
      box-shadow: 0 16px 34px rgba(15,23,42,0.45);
    }

    .card-title {
      font-size: 14px;
      font-weight: 600;
    }

    .card-text {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* HİZMETLER ÖZEL: Apple-UI havalı kart */

    .service-card-main {
      background: radial-gradient(circle at top left, #ffffff, #eef2ff);
    }

    /* ===== GÖRSEL 5 ADIMLIK SÜREÇ ===== */

	.process-flow-section {
	  background: linear-gradient(180deg, #f3f7fb 0%, #e5edf6 100%);
	  border-radius: 24px;
	  padding: 28px 28px 24px;
	  margin: 32px auto;
	}

	.process-flow-header {
	  text-align: center;
	  margin-bottom: 16px;
	}

	.process-flow-header h2 {
	  font-size: 22px;
	  font-weight: 800;
	}

	/* yatay scroll alanı */
	.process-flow-scroll {
	  overflow-x: auto;
	  padding-bottom: 6px;
	}

	.process-flow-scroll::-webkit-scrollbar {
	  height: 6px;
	}
	.process-flow-scroll::-webkit-scrollbar-track {
	  background: transparent;
	}
	.process-flow-scroll::-webkit-scrollbar-thumb {
	  background: #cbd5e1;
	  border-radius: 999px;
	}

	/* yatay akış */
	.process-flow-track {
	  display: inline-flex;
	  gap: 20px;
	  padding: 8px 4px;
	  position: relative;
	}

	/* ortadaki hat */
	.process-flow-track::before {
	  content: "";
	  position: absolute;
	  left: 40px;
	  right: 40px;
	  top: 40px;
	  height: 4px;
	  border-radius: 999px;
	  background: linear-gradient(
		90deg,
		#dbeafe 0%,
		#60a5fa 25%,
		#1d4ed8 50%,
		#f97316 75%,
		#fed7aa 100%
	  );
	  opacity: 0.9;
	  pointer-events: none;
	}

	/* her adım */
	.process-step {
	  position: relative;
	  flex: 0 0 150px;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  gap: 8px;
	  padding-top: 4px;
	}

	/* ikon dairesi */
	.process-step-circle {
	  width: 56px;
	  height: 56px;
	  border-radius: 999px;
	  background: radial-gradient(circle at 30% 20%, #bfdbfe, #1d4ed8);
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  box-shadow: 0 12px 26px rgba(15,23,42,0.45);
	  border: 3px solid #f8fafc;
	  z-index: 1;
	}

	.process-step-icon {
	  font-size: 26px;
	}

	/* SÜREÇ ETİKETLERİ RENK GEÇİŞİ */
	.process-step-label {
	  margin-top: 4px;
	  padding: 7px 12px;
	  border-radius: 999px;
	  font-size: 13px;
	  font-weight: 700;
	  text-align: center;
	  min-width: 130px;
	  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	  border: 1px solid rgba(0,0,0,0.06);
	}

	/* 1. adım – İletişim */
	.process-step:nth-child(1) .process-step-label {
	  background: #e0f2fe;
	  color: #075985;
	}

	/* 2. adım – Keşif */
	.process-step:nth-child(2) .process-step-label {
	  background: #ffedd5;
	  color: #9a3412;
	}

	/* 3. adım – Proje */
	.process-step:nth-child(3) .process-step-label {
	  background: #fef9c3;
	  color: #854d0e;
	}

	/* 4. adım – Uygulama */
	.process-step:nth-child(4) .process-step-label {
	  background: #dcfce7;
	  color: #166534;
	}

	/* 5. adım – Teslim */
	.process-step:nth-child(5) .process-step-label {
	  background: #f3e8ff;
	  color: #6b21a8;
	}


	/* 1. adım CTA alanı */
	.process-step--with-cta {
	  flex: 0 0 190px;
	}

	.process-step-cta {
	  margin-top: 8px;
	  display: flex;
	  flex-wrap: wrap;
	  gap: 6px;
	  justify-content: center;
	}

	.step-cta-btn {
	  font-size: 11px;
	  padding: 6px 10px;
	  border-radius: 999px;
	  border: 1px solid #d0e2ff;
	  background: #ffffff;
	  cursor: pointer;
	  text-decoration: none;
	  color: #1d4ed8;
	  font-weight: 600;
	}

	.step-cta-btn--primary {
	  background: #1d4ed8;
	  color: #f9fafb;
	  border-color: #1d4ed8;
	}

	.step-cta-link {
	  font-size: 11px;
	  text-decoration: underline;
	  color: #0f172a;
	  cursor: pointer;
	}

	/* küçük ekranlarda biraz kompakt */
	@media (max-width: 640px) {
	  .process-flow-section {
		padding-inline: 16px;
	  }

	  .process-step {
		flex: 0 0 140px;
	  }

	  .process-step--with-cta {
		flex: 0 0 200px;
	  }

	  .process-step-circle {
		width: 52px;
		height: 52px;
	  }

	  .process-step-icon {
		font-size: 24px;
	  }
	}



    /* BEFORE / AFTER – daha görselli kartlar */

    .ba-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
      gap: 14px;
      margin-top: 10px;
    }

    .ba-pane {
      position: relative;
      border-radius: 22px;
      padding: 14px 14px 12px;
      color: #0f172a;
      box-shadow: 0 16px 40px rgba(15,23,42,0.16);
      overflow: hidden;
    }

    .ba-pane::before {
      content: "";
      position: absolute;
      inset: -40px -40px auto auto;
      opacity: 0.7;
      pointer-events: none;
    }

    .ba-pane--before {
      background: radial-gradient(circle at top left, #e5e7eb, #dbeafe);
      border: 1px solid #c7d2fe;
    }

    .ba-pane--before::before {
      background: radial-gradient(circle, rgba(37,99,235,0.3), transparent 60%);
    }

    .ba-pane--after {
      background: radial-gradient(circle at top left, #fee2e2, #ffedd5);
      border: 1px solid #fed7aa;
    }

    .ba-pane--after::before {
      background: radial-gradient(circle, rgba(249,115,22,0.35), transparent 60%);
    }

    .ba-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(148,163,184,0.4);
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .ba-pill-icon {
      font-size: 16px;
    }

    .ba-main {
      font-size: 13px;
      line-height: 1.6;
      margin-bottom: 6px;
    }

    .ba-badge {
      display: inline-block;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 11px;
      background: rgba(255,255,255,0.9);
      border: 1px dashed rgba(148,163,184,0.7);
    }

    .ba-images {
      margin-top: 10px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 8px;
    }

    .ba-images img {
      width: 100%;
      border-radius: 14px;
      object-fit: cover;
      height: 130px;
      box-shadow: 0 10px 24px rgba(15,23,42,0.35);
      border: 1px solid rgba(255,255,255,0.8);
    }

    /* FORMLAR */

    form label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 3px;
    }

    form input,
    form select,
    form textarea {
      width: 100%;
      padding: 8px 9px;
      border-radius: 12px;
      border: 1px solid #d1d5db;
      background: #ffffff;
      color: var(--text-main);
      font-size: 13px;
      margin-bottom: 10px;
      outline: none;
      transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    form input::placeholder,
    form textarea::placeholder {
      color: #9ca3af;
    }

    form input:focus,
    form select:focus,
    form textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(37,99,235,0.35);
      background: #eff6ff;
    }

    form textarea {
      resize: vertical;
      min-height: 80px;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
      gap: 10px;
    }

    .checkbox-group {
      margin-top: 4px;
      margin-bottom: 10px;
      padding: 9px 10px;
      border-radius: 14px;
      background: #f9fafb;
      border: 1px solid #e5e7eb;
    }

    .checkbox-group-title {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .checkbox-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 2px;
    }

    .checkbox-item input[type="checkbox"] {
      width: 14px;
      height: 14px;
      accent-color: var(--primary);
    }

    /* FOOTER */

    footer {
      max-width: 1120px;
      margin: 0 auto;
      padding: 10px 14px 20px;
      font-size: 11px;
      color: var(--text-muted);
      text-align: center;
    }

    footer a {
      color: var(--primary);
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    /* RESPONSIVE */

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: minmax(0,1fr);
      }
      .hero-visual {
        min-height: 220px;
      }
    }

    @media (max-width: 720px) {
      .process-flow {
        grid-template-columns: minmax(0,1fr);
      }
      .process-flow-right {
        padding-left: 10px;
      }
      .process-line {
        left: 24px;
      }
    }

    @media (max-width: 640px) {
      .header-inner {
        padding-inline: 10px;
      }
      nav {
        padding-inline: 10px;
      }
      main {
        padding-inline: 10px;
      }
      .hero {
        padding-inline: 14px;
      }
      .section {
        padding-inline: 14px;
      }
      .hero-profile {
        width: 100%;
      }
      .grid-2 {
        grid-template-columns: minmax(0,1fr);
      }
    }
	
	/* ===== MINI KEŞİF FORMU BUTTON ===== */
	.step-cta-mini {
	  display: inline-flex;
	  align-items: center;
	  gap: 6px;
	  padding: 6px 10px;
	  border-radius: 999px;
	  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 40%, #bfdbfe 100%);
	  color: #1d4ed8;
	  font-size: 11.5px;
	  font-weight: 700;
	  text-decoration: none;
	  border: 1px solid #93c5fd;
	  box-shadow: 0 2px 6px rgba(147, 197, 253, 0.45);
	  transition: 0.2s ease;
	  margin-top: 2px;
	}

	.step-cta-mini:hover {
	  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
	  transform: translateY(-2px);
	  box-shadow: 0 4px 10px rgba(147, 197, 253, 0.55);
	}

	.step-cta-mini-icon {
	  font-size: 14px;
	  margin-right: 2px;
	}
	
	/* ===== WHATSAPP - EVRENSEL YEŞİL BUTON ===== */

	.step-cta-btn-whatsapp {
	  display: inline-flex;
	  align-items: center;
	  gap: 6px;
	  padding: 6px 12px;
	  border-radius: 999px;
	  background: #25D366; /* WhatsApp resmi yeşil */
	  color: #ffffff;
	  font-size: 12px;
	  font-weight: 700;
	  text-decoration: none;
	  border: 1px solid #1cb556;
	  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
	  transition: 0.2s ease;
	}

	.step-cta-btn-whatsapp:hover {
	  background: #1cb556;
	  transform: translateY(-2px);
	  box-shadow: 0 4px 12px rgba(28, 181, 86, 0.45);
	}

	.wa-icon {
	  font-size: 15px;
	  line-height: 1;
	}
	


  </style>
