/* Linux Hosting — Dodo Bilişim (/hosting/linux-hosting/) — Oweb-style hero */
.dbd-linux {
  --lh-hero-orange: #ff8c00;
  --lh-hero-orange-dark: #ea580c;
  --lh-hero-ink: #1a1a1a;
  --lh-hero-muted: #5c6478;
  --lh-hero-promo-bg: #141414;
  --lh-hero-card: #ffffff;
  --lh-hero-radius: 22px;
  --lh-hero-radius-sm: 14px;
}

/* --- Oweb-style split hero --- */
.linux-hero-oweb {
  position: relative;
  padding: 32px 0 28px;
  background: linear-gradient(180deg, #f3f4f7 0%, #eceef2 100%);
  border-bottom: 1px solid rgba(20, 24, 40, 0.06);
  overflow: hidden;
}

@media (min-width: 992px) {
  .linux-hero-oweb {
    padding: 40px 0 36px;
  }
}

.linux-hero-oweb .container {
  position: relative;
  z-index: 1;
}

.linux-hero-oweb__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

@media (min-width: 992px) {
  .linux-hero-oweb__grid {
    grid-template-columns: minmax(0, 1.95fr) minmax(280px, 1fr);
    gap: 22px;
  }
}

/* Sol kart: beyaz, nokta desen, turuncu leke */
.linux-hero-card {
  position: relative;
  background: var(--lh-hero-card);
  border-radius: var(--lh-hero-radius);
  border: 1px solid rgba(20, 24, 40, 0.07);
  box-shadow: 0 18px 50px rgba(15, 18, 34, 0.08);
  overflow: hidden;
}

.linux-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(20, 24, 40, 0.07) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.55;
  pointer-events: none;
}

.linux-hero-card::after {
  content: "";
  position: absolute;
  right: -12%;
  top: 50%;
  transform: translateY(-50%);
  width: min(52%, 380px);
  aspect-ratio: 1;
  border-radius: 45% 55% 50% 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 140, 0, 0.95) 0%, rgba(249, 115, 22, 0.55) 42%, rgba(255, 140, 0, 0.12) 72%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}

.linux-hero-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 20px 26px;
}

@media (min-width: 768px) {
  .linux-hero-card__inner {
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 32px 32px 34px 36px;
  }
}

.linux-hero-card__content {
  flex: 1 1 0;
  min-width: 0;
}

.linux-hero-card__kicker {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lh-hero-orange-dark);
}

.linux-hero-card__title {
  margin: 0 0 12px;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(1.55rem, 2.8vw + 0.5rem, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--lh-hero-ink);
}

.linux-hero-card__lead {
  margin: 0 0 18px;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.6;
  color: var(--lh-hero-muted);
  max-width: 34em;
}

.linux-hero-card__lead strong {
  color: #374151;
  font-weight: 700;
}

.linux-hero-card__features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 16px;
}

@media (min-width: 480px) {
  .linux-hero-card__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.linux-hero-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2a3142;
}

.linux-hero-card__check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--lh-hero-orange) 0%, var(--lh-hero-orange-dark) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
}

.linux-hero-card__cta,
.linux-hero-promo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--lh-hero-radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(180deg, var(--lh-hero-orange) 0%, var(--lh-hero-orange-dark) 100%);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.linux-hero-card__cta:hover,
.linux-hero-promo__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(234, 88, 12, 0.42);
  color: #fff !important;
}

.linux-hero-card__visual {
  flex: 0 1 42%;
  max-width: 100%;
  text-align: center;
}

@media (max-width: 767px) {
  .linux-hero-card__visual {
    flex: 1 1 auto;
    max-width: 420px;
    margin: 0 auto;
  }
}

.linux-hero-card__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 36px rgba(20, 24, 40, 0.18));
}

/* Sağ kart: koyu + geri sayım */
.linux-hero-promo {
  background: var(--lh-hero-promo-bg);
  color: #f4f4f5;
  border-radius: var(--lh-hero-radius);
  padding: 26px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

@media (min-width: 992px) {
  .linux-hero-promo {
    padding: 28px 24px 26px;
  }
}

.linux-hero-promo__kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffb347;
}

.linux-hero-promo__title {
  margin: 0 0 10px;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.linux-hero-promo__text {
  margin: 0 0 18px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.linux-hero-countdown {
  margin-bottom: 18px;
  padding: 14px 12px;
  border-radius: 14px;
  border: 2px solid rgba(255, 140, 0, 0.65);
  background: rgba(0, 0, 0, 0.35);
}

.linux-hero-countdown__row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 6px;
}

.linux-hero-countdown__unit {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}

.linux-hero-countdown__val {
  display: block;
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.linux-hero-countdown__lbl {
  display: block;
  margin-top: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 200, 150, 0.9);
}

.linux-hero-countdown__colon {
  align-self: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--lh-hero-orange);
  padding: 0 2px;
  line-height: 1;
}

.linux-hero-promo__cta {
  width: 100%;
  margin-top: auto;
}

/* İstatistik şeridi */
.linux-hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

@media (min-width: 576px) {
  .linux-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .linux-hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
  }
}

.linux-hero-stats__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--lh-hero-card);
  border-radius: var(--lh-hero-radius-sm);
  border: 1px solid rgba(20, 24, 40, 0.06);
  box-shadow: 0 8px 24px rgba(15, 18, 34, 0.06);
}

.linux-hero-stats__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 140, 0, 0.12);
  color: var(--lh-hero-orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.linux-hero-stats__text {
  min-width: 0;
}

.linux-hero-stats__value {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--lh-hero-ink);
  line-height: 1.2;
}

.linux-hero-stats__label {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  color: var(--lh-hero-muted);
  line-height: 1.35;
}

@media (prefers-reduced-motion: reduce) {
  .linux-hero-card__cta:hover,
  .linux-hero-promo__cta:hover {
    transform: none;
  }
}

/* ---------- Hazır Servis / CMS uygulama kartları ---------- */
.dbd-linux .lh-ready-apps {
  position: relative;
  padding: 52px 0 56px;
  background: linear-gradient(180deg, #f4f6fa 0%, #eef1f7 45%, #f8f9fc 100%);
  border-top: 1px solid rgba(20, 24, 40, 0.05);
  border-bottom: 1px solid rgba(20, 24, 40, 0.06);
  overflow: hidden;
}

.dbd-linux .lh-ready-apps::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(20, 24, 40, 0.045) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
}

.dbd-linux .lh-ready-apps .container {
  position: relative;
  z-index: 1;
}

.dbd-linux .lh-ready-apps__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

@media (min-width: 768px) {
  .dbd-linux .lh-ready-apps__head {
    margin-bottom: 48px;
  }
}

.dbd-linux .lh-ready-apps__kicker {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c2410c;
  background: rgba(255, 140, 0, 0.14);
  border: 1px solid rgba(234, 88, 12, 0.22);
}

.dbd-linux .lh-ready-apps__title {
  margin: 0 0 12px;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1a1a1a;
}

.dbd-linux .lh-ready-apps__title::after {
  content: "";
  display: block;
  margin: 14px auto 0;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8c00, #ea580c);
}

.dbd-linux .lh-ready-apps__sub {
  margin: 16px 0 0;
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.65;
  color: #5c6478;
}

.dbd-linux .lh-ready-apps__row {
  align-items: stretch;
}

.dbd-linux .lh-ready-app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  min-height: 100%;
  padding: 26px 20px 24px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(20, 24, 40, 0.07);
  box-shadow: 0 10px 28px rgba(15, 18, 34, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.dbd-linux .lh-ready-app-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 140, 0, 0.45);
  box-shadow: 0 18px 44px rgba(234, 88, 12, 0.14);
  color: inherit;
}

.dbd-linux .lh-ready-app-card:focus-visible {
  outline: 3px solid rgba(234, 88, 12, 0.45);
  outline-offset: 3px;
}

.dbd-linux .lh-ready-app-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid rgba(234, 88, 12, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dbd-linux .lh-ready-app-card__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.dbd-linux .lh-ready-app-card__title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.25;
}

.dbd-linux .lh-ready-app-card__text {
  margin: 0 0 auto;
  padding-bottom: 16px;
  font-size: 0.875rem;
  line-height: 1.58;
  color: #5c6478;
  flex-grow: 1;
  max-width: 22rem;
}

.dbd-linux .lh-ready-app-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #ea580c;
  transition: gap 0.2s ease, color 0.2s ease;
}

.dbd-linux .lh-ready-app-card:hover .lh-ready-app-card__link {
  gap: 10px;
  color: #c2410c;
}

@media (max-width: 575px) {
  .dbd-linux .lh-ready-apps {
    padding: 40px 0 44px;
  }
  .dbd-linux .lh-ready-app-card {
    padding: 22px 18px 20px;
  }
}

/* =====================================================
   YENİ EKLENEN BÖLÜMLER (Trust + Demo + Support + Solutions + Migration + Other Products)
   ===================================================== */

/* ---------- Trust + Demo + Support Bar ---------- */
.lh-trust-bar {
  padding: 36px 0 12px;
  background: #f7f8fb;
}

.lh-trust-pills {
  list-style: none;
  padding: 8px;
  margin: 0 auto 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  background: #eef0f5;
  border-radius: 999px;
  max-width: max-content;
}

.lh-trust-pills__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #2a3142;
  border-radius: 999px;
  background: transparent;
}

.lh-trust-pills__item:nth-child(2) {
  background: #fff;
  box-shadow: 0 2px 10px rgba(20, 24, 40, 0.06);
  border: 1px solid rgba(255, 140, 0, 0.6);
  color: #ea580c;
}

.lh-trust-pills__ic {
  color: #ea580c;
  display: inline-flex;
}

.lh-trust-pills__item strong {
  font-weight: 800;
  color: inherit;
}

@media (max-width: 575px) {
  .lh-trust-pills {
    border-radius: 18px;
    width: 100%;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
  }
  .lh-trust-pills__item {
    justify-content: center;
  }
}

/* Demo Cards (cPanel + Plesk) */
.lh-demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

@media (min-width: 768px) {
  .lh-demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

.lh-demo-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(20, 24, 40, 0.06);
  box-shadow: 0 10px 30px rgba(15, 18, 34, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lh-demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 18, 34, 0.1);
}

.lh-demo-card__logo {
  flex-shrink: 0;
  width: 140px;
  height: 110px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lh-demo-card__logo--cpanel {
  background: linear-gradient(135deg, #ff8c00 0%, #f96e4e 100%);
}

.lh-demo-card__logo--plesk {
  background: linear-gradient(135deg, #53bce6 0%, #4cb6e0 100%);
}

.lh-demo-card__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1);
}

.lh-demo-card__body {
  flex: 1 1 0;
  min-width: 0;
}

.lh-demo-card__title {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  letter-spacing: -0.02em;
}

.lh-demo-card__text {
  margin: 0 0 14px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #5c6478;
}

.lh-demo-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid currentColor;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lh-demo-card__cta--cpanel {
  color: #ea580c;
}

.lh-demo-card__cta--cpanel:hover {
  background: #ea580c;
  color: #fff !important;
  transform: translateX(3px);
}

.lh-demo-card__cta--plesk {
  color: #1e88c6;
}

.lh-demo-card__cta--plesk:hover {
  background: #1e88c6;
  color: #fff !important;
  transform: translateX(3px);
}

@media (max-width: 575px) {
  .lh-demo-card {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
  }
  .lh-demo-card__logo {
    width: 120px;
    height: 90px;
  }
}

/* Support Bar (Whatsapp + Canlı Destek) */
.lh-support-bar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(20, 24, 40, 0.06);
  box-shadow: 0 12px 32px rgba(15, 18, 34, 0.08);
  overflow: hidden;
}

.lh-support-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(20, 24, 40, 0.04) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.6;
  pointer-events: none;
}

.lh-support-bar > * {
  position: relative;
  z-index: 1;
}

.lh-support-bar__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}

.lh-support-bar__text {
  flex: 1 1 240px;
  min-width: 0;
}

.lh-support-bar__kicker {
  display: block;
  font-size: 0.82rem;
  color: #ea580c;
  font-weight: 700;
  margin-bottom: 2px;
}

.lh-support-bar__title {
  display: block;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.lh-support-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lh-support-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1.5px solid;
  background: #fff;
  min-height: 56px;
}

.lh-support-bar__btn-ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.lh-support-bar__btn-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.2;
}

.lh-support-bar__btn-text strong {
  font-size: 0.95rem;
  font-weight: 800;
}

.lh-support-bar__btn-text small {
  font-size: 0.72rem;
  font-weight: 500;
  color: #5c6478;
}

.lh-support-bar__btn--wa {
  border-color: rgba(37, 211, 102, 0.45);
}

.lh-support-bar__btn--wa .lh-support-bar__btn-ic {
  background: #25d366;
  color: #fff;
}

.lh-support-bar__btn--wa strong {
  color: #1aa455;
}

.lh-support-bar__btn--chat {
  border-color: rgba(234, 88, 12, 0.45);
}

.lh-support-bar__btn--chat .lh-support-bar__btn-ic {
  background: #fff7ed;
  color: #ea580c;
}

.lh-support-bar__btn--chat strong {
  color: #ea580c;
}

.lh-support-bar__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 24, 40, 0.1);
  color: inherit !important;
}

@media (max-width: 767px) {
  .lh-support-bar {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .lh-support-bar__actions {
    width: 100%;
    flex-direction: column;
  }
  .lh-support-bar__btn {
    justify-content: center;
    width: 100%;
  }
}

/* ---------- Solutions Section (İşiniz ve İşletmeniz + Maksimum Performans) ---------- */
.lh-solutions {
  position: relative;
  padding: 64px 0 48px;
  background: #fff;
  z-index: 0;
}

.lh-solutions .container {
  display: flex;
  flex-direction: column;
}

.lh-solutions__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.lh-solutions__title {
  margin: 0 0 14px;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #1a1a1a;
}

.lh-solutions__title::after {
  content: "";
  display: block;
  margin: 16px auto 0;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8c00, #ea580c);
}

.lh-solutions__sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  line-height: 1.65;
  color: #5c6478;
}

/* Performance panel (visual + content) */
.lh-perf {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 80px;
  margin-bottom: 56px;
  padding-top: 16px;
  z-index: 1;
}

@media (min-width: 992px) {
  .lh-perf {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    margin-top: 100px;
  }
}

.lh-perf__visual {
  position: relative;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lh-perf__mock {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  background: linear-gradient(180deg, #6a52d9 0%, #5639c6 100%);
  display: flex;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(86, 57, 198, 0.2);
}

.lh-perf__mock-side {
  flex-shrink: 0;
  width: 56px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 0;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
}

.lh-perf__mock-tab {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lh-perf__mock-tab--active {
  background: #ff8c00;
  color: #fff;
  box-shadow: 0 6px 14px rgba(234, 88, 12, 0.45);
}

.lh-perf__mock-screen {
  flex: 1 1 0;
  position: relative;
  min-width: 0;
  background: #f6f7fb;
  margin: 14px 14px 14px 0;
  border-radius: 12px;
  padding: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}

.lh-perf__mock-back {
  position: relative;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(20, 24, 40, 0.06);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.lh-perf__mock-line {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #e6e8ef, #d6d9e3);
  width: 80%;
}

.lh-perf__mock-line--lg {
  height: 11px;
  width: 60%;
}

.lh-perf__mock-line--sm {
  width: 40%;
}

.lh-perf__mock-map {
  height: 38px;
  background: linear-gradient(135deg, #f4f6fa 0%, #eaedf3 100%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.lh-perf__mock-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, #ff8c00 0 3px, transparent 3px),
    radial-gradient(circle at 70% 55%, #6a52d9 0 3px, transparent 3px);
}

.lh-perf__mock-front {
  position: relative;
  flex: 1 1 auto;
  min-height: 110px;
  background: linear-gradient(135deg, #ff8c00 0%, #ea580c 100%);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.lh-perf__mock-play {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lh-perf__content {
  min-width: 0;
}

.lh-perf__kicker {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ea580c;
}

.lh-perf__title {
  margin: 0 0 14px;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1a1a1a;
}

.lh-perf__lead {
  margin: 0 0 22px;
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  line-height: 1.65;
  color: #5c6478;
  max-width: 32em;
}

.lh-perf__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 24px;
}

@media (min-width: 480px) {
  .lh-perf__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.lh-perf__feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.lh-perf__feature-ic {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 140, 0, 0.12);
  color: #ea580c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lh-perf__feature strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.lh-perf__feature p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #5c6478;
}

/* ---------- Migration CTA (Oweb'e Taşıma) ---------- */
.lh-migrate {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  background: linear-gradient(135deg, #ff8c00 0%, #ea580c 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.22);
  margin-top: 8px;
}

@media (min-width: 768px) {
  .lh-migrate {
    grid-template-columns: minmax(0, 1fr) minmax(0, 260px);
    align-items: center;
  }
}

.lh-migrate::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.6;
  pointer-events: none;
}

.lh-migrate__content {
  position: relative;
  z-index: 1;
  padding: 20px 18px;
  color: #fff;
}

@media (min-width: 768px) {
  .lh-migrate__content {
    padding: 22px 26px 22px 24px;
  }
}

.lh-migrate__kicker {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.lh-migrate__title {
  margin: 0 0 8px;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: #fff;
}

.lh-migrate__text {
  margin: 0 0 14px;
  font-size: clamp(0.82rem, 1vw, 0.9rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 42em;
}

.lh-migrate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lh-migrate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.84rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.lh-migrate__btn--primary {
  background: #fff;
  color: #ea580c !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.lh-migrate__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.lh-migrate__btn--ghost {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.lh-migrate__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.lh-migrate__visual {
  position: relative;
  z-index: 1;
  min-height: 140px;
  max-height: 200px;
  background: #fff7f0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .lh-migrate__visual {
    min-height: 0;
    height: 188px;
    max-height: 188px;
    align-self: center;
    border-radius: 12px;
    margin: 12px 14px 12px 0;
  }
}

@media (max-width: 767px) {
  .lh-migrate__visual {
    min-height: 120px;
    max-height: 180px;
  }
}

.lh-migrate__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ---------- Other Products ("Farklı Ürün Arıyor Olabilirsiniz?") ---------- */
.lh-other-products {
  position: relative;
  padding: 60px 0 56px;
  background: linear-gradient(180deg, #f8f9fc 0%, #f1f3f8 100%);
  overflow: hidden;
}

.lh-other-products__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 140, 0, 0.06) 0 2px, transparent 2px) 0 0 / 22px 22px,
    radial-gradient(circle at 92% 82%, rgba(20, 24, 40, 0.05) 0 2px, transparent 2px) 0 0 / 22px 22px;
}

.lh-other-products__decor::before,
.lh-other-products__decor::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ff8c00, #ea580c);
  opacity: 0.08;
  border-radius: 30% 70% 70% 30% / 40% 40% 60% 60%;
}

.lh-other-products__decor::before {
  top: -40px;
  right: 6%;
}

.lh-other-products__decor::after {
  bottom: -40px;
  left: 6%;
  transform: rotate(45deg);
}

.lh-other-products__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .lh-other-products__head {
    margin-bottom: 72px;
  }
}

.lh-other-products__kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ea580c;
  text-transform: uppercase;
}

.lh-other-products__title {
  margin: 0 0 12px;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1a1a1a;
}

.lh-other-products__title::after {
  content: "";
  display: block;
  margin: 14px auto 0;
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8c00, #ea580c);
}

.lh-other-products__sub {
  margin: 0 auto;
  max-width: 560px;
  font-size: 0.96rem;
  color: #5c6478;
  line-height: 1.6;
}

.lh-other-products__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .lh-other-products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 419px) {
  .lh-other-products__grid {
    grid-template-columns: 1fr;
  }
}

.lh-op-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(20, 24, 40, 0.06);
  padding: 28px 22px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 18, 34, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lh-op-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(234, 88, 12, 0.15);
  border-color: rgba(255, 140, 0, 0.35);
}

.lh-op-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff8c00 0%, #ea580c 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(234, 88, 12, 0.3);
}

.lh-op-card__title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

.lh-op-card__text {
  margin: 0 0 16px;
  font-size: 0.82rem;
  color: #5c6478;
  line-height: 1.55;
  min-height: 40px;
}

.lh-op-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 10px;
  border: 1.5px solid #ea580c;
  color: #ea580c;
  font-weight: 700;
  font-size: 0.84rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lh-op-card__cta:hover {
  background: #ea580c;
  color: #fff !important;
  transform: translateX(3px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lh-demo-card,
  .lh-support-bar__btn,
  .lh-migrate__btn,
  .lh-op-card,
  .lh-op-card__cta,
  .lh-demo-card__cta,
  .dbd-linux .lh-ready-app-card,
  .dbd-linux .lh-ready-app-card__link {
    transition: none !important;
  }
  .dbd-linux .lh-ready-app-card:hover {
    transform: none !important;
  }
  .dbd-linux .lh-ready-app-card:hover .lh-ready-app-card__link {
    gap: 6px !important;
  }
}

/* ---------- Reusable "Farkli hosting paketi" section ---------- */
.dbd-host-needdifferent {
  padding: clamp(2.25rem, 5vw, 4.375rem) 0;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
}

.dbd-host-needdifferent__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(1.5rem, 4vw, 2.25rem);
}

.dbd-host-needdifferent__kicker {
  display: inline-block;
  color: #ff8c00;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.8125rem;
}

.dbd-host-needdifferent__title {
  margin: 0.5rem 0 0.75rem;
  color: #0f172a;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.dbd-host-needdifferent__intro {
  margin: 0 auto;
  max-width: 720px;
  color: #475569;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  line-height: 1.6;
}

.dbd-host-needdifferent__card {
  display: flex;
  height: 100%;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1rem, 3vw, 1.375rem);
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.dbd-host-needdifferent__card:hover {
  color: inherit;
  border-color: #ff8c00;
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.12);
  transform: translateY(-3px);
}

.dbd-host-needdifferent__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  font-size: 22px;
}

.dbd-host-needdifferent__icon--wp {
  background: rgba(33, 117, 155, 0.1);
  color: #21759b;
}

.dbd-host-needdifferent__icon--win {
  background: rgba(0, 120, 212, 0.1);
  color: #0078d4;
}

.dbd-host-needdifferent__icon--kur {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

.dbd-host-needdifferent__icon--lim {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.dbd-host-needdifferent__icon--res {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.dbd-host-needdifferent__icon--mail {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.dbd-host-needdifferent__icon--eko {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.dbd-host-needdifferent__icon--linux {
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

.dbd-host-needdifferent__icon--plesk {
  background: rgba(82, 187, 170, 0.1);
  color: #52bbaa;
}

.dbd-host-needdifferent__card-title {
  margin: 0 0 6px;
  color: #0f172a;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.25;
}

.dbd-host-needdifferent__card-desc {
  margin: 0 0 14px;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.55;
  flex-grow: 1;
}

.dbd-host-needdifferent__card-cta {
  color: #ff8c00;
  font-weight: 700;
  font-size: 0.84rem;
}

.dbd-host-needdifferent__server-band {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  text-align: center;
  background: #ffffff;
  border: 1px dashed #ff8c00;
  border-radius: 14px;
}

.dbd-host-needdifferent__server-text {
  margin: 0 0 1rem;
  color: #0f172a;
  font-size: clamp(0.9rem, 2.2vw, 0.97rem);
  line-height: 1.55;
}

.dbd-host-needdifferent__server-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.dbd-host-needdifferent__server-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  box-sizing: border-box;
}

.dbd-host-needdifferent__server-btn--dark {
  background: #0f172a;
  color: #ffffff !important;
}

.dbd-host-needdifferent__server-btn--dark:hover {
  color: #ffffff !important;
  filter: brightness(1.08);
}

.dbd-host-needdifferent__server-btn--accent {
  background: #ff8c00;
  color: #ffffff !important;
}

.dbd-host-needdifferent__server-btn--accent:hover {
  color: #ffffff !important;
  filter: brightness(1.05);
}

@media (max-width: 575.98px) {
  .dbd-host-needdifferent__server-btn {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }
}

/* SEO rehber bloğu */
.lh-seo-guide {
  padding: 48px 0 40px;
  background: #fff;
  border-top: 1px solid rgba(20, 24, 40, 0.06);
}

.lh-seo-guide__head {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.lh-seo-guide__head h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--lh-hero-ink, #1a1a1a);
  margin-bottom: 12px;
}

.lh-seo-guide__head p {
  color: var(--lh-hero-muted, #5c6478);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.lh-seo-guide__head a {
  color: var(--lh-hero-orange-dark, #ea580c);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lh-seo-guide__card {
  height: 100%;
  padding: 22px 20px;
  background: #f8f9fb;
  border: 1px solid rgba(20, 24, 40, 0.08);
  border-radius: var(--lh-hero-radius-sm, 14px);
}

.lh-seo-guide__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--lh-hero-ink, #1a1a1a);
}

.lh-seo-guide__card p,
.lh-seo-guide__card li {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--lh-hero-muted, #5c6478);
  margin: 0;
}

.lh-seo-guide__card ul {
  padding-left: 1.1rem;
  margin: 0;
}

.lh-seo-guide__card li + li {
  margin-top: 6px;
}

.lh-seo-guide__card a {
  color: var(--lh-hero-orange-dark, #ea580c);
  font-weight: 600;
}
