/* =========================================================
   KOMBİ SERVİS ÖZEL — Tasarım Sistemi
   Marka bağımsız özel teknik servis
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Renk paleti */
  --bg:            #FFFFFF;
  --bg-soft:       #F5F8FC;
  --bg-soft-2:     #EDF3FA;
  --primary:       #1E88E5;
  --primary-dark:  #1565C0;
  --primary-light: #42A5F5;
  --secondary:     #FF8C42;
  --secondary-dark:#F2741C;
  --text-dark:     #1A1A2E;
  --text-body:     #2D3436;
  --text-muted:    #636E72;
  --border:        #E3EAF2;
  --footer-bg:     #0F172A;
  --footer-soft:   #1E293B;
  --whatsapp:      #25D366;
  --whatsapp-dark: #1EBE5B;
  --phone:         #42A5F5;

  /* Tipografi */
  --font-head: 'Poppins', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Boşluk & yarıçap */
  --radius-btn: 8px;
  --radius-card: 12px;
  --radius-img: 16px;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 14px 34px rgba(30,136,229,0.16);
  --shadow-nav: 0 4px 24px rgba(15,23,42,0.08);

  --section-pad: 96px;
  --container: 1200px;
  --nav-h: 76px;
}

/* ---------- Reset & Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.5rem); font-weight: 600; }
p  { margin: 0 0 1.1rem; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad) 0; }
.section--soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--bg-soft-2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.lead { font-size: 1.12rem; color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 15px 30px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn i { font-size: 1.05em; }
.btn--primary { background: var(--secondary); color: #fff; box-shadow: 0 8px 22px rgba(255,140,66,.30); }
.btn--primary:hover { background: var(--secondary-dark); transform: scale(1.02) translateY(-2px); box-shadow: 0 12px 28px rgba(255,140,66,.38); }
.btn--blue { background: var(--primary); color: #fff; box-shadow: 0 8px 22px rgba(30,136,229,.28); }
.btn--blue:hover { background: var(--primary-dark); transform: scale(1.02) translateY(-2px); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; transform: scale(1.02); }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--outline-white:hover { background: #fff; color: var(--primary); }
.btn--wa { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.30); }
.btn--wa:hover { background: var(--whatsapp-dark); transform: scale(1.02) translateY(-2px); }
.btn--lg { padding: 18px 40px; font-size: 1.1rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-nav);
  border-bottom-color: var(--border);
}
.nav {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 12px;
  font-size: 1.35rem;
  box-shadow: 0 6px 16px rgba(30,136,229,.32);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: .02em;
  color: var(--text-dark);
}
.brand__badge {
  align-self: flex-start;
  margin-top: 3px;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: #fff;
  background: var(--secondary);
  padding: 2px 9px;
  border-radius: 5px;
}

.nav { gap: 20px; }
.nav__menu { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.nav__menu a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
  color: var(--text-body);
  padding: 10px 14px;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.nav__menu a:hover { color: var(--primary); background: var(--bg-soft); }
.nav__menu a.active { color: var(--primary); font-weight: 600; }
.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border: none; background: var(--bg-soft);
  border-radius: 10px;
  cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--text-dark);
  font-size: 1.3rem;
}

/* Mobil overlay menü */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mobile-menu__close {
  width: 46px; height: 46px; border: none; background: var(--bg-soft);
  border-radius: 10px; font-size: 1.4rem; cursor: pointer; color: var(--text-dark);
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.25rem;
  padding: 16px 8px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}
.mobile-menu nav a.active { color: var(--primary); }
.mobile-menu__actions { margin-top: auto; display: grid; gap: 12px; padding-top: 20px; }

/* ---------- Hero ---------- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 60px;
  background:
    radial-gradient(120% 80% at 90% 0%, #EAF3FD 0%, rgba(234,243,253,0) 55%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero__content h1 { margin-bottom: .35em; }
.hero__sub { font-size: 1.2rem; color: var(--text-muted); max-width: 34ch; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; color: var(--text-body); font-weight: 500; }
.hero__trust i { color: var(--primary); }

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius-img);
  background:
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 30px 60px rgba(21,101,192,.28);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.9);
}
.img-ph {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text-muted);
  background:
    repeating-linear-gradient(45deg, #EEF3F9 0 12px, #E7EEF6 12px 24px);
  border-radius: var(--radius-img);
}
.hero__visual .img-ph { position: absolute; inset: 0; background: transparent; color: rgba(255,255,255,.85); }
.img-ph i { font-size: 2.6rem; margin-bottom: 10px; display: block; }
.img-ph span { font-size: .9rem; font-weight: 500; letter-spacing: .04em; }
.hero__badge {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  color: #fff;
}
.hero__badge i { font-size: 1.6rem; color: #fff; }
.hero__badge strong { display: block; font-family: var(--font-head); }
.hero__badge small { opacity: .85; }

/* ---------- Page banner (iç sayfalar) ---------- */
.page-banner {
  min-height: 42vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 30px) 0 40px;
  background:
    radial-gradient(120% 100% at 85% 0%, #E7F1FC 0%, rgba(231,241,252,0) 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.page-banner__inner { max-width: 760px; }
.breadcrumb { font-size: .9rem; color: var(--text-muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-dark); font-weight: 600; }

/* ---------- Cards / Services ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card { display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(30,136,229,.25); }
.card__icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: 14px;
  font-size: 1.6rem;
  color: var(--primary);
  background: var(--bg-soft-2);
  margin-bottom: 20px;
  transition: all .3s ease;
}
.service-card:hover .card__icon { background: var(--primary); color: #fff; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 1rem; }
.card__link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 600; font-size: .95rem;
  color: var(--primary);
  padding-top: 16px;
}
.card__link i { transition: transform .25s ease; }
.card__link:hover i { transform: translateX(5px); }

/* Feature (neden biz) */
.feature { text-align: left; }
.feature .card__icon { color: var(--secondary); background: #FFF1E6; }
.feature h3 { font-size: 1.2rem; }

/* ---------- Bölgeler ---------- */
.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.region {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  border: 2px solid var(--primary-light);
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--primary-dark);
  background: #fff;
  transition: all .3s ease;
}
.region i { color: var(--primary); transition: color .3s ease; }
.region:hover { background: var(--secondary); border-color: var(--secondary); color: #fff; transform: translateY(-4px); box-shadow: 0 10px 22px rgba(255,140,66,.28); }
.region:hover i { color: #fff; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  text-align: center;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 100% 0%, rgba(255,255,255,.12), transparent 60%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto 28px; font-size: 1.12rem; }

/* ---------- Content (iç sayfa metin) ---------- */
.prose { max-width: 760px; }
.prose p { color: var(--text-body); }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.two-col { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; }

/* Adım adım süreç */
.steps { display: grid; gap: 18px; counter-reset: step; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 24px 26px;
  box-shadow: var(--shadow-soft);
}
.step__num {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--primary); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
}
.step h3 { margin-bottom: 4px; }
.step p { margin: 0; color: var(--text-muted); font-size: 1rem; }

/* Arıza / özellik listesi */
.check-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.check-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 20px;
}
.check-list i { color: var(--secondary); font-size: 1.15rem; margin-top: 3px; }
.check-list strong { display: block; font-family: var(--font-head); color: var(--text-dark); }
.check-list span { color: var(--text-muted); font-size: .95rem; }

/* ---------- Accordion (SSS) ---------- */
.accordion { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.acc-item { border: 1px solid var(--border); border-radius: var(--radius-card); background: #fff; overflow: hidden; transition: box-shadow .3s ease; }
.acc-item.open { box-shadow: var(--shadow-soft); border-color: rgba(30,136,229,.28); }
.acc-head {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--text-dark);
}
.acc-head:hover { color: var(--primary); }
.acc-icon { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; background: var(--bg-soft-2); color: var(--primary); transition: transform .3s ease, background .3s ease; }
.acc-item.open .acc-icon { transform: rotate(45deg); background: var(--primary); color: #fff; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-body p { padding: 0 24px 22px; margin: 0; color: var(--text-muted); }
.cat-tag { display:inline-block; font-family: var(--font-head); font-size:.72rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color: var(--secondary-dark); background:#FFF1E6; padding:3px 10px; border-radius:6px; margin-right:10px; }

/* ---------- Contact big blocks ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 780px; margin: 0 auto 40px; }
.contact-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 38px 28px; border-radius: var(--radius-card); border: 1px solid var(--border);
  background: #fff; box-shadow: var(--shadow-soft);
}
.contact-card__ic { width: 66px; height: 66px; border-radius: 18px; display: grid; place-items: center; font-size: 1.7rem; color: #fff; margin-bottom: 18px; }
.contact-card__ic.phone { background: var(--phone); }
.contact-card__ic.wa { background: var(--whatsapp); }
.contact-card small { color: var(--text-muted); }
.contact-card .num { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--text-dark); margin: 4px 0 18px; }

.map-embed {
  aspect-ratio: 16/7; width: 100%;
  border-radius: var(--radius-img); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Servis talebi büyük panel */
.request-panel {
  max-width: 640px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 48px 40px; box-shadow: var(--shadow-soft);
}
.request-panel .big-ic { width: 84px; height: 84px; border-radius: 24px; background: #FFF1E6; color: var(--secondary); display: grid; place-items: center; font-size: 2.2rem; margin: 0 auto 22px; }
.request-panel .actions { display: grid; gap: 14px; margin-top: 28px; }
.or-divider { display:flex; align-items:center; gap:14px; color: var(--text-muted); font-size:.85rem; margin: 6px 0; }
.or-divider::before, .or-divider::after { content:""; height:1px; flex:1; background: var(--border); }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: #CBD5E1; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; padding-bottom: 48px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { color: #94A3B8; font-size: .98rem; max-width: 34ch; margin-top: 16px; }
.footer-region { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; color: #E2E8F0; font-weight: 500; }
.footer-region i { color: var(--primary-light); }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a, .footer-col li { color: #94A3B8; font-size: .96rem; transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: center; gap: 12px; }
.footer-contact i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: var(--footer-soft); color: var(--primary-light); flex: 0 0 auto; }
.footer-contact a { color: #E2E8F0; font-family: var(--font-head); font-weight: 600; }
.footer-legal {
  border-top: 1px solid var(--footer-soft);
  padding: 26px 0;
  color: #7C8BA1; font-size: .86rem; line-height: 1.6;
}
.footer-legal p { margin: 0 auto; max-width: 900px; text-align: center; }
.footer-copy { border-top: 1px solid var(--footer-soft); padding: 20px 0; text-align: center; color: #64748B; font-size: .85rem; }

/* ---------- Mobil Fixed Bottom Bar ---------- */
.mobile-bar { display: none; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease-out, transform .6s ease-out; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px) {
  :root { --section-pad: 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 520px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  :root { --section-pad: 60px; }
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .hero { min-height: 70vh; }
  .hero__sub { max-width: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .page-banner { min-height: 36vh; }

  /* Mobil bottom bar aktif */
  .mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1100;
    height: 58px;
    box-shadow: 0 -4px 20px rgba(15,23,42,.14);
  }
  .mobile-bar a {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 9px;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 600; font-size: .98rem;
    height: 100%;
  }
  .mobile-bar a i { font-size: 1.15rem; }
  .mobile-bar .call { background: var(--phone); border-radius: 16px 0 0 0; border-right: 1px solid #fff; }
  .mobile-bar .wa { background: var(--whatsapp); border-radius: 0 16px 0 0; }
  /* alt bar için gövde boşluğu */
  body { padding-bottom: 58px; }
  .site-footer { margin-bottom: 0; }
}

@media (max-width: 576px) {
  .container { padding: 0 18px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .request-panel { padding: 36px 24px; }
  .brand__name { font-size: 1.05rem; }
}

/* =========================================================
   GÖRSEL ENTEGRASYONU (v2)
   ========================================================= */
/* Hero — şeffaf ekip görseli */
.hero__visual { padding: 0; }
.hero__photo {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  height: 98%;
  width: auto;
  max-width: 118%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.22));
}

/* Yuvarlatılmış fotoğraf */
.rounded-img {
  width: 100%;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-soft);
  display: block;
}

/* Şeffaf teknisyen görseli için yumuşak panel */
.tech-panel {
  position: relative;
  border-radius: var(--radius-img);
  background:
    radial-gradient(120% 90% at 50% 0%, #EAF3FD 0%, rgba(234,243,253,0) 60%),
    linear-gradient(160deg, var(--bg-soft-2) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 340px;
}
.tech-panel img { width: 82%; height: auto; display: block; filter: drop-shadow(0 12px 20px rgba(30,64,120,.16)); }

/* İç sayfa iki-kolon görsel dengesi */
.media-figure img { aspect-ratio: 4 / 3; object-fit: cover; }

/* Nav güvenli daralma: dar masaüstünde menüyü gizle */
@media (max-width: 1040px) and (min-width: 769px) {
  .nav__menu a { padding: 10px 10px; font-size: .9rem; }
  .nav__cta { padding: 12px 18px; }
}

@media (max-width: 992px) {
  .hero__photo { height: auto; width: 82%; max-width: 460px; position: static; transform: none; margin: 0 auto; }
  .hero__visual { align-items: flex-end; padding-top: 20px; }
  .tech-panel { min-height: 300px; }
}

/* =========================================================
   SEO SÜRÜMÜ — CTA görselli band, footer bölgeler
   ========================================================= */
/* Footer 4 kolon */
.footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.25fr; }

/* CTA bandı — teknisyen görseli + float animasyon */
.cta-band--media { text-align: left; padding-top: 64px; padding-bottom: 0; overflow: visible; }
.cta-band__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: end; }
.cta-band__text { padding-bottom: 64px; }
.cta-band--media h2 { color: #fff; }
.cta-band--media p { color: rgba(255,255,255,.92); margin: 0 0 26px; max-width: 46ch; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-band__figure { align-self: end; display: flex; justify-content: center; }
.cta-band__photo {
  width: 80%; max-width: 360px; height: auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.28));
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) { .cta-band__photo { animation: none; } }

@media (max-width: 768px) {
  .cta-band__grid { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .cta-band__text { padding-bottom: 8px; }
  .cta-band--media p { margin-left: auto; margin-right: auto; }
  .cta-band__btns { justify-content: center; }
  .cta-band__photo { width: 62%; max-width: 260px; }
}
