/* ================================================================
   WEBIOO — LANDING PAGE CSS
   Sadece landing page'lerde yüklenir. main.css'i etkilemez.
   ================================================================ */

/* ----------------------------------------------------------------
   0. REDUCED MOTION — Erişilebilirlik zorunlu
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ----------------------------------------------------------------
   1. HERO SECTION
   ---------------------------------------------------------------- */
.lp-hero {
  position: relative;
  background: linear-gradient(135deg, #00235a 0%, #001a43 60%, #002b72 100%);
  min-height: calc(100vh - var(--header-offset, 140px) - var(--trust-offset, 54px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 30px 0 40px;
}

#lp-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
}

.lp-hero h1 {
  color: #fff !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  margin-bottom: 1.25rem !important;
}

.lp-hero__subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.lp-hero__cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0051cc, #0073ff);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 115, 255, 0.4);
}

.lp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 115, 255, 0.55);
  color: #fff;
}

.lp-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.lp-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

/* Hero Form */
.lp-hero-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
}

.lp-hero-form::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0, 115, 255, 0.5), rgba(0, 35, 90, 0.2), rgba(0, 211, 102, 0.3));
  z-index: -1;
  animation: lp-form-glow 4s ease-in-out infinite alternate;
}

@keyframes lp-form-glow {
  0% {
    opacity: 0.4;
  }

  100% {
    opacity: 0.9;
  }
}

.lp-hero-form h4 {
  color: #fff !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.25rem !important;
}

.lp-hero-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #fff;
  padding: 12px 16px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}

.lp-hero-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.lp-hero-form .form-control:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(0, 115, 255, 0.7);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 115, 255, 0.2);
  outline: none;
}

.lp-hero-form .btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #0051cc, #0073ff);
  border: none;
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 4px;
}

.lp-hero-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 115, 255, 0.4);
}

.lp-hero-form .btn-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.lp-form-note {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  text-align: center;
  margin-top: 10px;
}

/* ----------------------------------------------------------------
   2. TRUST BADGES
   ---------------------------------------------------------------- */
.lp-trust {
  background: #e6eef7;
  padding: 20px 0;
  border-bottom: 1px solid #c8d8ec;
}

.lp-trust__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00235a;
  font-weight: 700;
  font-size: 0.88rem;
}

.lp-trust__item i {
  font-size: 1.1rem;
  color: #0051cc;
}

.lp-trust__counter {
  font-weight: 800;
  color: #00235a;
}

/* ----------------------------------------------------------------
   3. REFERENCES (Kayan Logo Bandı)
   ---------------------------------------------------------------- */
.lp-references {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

.lp-references__title {
  text-align: center;
  color: #6c757d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.lp-logo-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.lp-logo-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: lp-scroll-logos 30s linear infinite;
}

.lp-logo-track:hover {
  animation-play-state: paused;
}

@keyframes lp-scroll-logos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.lp-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 56px;
  padding: 8px 16px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.lp-logo-item:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0, 35, 90, 0.15);
}

.lp-logo-item img {
  max-height: 36px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter 0.2s;
}

.lp-logo-item:hover img {
  filter: grayscale(0);
}

/* ----------------------------------------------------------------
   4. WHY US
   ---------------------------------------------------------------- */
.lp-why-us {
  padding: 80px 0;
  background: #f8f9fc;
}

.lp-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e6eef7;
  color: #00235a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 2px solid #fff;
  margin-bottom: 14px;
}

.lp-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.lp-section-subtitle {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 0;
}

.lp-why-us .row>[class^="col-"] {
  display: flex;
}

.lp-why-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  width: 100%;
  border: 1px solid #edf2f7;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.lp-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 35, 90, 0.1);
  border-color: #c8dcf4;
}

.lp-why-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e6eef7, #c8dcf4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: #00235a;
  transition: background 0.3s, color 0.3s;
}

.lp-why-card:hover .lp-why-card__icon {
  background: linear-gradient(135deg, #00235a, #0051cc);
  color: #fff;
}

.lp-why-card h5 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin-bottom: 8px !important;
}

.lp-why-card p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* ----------------------------------------------------------------
   5. DEVICE MOCKUP
   ---------------------------------------------------------------- */
.lp-device-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.lp-devices-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 54px;
}

/* Monitor */
.lp-monitor {
  width: 480px;
  flex-shrink: 0;
}

.lp-monitor__frame {
  background: #1a1a2e;
  border-radius: 12px 12px 0 0;
  padding: 8px 8px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
}

.lp-monitor__camera {
  width: 6px;
  height: 6px;
  background: #555;
  border-radius: 50%;
  margin: 0 auto 6px;
}

.lp-monitor__screen {
  background: #fff;
  border-radius: 2px;
  height: 280px;
  overflow: hidden;
  position: relative;
  border-bottom: 20px solid #1a1a2e;
  /* Added bottom border for screen */
}

.lp-monitor__stand {
  width: 80px;
  height: 20px;
  background: #2d2d44;
  margin: 0 auto;
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.lp-monitor__base {
  width: 120px;
  height: 6px;
  background: #2d2d44;
  border-radius: 3px;
  margin: 0 auto;
}

/* Laptop */
.lp-laptop {
  width: 360px;
  flex-shrink: 0;
}

.lp-laptop__lid {
  background: #1a1a2e;
  border-radius: 12px 12px 0 0;
  padding: 10px 10px 0;
  position: relative;
}

.lp-laptop__camera {
  width: 4px;
  height: 4px;
  background: #444;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
}

.lp-laptop__screen {
  background: #fff;
  border-radius: 2px;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-bottom: 15px solid #1a1a2e;
  /* Bottom bezel */
}

.lp-laptop__base {
  height: 25px;
  background: #1a1a2e;
  /* Laptop çerçevesi ile aynı renk */
  border-radius: 0 0 16px 16px;
  position: relative;
  margin: 0 -24px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
  transform: perspective(600px) rotateX(40deg);
  transform-origin: top center;
}

.lp-laptop__base::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #0d0d1a;
  border-radius: 0 0 5px 5px;
}

/* Phone */
.lp-phone {
  width: 110px;
  flex-shrink: 0;
}

.lp-phone__frame {
  background: #1a1a2e;
  border-radius: 20px;
  padding: 10px 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lp-phone__notch {
  width: 30px;
  height: 5px;
  background: #333;
  border-radius: 3px;
  margin: 0 auto 6px;
}

.lp-phone__screen {
  background: #fff;
  border-radius: 10px;
  height: 160px;
  overflow: hidden;
}

/* Ortak: Scroll animasyonu */
.lp-scroll-img {
  width: 100%;
  display: block;
  animation: lp-auto-scroll 15s ease-in-out infinite alternate;
  animation-play-state: paused;
  /* Default paused */
  will-change: transform;
}

/* ScrollTrigger/JS eklendiğinde animasyonu başlatır */
.lp-device-section.is-animated .lp-scroll-img {
  animation-play-state: running;
}

.lp-scroll-img:hover,
.lp-devices-wrap:hover .lp-scroll-img {
  animation-play-state: paused !important;
  /* Force pause on hover */
}

@keyframes lp-auto-scroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-100% + 280px));
  }
}

.lp-laptop__screen .lp-scroll-img {
  animation-name: lp-auto-scroll-laptop;
}

@keyframes lp-auto-scroll-laptop {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-100% + 220px));
  }
}

.lp-phone__screen .lp-scroll-img {
  animation-name: lp-auto-scroll-phone;
}

@keyframes lp-auto-scroll-phone {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-100% + 160px));
  }
}

/* Mobil: sadece telefon göster */
@media (max-width: 767px) {

  .lp-monitor,
  .lp-laptop {
    display: none;
  }

  .lp-devices-wrap {
    justify-content: center;
  }

  .lp-phone {
    width: 140px;
  }

  .lp-phone__screen {
    height: 200px;
  }

  @keyframes lp-auto-scroll-phone {
    0% {
      transform: translateY(0);
    }

    100% {
      transform: translateY(calc(-100% + 200px));
    }
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .lp-monitor {
    display: none;
  }

  .lp-laptop {
    width: 280px;
  }

  .lp-laptop__base {
    margin: 0 -8px;
  }

  .lp-laptop__screen {
    height: 170px;
  }

  @keyframes lp-auto-scroll-laptop {
    0% {
      transform: translateY(0);
    }

    100% {
      transform: translateY(calc(-100% + 170px));
    }
  }
}

/* Device mockup altındaki ufak metin */
.lp-device-section .text-muted.mt-4 {
  position: relative;
  z-index: 10;
  margin-bottom: -30px;
  /* Alttaki alana çok yapışmasını önler */
}

/* ----------------------------------------------------------------
   6. BEFORE / AFTER SLIDER + REFERANS SPLIT (Değişiklik 3)
   ---------------------------------------------------------------- */
.lp-before-after,
.lp-referans-split {
  padding: 80px 0;
  background: #f8f9fc;
}

.lp-slider-wrap {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
  cursor: col-resize;
  user-select: none;
  aspect-ratio: 7 / 4;
  /* 700x400 oranı — beyaz boşluk oluşmaz */
}

/* Her iki görsel de container'ı tam kaplar */
.lp-slider-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-slider__after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
}

.lp-slider__after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-slider__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.lp-slider__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  z-index: 3;
  pointer-events: none;
  color: #00235a;
  font-size: 1rem;
}

.lp-slider__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 8px;
}

.lp-slider__labels span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ----------------------------------------------------------------
   7. PROCESS TIMELINE
   ---------------------------------------------------------------- */
.lp-process {
  padding: 80px 0;
  background: #fff;
}

.lp-timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 40px;
}

.lp-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #e2e8f0;
  border-radius: 2px;
}

.lp-timeline__line-fill {
  position: absolute;
  left: 15px;
  top: 0;
  width: 3px;
  height: 0%;
  background: linear-gradient(to bottom, #0073ff, #00235a);
  border-radius: 2px;
  transition: height 0.5s ease;
}

.lp-timeline__step {
  position: relative;
  padding: 0 0 48px 30px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lp-timeline__step.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.lp-timeline__dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 28px;
  height: 28px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  color: #6c757d;
  border: 3px solid #fff;
  transition: background 0.4s, color 0.4s;
  z-index: 1;
}

.lp-timeline__step.is-visible .lp-timeline__dot {
  background: linear-gradient(135deg, #0073ff, #00235a);
  color: #fff;
}

.lp-timeline__step h5 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin-bottom: 6px !important;
}

.lp-timeline__step p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   8. PROCESS CTA BOX
   ---------------------------------------------------------------- */
.lp-process-cta-box {
  background: linear-gradient(135deg, #00235a 0%, #001a43 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(0, 35, 90, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  color: #fff;
}

.lp-process-cta-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 115, 255, 0.3);
  border-color: rgba(0, 115, 255, 0.4);
}

.lp-process-cta-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 115, 255, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lp-process-cta-box__icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #4d9fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, background 0.3s ease;
}

.lp-process-cta-box:hover .lp-process-cta-box__icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.2);
}

.lp-process-cta-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.lp-process-cta-box p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.lp-process-cta-box__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-process-cta-box__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: #f1f5f9;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-process-cta-box__features li:last-child {
  border-bottom: none;
}

.lp-process-cta-box__features li i {
  color: #25d366;
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(37, 211, 102, 0.3));
}

.lp-process-cta-box .btn {
  padding: 14px 24px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Tıklama Hissi (Clickable) ve Nabız (Pulse) Efekti */
.lp-process-cta-box .btn-primary {
  background: linear-gradient(135deg, #0073ff, #0051cc);
  border: none;
  box-shadow: 0 8px 20px rgba(0, 115, 255, 0.4);
  animation: lp-pulse-primary 2s infinite;
}

.lp-process-cta-box .btn-primary:hover {
  background: linear-gradient(135deg, #0051cc, #003a99);
  box-shadow: 0 12px 25px rgba(0, 115, 255, 0.6);
  transform: translateY(-2px);
  animation: none;
}

@keyframes lp-pulse-primary {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 115, 255, 0.7);
  }

  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 15px rgba(0, 115, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 115, 255, 0);
  }
}

/* Outline Buton Özelleştirmesi */
.lp-process-cta-box .btn-outline-dark,
.lp-process-cta-box .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  background: transparent !important;
  transition: all 0.3s ease;
}

.lp-process-cta-box .btn-outline-dark:hover,
.lp-process-cta-box .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   9. TECH STACK (Kurumsal)
   ---------------------------------------------------------------- */
.lp-tech-stack {
  padding: 70px 0;
  background: #f8f9fc;
}

.lp-tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.lp-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  font-weight: 700;
  font-size: 0.85rem;
  color: #00235a;
  cursor: default;
  animation: lp-float 3s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}

.lp-tech-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 35, 90, 0.15);
  border-color: #c8dcf4;
}

.lp-tech-item i {
  font-size: 2rem;
}

.lp-tech-item:nth-child(2) {
  animation-delay: 0.4s;
}

.lp-tech-item:nth-child(3) {
  animation-delay: 0.8s;
}

.lp-tech-item:nth-child(4) {
  animation-delay: 1.2s;
}

.lp-tech-item:nth-child(5) {
  animation-delay: 1.6s;
}

.lp-tech-item:nth-child(6) {
  animation-delay: 2.0s;
}

@keyframes lp-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ----------------------------------------------------------------
   9. PRICING (E-Ticaret) - 3D CARD LAYOUT
   ---------------------------------------------------------------- */
.lp-pricing {
  padding: 80px 0;
  background: #fff;
}

@media (min-width: 1200px) {
  .lp-pricing .container {
    max-width: 1300px;
  }
}

/* Pricing row – dikey ortalama: 3 kartın dikey merkezi aynı hizada */
.lp-pricing .row {
  align-items: center;
  perspective: 1200px;
}

.lp-pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 2px solid #e2e8f0;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  overflow: visible;
  z-index: 1;
  opacity: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Yandaki kartlar: ortadakinin ARKASINDA kalır */
.lp-pricing-card:not(.is-popular) {
  opacity: 1 !important;
  background: #ffffff !important;
  z-index: 1;
  /* Ortadan (z:20) geride kal */
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0;
  /* height:100% kaldırıldı — col padding-top/bottom ile boyutlanıyor */
}

/* Sol col: kişisel padding yok, kart doğal yüksekliğinde */

.lp-pricing .col-lg-4:first-child .lp-pricing-card:not(.is-popular) {
  transform: translateX(24px);
  /* Sağa kaydır: iç kenar ortanın arkasına girer */
}

/* Sağ col: aynı şekilde */

.lp-pricing .col-lg-4:last-child .lp-pricing-card:not(.is-popular) {
  transform: translateX(-24px);
  /* Sola kaydır: iç kenar ortanın arkasına girer */
}

.lp-pricing-header {
  min-height: 75px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.lp-pricing-title {
  color: #111827;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}

.lp-pricing-subtitle {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0;
  line-height: 1.4;
}

.lp-pricing-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 20px 0;
  opacity: 1;
}

.lp-price-wrap {
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 12px;
}

.lp-pricing .col-lg-4:first-child .lp-pricing-card:not(.is-popular):hover {
  transform: translateX(24px) translateY(-5px) !important;
  box-shadow: 0 24px 60px rgba(0, 35, 90, 0.12);
  z-index: 5;
  opacity: 1 !important;
}

.lp-pricing .col-lg-4:last-child .lp-pricing-card:not(.is-popular):hover {
  transform: translateX(-24px) translateY(-5px) !important;
  box-shadow: 0 24px 60px rgba(0, 35, 90, 0.12);
  z-index: 5;
  opacity: 1 !important;
}

/* Feature listesi */
.lp-pricing-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  flex-grow: 1;
}

/* ORTADAKI KART - KOYU MAVI GRADIENT GÖVDE */
.lp-pricing-card.is-popular {
  background: linear-gradient(135deg, #001233 0%, #0056cc 100%) !important;
  border: none !important;
  box-shadow: 0 30px 80px rgba(0, 35, 90, 0.5) !important;
  z-index: 20;
  /* Yan kartların üzerine çıkıyor – iç kenarları örtmek için */
  padding: 60px 40px;
  border-radius: 20px;
  position: relative;
  opacity: 1 !important;
  transition: all 0.4s ease;
  /* margin-top/bottom yok – align-items:center + daha uzun padding yeterli */
}

.lp-pricing-card.is-popular::before {
  /* Arkaplanda beyaz bir maske kalmışsa diye sıfırlama */
  display: none !important;
}

.lp-pricing-card.is-popular:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 90px rgba(0, 35, 90, 0.6) !important;
}

/* Ortadaki Kart Yazı ve İkon Renkleri (Gradient üzerinde bembeyaz ve okunaklı olması için) */
.lp-pricing-card.is-popular .lp-pricing-title,
.lp-pricing-card.is-popular h5 {
  color: #ffffff !important;
}

.lp-pricing-card.is-popular .lp-pricing-subtitle,
.lp-pricing-card.is-popular p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.lp-pricing-card.is-popular .lp-price-current,
.lp-pricing-card.is-popular .lp-price-current span {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  /* Fiyatın daha fırlaması için */
}

.lp-pricing-card.is-popular .lp-price-old {
  color: rgba(255, 255, 255, 0.6) !important;
}

.lp-pricing-card.is-popular .lp-price-note {
  color: rgba(255, 255, 255, 0.8) !important;
}

.lp-pricing-card.is-popular .lp-campaign-label,
.lp-pricing-card.is-popular .lp-campaign-label i {
  color: #ffd166 !important;
}

.lp-pricing-card.is-popular .lp-pricing-features li {
  color: #ffffff !important;
  border-bottom-color: rgba(255, 255, 255, 0.15) !important;
}

.lp-pricing-card.is-popular .lp-pricing-features li i {
  color: #4ade80 !important;
  /* Mavi zeminde yeşil tık ikonları */
}

.lp-pricing-card.is-popular hr {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* MAVİ KARTIN BUTONLARI (BEYAZ) */
.lp-pricing-card.is-popular .lp-btn-primary {
  background: #ffffff !important;
  color: #00235a !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
  font-weight: 800 !important;
}

.lp-pricing-card.is-popular .lp-btn-primary:hover {
  background: #f8f9fc !important;
  transform: translateY(-2px) !important;
}

.lp-pricing-card.is-popular .lp-btn-call {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  font-weight: 700 !important;
}

.lp-pricing-card.is-popular .lp-btn-call:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}

/* Badge - Koyu Mavi Üstünde Mavi/Beyaz Badge Modeli */
.lp-pricing-card .badge-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0056cc 0%, #0073ff 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 115, 255, 0.5);
  z-index: 15;
  border: 2px solid #fff;
  /* Badgenin fırlaması için beyaz sınır */
}

/* İndirim Badge */
.lp-discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lp-pricing-card.is-popular .lp-discount-badge {
  top: 24px;
  right: 24px;
}

/* Fiyatlar */
.lp-price-old {
  color: #6b7280;
  text-decoration: line-through;
  font-size: 1.3rem;
  font-weight: 600;
  opacity: 1;
}

.lp-price-current {
  color: #0073ff;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}

.lp-price-note {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 600;
}

/* Kampanya Label */
.lp-campaign-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #e11d48;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 6px 0;
  margin-top: 8px;
}

.lp-campaign-label i {
  color: #e11d48;
  font-size: 1rem;
}

.lp-pricing-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 1.05rem;
  color: #1f2937;
  border-bottom: 1px solid #f3f4f6;
  line-height: 1.5;
  font-weight: 600;
}

.lp-pricing-features li:last-child {
  border: none;
}

.lp-pricing-features li i {
  color: #0073ff;
  flex-shrink: 0;
  margin-top: 0;
  font-size: 1.2rem;
}

/* Butonlar: Beyaz kartlarda mavi buton */
.lp-pricing-card:not(.is-popular) .lp-btn-primary {
  background: #0073ff !important;
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(0, 115, 255, 0.25) !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
}

.lp-pricing-card:not(.is-popular) .lp-btn-primary:hover {
  background: #005ecc !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 115, 255, 0.35) !important;
}

.lp-pricing-card:not(.is-popular) .lp-btn-call {
  background: #ffffff !important;
  color: #0073ff !important;
  border: 2px solid #0073ff !important;
  font-weight: 800 !important;
  box-shadow: none !important;
  border-radius: 12px !important;
}

.lp-pricing-card:not(.is-popular) .lp-btn-call:hover {
  background: #f0f6ff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 115, 255, 0.15) !important;
}

/* Her karttaki genel arama butonu yapısı */
.lp-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 991.98px) {

  /* Mobilde col padding/margin sıfırla — kartlar dikey sıraya geçer */
  .lp-pricing .col-lg-4:first-child,
  .lp-pricing .col-lg-4:last-child {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lp-pricing-card:not(.is-popular),
  .lp-pricing .col-lg-4:first-child .lp-pricing-card:not(.is-popular),
  .lp-pricing .col-lg-4:last-child .lp-pricing-card:not(.is-popular) {
    transform: none !important;
    opacity: 1 !important;
    background: #ffffff !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    height: auto !important;
  }

  .lp-pricing-card.is-popular {
    transform: none;
    margin: 20px 0;
    opacity: 1;
  }

  .lp-pricing-card:not(.is-popular):hover,
  .lp-pricing .col-lg-4:first-child .lp-pricing-card:not(.is-popular):hover,
  .lp-pricing .col-lg-4:last-child .lp-pricing-card:not(.is-popular):hover,
  .lp-pricing-card.is-popular:hover {
    transform: translateY(-5px) !important;
    opacity: 1 !important;
  }
}

/* ----------------------------------------------------------------
   10. DASHBOARD ANIMATION (E-Ticaret Hero)
   ---------------------------------------------------------------- */
.lp-dashboard {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.lp-dashboard__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.lp-dashboard__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.lp-dashboard__stat {
  background: #f8f9fc;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 10px;
}

.lp-dashboard__stat-label {
  font-size: 0.72rem;
  color: #6c757d;
  margin-bottom: 2px;
}

.lp-dashboard__stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #00235a;
}

.lp-dashboard__notification {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #28a745;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: lp-notif-pop 0.5s ease 1s both;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@keyframes lp-notif-pop {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-8px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* SVG Çizgi Grafik Animasyonu */
.lp-chart-line {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.5s ease;
}

.lp-chart-line.is-animated {
  stroke-dashoffset: 0;
}

/* ----------------------------------------------------------------
   11. STATS BAND — "Samsun'dan Dünyaya"
   ---------------------------------------------------------------- */
.lp-stats-band {
  background: linear-gradient(135deg, #00235a 0%, #001a43 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.lp-stats-band::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: rgba(0, 115, 255, 0.15);
  border-radius: 50%;
  filter: blur(60px);
}

.lp-stats-band::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(0, 35, 90, 0.3);
  border-radius: 50%;
  filter: blur(60px);
}

.lp-stats-band__title {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 6px;
}

.lp-stats-band__subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.lp-stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.lp-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.lp-stat-number .odometer {
  color: #fff;
  font-size: inherit;
}

.lp-stat-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  margin-top: 6px;
}

.lp-stat-prefix,
.lp-stat-suffix {
  color: #4d9fff;
  font-weight: 800;
}

/* ----------------------------------------------------------------
   12. LOCAL MAP (Samsun)
   ---------------------------------------------------------------- */
.lp-local-map {
  padding: 80px 0;
  background: #f8f9fc;
}

.lp-map-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
  height: 400px;
  position: relative;
}

.lp-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.lp-map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e6eef7, #c8dcf4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00235a;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.lp-map-placeholder i {
  font-size: 2rem;
  margin-bottom: 8px;
}

.lp-coffee-card {
  background: #00235a;
  color: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-coffee-card h4 {
  color: #fff !important;
  font-size: 1.2rem !important;
}

.lp-coffee-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.lp-coffee-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  animation: lp-coffee-steam 2s ease-in-out infinite;
}

@keyframes lp-coffee-steam {

  0%,
  100% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }
}

.lp-map-pin-pulse {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.88rem;
}

.lp-map-pin-pulse i {
  color: #4d9fff;
  animation: lp-pin-pulse 1.5s ease-in-out infinite;
}

@keyframes lp-pin-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
}

/* ----------------------------------------------------------------
   13. FAQ
   ---------------------------------------------------------------- */
.lp-faq {
  padding: 80px 0;
  background: #fff;
}

.lp-faq .accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.lp-faq .accordion-button {
  font-weight: 700;
  font-size: 0.95rem;
  color: #111827;
  background: #fff;
  padding: 18px 20px;
}

.lp-faq .accordion-button:not(.collapsed) {
  background: #f0f6ff;
  color: #00235a;
  box-shadow: none;
}

.lp-faq .accordion-button::after {
  filter: none;
}

.lp-faq .accordion-button:not(.collapsed)::after {
  filter: invert(20%) sepia(90%) saturate(500%) hue-rotate(200deg);
}

.lp-faq .accordion-body {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0 20px 18px;
}

/* ----------------------------------------------------------------
   13. FAQ SECTION (Accordion)
   ---------------------------------------------------------------- */
.lp-faq {
  padding: 80px 0;
  background: #fff;
}

.lp-faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid #edf2f7;
  border-radius: 12px !important;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.lp-faq-accordion .accordion-item:hover {
  border-color: #c8dcf4;
  box-shadow: 0 8px 20px rgba(0, 35, 90, 0.08);
}

.lp-faq-accordion .accordion-button {
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  background: #fff;
  box-shadow: none;
  transition: all 0.3s ease;
}

.lp-faq-accordion .accordion-button:not(.collapsed) {
  background: #f8fbff;
  color: #00235a;
}

.lp-faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c757d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 1rem;
  transition: transform 0.3s ease;
}

.lp-faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230073ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.lp-faq-accordion .accordion-body {
  padding: 0 24px 24px;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.7;
  background: #f8fbff;
}

/* ----------------------------------------------------------------
   14. CTA FORM SECTION
   ---------------------------------------------------------------- */
.lp-cta-form {
  padding: 80px 0;
  background: linear-gradient(135deg, #00235a 0%, #001a43 100%);
  position: relative;
  overflow: hidden;
}

.lp-cta-form::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(0, 115, 255, 0.12);
  border-radius: 50%;
  filter: blur(80px);
}

.lp-type-title {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  min-height: 1.2em;
  position: relative;
  z-index: 1;
}

.lp-type-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: #4d9fff;
  margin-left: 3px;
  vertical-align: middle;
  animation: lp-cursor-blink 0.75s step-end infinite;
}

@keyframes lp-cursor-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.lp-cta-form__subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.lp-cta-form__form {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  z-index: 1;
}

.lp-cta-form__form .form-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.lp-cta-form__form .form-control,
.lp-cta-form__form textarea {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
}

.lp-cta-form__form .form-control::placeholder,
.lp-cta-form__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.lp-cta-form__form .form-control:focus,
.lp-cta-form__form textarea:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(0, 115, 255, 0.7);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 115, 255, 0.2);
  outline: none;
}

.lp-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #0051cc, #0073ff);
  border: none;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}

.lp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 115, 255, 0.45);
}

.lp-submit-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.lp-form-success {
  display: none;
  text-align: center;
  padding: 24px;
  color: #fff;
}

.lp-form-success i {
  font-size: 3rem;
  color: #25d366;
  margin-bottom: 12px;
  display: block;
}

/* ----------------------------------------------------------------
   15. SAMSUN PARALLAX HERO EK STİL
   ---------------------------------------------------------------- */
.lp-samsun-parallax-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  height: 200px;
}

.lp-parallax-layer {
  position: absolute;
  bottom: 0;
  width: 100%;
  will-change: transform;
}

/* ----------------------------------------------------------------
   16. STICKY CTA (WhatsApp + Telefon)
   ---------------------------------------------------------------- */
.lp-sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9990;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lp-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lp-sticky-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-sticky-btn:hover {
  transform: scale(1.06);
  color: #fff;
}

.lp-sticky-btn i {
  font-size: 1.2rem;
}

.lp-sticky-btn--phone {
  background: linear-gradient(135deg, #0051cc, #0073ff);
  box-shadow: 0 6px 24px rgba(0, 115, 255, 0.35);
}

.lp-sticky-btn--phone:hover {
  box-shadow: 0 8px 32px rgba(0, 115, 255, 0.5);
}

.lp-sticky-btn--whatsapp {
  background: #25d366;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.lp-sticky-btn--whatsapp:hover {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ----------------------------------------------------------------
   17. SEO CONTENT BLOCKS
   ---------------------------------------------------------------- */
.lp-seo-content {
  padding: 80px 0;
  background: #fff;
}

.lp-seo-block {
  max-width: 900px;
  margin: 0 auto 48px;
}

.lp-seo-block:last-child {
  margin-bottom: 0;
}

.lp-seo-block__title {
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid #e6eef7;
  position: relative;
}

.lp-seo-block__title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #0073ff, #4d9fff);
  border-radius: 2px;
}

.lp-seo-block__body {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.8;
}

.lp-seo-block__body p {
  margin-bottom: 1rem;
}

.lp-seo-block__body ul,
.lp-seo-block__body ol {
  padding-left: 20px;
  margin-bottom: 1rem;
}

.lp-seo-block__body li {
  margin-bottom: 6px;
}

.lp-seo-block__body strong {
  color: #111827;
}

/* ----------------------------------------------------------------
   18. TESTIMONIALS (Müşteri Yorumları)
   ---------------------------------------------------------------- */
.lp-testimonials {
  padding: 80px 0;
  background: #f8f9fc;
}

.lp-testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid #edf2f7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.lp-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 35, 90, 0.1);
}

.lp-testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.lp-testimonial-card__stars i {
  color: #f59e0b;
  font-size: 0.85rem;
}

.lp-testimonial-card__stars i.text-muted {
  color: #d1d5db !important;
}

.lp-testimonial-card__text {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  padding-left: 16px;
  border-left: 3px solid #e6eef7;
}

.lp-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  margin-top: auto;
}

.lp-testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e6eef7;
}

.lp-testimonial-card__avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6eef7, #c8dcf4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00235a;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.lp-testimonial-card__author strong {
  display: block;
  color: #111827;
  font-size: 0.9rem;
}

.lp-testimonial-card__author small {
  display: block;
  color: #6c757d;
  font-size: 0.78rem;
}

/* ----------------------------------------------------------------
   19. MID-CTA BANDS
   ---------------------------------------------------------------- */
.lp-mid-cta {
  padding: 0;
}

.lp-mid-cta__inner {
  background: linear-gradient(135deg, #00235a 0%, #0051cc 100%);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.lp-mid-cta--v2 .lp-mid-cta__inner {
  background: linear-gradient(135deg, #0d3b0d 0%, #25d366 100%);
}

.lp-mid-cta__text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}

.lp-mid-cta__text i {
  font-size: 1.4rem;
  color: #4d9fff;
  flex-shrink: 0;
}

.lp-mid-cta--v2 .lp-mid-cta__text i {
  color: #fff;
}

.lp-mid-cta__btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #00235a;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.lp-mid-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #00235a;
}

.lp-mid-cta--v2 .lp-mid-cta__btn {
  color: #0d3b0d;
}

/* ----------------------------------------------------------------
   20. TESTIMONIALS WIDGET (Google Reviews Stack)
   ---------------------------------------------------------------- */

.lp-reviews-section {
  background: #f4f2ee;
  /* Google tarzı krem arka plan isteğe bağlı değiştirilebilir */
  padding: 80px 0;
  overflow: hidden;
}

.lp-reviews-wrapper {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.lp-reviews-wrapper .section-header {
  text-align: center;
  margin-bottom: 36px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 30px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

.google-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.google-badge span {
  font-size: 13px;
  font-weight: 600;
  color: #3c3a35;
  letter-spacing: -.01em;
}

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.overall-number {
  font-size: 38px;
  font-weight: 600;
  color: #1a1916;
  letter-spacing: -.04em;
  line-height: 1;
}

.overall-right {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
  text-align: left;
}

.stars-row {
  display: flex;
  gap: 2px;
}

.star-filled {
  color: #F5A623;
  font-size: 16px;
}

.overall-count {
  font-size: 12px;
  color: #888580;
}

.lp-progress-bar {
  height: 2px;
  background: #e8e5e0;
  border-radius: 2px;
  margin-bottom: 18px;
  overflow: hidden;
}

.lp-progress-fill {
  height: 100%;
  background: #1a1916;
  border-radius: 2px;
  width: 0%;
  transition: width linear;
}

.lp-stack-container {
  position: relative;
  height: 240px;
  perspective: 1000px;
  cursor: pointer;
}

.lp-review-card {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 18px;
  padding: 24px 26px;
  border: 1px solid #e8e5e0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 4px 16px rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform-origin: bottom center;
  will-change: transform, opacity;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1), opacity .55s cubic-bezier(.4, 0, .2, 1), box-shadow .55s ease;
  user-select: none;
  text-align: left;
}

.lp-review-card[data-pos="0"] {
  transform: translateY(0) scale(1);
  opacity: 1;
  z-index: 8;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

.lp-review-card[data-pos="1"] {
  transform: translateY(14px) scale(.965);
  opacity: 1;
  z-index: 7;
}

.lp-review-card[data-pos="2"] {
  transform: translateY(26px) scale(.93);
  opacity: .7;
  z-index: 6;
}

.lp-review-card[data-pos="3"] {
  transform: translateY(36px) scale(.895);
  opacity: .4;
  z-index: 5;
}

.lp-review-card[data-pos="4"],
.lp-review-card[data-pos="5"],
.lp-review-card[data-pos="6"],
.lp-review-card[data-pos="7"],
.lp-review-card[data-pos="8"],
.lp-review-card[data-pos="9"],
.lp-review-card[data-pos="10"] {
  transform: translateY(36px) scale(.895);
  opacity: 0;
  z-index: 4;
  pointer-events: none;
}

.lp-review-card.sliding-out {
  transform: translateX(-110%) rotate(-8deg) !important;
  opacity: 0 !important;
  z-index: 9 !important;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1), opacity .4s ease !important;
}

.lp-review-card .card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-review-card .lp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -.01em;
}

.lp-review-card .lp-avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.lp-review-card .reviewer-info {
  flex: 1;
  min-width: 0;
}

.lp-review-card .reviewer-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1916;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-review-card .reviewer-meta {
  font-size: 12px;
  color: #a09c96;
  margin-top: 1px;
}

.lp-review-card .card-stars {
  display: flex;
  gap: 2px;
}

.lp-review-card .card-stars span {
  font-size: 14px;
  color: #F5A623;
}

.lp-review-card .google-icon-small {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.lp-review-card .review-text {
  font-size: 14px;
  color: #4a4743;
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

.tap-hint {
  text-align: center;
  font-size: 12px;
  color: #b0ada8;
  margin-top: 10px;
  letter-spacing: .01em;
}

.lp-reviews-wrapper .controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.lp-reviews-wrapper .dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lp-reviews-wrapper .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d0cdc8;
  transition: background .3s, transform .3s;
}

.lp-reviews-wrapper .dot.active {
  background: #1a1916;
  transform: scale(1.3);
}

.lp-reviews-wrapper .next-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #1a1916;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 9px 18px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: -.01em;
}

.lp-reviews-wrapper .next-btn:hover {
  background: #333;
  transform: translateY(-1px);
}

.lp-reviews-wrapper .next-btn:active {
  transform: translateY(0);
}

.lp-reviews-wrapper .next-btn svg {
  width: 14px;
  height: 14px;
}

/* ----------------------------------------------------------------
   21. RESPONSIVE GENEL
   ---------------------------------------------------------------- */
@media (max-width: 767px) {
  .lp-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .lp-hero-form {
    margin-top: 32px;
  }

  .lp-why-us,
  .lp-device-section,
  .lp-process,
  .lp-tech-stack,
  .lp-pricing,
  .lp-faq,
  .lp-cta-form,
  .lp-local-map,
  .lp-before-after,
  .lp-seo-content,
  .lp-testimonials {
    padding: 50px 0;
  }

  .lp-stats-band {
    padding: 40px 0;
  }

  .lp-cta-form__form {
    padding: 24px 20px;
  }

  .lp-sticky-cta {
    bottom: 16px;
    right: 16px;
  }

  .lp-sticky-btn span {
    display: none;
  }

  .lp-sticky-btn {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .lp-sticky-btn i {
    font-size: 1.4rem;
  }

  .lp-mid-cta__inner {
    padding: 24px 20px;
    flex-direction: column;
    text-align: center;
  }

  .lp-mid-cta__text {
    flex-direction: column;
    font-size: 0.95rem;
  }

  .lp-mid-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================================
   HEAD-LANDING.PHP'TEN TAŞINDI — Genel Sayfa Stilleri
   (Önceden sayfanın <head> içinde inline yazılıyordu)
   ================================================================ */

.section-padding {
  padding: 80px 0;
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 20px 0;
  }
}

/* MacBook / iPad — Responsive Düzeltmeler */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .section-hero-3 .col-lg-10 {
    flex: 0 0 52% !important;
    max-width: 52% !important;
  }

  .section-hero-3 .col-lg-6.position-xl-absolute img {
    max-height: none;
  }
}

/* Hizmet Kartları */
@media (min-width: 768px) {
  .section-team-1 .zoom-img {
    display: block !important;
    width: 100%;
  }

  .section-team-1 .zoom-img .rounded-3.fix {
    width: 100%;
  }

  .section-team-1 .zoom-img img {
    width: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
  }

  .section-team-1 .card-team {
    padding: 0.75rem 1rem !important;
    margin: 0.5rem !important;
  }

  .section-team-1 .card-team h6 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem !important;
  }

  .section-team-1 .card-team p {
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .section-team-1 .zoom-img img {
    min-height: 300px;
  }

  .section-team-1 .card-team {
    margin: 0.6rem !important;
  }
}

@media (min-width: 1400px) {
  .section-team-1 .zoom-img img {
    min-height: 340px;
    object-fit: cover;
  }

  .section-team-1 .card-team p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .section-team-1 .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .section-team-1 .zoom-img img {
    min-height: 240px;
  }
}

@media (max-width: 767.98px) {
  .section-team-1 .col-lg-4 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .section-team-1 .zoom-img {
    display: block !important;
    width: 100%;
  }

  .section-team-1 .zoom-img .rounded-3.fix {
    width: 100%;
  }

  .section-team-1 .zoom-img img {
    width: 100%;
    min-height: 200px;
    object-fit: cover;
    display: block;
  }

  .section-team-1 .card-team {
    padding: 0.6rem 0.8rem !important;
    margin: 0.4rem !important;
  }

  .section-team-1 .card-team h6 {
    font-size: 0.85rem;
    margin-bottom: 0.1rem !important;
  }

  .section-team-1 .card-team p {
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
  }
}