/* Mir Teknik Servis — Frontend Styles */
:root {
  --bg: #f3f6f8;
  --bg-soft: #e8eef2;
  --surface: #ffffff;
  --ink: #12202b;
  --muted: #5a6b78;
  --line: #d5dee6;
  --brand: #0b6e6e;
  --brand-dark: #085555;
  --brand-soft: #d7efef;
  --accent: #e07a2f;
  --accent-dark: #c4631c;
  --brand-rgb: 11, 110, 110;
  --accent-rgb: 224, 122, 47;
  --topbar-bg: #12202b;
  --footer-bg: #0d1a22;
  --hero-bg: #0d2a2a;
  --wa: #25d366;
  --danger: #c62828;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(18, 32, 43, 0.08);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Outfit", "DM Sans", sans-serif;
  --header-h: 78px;
  --topbar-h: 40px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(var(--brand-rgb), .12), transparent 60%),
    radial-gradient(900px 400px at 100% 0%, rgba(var(--accent-rgb), .10), transparent 55%),
    linear-gradient(180deg, #f7fafb 0%, var(--bg) 40%, #eef3f6 100%);
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
h1,h2,h3,h4 { font-family: var(--display); line-height: 1.2; margin: 0 0 .6em; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }
.container { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
.skip-link { position:absolute; left:-9999px; top:0; background:#000; color:#fff; padding:.5rem 1rem; z-index:9999; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border: 0; border-radius: 999px; padding: .75rem 1.25rem;
  font-weight: 600; font-family: var(--font); cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { filter: brightness(.95); color: #fff; }
.btn-outline { background: transparent; border: 1.5px solid var(--line); color: var(--ink); }
.btn-lg { padding: .95rem 1.5rem; font-size: 1.05rem; }

/* Topbar */
.topbar {
  background: var(--topbar-bg); color: #d7e0e7; font-size: .875rem; height: var(--topbar-h);
  display: flex; align-items: center;
  padding-inline: 1rem;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  width: min(1180px, 100%);
  margin-inline: auto;
  gap: 1rem;
  padding-inline: .25rem;
}
.topbar-left { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; }
.topbar .dot { opacity: .5; }
.topbar a { color: #fff; font-weight: 600; }
.topbar-right { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.topbar-wa { color: #8dffb5 !important; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(213,222,230,.8);
  height: var(--header-h);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; color: var(--ink); font-family: var(--display); font-weight: 800; font-size: 1.2rem; }
.brand:hover { color: var(--ink); }
.logo-long { height: 46px; width: auto; }
.logo-square { height: 42px; width: 42px; object-fit: contain; border-radius: 10px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), #149494);
  color: #fff; display: grid; place-items: center; font-weight: 800; letter-spacing: .5px;
  box-shadow: 0 8px 20px rgba(var(--brand-rgb), .25);
}
.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav > a, .nav-drop-btn {
  border: 0; background: transparent; color: var(--ink); font: 600 .95rem var(--font);
  padding: .55rem .8rem; border-radius: 10px; cursor: pointer;
}
.main-nav > a:hover, .nav-drop-btn:hover, .main-nav > a.active { background: var(--brand-soft); color: var(--brand-dark); }
.nav-dropdown { position: relative; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: .5rem; display: none; max-height: 360px; overflow: auto; z-index: 50;
}
.nav-dropdown:hover .nav-drop-menu, .nav-dropdown.open .nav-drop-menu { display: block; }
.nav-drop-menu a { display: block; padding: .55rem .7rem; border-radius: 8px; color: var(--ink); font-weight: 500; }
.nav-drop-menu a:hover { background: var(--bg-soft); color: var(--brand); }
.nav-empty { display:block; padding:.7rem; color: var(--muted); font-size:.9rem; }
.header-actions { display: flex; align-items: center; gap: .6rem; }
.btn-search {
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; display: grid; place-items: center; cursor: pointer; color: var(--ink);
}
.header-cta { display: none; }
.nav-toggle {
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--ink); display: block; border-radius: 2px; }

/* Search overlay — varsayılan gizli; sadece .open ile görünür */
.search-overlay {
  position: fixed; inset: 0; background: rgba(10,20,28,.55); z-index: 200;
  display: none; place-items: start center; padding-top: 12vh;
}
.search-overlay.open,
.search-overlay:not([hidden]) {
  display: grid;
}
.search-overlay[hidden] {
  display: none !important;
}
.search-box {
  width: min(680px, calc(100% - 2rem)); background: #fff; border-radius: 18px;
  padding: 1.25rem; position: relative; box-shadow: var(--shadow);
  animation: rise .3s ease;
}
.search-box form { display: flex; gap: .6rem; }
.search-box input {
  flex: 1; border: 1.5px solid var(--line); border-radius: 12px; padding: .9rem 1rem;
  font: 1rem var(--font); outline: none;
}
.search-box input:focus { border-color: var(--brand); }
.search-close {
  position: absolute; right: .6rem; top: .4rem; border: 0; background: transparent;
  font-size: 1.6rem; cursor: pointer; color: var(--muted);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* Hero / Slider */
.hero-slider {
  position: relative;
  height: clamp(520px, 86vh, 820px);
  overflow: hidden;
  background: var(--hero-bg);
  color: #fff;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
  display: grid;
  align-items: end;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Desktop: görsel full-bleed arka plan */
.slide-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--hero-bg);
  background-image: var(--slide-img);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8, 20, 28, .78) 0%, rgba(8, 20, 28, .4) 50%, rgba(8, 20, 28, .2) 100%);
  pointer-events: none;
}
.slide-media img {
  display: none; /* masaüstünde background kullanılır */
}
.slide-media--gradient {
  background-size: cover;
}

.slide-content {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 5.5rem;
  max-width: none;
  text-align: left;
  animation: fadeUp .7s ease;
  position: relative;
  z-index: 2;
}
.slide-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: .5rem;
  color: #fff;
  max-width: 640px;
}
.slide-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 1.4rem;
  max-width: 540px;
}
.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: flex-start;
}
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .55rem;
  z-index: 5;
  padding: .55rem .85rem;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(6px);
  border-radius: 999px;
}
.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  padding: 0;
  transition: width .2s ease, background .2s ease;
}
.slider-dots button.active {
  background: #fff;
  width: 28px;
  border-radius: 999px;
}
.slider-dots button:hover { background: rgba(255,255,255,.85); }

/* Features — slider ile üst üste binmesin */
.features-section {
  padding: 2rem 0 1rem;
  position: relative;
  z-index: 1;
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-head { max-width: 680px; margin-bottom: 2rem; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.eyebrow {
  display: inline-block; color: var(--brand); font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; font-size: .8rem; margin-bottom: .5rem;
}

/* Service / district grids — no cards look: open layout */
.service-grid, .district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.service-item, .district-item {
  padding: 1.25rem 1.1rem;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding-left .2s ease;
}
.service-item:hover, .district-item:hover {
  background: rgba(var(--brand-rgb), .06);
  padding-left: 1.3rem;
}
.service-item h3, .district-item h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.service-item p, .district-item p { color: var(--muted); font-size: .92rem; margin: 0; }
.service-item a, .district-item a { color: inherit; }
.service-item a:hover h3, .district-item a:hover h3 { color: var(--brand); }

/* Feature strip */
.features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  margin-top: 0; position: relative; z-index: 1;
}
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow);
}
.feature strong { display: block; font-family: var(--display); margin-bottom: .25rem; }
.feature span { color: var(--muted); font-size: .92rem; }

/* Content page */
.page-hero {
  padding: 3rem 0 2rem;
  background:
    linear-gradient(180deg, rgba(var(--brand-rgb), .08), transparent),
    linear-gradient(90deg, transparent, rgba(var(--accent-rgb), .05));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); max-width: 820px; }
.page-hero p { color: var(--muted); max-width: 700px; font-size: 1.05rem; }
.breadcrumb { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--brand); }
.content-wrap {
  display: grid; grid-template-columns: 1fr 320px; gap: 2rem; padding: 2.5rem 0 4rem;
}
.content-body {
  background: rgba(255,255,255,.7); border: 1px solid var(--line);
  border-radius: 18px; padding: 1.75rem 1.5rem;
}
.content-body h2 { margin-top: 1.5rem; font-size: 1.35rem; }
.sidebar-cta {
  position: sticky; top: calc(var(--header-h) + 1rem);
  background: linear-gradient(160deg, var(--brand), var(--brand-dark));
  color: #fff; border-radius: 18px; padding: 1.5rem;
  box-shadow: var(--shadow);
}
.sidebar-cta h3 { color: #fff; }
.sidebar-cta p { color: rgba(255,255,255,.85); }
.sidebar-cta .btn { width: 100%; margin-bottom: .6rem; }
.related-list { margin-top: 1.5rem; }
.related-list a {
  display: block; padding: .55rem 0; border-bottom: 1px solid var(--line);
  color: var(--ink); font-weight: 500;
}
.related-list a:hover { color: var(--brand); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line); padding: 1rem 0;
}
.faq-item summary {
  font-weight: 700; cursor: pointer; font-family: var(--display); list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { color: var(--muted); margin: .7rem 0 0; }

/* Müşteri yorumları */
.reviews-section {
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(var(--brand-rgb), .08), transparent 60%),
    radial-gradient(600px 240px at 100% 100%, rgba(var(--accent-rgb), .07), transparent 55%);
  border-block: 1px solid var(--line);
}
.reviews-head { max-width: 640px; }
.reviews-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .75rem;
  align-items: center;
}
.reviews-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .35rem .15rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.25rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 240px;
  transition: transform .2s ease, border-color .2s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--brand-rgb), .35);
}
.review-stars {
  display: flex;
  gap: .15rem;
  color: #f5b301;
  font-size: 1.15rem;
  letter-spacing: .02em;
  margin-bottom: .85rem;
  line-height: 1;
}
.review-card blockquote {
  margin: 0;
  flex: 1;
}
.review-card blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  font-style: italic;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #d7e0e7;
  border: 1px solid var(--line);
}
.review-meta strong {
  display: block;
  font-size: .95rem;
  color: var(--ink);
}
.review-meta span {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  margin-top: .1rem;
}
.reviews-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.reviews-nav:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.reviews-hint {
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  margin-top: .35rem;
}

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem;
}
.contact-card, .contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .92rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px;
  padding: .8rem 1rem; font: 1rem var(--font); background: #fff;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--brand); }
.alert {
  padding: .9rem 1rem; border-radius: 12px; margin-bottom: 1rem; font-weight: 500;
}
.alert-success { background: #e7f7ee; color: #146c2e; }
.alert-error { background: #fdecea; color: #b71c1c; }

/* Search results */
.search-results li { margin-bottom: .75rem; }
.search-results a { font-weight: 700; font-size: 1.05rem; }

/* Footer */
.site-footer { margin-top: 2rem; background: var(--footer-bg); color: #c9d4dc; }
.footer-cta {
  background: linear-gradient(90deg, var(--brand), var(--brand-dark) 55%, var(--hero-bg));
  color: #fff; padding: 2rem 0;
}
.footer-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-cta h2 { color: #fff; margin: 0 0 .35rem; font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.footer-cta p { margin: 0; color: rgba(255,255,255,.85); }
.footer-cta-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding: 3rem 0 2rem;
}
.footer-col h3 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a, .footer-contact a { color: #c9d4dc; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { list-style: none; padding: 0; margin: 1rem 0 0; }
.footer-contact li { margin-bottom: .45rem; font-size: .95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.1rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .9rem; }
.made-by a { color: #8dffb5; font-weight: 700; }

/* Float actions */
.float-actions {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 90;
  display: flex; flex-direction: column; gap: .6rem;
}
.float-wa, .float-call, .float-apt {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; box-shadow: 0 10px 25px rgba(0,0,0,.2);
  animation: pulse 2.4s ease infinite; border: 0; cursor: pointer;
}
.float-apt { background: var(--accent); animation-delay: .2s; }
.float-wa { background: var(--wa); }
.float-call { background: var(--brand); animation-delay: .4s; }
.float-wa:hover, .float-call:hover, .float-apt:hover { color: #fff; transform: scale(1.05); }

/* Randevu modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,20,28,.55); z-index: 9999;
  display: none; place-items: center; padding: 1rem;
}
.modal-overlay.open,
.modal-overlay:not([hidden]) {
  display: grid !important;
}
.modal-overlay[hidden] {
  display: none !important;
}
body.modal-open {
  overflow: hidden;
}
.modal-box {
  width: min(440px, 100%); background: #fff; border-radius: 18px;
  padding: 1.5rem 1.35rem 1.35rem; position: relative; box-shadow: var(--shadow);
  animation: rise .3s ease; max-height: calc(100vh - 2rem); overflow: auto;
}
.modal-box h2 { margin: 0 0 .35rem; font-size: 1.45rem; }
.modal-desc { color: var(--muted); margin: 0 0 1.1rem; font-size: .95rem; }
.modal-close {
  position: absolute; right: .7rem; top: .4rem; border: 0; background: transparent;
  font-size: 1.7rem; cursor: pointer; color: var(--muted); line-height: 1;
}
.modal-box .form-group { margin-bottom: .9rem; }
.modal-box .form-group label { display: block; font-weight: 600; margin-bottom: .3rem; font-size: .9rem; }
.modal-box .form-group input,
.modal-box .form-group textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px;
  padding: .75rem .9rem; font: 1rem var(--font);
}
.modal-box .form-group input:focus,
.modal-box .form-group textarea:focus { outline: none; border-color: var(--brand); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--brand-rgb), .35); }
  50% { box-shadow: 0 0 0 12px rgba(var(--brand-rgb), 0); }
}

/* Responsive */
@media (min-width: 960px) {
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}
@media (max-width: 959px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: calc(var(--topbar-h) + var(--header-h)) 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 1rem;
    display: none; max-height: calc(100vh - var(--header-h) - var(--topbar-h)); overflow: auto;
  }
  .main-nav.open { display: flex; }
  .nav-drop-menu { position: static; box-shadow: none; border: 0; display: none; padding-left: .5rem; }
  .nav-dropdown.open .nav-drop-menu { display: block; }
  .features { grid-template-columns: 1fr 1fr; margin-top: 0; }
  .content-wrap, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .sidebar-cta { position: static; }
  .topbar { padding-inline: 1.15rem; }
  .topbar-left { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .reviews-nav { display: none; }
  .reviews-wrap { grid-template-columns: 1fr; }
}
/* Mobil slider: görsel üstte çerçeveli, içerik altta panel */
@media (max-width: 767px) {
  .hero-slider {
    height: auto;
    min-height: 0;
    overflow: hidden;
    background: transparent;
  }
  .slide {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
  }
  .slide.active {
    position: relative;
    height: auto;
    opacity: 1;
  }

  .slide-media {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16 / 11;
    max-height: 52vw;
    min-height: 200px;
    background-color: #0c1820;
    background-image: none;
    display: grid;
    place-items: center;
    overflow: hidden;
  }
  .slide-media::after {
    display: none; /* mobilde yazı üstüne binmesin */
  }
  .slide-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .slide-media--gradient {
    background-image: var(--slide-img);
    background-size: cover;
    background-position: center;
  }

  .slide-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.35rem 1.15rem 3.25rem;
    text-align: center;
    background: linear-gradient(165deg, var(--brand) 0%, var(--brand-dark) 55%, var(--hero-bg) 100%);
    animation: none;
  }
  .slide-content h1 {
    font-size: clamp(1.45rem, 6.2vw, 1.85rem);
    max-width: none;
    margin: 0 auto .55rem;
    line-height: 1.25;
  }
  .slide-content p {
    font-size: .95rem;
    max-width: 36em;
    margin: 0 auto 1.1rem;
    color: rgba(255,255,255,.9);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .slide-actions {
    justify-content: center;
    gap: .55rem;
  }
  .slide-actions .btn {
    padding: .7rem 1rem;
    font-size: .92rem;
  }

  .slider-dots {
    bottom: .85rem;
    background: rgba(0, 0, 0, .35);
  }
}
@media (max-width: 600px) {
  .features { grid-template-columns: 1fr; }
  .slide-media {
    aspect-ratio: 4 / 3;
    max-height: none;
    min-height: 180px;
  }
  .slider-dots { bottom: .7rem; }
}
