.lines::before, .lines::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(247,198,0,0.08) 50%, rgba(255,255,255,0) 100%),
    repeating-linear-gradient(to bottom, rgba(37,99,235,0.06), rgba(37,99,235,0.06) 2px, transparent 3px, transparent 8px);
  mix-blend-mode: normal;
  animation: flow 9s linear infinite;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, transparent 75%);
}

.lines::after {
  animation-duration: 14s;
  transform: rotate(180deg);
  opacity: .45;
}

@keyframes flow {
  from { background-position: -200% 0, 0 0; }
  to { background-position: 200% 0, 0 100%; }
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: #f9fafc;
  color: #1a1f2b;
}

header nav a {
  white-space: nowrap;
}

/* Alt sayfa içerik görselleri — tam genişlik, ortalı, tutarlı oran */
.page-content-img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16 / 9;
  background-color: #f1f5f9;
}

.page-content-section {
  max-width: 56rem;
  margin-inline: auto;
}

/* ——— Ana sayfa hero ——— */
.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  background: #060d1a;
}

.home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  filter: brightness(0.34) saturate(0.7) blur(2px);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(95deg, rgba(6, 13, 26, 0.97) 0%, rgba(8, 18, 36, 0.88) 38%, rgba(6, 13, 26, 0.72) 68%, rgba(6, 13, 26, 0.82) 100%),
    radial-gradient(ellipse 50% 55% at 58% 72%, rgba(247, 198, 0, 0.1), transparent 62%);
}

.home-hero__blur-left {
  position: absolute;
  inset: 0;
  width: 48%;
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(6, 13, 26, 0.32);
  mask-image: linear-gradient(90deg, #000 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 50%, transparent 100%);
}

.home-hero__shell {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding: 4.25rem clamp(1.25rem, 3vw, 3.5rem) 0;
  min-height: 700px;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 1rem;
  min-height: calc(700px - 4.5rem);
}

@media (min-width: 1024px) {
  .home-hero__grid {
    grid-template-columns: minmax(300px, 0.92fr) minmax(280px, 1.08fr) minmax(248px, 0.68fr);
    gap: 0.25rem 1.5rem;
    align-items: end;
    min-height: calc(700px - 4.25rem);
  }
}

@media (min-width: 1440px) {
  .home-hero__grid {
    grid-template-columns: minmax(360px, 0.95fr) minmax(340px, 1.12fr) minmax(272px, 0.72fr);
    gap: 0 2rem;
  }
}

.home-hero__copy {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.25rem 0 0.75rem;
  max-width: 100%;
  position: relative;
  z-index: 5;
}

@media (min-width: 1024px) {
  .home-hero__copy {
    padding-bottom: 1.5rem;
    align-self: end;
  }
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
}

.home-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f7c600;
  box-shadow: 0 0 10px rgba(247, 198, 0, 0.7);
}

.home-hero__title {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 14em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.home-hero__accent {
  color: #f7c600;
}

.home-hero__underline {
  text-decoration: underline;
  text-decoration-color: rgba(247, 198, 0, 0.55);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.home-hero__desc {
  margin: 1.125rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 550px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
  .home-hero__desc {
    font-size: 1.125rem;
  }
}

.home-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.375rem;
  max-width: 100%;
}

.home-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.home-hero__btn--primary {
  padding: 0.8rem 1.4rem;
  font-size: 0.9375rem;
  font-weight: 700;
  background: #f7c600;
  color: #0a1020;
  box-shadow: 0 6px 28px rgba(247, 198, 0, 0.42);
}

.home-hero__btn--primary:hover {
  background: #e0b400;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(247, 198, 0, 0.5);
}

.home-hero__btn--demo-request {
  padding: 0.75rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-hero__btn--demo-request:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.home-hero__btn--demo {
  border: 1.5px solid rgba(247, 198, 0, 0.65);
  color: #f7c600;
  background: rgba(247, 198, 0, 0.08);
}

.home-hero__btn--demo:hover {
  background: #f7c600;
  color: #0a1020;
  transform: translateY(-2px);
}

.home-hero__btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.05);
}

.home-hero__btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2.5rem;
  margin-top: 1.75rem;
  padding-bottom: 0.5rem;
}

.home-hero__stat-card {
  display: block;
  padding: 0;
  background: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.home-hero__stat-icon {
  display: none;
}

.home-hero__stat-value {
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.home-hero__stat-label {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.55);
}

/* Orta — büyük görsel (desktop: kadın) */
.home-hero__figure--person {
  display: none;
}

@media (min-width: 1024px) {
  .home-hero__figure--person {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    line-height: 0;
    min-height: 0;
    align-self: end;
    margin-bottom: -6px;
    padding-top: 2.75rem;
    padding-bottom: 0;
  }
}

@media (min-width: 1440px) {
  .home-hero__figure--person {
    padding-top: 3.25rem;
    margin-bottom: -10px;
  }
}

.home-hero__scene-glow--person {
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 78%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center bottom, rgba(247, 198, 0, 0.3) 0%, rgba(247, 198, 0, 0.08) 50%, transparent 76%);
  filter: blur(36px);
}

.home-hero__person {
  position: relative;
  z-index: 1;
  display: block;
  height: min(620px, calc((100vh - 4.5rem) * 0.82));
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  margin-bottom: -12px;
  transform: translateY(4px);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.48));
  user-select: none;
  pointer-events: none;
}

@media (min-width: 1440px) {
  .home-hero__person {
    height: min(670px, calc((100vh - 4rem) * 0.82));
    margin-bottom: -14px;
    transform: translateY(6px);
  }
}

/* Mobil — eServis360 laptop mockup (desktop'ta gizli) */
.home-hero__figure--laptop {
  display: none;
}

.home-hero__laptop-glow {
  position: absolute;
  inset: -8% -6% -4%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 55% 45%, rgba(247, 198, 0, 0.16), transparent 65%);
  filter: blur(24px);
}

.home-hero__laptop .eservis-laptop-glow {
  inset: -10% -6%;
  filter: blur(32px);
  opacity: 0.95;
}

.home-hero__laptop .eservis-laptop-screen {
  border-radius: 11px 11px 0 0;
  border: 2px solid rgba(71, 85, 105, 0.95);
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-hero__laptop .eservis-laptop-screen::before {
  height: 24px;
  background: linear-gradient(180deg, #475569, #334155);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-hero__laptop .eservis-laptop-base {
  height: 16px;
  margin: 0 5%;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, #64748b 0%, #475569 45%, #334155 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.home-hero__laptop .eservis-laptop-base::after {
  width: 16%;
  height: 3px;
  margin-top: 5px;
  background: #94a3b8;
  opacity: 0.65;
}

.home-hero__laptop .eservis-picture img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* Sağ — gruplu kartlar */
.home-hero__card-stack {
  display: none;
}

@media (min-width: 1024px) {
  .home-hero__card-stack {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    max-width: 312px;
    padding-bottom: 0;
    justify-self: end;
    align-self: center;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .home-hero__card-stack {
    margin-bottom: 1.5rem;
    max-width: 318px;
  }
}

.home-hero__card-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.95rem 1.05rem;
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.home-hero__card-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.15s ease;
}

.home-hero__card-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.home-hero__card-row:first-child {
  padding-top: 0;
}

.home-hero__card-row--eservis {
  align-items: flex-start;
  padding: 0.65rem 0;
  background: linear-gradient(90deg, rgba(247, 198, 0, 0.1), transparent);
  margin: 0 -0.35rem;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
  border-radius: 0.5rem;
  border-bottom-color: rgba(247, 198, 0, 0.15);
}

.home-hero__card-row--eservis:hover {
  color: #fff;
}

.home-hero__card-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  width: 1.5rem;
  text-align: center;
}

.home-hero__card-icon--gold {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  color: #0a1020;
  background: linear-gradient(135deg, #f7c600, #e8b800);
  box-shadow: 0 3px 12px rgba(247, 198, 0, 0.4);
}

.home-hero__card-text {
  flex: 1;
  min-width: 0;
}

.home-hero__card-eservis-tag {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 198, 0, 0.85);
  margin-bottom: 0.15rem;
}

.home-hero__card-eservis-name {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #f7c600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.home-hero__card-eservis-desc {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.1rem;
}

.home-hero__float {
  position: static;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-hero__float:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.home-hero__float-icon {
  flex-shrink: 0;
  font-size: 1.35rem;
  line-height: 1;
  width: 1.5rem;
  text-align: center;
}

.home-hero__float-num {
  color: #f7c600;
  font-weight: 800;
}

.home-hero__float--product-compact {
  border-color: rgba(247, 198, 0, 0.35);
  background: rgba(247, 198, 0, 0.1);
}

/* Mobil kart şeridi */
.home-hero__mobile-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
}

.home-hero__float--compact {
  position: static;
  width: auto;
  flex: 1 1 auto;
  padding: 0.6rem 0.75rem;
  font-size: 0.75rem;
}

.home-hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.5rem;
  z-index: 8;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, rgba(2, 6, 23, 0.75) 65%, #020617 100%);
}

#eservis360-spotlight {
  margin-top: -1px;
}

/* ================================================= MOBİL ANA SAYFA — yalnızca max-width: 768px (desktop etkilenmez) */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  body:has(.home-hero) {
    background-color: #f8fafc;
    padding-bottom: 5rem;
  }

  body:has(.home-hero) main,
  body:has(.home-hero) section,
  body:has(.home-hero) .container,
  body:has(.home-hero) .max-w-7xl {
    max-width: 100%;
  }

  body:has(.home-hero) img,
  body:has(.home-hero) video,
  body:has(.home-hero) picture {
    max-width: 100%;
  }

  /* —— Header & mobil menü —— */
  body:has(.home-hero) header .max-w-7xl {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  #mobileMenuButton {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  }

  #mobileMenuButton:active {
    transform: scale(0.96);
  }

  #mobileMenu {
    top: calc(4rem + 8px) !important;
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-height: calc(100vh - 5.5rem) !important;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    background: rgba(10, 16, 30, 0.88) !important;
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    box-shadow:
      0 24px 48px rgba(0, 0, 0, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation: dh-mobile-menu-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  #mobileMenu:not(.hidden) {
    display: block;
  }

  #mobileMenu .px-4 {
    padding-left: 1.15rem !important;
    padding-right: 1.15rem !important;
  }

  #mobileMenu a,
  #mobileMenu button {
    border-radius: 12px;
  }

  #mobileMenu a:active,
  #mobileMenu button:active {
    background: rgba(255, 255, 255, 0.06);
  }

  @keyframes dh-mobile-menu-in {
    from {
      opacity: 0;
      transform: translateY(-10px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  /* —— Hero —— */
  .home-hero {
    min-height: auto;
    background: #060d1a;
  }

  .home-hero__video {
    display: block;
    filter: brightness(0.3) saturate(0.65) blur(2px);
  }

  .home-hero__blur-left {
    display: block;
    width: 58%;
  }

  .home-hero__overlay {
    background:
      linear-gradient(102deg, rgba(6, 13, 26, 0.94) 0%, rgba(8, 18, 36, 0.8) 40%, rgba(6, 13, 26, 0.58) 68%, rgba(6, 13, 26, 0.82) 100%),
      radial-gradient(ellipse 48% 52% at 72% 72%, rgba(247, 198, 0, 0.12), transparent 62%);
  }

  .home-hero__shell {
    min-height: auto;
    padding: 4.75rem 16px 2.75rem;
  }

  .home-hero__grid {
    min-height: auto;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0.5rem 0.65rem;
    align-items: end;
  }

  .home-hero__copy {
    display: contents;
  }

  .home-hero__eyebrow {
    grid-column: 1;
    grid-row: 1;
    font-size: 0.5625rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.35rem;
  }

  .home-hero__title {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(1.05rem, 4.6vw, 1.28rem);
    line-height: 1.22;
    letter-spacing: -0.02em;
    max-width: none;
  }

  .home-hero__desc {
    grid-column: 1;
    grid-row: 3;
    margin-top: 0.4rem;
    font-size: 0.625rem;
    line-height: 1.52;
    color: rgba(255, 255, 255, 0.78);
    max-width: none;
  }

  .home-hero__cta {
    grid-column: 1 / -1;
    grid-row: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 0.85rem;
    width: 100%;
  }

  .home-hero__btn {
    width: 100%;
    min-height: 40px;
    padding: 0.55rem 0.65rem;
    font-size: 0.6875rem;
    line-height: 1.3;
    border-radius: 12px;
    white-space: normal;
    text-align: center;
  }

  .home-hero__btn--primary,
  .home-hero__btn--demo-request {
    grid-column: 1 / -1;
    min-height: 42px;
    font-size: 0.75rem;
  }

  .home-hero__cta .home-hero__btn:nth-child(3) {
    grid-column: 1;
  }

  .home-hero__cta .home-hero__btn:nth-child(4) {
    grid-column: 2;
  }

  .home-hero__cta .home-hero__btn:nth-child(5) {
    grid-column: 1 / -1;
  }

  .home-hero__stats {
    grid-column: 1 / -1;
    grid-row: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 0.85rem;
    padding-bottom: 0;
  }

  .home-hero__stat-card {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.65rem 0.7rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  }

  .home-hero__stat-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .home-hero__stat-icon {
    display: block;
    font-size: 0.95rem;
    line-height: 1;
    flex-shrink: 0;
  }

  .home-hero__stat-value {
    font-size: 1.05rem;
  }

  .home-hero__stat-label {
    margin-top: 0.15rem;
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.58);
  }

  /* —— Hero laptop: sadece mobil —— */
  .home-hero__figure--person {
    display: none !important;
  }

  .home-hero__figure--laptop {
    display: block;
    grid-column: 2;
    grid-row: 1 / 4;
    position: relative;
    line-height: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    align-self: end;
    justify-self: end;
    order: unset;
  }

  .home-hero__scene-glow--laptop {
    position: absolute;
    bottom: 2%;
    right: 0;
    width: 130%;
    height: 88%;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 72% 68%, rgba(247, 198, 0, 0.22) 0%, rgba(247, 198, 0, 0.06) 48%, transparent 72%),
      radial-gradient(ellipse at 40% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 58%);
    filter: blur(22px);
    opacity: 0.75;
  }

  .home-hero__laptop.eservis-laptop {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    transform: perspective(900px) rotateY(-11deg) rotateX(4deg);
    transform-origin: bottom right;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.42));
  }

  .home-hero__laptop .eservis-laptop-screen::before {
    height: 11px;
    background-image:
      radial-gradient(circle at 10px 50%, #ef4444 3px, transparent 3px),
      radial-gradient(circle at 20px 50%, #f59e0b 3px, transparent 3px),
      radial-gradient(circle at 30px 50%, #22c55e 3px, transparent 3px);
  }

  .home-hero__laptop .eservis-laptop-base {
    height: 9px;
    margin: 0 6%;
  }

  .home-hero__laptop .eservis-laptop-glow {
    filter: blur(20px);
    opacity: 0.8;
  }

  .home-hero__mobile-cards {
    display: none !important;
  }

  .home-hero__fade {
    height: 4.5rem;
    background: linear-gradient(to bottom, transparent 0%, rgba(6, 13, 26, 0.45) 35%, rgba(248, 250, 252, 0.55) 70%, #f8fafc 100%);
  }

  /* —— eServis360 vitrin: yan yana + küçük laptop —— */
  #eservis360-spotlight.eservis-spotlight {
    background: #f8fafc !important;
    color: #0f172a !important;
    padding-top: 3rem !important;
    padding-bottom: 3.25rem !important;
    margin-bottom: 0.5rem;
  }

  #eservis360-spotlight.eservis-spotlight::before,
  #eservis360-spotlight .eservis-spotlight-grid {
    opacity: 0.35;
  }

  #eservis360-spotlight .max-w-7xl {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  #eservis360-spotlight .max-w-7xl > .grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 0.65rem 0.75rem;
    align-items: start;
  }

  #eservis360-spotlight .eservis-hero-order-text {
    display: contents;
  }

  #eservis360-spotlight .eservis-hero-order-text > span:first-child {
    grid-column: 1;
    grid-row: 1;
    font-size: 0.5625rem;
    padding: 0.25rem 0.55rem;
    margin-bottom: 0.35rem;
  }

  #eservis360-spotlight .text-slate-300 {
    color: #64748b !important;
  }

  #eservis360-spotlight .text-white {
    color: #0f172a !important;
  }

  #eservis360-spotlight h2 {
    grid-column: 1;
    grid-row: 2;
    color: #0f172a !important;
    font-size: clamp(0.95rem, 4.2vw, 1.15rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 0.45rem !important;
  }

  #eservis360-spotlight .eservis-hero-order-text > p {
    grid-column: 1;
    grid-row: 3;
    font-size: 0.625rem !important;
    line-height: 1.48 !important;
    margin-bottom: 0.65rem !important;
  }

  #eservis360-spotlight .eservis-hero-visual {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    justify-self: end;
    width: 100%;
    padding-bottom: 0;
  }

  #eservis360-spotlight .eservis-float {
    animation: none;
  }

  #eservis360-spotlight .eservis-laptop {
    max-width: 100%;
    transform: perspective(900px) rotateY(-10deg) rotateX(3deg);
    transform-origin: center center;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
  }

  #eservis360-spotlight .eservis-laptop-screen::before {
    height: 12px;
  }

  #eservis360-spotlight .eservis-laptop-base {
    height: 9px;
    margin: 0 6%;
  }

  #eservis360-spotlight .eservis-laptop-glow {
    filter: blur(18px);
    opacity: 0.55;
  }

  #eservis360-spotlight .flex.flex-wrap.gap-3 {
    grid-column: 1 / -1;
    grid-row: 4;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 0.35rem;
  }

  #eservis360-spotlight .flex.flex-wrap.gap-3 > a {
    width: 100%;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px !important;
    font-size: 0.6875rem !important;
    padding: 0.55rem 0.75rem !important;
  }

  #eservis360-spotlight .eservis-feature-tags {
    grid-column: 1 / -1;
    grid-row: 5;
    gap: 6px;
    margin-top: 0.5rem;
  }

  #eservis360-spotlight .eservis-feature-tag {
    font-size: 0.5625rem;
    padding: 0.25rem 0.45rem;
    color: #334155 !important;
    background: rgba(15, 23, 42, 0.05) !important;
    border-color: rgba(247, 198, 0, 0.42) !important;
  }

  #eservis360-spotlight .border-white\/25,
  #eservis360-spotlight .border-2.border-white\/25 {
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
  }

  #eservis360-spotlight .border-\[\#25D366\]\/50 {
    border-color: rgba(37, 211, 102, 0.45) !important;
    color: #059669 !important;
  }

  #hizmetler {
    background: #ffffff !important;
    padding-top: 3.25rem !important;
    padding-left: 0;
    padding-right: 0;
  }

  #hizmetler > .max-w-7xl {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  #hizmetler > .max-w-7xl > .grid:first-child {
    gap: 2.5rem !important;
    padding-top: 0.5rem;
  }

  #hizmetler > .max-w-7xl > .grid:first-child img {
    max-width: min(78vw, 280px);
    margin-inline: auto;
  }

  section.py-16.bg-gradient-to-b.from-white {
    background: #f8fafc !important;
  }

  section.py-16.bg-gradient-to-b.from-white .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
    max-width: 100%;
  }

  #serviceSlider {
    scroll-padding-inline: 24px;
    gap: 1rem !important;
    padding-bottom: 0.5rem !important;
  }

  #serviceSlider .service-card {
    min-width: min(82vw, 320px) !important;
    border-radius: 18px !important;
    padding: 1.35rem !important;
  }

  /* —— WhatsApp FAB —— */
  body:has(.home-hero) a.fixed[href*="wa.me"] {
    bottom: 16px !important;
    right: 16px !important;
    z-index: 9990 !important;
    min-height: 46px;
    padding: 0.65rem 0.9rem !important;
    font-size: 0.8125rem !important;
    border-radius: 999px !important;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35) !important;
  }

  body:has(.home-hero) a.fixed[href*="wa.me"] .text-lg {
    font-size: 1rem !important;
  }
}
