/* ============================================================
   Palmiye Halı Yıkama — Ana Stil Dosyası
   Tema: Yeşil (palmiye) | Mobil uyumlu | Hız odaklı
   ============================================================ */

:root {
  /* Mavi tema (değişken adları "green-*" kalsa da değerler mavidir) */
  --green-900: #0a2a4f;
  --green-800: #0f4c8a;
  --green-700: #1565c0;
  --green-600: #2a82d6;
  --green-100: #e4effb;
  --green-50:  #f1f7fe;
  --gold:      #f0a92e;
  --gold-dark: #d4901a;
  --ink:       #14253a;
  --gray-700:  #44505e;
  --gray-500:  #6c7785;
  --gray-200:  #e2e7ee;
  --gray-100:  #f3f5f9;
  --white:     #ffffff;
  --wa:        #25d366;
  --radius:    14px;
  --radius-sm: 9px;
  --shadow:    0 10px 30px rgba(10, 42, 79, 0.12);
  --shadow-sm: 0 4px 14px rgba(10, 42, 79, 0.10);
  --maxw:      1180px;
  --font:      "Manrope", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

a { color: var(--green-800); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.25; color: var(--ink); font-weight: 800; }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; color: var(--gray-700); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 64px 0; }
.section--tint { background: var(--green-50); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section__head .eyebrow {
  display: inline-block;
  color: var(--green-700);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 10px;
}
.section__head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none !important;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-800); }
.btn--gold { background: var(--gold); color: #3a2a00; }
.btn--gold:hover { background: var(--gold-dark); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #1ebe5b; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.15); }
.btn--lg { padding: 16px 30px; font-size: 1.08rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--green-900);
  color: #cfe2f7;
  font-size: .88rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar__info { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__info span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gray-200);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 50px; width: auto; }
.brand__text strong { display: block; font-size: 1.18rem; color: var(--green-800); line-height: 1.1; }
.brand__text span { font-size: .78rem; color: var(--gray-500); letter-spacing: .04em; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--ink); font-weight: 600; font-size: .98rem; }
.nav a:hover { color: var(--green-700); text-decoration: none; }

.header__actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  background: var(--green-700);
  border: none;
  width: 48px; height: 44px;
  border-radius: 10px;
  cursor: pointer;
  padding: 0 12px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  margin: 4px 0;
  transition: .25s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,42,79,.92) 0%, rgba(15,76,138,.72) 55%, rgba(42,130,214,.55) 100%);
  z-index: -1;
}
.hero__inner { max-width: 720px; padding: 70px 0; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  padding: 7px 16px; border-radius: 50px;
  font-size: .85rem; font-weight: 600; margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 span { color: var(--gold); }
.hero p.lead { font-size: 1.2rem; color: #eaf3fc; margin-bottom: 28px; max-width: 600px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__trust { display: flex; gap: 26px; flex-wrap: wrap; }
.hero__trust div strong { display: block; font-size: 1.7rem; color: var(--gold); }
.hero__trust div span { font-size: .9rem; color: #d6e8fa; }

/* ---------- Services grid ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green-100); }
.card .ico {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--green-100); color: var(--green-700);
  border-radius: 14px; margin-bottom: 16px; font-size: 1.6rem;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; margin-bottom: 14px; }
.card a.more { font-weight: 700; color: var(--green-700); font-size: .92rem; }

/* ---------- Feature / Why us ---------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .ico {
  flex: 0 0 auto;
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--green-700); color: #fff;
  display: grid; place-items: center; font-size: 1.4rem;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 4px; }
.feature p { font-size: .95rem; margin: 0; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img, .split video { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.split ul { list-style: none; margin: 18px 0; }
.split ul li { padding: 8px 0 8px 32px; position: relative; color: var(--gray-700); }
.split ul li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  color: #fff; background: var(--green-600);
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; text-align: center; }
.step .num {
  width: 60px; height: 60px; margin: 0 auto 14px;
  background: var(--green-700); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 1.5rem; font-weight: 800;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { font-size: .93rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: var(--radius-sm); transition: transform .3s ease;
}
.gallery a { overflow: hidden; border-radius: var(--radius-sm); display: block; }
.gallery a:hover img { transform: scale(1.07); }

/* ---------- Reviews ---------- */
.review {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.review .stars { color: var(--gold); font-size: 1.05rem; margin-bottom: 10px; letter-spacing: 2px; }
.review p { font-style: italic; color: var(--gray-700); }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.review .who .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-700); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}
.review .who strong { display: block; font-size: .95rem; }
.review .who span { font-size: .82rem; color: var(--gray-500); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green-700); font-size: 1.5rem; font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { background: var(--green-50); }
.faq .faq__body { padding: 0 22px 20px; }
.faq .faq__body p { margin: 0; font-size: .97rem; }

/* ---------- Regions ---------- */
.regions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.regions a {
  background: #fff; border: 1px solid var(--gray-200);
  padding: 9px 18px; border-radius: 50px; font-weight: 600;
  font-size: .92rem; color: var(--ink); transition: all .18s;
}
.regions a:hover { background: var(--green-700); color: #fff; border-color: var(--green-700); text-decoration: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--green-800), var(--green-600));
  color: #fff; text-align: center; border-radius: var(--radius);
  padding: 48px 28px;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #eaf3fc; font-size: 1.1rem; max-width: 580px; margin: 0 auto 24px; }
.cta-band .hero__cta { justify-content: center; margin-bottom: 0; }

/* ---------- Article (district / service pages) ---------- */
.article { max-width: 820px; margin: 0 auto; }
.article h2 { margin: 36px 0 14px; }
.article h3 { margin: 26px 0 10px; color: var(--green-800); }
.article p { font-size: 1.02rem; }
.article ul, .article ol { margin: 0 0 18px 22px; color: var(--gray-700); }
.article ul li, .article ol li { margin-bottom: 7px; }
.article blockquote {
  border-left: 4px solid var(--green-600);
  background: var(--green-50);
  padding: 16px 20px; margin: 22px 0; border-radius: 0 8px 8px 0;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: .88rem; color: var(--gray-500); padding: 16px 0; }
.breadcrumb a { color: var(--green-700); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--green-900), var(--green-700));
  color: #fff; padding: 56px 0;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #eaf3fc; max-width: 640px; font-size: 1.08rem; margin: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: #b9cce0; padding: 56px 0 0; font-size: .94rem; }
.footer a { color: #d9e6f7; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer h4 { color: #fff; margin-bottom: 16px; font-size: 1.05rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 9px; }
.footer .brand__text strong { color: #fff; }
.footer .brand__text span { color: #93b1d0; }
.footer__bottom {
  margin-top: 44px; border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0; text-align: center; font-size: .85rem; color: #8fa6c4;
}

/* ---------- Floating mobile actions ---------- */
.floating { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .nav, .header__actions .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 16px 20px; gap: 4px;
    box-shadow: var(--shadow); border-top: 1px solid var(--gray-200);
  }
  .nav.open a { padding: 11px 0; width: 100%; border-bottom: 1px solid var(--gray-100); }
  .header .container { position: relative; }
  .topbar__info { gap: 12px; font-size: .8rem; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery img { height: 150px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { min-height: auto; }
  .hero__inner { padding: 50px 0; }
  .section { padding: 48px 0; }

  /* Floating call + whatsapp on mobile */
  .floating {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 60; box-shadow: 0 -4px 16px rgba(0,0,0,.15);
  }
  .floating a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; color: #fff; font-weight: 700; font-size: 1rem;
  }
  .floating a:hover { text-decoration: none; }
  .floating .f-call { background: var(--green-700); }
  .floating .f-wa { background: var(--wa); }
  body { padding-bottom: 54px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   SVG ikonlar & tasarım iyileştirmeleri (v2 — mavi tema, çok sayfa)
   ============================================================ */
.svgi { width: 1.1em; height: 1.1em; display: inline-block; vertical-align: -0.18em; flex: 0 0 auto; }

/* Hizmet / özellik ikon kutuları */
/* Tüm ikon kutuları: mavi kutu + BEYAZ ikon (renk bütünlüğü) */
.card .ico .svgi { width: 30px; height: 30px; }
.card .ico {
  background: var(--green-700);
  color: #fff;
  border: none;
}
.card:hover .ico { background: var(--green-800); color: #fff; }
.feature .ico .svgi { width: 26px; height: 26px; }
.feature .ico { background: var(--green-700); color: #fff; }
.step .ico-wrap {
  width: 64px; height: 64px; margin: 0 auto 14px;
  display: grid; place-items: center;
  background: var(--green-700); color: #fff;
  border-radius: 18px; position: relative;
}
.step .ico-wrap .svgi { width: 30px; height: 30px; }
.step .ico-wrap .num {
  position: absolute; top: -8px; right: -8px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); color: #3a2a00; font-weight: 800; font-size: .85rem;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}

/* Butonlardaki ikonlar */
.btn .svgi { width: 19px; height: 19px; }
.btn--sm { padding: 10px 18px; font-size: .92rem; }

/* Menü aktif + alt çizgi animasyonu */
.nav a { position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px;
  height: 2px; background: var(--green-700); transition: right .25s ease;
}
.nav a:hover::after, .nav a.is-active::after { right: 0; }
.nav a.is-active { color: var(--green-700); }

/* Topbar ikon hizalama */
.topbar a, .topbar__info span { display: inline-flex; align-items: center; gap: 6px; }
.topbar .svgi { width: 15px; height: 15px; opacity: .9; }

/* Footer ek bileşenler */
.footer__cta { display: flex; gap: 10px; margin-top: 16px; }
.footer__contact li { display: flex; gap: 9px; align-items: flex-start; }
.footer__contact .svgi { width: 17px; height: 17px; margin-top: 3px; opacity: .85; }

/* Breadcrumb ayraç */
.breadcrumb .sep { margin: 0 7px; color: var(--gray-500); }
.breadcrumb span:last-child { color: var(--ink); font-weight: 600; }

/* WhatsApp her zaman yeşil (tema mavi olsa da) */
.btn--wa, .btn--wa:hover, .f-wa { background: var(--wa); color: #fff; border-color: transparent; }
.btn--wa:hover { background: #1ebe5b; }

/* Hero metin gradyanı + cilalar */
.hero h1 span { background: linear-gradient(90deg, var(--gold), #ffd479); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section__head .eyebrow {
  background: var(--green-100); padding: 5px 14px; border-radius: 50px;
}

/* Bölüm başına ince üst çizgi yok; kartlara hafif gradient zemin */
.card { background: linear-gradient(180deg, #fff, #fcfdff); }

/* Listeleme sayfası: hizmet/bölge kartı ızgarası zaten .grid kullanır */

/* Galeri sayfası video bloğu */
.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 28px; }
.media-grid video { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); background: #000; }
@media (max-width: 760px){ .media-grid { grid-template-columns: 1fr; } }

/* Bölge linkleri (çip) sayfası başlık grupları */
.region-cols { columns: 3; column-gap: 28px; }
.region-cols a {
  display: block; padding: 9px 0; border-bottom: 1px dashed var(--gray-200);
  color: var(--ink); font-weight: 600; break-inside: avoid;
}
.region-cols a:hover { color: var(--green-700); padding-left: 6px; transition: .15s; text-decoration: none; }
@media (max-width: 900px){ .region-cols { columns: 2; } }
@media (max-width: 560px){ .region-cols { columns: 1; } }

/* Mini stat şeridi */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; text-align: center; }
.stats .stat strong { display: block; font-size: 2rem; color: var(--green-700); font-weight: 800; }
.stats .stat span { color: var(--gray-500); font-size: .92rem; }
@media (max-width: 620px){ .stats { grid-template-columns: 1fr 1fr; } }

/* Hamburger açıkken X */
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* İletişim sayfası temiz iletişim listesi (çipli ikon + metin) */
.contact-list { list-style: none; margin: 22px 0; }
.contact-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--gray-200);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .ci {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-700); color: #fff;
  display: grid; place-items: center;
}
.contact-list .ci .svgi { width: 21px; height: 21px; }
.contact-list strong { display: block; font-size: .95rem; color: var(--ink); }
.contact-list p { margin: 0; color: var(--gray-700); }
.contact-list a { color: var(--green-700); font-weight: 600; }

/* Logo: header'da olduğu gibi; footer'da koyu zeminde görünürlük için beyaz çip */
.brand img { height: 52px; width: auto; }
.brand--footer img {
  height: 40px; width: auto;
  background: #fff; padding: 8px 12px; border-radius: 10px;
  box-sizing: content-box;
}

/* ============================================================
   v3 — Editöryel rafine tasarım
   ============================================================ */
h1, h2, h3, h4 { letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.35rem); }
.section { padding: 84px 0; }
.section__head { margin-bottom: 52px; }
.section__head h2 { margin-bottom: 14px; }
.section__head .eyebrow {
  background: var(--green-100); color: var(--green-700);
  padding: 6px 16px; border-radius: 50px; font-size: .78rem;
}

/* Hero: daha sinematik, alt-ağırlıklı degrade + ince detay */
.hero { min-height: 88vh; }
.hero__overlay {
  background:
    radial-gradient(1200px 500px at 75% 10%, rgba(42,130,214,.25), transparent 60%),
    linear-gradient(180deg, rgba(10,42,79,.65) 0%, rgba(10,42,79,.78) 60%, rgba(8,30,58,.92) 100%);
}
.hero .badge { background: rgba(255,255,255,.12); backdrop-filter: blur(4px); }
.hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); letter-spacing: -.03em; line-height: 1.12; }
.hero__trust { gap: 34px; margin-top: 6px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); }

/* Kartlar: daha yumuşak, modern */
.card { border-radius: 18px; padding: 30px 26px; border-color: #eef1f6; }
.card:hover { box-shadow: 0 18px 40px rgba(10,42,79,.13); }
.card .ico { border-radius: 14px; }
.card h3 { font-size: 1.18rem; }

/* Bölüm görsel+metin (split) rafinesi */
.split { gap: 56px; }
.split img, .split video { border-radius: 20px; box-shadow: 0 20px 50px rgba(10,42,79,.16); }
.split .eyebrow {
  display: inline-block; background: var(--green-100); color: var(--green-700);
  padding: 6px 16px; border-radius: 50px; font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.split h2 { margin-bottom: 14px; }

/* Servis aracı / promosyon bandı */
.promo {
  position: relative; overflow: hidden; border-radius: 24px;
  background: linear-gradient(120deg, var(--green-900), var(--green-700));
  color: #fff; display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch;
  box-shadow: 0 24px 60px rgba(10,42,79,.22);
}
.promo__body { padding: 52px 48px; }
.promo .eyebrow {
  display: inline-block; background: rgba(255,255,255,.15); color: #fff;
  padding: 6px 16px; border-radius: 50px; font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
}
.promo h2 { color: #fff; margin-bottom: 14px; }
.promo p { color: #dceaf9; font-size: 1.08rem; }
.promo__media { position: relative; min-height: 320px; }
.promo__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,76,138,.55), transparent 35%); }
@media (max-width: 860px){
  .promo { grid-template-columns: 1fr; }
  .promo__media { min-height: 230px; order: -1; }
  .promo__body { padding: 36px 28px; }
}

/* Mini istatistik şeridi (anasayfa) */
.trust-strip { background: var(--green-50); border-block: 1px solid #e7eef7; }
.trust-strip .stats { padding: 30px 0; }

/* Adım dairesi rafinesi */
.step .num {
  box-shadow: 0 10px 24px rgba(21,101,192,.30);
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
}

/* Yorum kartı rafinesi */
.review { border-radius: 18px; }
.review p { font-size: 1rem; }

/* CTA bandı rafinesi */
.cta-band { border-radius: 24px; padding: 60px 32px; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }

@media (max-width: 760px){
  .section { padding: 56px 0; }
  .split { gap: 30px; }
}
