/* ============ RESET & BASE ============ */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px; /* mobil sabit buton için yer */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; color: #0d1b2a; }

:root {
  --blue-900: #0a4d8c;
  --blue-700: #115ba6;
  --blue-500: #1976d2;
  --blue-100: #e3f2fd;
  --blue-50: #f0f7ff;
  --orange: #ff6b1a;
  --orange-dark: #e85a0a;
  --wa: #25D366;
  --wa-dark: #1ebe57;
  --text: #1a1a1a;
  --muted: #5a6470;
  --bg-alt: #f7f9fc;
  --border: #e5eaf0;
  --shadow-sm: 0 1px 3px rgba(10,30,60,.06), 0 1px 2px rgba(10,30,60,.04);
  --shadow-md: 0 4px 12px rgba(10,30,60,.08), 0 2px 4px rgba(10,30,60,.04);
  --shadow-lg: 0 12px 32px rgba(10,30,60,.12);
}

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 70px 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: 36px;
  margin-bottom: 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.accent { color: var(--blue-500); }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--blue-900);
  color: #fff;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-phone {
  font-weight: 600;
  transition: color .15s;
}
.topbar-phone:hover { color: var(--orange); }

/* ============ HEADER ============ */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 130px;
  gap: 24px;
}
@media (max-width: 768px) {
  .header-inner { height: 84px; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-image img {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .logo-image img { height: 64px; }
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-size: 17px;
  color: var(--blue-900);
}
.logo-text small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  color: #2a3540;
  font-weight: 500;
  font-size: 15px;
  transition: color .15s;
  position: relative;
}
.nav a:hover { color: var(--blue-500); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 18px;
  height: 2px;
  background: var(--blue-900);
  transition: transform .2s;
}

/* ============ BUTONLAR ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 17px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--blue-700);
  color: #fff;
  box-shadow: 0 4px 12px rgba(17,91,166,.25);
}
.btn-primary:hover {
  background: var(--blue-900);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10,77,140,.35);
}

.btn-whatsapp {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37,211,102,.25);
}
.btn-whatsapp:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border: 2px solid var(--blue-100);
}
.btn-outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-500);
}

.btn-light {
  background: #fff;
  color: var(--blue-900);
}
.btn-light:hover { background: #f4f8ff; transform: translateY(-1px); }

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(ellipse at top right, rgba(255,107,26,.08), transparent 60%),
    linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25,118,210,.08), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
}
.hero-text { z-index: 2; }

.badge {
  display: inline-block;
  background: #fff;
  color: var(--blue-900);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--blue-100);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.badge-accent {
  color: var(--orange);
  font-weight: 800;
}

.price-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  color: var(--blue-900);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 15px;
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
}
.price-ribbon svg { color: var(--orange); flex-shrink: 0; }
.price-ribbon strong { color: var(--orange-dark); }

.reason-highlight {
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  border-color: var(--orange) !important;
  position: relative;
}
.reason-highlight::before {
  content: 'POPÜLER';
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.reason-highlight .reason-num { color: var(--orange-dark); }
.hero h1 {
  font-size: 46px;
  line-height: 1.1;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--blue-900);
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 560px;
}
.hero-list {
  margin-bottom: 28px;
}
.hero-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  color: #2a3540;
  font-size: 15px;
}
.hero-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px; height: 18px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* HERO VISUAL (foto + stats) */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  aspect-ratio: 4 / 3;
  background: var(--blue-100);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-900);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}
.dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34,197,94,.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(34,197,94,.2); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,.0); }
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 14px;
  box-shadow: var(--shadow-sm);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat strong {
  font-size: 22px;
  color: var(--blue-700);
  font-weight: 800;
}
.stat span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 2px;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-500);
}
.service-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--blue-100);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.service-card:hover .service-image img { transform: scale(1.06); }
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,77,140,.2));
  pointer-events: none;
}
.service-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-body h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--blue-900);
}
.service-body p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
  flex: 1;
}
.service-link {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  transition: color .15s;
  align-self: flex-start;
}
.service-link:hover { color: var(--orange-dark); }

/* ============ NEDEN BİZ ============ */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.reason {
  background: #fff;
  border-radius: 14px;
  padding: 30px 26px;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.reason:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.reason-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 14px;
  opacity: .9;
}
.reason h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--blue-900);
}
.reason p {
  color: var(--muted);
  font-size: 14px;
}

/* ============ HAKKIMIZDA ============ */
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text .section-eyebrow { margin-bottom: 10px; }
.about-text h2 {
  font-size: 34px;
  margin-bottom: 18px;
}
.about-text p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 14px;
}
.about-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.about-bullets > div {
  text-align: center;
}
.about-bullets strong {
  display: block;
  font-size: 24px;
  color: var(--blue-700);
  font-weight: 800;
}
.about-bullets span {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  aspect-ratio: 4 / 3;
  background: var(--blue-100);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-card {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color: #fff;
  border-radius: 16px;
  padding: 28px 26px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,107,26,.3), transparent 70%);
  pointer-events: none;
}
.about-card h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}
.about-card p {
  color: rgba(255,255,255,.85);
  margin-bottom: 22px;
  font-size: 15px;
  position: relative;
}
.about-card .btn { margin-bottom: 10px; position: relative; }
.about-card .btn-primary {
  background: var(--orange);
  box-shadow: 0 4px 14px rgba(255,107,26,.4);
}
.about-card .btn-primary:hover { background: var(--orange-dark); }

/* ============ SSS ============ */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--blue-500); }
.faq-item[open] {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16px;
  color: var(--blue-900);
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--orange);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 15px;
}

/* ============ CTA BAND ============ */
.cta-band {
  background:
    linear-gradient(135deg, rgba(10,77,140,.95), rgba(17,91,166,.95)),
    radial-gradient(ellipse at right, var(--orange), transparent);
  color: #fff;
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 6px;
}
.cta-band p { color: rgba(255,255,255,.9); font-size: 16px; }
.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: #0d1b2a;
  color: rgba(255,255,255,.75);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.logo-footer .logo-text strong { color: #fff; }
.logo-footer .logo-text small { color: rgba(255,255,255,.6); }
.footer-col p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
}
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

/* ============ CALL TOAST (masaüstü fallback) ============ */
.call-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: var(--blue-900);
  padding: 14px 18px;
  padding-right: 44px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(10,30,60,.18), 0 4px 8px rgba(10,30,60,.08);
  border-left: 4px solid var(--blue-700);
  min-width: 280px;
  max-width: 360px;
  z-index: 1000;
  opacity: 0;
  transform: translateX(20px) translateY(0);
  transition: opacity .25s ease, transform .25s ease;
}
.call-toast.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
.call-toast-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.call-toast-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.call-toast-text strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.call-toast-text span {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: .3px;
}
.call-toast-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.call-toast-close:hover {
  background: var(--bg-alt);
  color: var(--blue-900);
}
@media (max-width: 520px) {
  .call-toast {
    bottom: 80px;
    right: 12px;
    left: 12px;
    max-width: none;
  }
}

/* ============ MOBİL SABİT BUTON ============ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 16px rgba(0,0,0,.1);
  z-index: 100;
  border-top: 1px solid var(--border);
}
.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  transition: background .15s;
}
.mobile-call { background: var(--blue-700); }
.mobile-call:active { background: var(--blue-900); }
.mobile-wa { background: var(--wa); }
.mobile-wa:active { background: var(--wa-dark); }

/* ============ DROPDOWN MENÜ (Hizmetler) ============ */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '▾';
  font-size: 11px;
  margin-left: 5px;
  opacity: .7;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 60;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(2px);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px !important;
  border-radius: 8px;
  font-size: 14px !important;
  color: #2a3540;
  border-bottom: none !important;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--blue-50); color: var(--blue-700); }

/* ============ İÇ SAYFA HERO (hizmet sayfaları) ============ */
.page-hero {
  background:
    radial-gradient(ellipse at top right, rgba(255,107,26,.08), transparent 60%),
    linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
  padding: 36px 0 48px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumb a { color: var(--blue-700); font-weight: 500; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { opacity: .6; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.page-hero h1 {
  font-size: 38px;
  line-height: 1.15;
  color: var(--blue-900);
  margin-bottom: 16px;
}
.page-hero .lead {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 22px;
}
.page-hero-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  aspect-ratio: 4 / 3;
  background: var(--blue-100);
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ İÇERİK (prose) ============ */
.prose { max-width: 820px; }
.prose h2 {
  font-size: 27px;
  color: var(--blue-900);
  margin: 36px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 19px;
  color: var(--blue-700);
  margin: 22px 0 8px;
}
.prose p {
  color: #3a4450;
  font-size: 16px;
  margin-bottom: 14px;
}
.prose ul {
  margin: 0 0 18px;
  padding-left: 0;
}
.prose ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #3a4450;
  font-size: 16px;
}
.prose ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px; height: 18px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.prose strong { color: var(--blue-900); }

.content-split {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.sidebar-cta {
  position: sticky;
  top: 110px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color: #fff;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.sidebar-cta h3 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,.85); font-size: 14px; margin-bottom: 18px; }
.sidebar-cta .btn { margin-bottom: 10px; }
.sidebar-cta .btn-primary { background: var(--orange); box-shadow: 0 4px 14px rgba(255,107,26,.4); }
.sidebar-cta .btn-primary:hover { background: var(--orange-dark); }

/* ============ HİZMET BÖLGELERİ GRID ============ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin: 8px 0 18px;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-900);
}
.area-chip::before {
  content: '📍';
  font-size: 14px;
}

/* ============ İLGİLİ HİZMETLER ============ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-500);
}
.related-card h3 { font-size: 16px; color: var(--blue-900); margin-bottom: 6px; }
.related-card span { font-size: 13px; color: var(--orange); font-weight: 600; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner,
  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero h1 { font-size: 38px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .content-split { grid-template-columns: 1fr; gap: 28px; }
  .sidebar-cta { position: static; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar-item:not(.topbar-phone) { display: none; }
  .topbar-inner { justify-content: center; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 20px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav a:last-child { border-bottom: none; }

  .hamburger { display: flex; }
  .header-actions .btn-sm { padding: 8px 12px; font-size: 13px; }

  /* Mobilde dropdown'ı satır içi göster */
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 8px 14px;
    min-width: 0;
  }
  .nav-dropdown > a::after { display: none; }
  .dropdown-menu a { padding: 12px 0 !important; border-bottom: 1px solid var(--border) !important; }

  .section { padding: 50px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 28px; }
  .hero { padding: 40px 0 50px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 15px; }

  .mobile-cta { display: flex; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-band h2 { font-size: 24px; }
  .cta-buttons { width: 100%; flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .stat strong { font-size: 18px; }
  .about-bullets strong { font-size: 18px; }
}
