/* ================================================================
   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: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

#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: transparent;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.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: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}

.lp-trust__item i {
  font-size: 1.1rem;
  color: #0073ff;
}

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

/* ----------------------------------------------------------------
   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-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, border-color 0.3s ease;
}

.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% + 190px));
  }
}

.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;
  }
}

@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;
  }
}

/* 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
   ---------------------------------------------------------------- */
.lp-before-after {
  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;
}

.lp-slider-wrap img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.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;
}

.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;
}

/* ----------------------------------------------------------------
   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)
   ---------------------------------------------------------------- */
.lp-pricing {
  padding: 80px 0;
  background: #fff;
}

.lp-pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 2px solid #e2e8f0;
  height: 100%;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
}

.lp-pricing-card:hover {
  transform: perspective(800px) rotateX(4deg) translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 35, 90, 0.12);
}

/* Feature listesinin esnek olup arayı doldurması için */
.lp-pricing-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  flex-grow: 1; /* Butonu en aşağıya iter */
}

.lp-pricing-card.is-popular {
  border-color: #0073ff;
  background: linear-gradient(160deg, #f0f6ff, #fff);
}

.lp-pricing-card .badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0073ff;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.lp-price-old {
  color: #aaa;
  text-decoration: line-through;
  font-size: 1rem;
}

.lp-price-current {
  color: #00235a;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
}

.lp-price-note {
  font-size: 0.75rem;
  color: #6c757d;
}

.lp-pricing-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.lp-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: #374151;
  border-bottom: 1px solid #f1f5f9;
}

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

.lp-pricing-features li i {
  color: #0073ff;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ----------------------------------------------------------------
   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;
}

/* ----------------------------------------------------------------
   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. 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 {
    padding: 50px 0;
  }

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

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