:root {
  --primary-color: #1f4ed8;
  --primary-soft: #e6edff;
  --dark-color: #121826;
  --muted-color: #6b7280;
  --bs-primary: #6c63ff;
  --bs-primary-rgb: 108, 99, 255;
}

body {
  background: #f3f6ff;
  color: var(--dark-color);
  padding-top: 80px; /* fixed-top navbar yüksekliği için eklendi */
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

/* navbar */

.navbar .dropdown-toggle::after {
  border: 0 !important;
  margin: 0;
  display: block;
}

.navbar {
  font-size: 0.95rem;
  height: 80px;          /* navbar yüksekliği */
  padding-top: 0;        /* dikey paddingleri biz kontrol edeceğiz */
  padding-bottom: 0;
}

.navbar-brand span {
  letter-spacing: 0.02em;
}

.navbar .nav-link {
  font-weight: 500;
  color: #1f2933;
  padding: 0.5rem 1rem;
  position: relative;          /* underline için lazım */
  transition: color 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: var(--bs-primary); /* #6c63ff */
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.2rem;              /* çizginin yeri */
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6c63ff, #0ea5e9);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar .dropdown-menu {
  border-radius: 12px;
  border: none;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: .5rem 0;
}

.navbar .dropdown-item {
  font-size: 0.9rem;
  padding: 0.45rem 1.2rem;
}

.navbar .dropdown-item:hover {
  background-color: #f2f5ff;
}

.navbar .btn-primary {
  background-color: #6c63ff;
  border-color: #6c63ff;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.35);
}

.navbar .btn-primary:hover {
  background-color: #5b52e6;
  border-color: #5b52e6;
}

/* Giriş Yap butonu */
.navbar .btn-outline-primary {
  color: #6c63ff;
  border-color: #d9d2ff;
  background-color: #f5f1ff;
  font-weight: 500;
  border-radius: 999px;
}

.navbar .btn-outline-primary:hover {
  color: #fff;
  background-color: #6c63ff;
  border-color: #6c63ff;
}

.lang-switcher {
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  border: none;                 /* çerçeve yok */
  background-color: transparent;/* istersen #ffffff bırakabilirsin */
  box-shadow: none;             /* gölge de istemiyorsan */
  font-size: 0.8rem;
  color: #4b5563;
}

.lang-switcher:hover {
  background-color: #f5f1ff;
  border-color: #d9d2ff;
}

.lang-switcher:focus {
  box-shadow: 0 0 0 0.15rem rgba(108, 99, 255, 0.35);
}

/* bayrak boyutu */
.lang-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;      /* tam yuvarlak */
  overflow: hidden;        /* köşeler kesilsin */
  display: inline-block;
}

.fi.lang-flag {
  background-size: cover;  /* bayrak görseli daireyi tamamen kaplasın */
}

/* Dil dropdown'u */
.lang-dropdown .dropdown-menu[aria-labelledby="langDropdown"] {
  position: absolute;
  top: 100%;
  left: 50% !important;
  transform: translateX(-50%) translateY(0.3rem) !important; /* hafif aşağı */
  right: auto !important;

  min-width: 6rem;
  width: auto;
  padding: .25rem 0;
  border-radius: 14px;
}

/* İçteki item’leri biraz sıkı tutalım */
.lang-dropdown .dropdown-menu .dropdown-item {
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
}
/* navbar  logo*/
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 2rem;
}

.navbar-logo {
  height: clamp(28px, 4vw, 54px);  /* desktop > tablet > mobile otomatik ölçek */
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 575.98px) {
  .navbar-logo {
    height: 28px;
  }
}

/* navbar  logo bitiş*/

/* navbar dropdown*/

/* ÜST NAVBAR DROPDOWN PANELİ
   Dil seçiciye dokunmamak için sadece .nav-dropdown altında çalışıyoruz */
.navbar-nav .nav-dropdown .nav-dropdown-menu {
  min-width: 260px;
  padding: 0.75rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
  background-color: #ffffff;
  margin-top: 1.1rem;             /* ok ile navbar arasında boşluk */
  transform-origin: top;
  transform: translateY(6px) scale(0.97);
  opacity: 0;
  transition: opacity .16s ease-out, transform .16s ease-out;
}

/* Bootstrap show olunca animasyonlu açılsın */
.navbar-nav .nav-dropdown .show.nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Üstteki küçük üçgen (ok) */
.navbar-nav .nav-dropdown .nav-dropdown-menu::before,
.navbar-nav .nav-dropdown .nav-dropdown-menu::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 32px; /* hangi menüde ortalamak istersen bunu oynarsın */
  border-style: solid;
  border-width: 0 10px 10px 10px;
}



/* Okun beyaz içi */
.navbar-nav .nav-dropdown .nav-dropdown-menu::before {
  border-color: transparent transparent #ffffff transparent;
}

/* Okun hafif gölgesi / border’ı */
.navbar-nav .nav-dropdown .nav-dropdown-menu::after {
  top: -11px;
  border-color: transparent transparent rgba(148, 163, 184, 0.35) transparent;
}

/* İçerideki item’leri biraz daha “app menü” gibi yapalım */
.navbar-nav .nav-dropdown .dropdown-item {
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.navbar-nav .nav-dropdown .dropdown-item:hover {
  background-color: #f3f6ff;
  color: var(--bs-primary);
}

/* Küçük açıklama satırı istersen (örnek) */
.navbar-nav .nav-dropdown .dropdown-item span.label {
  font-weight: 600;
}

.navbar-nav .nav-dropdown .dropdown-item small {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
}

/* Genel dropdown panel (önceki önerdiğimle uyumlu) */
.navbar-nav .nav-dropdown .nav-dropdown-menu {
  min-width: 420px;
  padding: 1.1rem 1.25rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
}

/* Başlık */
.resources-title {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: black;
}

/* 2x2 grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 3rem;
}

/* Tek item */
.resource-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #111827;
  font-size: 0.92rem;
  border-radius: 12px;
  padding: 0.25rem 0.2rem;
  transition: background-color .15s ease, transform .12s ease, color .15s ease;
}

.resource-item:hover {
  background-color: #f3f6ff;
  color: var(--bs-primary);
  transform: translateY(-1px);
}

/* Mavi ikon kutusu */
.resource-icon {
  width: 30px;
  height: 28px;
  border-radius: 4px;
  background-color: var(--bs-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #ffffff;
}

/* Mobile’da daha sade görünmesi için */
@media (max-width: 991.98px) {
  .navbar-nav .nav-dropdown .nav-dropdown-menu {
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    padding: 0.5rem 1rem 1rem;
  }

  .resources-grid {
    grid-template-columns: 1fr; /* tek sütun */
    gap: 0.4rem 0;
  }

  .resource-item {
    padding: 0.35rem 0;
  }
}


/* navbar dropdown*/




/* Hero */
.hero-section {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background: #fff;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  max-width: 640px;
  margin-left: auto;
  margin-right: 0;
}

.hero-image {
  width: 100%;
  display: block;
  border-radius: 28px;
  background-color: var(--primary-soft);
}

/* Küçük ekranlarda ortala ve biraz küçült */
@media (max-width: 991.98px) {
  .hero-image-wrapper {
    max-width: 420px;
    margin: 0 auto 1.5rem auto;
  }
}

/* Arkadaki animasyon katmanı */
.hero-bg-anim {
  position: absolute;
  inset: -120px 0;           /* hero'nun etrafını hafif taşsın */
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* Yılan gibi kayan şeritlerin ortak stili */
.hero-snake {
  position: absolute;
  width: 420px;
  height: 90px;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.75;
  mix-blend-mode: screen;
  background: linear-gradient(
    90deg,
    rgba(108, 99, 255, 0.9),
    rgba(59, 130, 246, 0.4),
    rgba(129, 140, 248, 0.9)
  );
}

/* Soldan ortaya doğru kayan şerit */
.snake-1 {
  top: 18%;
  left: -25%;
  animation: snakeMoveLeft 6s ease-in-out infinite alternate;
}

/* Sağdan ortaya doğru kayan şerit */
.snake-2 {
  top: 55%;
  right: -30%;
  animation: snakeMoveRight 9s ease-in-out infinite alternate;
}

/* Hafif daha altta, yavaş bir şerit */
.snake-3 {
  bottom: -10%;
  left: 10%;
  opacity: 0.55;
  filter: blur(32px);
  animation: snakeMoveBottom 12s ease-in-out infinite alternate;
}

/* Soldan merkeze kıvrılarak gelen */
@keyframes snakeMoveLeft {
  0% {
    transform: translate3d(0, 0, 0) rotate(-18deg);
  }
  50% {
    transform: translate3d(35%, -6%, 0) rotate(-5deg);
  }
  100% {
    transform: translate3d(55%, 4%, 0) rotate(10deg);
  }
}
/* Sağdan merkeze kıvrılarak gelen */
@keyframes snakeMoveRight {
  0% {
    transform: translate3d(0, 0, 0) rotate(20deg);
  }
  50% {
    transform: translate3d(-35%, -12%, 0) rotate(5deg);
  }
  100% {
    transform: translate3d(-55%, 6%, 0) rotate(-12deg);
  }
}

/* Aşağıdan yukarı doğru daha yumuşak hareket */
@keyframes snakeMoveBottom {
  0% {
    transform: translate3d(0, 10%, 0) rotate(-10deg);
  }
  50% {
    transform: translate3d(8%, -8%, 0) rotate(4deg) scale(1.05);
  }
  100% {
    transform: translate3d(-6%, 4%, 0) rotate(-6deg) scale(0.95);
  }
}

/* Küçük ekranlarda biraz sakinleştirelim */
@media (max-width: 991.98px) {
  .hero-snake {
    width: 320px;
    height: 70px;
    filter: blur(24px);
    opacity: 0.6;
  }
}

@media (max-width: 575.98px) {
  .hero-bg-anim {
    inset: -80px 0;
  }

  .hero-snake {
    width: 260px;
    height: 60px;
    filter: blur(20px);
    opacity: 0.55;
  }
}



    .hero-title {
      font-size: clamp(2.2rem, 3vw + 1rem, 3.2rem);
      font-weight: 700;
      line-height: 1.15;
    }
    .hero-title,
h1, h2, h3, .navbar .nav-link {
  font-weight: 700;
  letter-spacing: 0.01em;
}


    .hero-highlight {
      color: var(--bs-primary);
    }

    .hero-subtitle {
      max-width: 480px;
      font-size: 1rem;
      color: var(--muted-color);
    }

    .btn-primary {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }

    .btn-primary:hover {
      background-color: #1838a8;
      border-color: #1838a8;
    }

    .btn-play {
      gap: 0.5rem;
    }

    /* Fake chat app card */
    .app-card {
      background: #ffffff;
      border-radius: 24px;
      box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
      padding: 1.5rem;
      max-width: 420px;
      margin-inline: auto;
      position: relative;
    }







 /* sponsor bölümü */    

/* ============ SPONSOR / BRAND STRIP ============ */

.brand-strip {
  background: #ffffff;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.brand-strip-title {
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Viewport: taşanı gizle */
.brand-strip-viewport {
  position: relative;
  overflow: hidden;
  margin-top: 0.15rem;
}

/* Sonsuz kayan track */
.brand-strip-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: brand-scroll 32s linear infinite;
  will-change: transform;
}

/* Logolar – renk SVG neyse o, siyahlığı dosyadan alıyoruz */
.brand-logo {
  flex: 0 0 auto;
  max-height: 50px;
  width: auto;
  opacity: 0.9;
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: black;
}

/* Hover: sadece animasyon, renk aynı kalıyor */
.brand-logo:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.05);
}

/* Sonsuz scroll animasyonu */
@keyframes brand-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Tablet ve altı için */
@media (max-width: 991.98px) {
  .brand-strip-track {
    gap: 3rem;
    animation-duration: 40s;
  }

  .brand-logo {
    max-height: 32px;
  }
}

/* Küçük telefonlar için */
@media (max-width: 575.98px) {
  .brand-strip {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }

  .brand-strip-track {
    gap: 2.2rem;
    animation-duration: 45s;
  }

  .brand-logo {
    max-height: 28px;
  }

  .brand-strip-title {
    font-size: 0.78rem;
  }
}



/* */

 
    /* “Nedir?” section */
    .feature-icon {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: var(--primary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: var(--primary-color);
      margin-right: 0.6rem;
      flex-shrink: 0;
    }

    .feature-title {
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .feature-text {
      font-size: 0.95rem;
      color: var(--muted-color);
    }


.feature-image-wrapper {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.feature-image {
  width: 100%;
  display: block;
  border-radius: 24px;
}


/* Küçük ekranlarda biraz nefes alan */
@media (max-width: 991.98px) {
  .feature-image-wrapper {
    max-width: 420px;
    margin-top: 1rem;
  }
}

/* Müşteri yorumları kısmı */

/* ============ MÜŞTERİ YORUMLARI ============ */

.testimonials-section {
  position: relative;
  background: radial-gradient(circle at top, #e4f3ff 0, #f5f9ff 48%, #f3f6ff 100%);
}

.testimontial-card{
  background-color: var(--bs-primary);
}
.avatar-img{
  height: 80px;
}



/* Müşteri yorumları bitiş / 

/* ============ İSTATİSTİK KARTLARI ============ */

.stats-section {
  background: #f3f8ff;
  padding: 3rem 0;
}

.stats-card {
  position: relative;
  background: #ffffff;
  border-radius: 26px;
  padding: 1.6rem 1.4rem 1.5rem;
  text-align: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

/* Hafif hover efekti */
.stats-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.10);
  transition: transform .18s ease, box-shadow .18s ease;
}

/* İkon + puls / yanıp sönme */
.stats-icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #f5f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem auto;
  color: #8b5cf6; /* mor ton */
  font-size: 1.3rem;
}

/* Glow halkası – yanıp sönüyormuş gibi */
.stats-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.45), transparent);
  opacity: 0;
  transform: scale(0.9);
  animation: statsPing 2.4s ease-out infinite;
  z-index: -1;
}

/* Büyük sayı */
.stats-number {
  font-size: 2rem;
  font-weight: 700;
  color: #4f46e5; /* mavi-mor */
  line-height: 1;
  margin-bottom: 0.35rem;
  animation: statsGlow 3s ease-in-out infinite;
}

.stats-suffix {
  font-size: 1.1rem;
  margin-left: 0.05rem;
}

/* Alt label */
.stats-label {
  font-size: 0.95rem;
  color: #6b7280;
}

/* Yanıp sönme / puls animasyonları */
@keyframes statsPing {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  60% {
    opacity: 0;
    transform: scale(1.8);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

/* Sayıya hafif parıltı */
@keyframes statsGlow {
  0%, 100% {
    text-shadow: 0 0 0 rgba(79, 70, 229, 0);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 18px rgba(79, 70, 229, 0.35);
    transform: scale(1.03);
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .stats-section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .stats-card {
    padding: 1.3rem 1rem 1.2rem;
  }

  .stats-number {
    font-size: 1.7rem;
  }
}


.logo-inverse {
  height: 250px;
}


/* ============ İLETİŞİM / CONTACT ============ */

.contact-section {
  padding: 4rem 0 4.5rem;
  background: #f3f6ff;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.2rem 2.3rem 2rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.contact-title {
  font-size: clamp(2rem, 2.7vw, 2.4rem);
  font-weight: 700;
}

.contact-subtitle {
  font-size: 0.98rem;
  color: var(--muted-color);
}

/* Form inputları */
.contact-input.form-control {
  border-radius: 999px;
  border-color: #e5e7eb;
  font-size: 0.95rem;
  padding-inline: 1rem;
  height: 46px;
}

.contact-input.form-control:focus,
.contact-textarea:focus {
  border-color: rgba(108, 99, 255, 0.8);
  box-shadow: 0 0 0 0.15rem rgba(108, 99, 255, 0.15);
}

.contact-textarea {
  border-radius: 18px;
  border-color: #e5e7eb;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  resize: vertical;
  min-height: 120px;
}

/* Sağdaki bilgi kartı */
/* ============ SAĞ TARAF – İLETİŞİM KARTI ============ */

.contact-section .row {
  align-items: stretch; /* form ile aynı yükseklik hissi */
}

.contact-info-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: radial-gradient(circle at top left,
              rgba(129, 140, 248, 0.12),
              rgba(248, 250, 252, 0.98));
  border-radius: 26px;
  padding: 1.9rem 1.9rem 1.7rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

/* üst başlık alanı */
.contact-info-header {
  margin-bottom: 1.3rem;
}

.contact-info-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 600;
}

.contact-info-desc {
  font-size: 0.86rem;
  color: #6b7280;
  margin-top: 0.7rem;
}

/* bilgi satırları */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.contact-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(129, 140, 248, 0.35);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.1rem;
}

.contact-info-link {
  font-size: 0.95rem;
  color: #111827;
  text-decoration: none;
}

.contact-info-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.contact-info-text {
  font-size: 0.9rem;
  color: #4b5563;
}

/* alt kısım – tercih edilen kanallar */
.contact-prefer {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  margin-top: 0.3rem;
}

.contact-prefer-label {
  font-size: 0.82rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.contact-prefer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.contact-chip {
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed rgba(156, 163, 175, 0.7);
  color: #9ca3af;
}
.contact-button{
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

/* responsive düzeltmeler */
@media (max-width: 991.98px) {
  .contact-info-card {
    margin-top: 1rem;
    padding: 1.7rem 1.6rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .contact-info-card {
    padding: 1.5rem 1.4rem;
  }
}


/* politikalar bölümü */

/* ============ POLİTİKALAR SAYFASI / SECTION ============ */

.policy-section {
  padding: 3.5rem 0 4rem;
  background: #f3f6ff;
}

/* SOL SİDEBAR */
/* SOL SİDEBAR */

.policy-sidebar {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.5rem 1.3rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.policy-sidebar-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.8rem;
}

.policy-menu {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* Artık hepsi a tag */
.policy-link {
  display: block;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
}

.policy-link:hover {
  background-color: #eef2ff;
  color: var(--bs-primary);
}

.policy-link.active {
  background-color: #e0e7ff;
  color: var(--bs-primary);
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.4);
}


/* SAĞ İÇERİK KARTI */
.policy-content-wrapper {
  height: 100%;
}

.policy-content-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 2.2rem 2.4rem 2.4rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

/* Başlıklar */
.policy-title {
  font-size: clamp(1.9rem, 2.4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.policy-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Metin */
.policy-content-card p {
  font-size: 0.97rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 0.9rem;
}

/* Responsive */
@media (max-width: 991.98px) {
  .policy-section {
    padding: 2.8rem 0 3.2rem;
  }

  .policy-content-card {
    margin-top: 0.5rem;
    padding: 1.8rem 1.7rem 2rem;
  }
}

@media (max-width: 575.98px) {
  .policy-sidebar {
    border-radius: 20px;
    padding: 1.2rem 1.1rem;
  }

  .policy-content-card {
    padding: 1.6rem 1.3rem 1.8rem;
  }
}


/* footer */ 

/* ============ FOOTER REVISION ============ */

.footer {
  padding-top: 0.8rem;
}

.footer-brand {
  max-width: 340px;
}

/* Üst satır hizalama */
.footer-main-row {
  align-items: flex-start;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  height: auto;
  overflow: visible;
}

.footer-logo {
  position: relative;
  top: auto;
  left: auto;
  height: clamp(30px, 4vw, 54px); /* desktop'ta biraz daha büyük dursun */
  width: auto;
  display: block;
  object-fit: contain;
}

/* Küçük ekranlarda çok büyümesin */
@media (max-width: 575.98px) {
  .footer-logo {
    height: 30px;
  }
}

.footer-text {
  font-size: 0.9rem;
  color: #6b7280;
  max-width: 320px;
  margin-top: 0.5rem;   /* logo ile metin arası */
  margin-bottom: 0;
  margin-left: 1.0rem;
}

/* Başlıklar aynı hizada ve daha kompakt dursun */
.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* Şirket / Support link listeleri */
.footer .nav-footer .nav-link {
  padding: 0.18rem 0;     /* dikey boşluğu ufalttık */
  font-size: 0.9rem;
  color: #374151;
}

.footer .nav-footer .nav-link:hover {
  color: var(--bs-primary);
}

/* Alt copyright bar */
.footer-bottom {
  padding-top: 0.75rem;
  padding-bottom: 0.65rem;
  margin-top: 2.25rem;
}

.footer-bottom .nav-footer .nav-link {
  font-size: 0.85rem;
}

/* Küçük ekran ayarı */
@media (max-width: 767.98px) {
  .footer {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .footer-main-row > [class*="col-"] {
    margin-bottom: 1.5rem;
  }

  .footer-bottom {
    margin-top: 1.5rem;
  }
}

/* ============ SIKÇA SORULAN SORULAR (SSS) ============ */

.faq-section {
  padding: 3.5rem 0 4rem;
  background: radial-gradient(circle at top, #e4f3ff 0, #f5f9ff 40%, #f3f6ff 100%);
}

.faq-title {
  font-size: clamp(1.8rem, 2.3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.faq-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Accordion genel kutu */
.faq-accordion .accordion-item {
  border: none;
  border-radius: 18px;
  margin-bottom: 0.75rem;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
  overflow: hidden; /* radius düzgün görünsün */
}

/* Başlık butonu */
.faq-accordion .accordion-button {
  background-color: #ffffff;
  color: #111827;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.1rem;
  box-shadow: none;
}

/* Açıkken başlık */
.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #f5f3ff;
  color: #111827;
}

/* Default arrow'u kaldır, kendi ikonumuzu koyalım */
.faq-accordion .accordion-button::after {
  background-image: none !important;
  content: '+';
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  color: #6c63ff;
  transform: none;
}

/* Açıkken eksi işaretine dönsün */
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: '–';
}

/* Focus/hover efektleri */
.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.25);
}

/* İçerik */
.faq-accordion .accordion-body {
  font-size: 0.9rem;
  color: #4b5563;
  padding: 0.9rem 1.1rem 1rem;
  line-height: 1.6;
}

/* Mobile ayarları */
@media (max-width: 767.98px) {
  .faq-section {
    padding: 2.75rem 0 3.25rem;
  }
}

/* ============ HAKKIMIZDA ============ */

.about-section {
  padding: 4rem 0 4.5rem;
  background: #fff;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #eef2ff;
  color: var(--bs-primary);
}

.about-title {
  font-size: clamp(1.9rem, 2.6vw, 2.3rem);
  font-weight: 700;
  line-height: 1.2;
}

.about-highlight {
  color: var(--bs-primary);
}

.about-text {
  font-size: 0.95rem;
  color: #6b7280;
}

/* Bullet alanı */
.about-bullets {
  margin-top: 0.5rem;
}

.about-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.about-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bs-primary);
  font-size: 1.1rem;
}

.about-item-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.about-item-text {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0;
}

/* Sağdaki kart */
/* ============ HAKKIMIZDA SAĞ GÖRSEL ============ */

.about-media {
  position: relative;
  max-width: 480px;
  margin-left: auto;
}

/* Ana görsel kartı */
.about-media-main {
  border-radius: 24px;
  background: #eef2ff;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.about-media-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

/* Yüzen küçük badge’ler */
.about-media-badge {
  position: absolute;
  min-width: 150px;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.15);
  display: inline-flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.about-media-badge .badge-label {
  font-size: 0.75rem;
  color: #6b7280;
}

.about-media-badge .badge-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bs-primary);
}

/* Konumlar (göz ayarı yapabilirsin) */
.about-media-badge-1 {
  bottom: -14px;
  left: 10%;
}

.about-media-badge-2 {
  top: 14px;
  right: 4%;
}

/* Mobilde biraz daha sakin dursun */
@media (max-width: 991.98px) {
  .about-media {
    margin: 1.5rem auto 0 auto;
  }

  .about-media-badge-1 {
    bottom: -12px;
    left: 12%;
  }

  .about-media-badge-2 {
    top: 12px;
    right: 10%;
  }
}

/* ============ PRICING / PAKETLER ============ */

.pricing-section {
  padding: 4rem 0 4.5rem;
  background: #f3f6ff;
}

.pricing-title {
  font-size: clamp(1.9rem, 2.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pricing-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Toggle (sadece görsel) */
.pricing-toggle {
  display: inline-flex;
  padding: 0.18rem;
  border-radius: 999px;
  background: #e5e7eb;
}

.pricing-toggle .toggle-btn {
  border: none;
  background: transparent;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 500;
  color: #4b5563;
}

.pricing-toggle .toggle-btn.active {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.pricing-toggle .toggle-pill {
  display: inline-block;
  margin-left: 0.25rem;
  font-size: 0.7rem;
  padding: 0.05rem 0.35rem;
  border-radius: 999px;
  background: #facc15;
  color: #111827;
}

/* Kartlar */
.pricing-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 24px;
  padding: 1.7rem 1.4rem 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.pricing-card-header {
  margin-bottom: 0.9rem;
}

.pricing-plan-name {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
}

.pricing-plan-tag {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Fiyat satırı */
.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}

.pricing-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--bs-primary);
}

.pricing-period {
  font-size: 0.9rem;
  color: #6b7280;
}

.pricing-desc {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

/* Özellikler */
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.87rem;
  color: #374151;
  margin-bottom: 0.4rem;
}

.pricing-features i {
  font-size: 0.9rem;
  color: #22c55e;
  margin-top: 0.1rem;
}

/* Orta kart – en popüler */
.pricing-card-popular {
  position: relative;
  border: 1px solid rgba(108, 99, 255, 0.6);
  box-shadow: 0 24px 60px rgba(88, 80, 236, 0.2);
  transform: translateY(-4px);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.18rem 0.75rem;
  border-radius: 999px;
  background: #4f46e5;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.6);
}

/* Alt not */
.pricing-note {
  font-size: 0.8rem;
  color: #6b7280;
}

.pricing-note a {
  color: var(--bs-primary);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991.98px) {
  .pricing-section {
    padding: 3.2rem 0 3.8rem;
  }

  .pricing-card-popular {
    transform: none;
  }

  .pricing-popular-badge {
    top: -12px;
  }
}

@media (max-width: 575.98px) {
  .pricing-card {
    padding: 1.5rem 1.25rem 1.4rem;
  }
}

.control-packages-title{
  color: var(--bs-primary);
}

/* ============ SEKTÖR SAYFALARI ============ */

/* ============ SEKTÖR HERO YENİ ============ */

.sector-hero {
  padding: 4rem 0 3.5rem;
  background: radial-gradient(circle at top left, #eef2ff 0, #f3f6ff 45%, #eef2ff 100%);
}

.sector-hero-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 2.3rem 2.4rem;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(129, 140, 248, 0.25);
  overflow: hidden;
}

/* Arka planda hafif renkli blob */
.sector-hero-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle,
              rgba(129, 140, 248, 0.22),
              transparent 70%);
  top: -80px;
  right: -40px;
  pointer-events: none;
}

/* Hero içindeki badge */
.sector-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sector-title {
  font-size: clamp(1.9rem, 2.6vw, 2.3rem);
  font-weight: 700;
  line-height: 1.2;
}

.sector-title-highlight {
  color: var(--bs-primary);
}

.sector-subtitle {
  font-size: 0.96rem;
  color: #6b7280;
}

/* bullet’lar */
.sector-points {
  margin-top: 0.7rem;
}

.sector-point {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: #4b5563;
}

.sector-point i {
  font-size: 1rem;
  color: #22c55e;
  margin-top: 0.05rem;
}

/* küçük meta chipler */
.sector-meta-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.sector-meta-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #f3f4ff;
}

.sector-meta-chip .label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #9ca3af;
  font-size: 0.7rem;
}

.sector-meta-chip .value {
  font-weight: 600;
  color: #111827;
}

/* Sağdaki otomasyon kartı */
.automation-card {
  position: relative;
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 22px;
  padding: 1.4rem 1.3rem 1.2rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.8);
  overflow: hidden;
}

/* card içindeki hafif parıltı */
.automation-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left,
              rgba(129, 140, 248, 0.45),
              transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

/* içeriğin okunması için üst katman */
.automation-card > * {
  position: relative;
  z-index: 1;
}

.automation-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.automation-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.automation-subtitle {
  font-size: 0.78rem;
  color: #9ca3af;
}

.automation-channels {
  display: flex;
  gap: 0.3rem;
}

.channel-badge {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #22c55e;
}

/* Steps */
.automation-steps {
  margin: 0;
}

.automation-step {
  display: flex;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #e5e7eb;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.automation-step:last-child {
  border-bottom: none;
}

.step-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(191, 219, 254, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.step-body {
  flex: 1;
}

.step-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5b4fc;
}

.step-text {
  font-size: 0.82rem;
}

/* footer */
.automation-footer {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: #cbd5f5;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.automation-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px dashed rgba(191, 219, 254, 0.8);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Responsive ayarlar */
@media (max-width: 991.98px) {
  .sector-hero-card {
    padding: 2rem 1.8rem;
  }

  .sector-hero-card::before {
    width: 220px;
    height: 220px;
    top: -60px;
    right: -40px;
  }

  .automation-card {
    margin-top: 0.7rem;
  }
}

@media (max-width: 575.98px) {
  .sector-hero {
    padding: 3.2rem 0 3rem;
  }

  .sector-hero-card {
    padding: 1.7rem 1.3rem;
  }

  .sector-meta-mini {
    gap: 0.4rem;
  }

  .sector-meta-chip {
    padding: 0.3rem 0.65rem;
  }
}




.flow-card {
  background: #f9fafb;
  border-radius: 18px;
  padding: 1.2rem 1.1rem;
  height: 100%;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.flow-step {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #e0e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 0.7rem;
}

.flow-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.flow-text {
  font-size: 0.9rem;
  color: #6b7280;
}


.sector-crm {
  background: #f3f6ff;
}

.crm-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.crm-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.6);
}

.crm-row:last-child {
  border-bottom: none;
}

.crm-label {
  font-weight: 600;
  color: #6b7280;
}

.crm-value {
  font-weight: 500;
  color: #111827;
}

.crm-footer {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: #6b7280;
}


.sector-cta {
  background: #ffffff;
}

.sector-cta-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.2rem 1.8rem;
  border-radius: 26px;
  background: radial-gradient(circle at top left,
              rgba(129, 140, 248, 0.16),
              #ffffff);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
}


@media (max-width: 575.98px) {
  .sector-meta {
    gap: 0.6rem;
  }

  .sector-cta-card {
    padding: 1.8rem 1.3rem;
  }
}


/* ============ ÖZELLİKLER SAYFASI ============ */

.features-hero-section {
  padding: 2.8rem 0 3rem;
  background: radial-gradient(circle at top, #e4f3ff 0, #f5f9ff 40%, #f3f6ff 100%);
}

.features-hero-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 2.1rem 2.2rem 2rem;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.10);
}

.features-hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: #eef2ff;
  color: var(--bs-primary);
  font-weight: 600;
}

.features-hero-title {
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  font-weight: 700;
}

.features-hero-text {
  font-size: 0.95rem;
  color: #6b7280;
}

.features-hero-point {
  display: flex;
  gap: 0.7rem;
}

.features-hero-point i {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.features-hero-point .label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}

.features-hero-point p {
  font-size: 0.86rem;
  color: #6b7280;
  margin-bottom: 0;
}

.features-hero-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.features-hero-mini .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
}


.features-automation-demo {
  background: radial-gradient(circle at top left,
              rgba(129, 140, 248, 0.12),
              rgba(248, 250, 252, 0.98));
  border-radius: 24px;
  padding: 1.4rem 1.4rem 1.3rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.22);
  font-size: 0.9rem;
}

.features-demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.features-demo-header .title {
  font-weight: 600;
  font-size: 0.95rem;
}

.features-demo-header .subtitle {
  font-size: 0.8rem;
  color: #6b7280;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e5e7eb;
  margin-left: -8px;
}

.avatar-circle:first-child {
  margin-left: 0;
}

.avatar-circle.icon {
  background: #22c55e;
}

.avatar-circle.icon i {
  font-size: 1rem;
}

.features-demo-body {
  background: #ffffff;
  border-radius: 14px;
  padding: 0.75rem 0.8rem;
  margin-bottom: 0.6rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
}

.demo-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.8rem;
  padding: 0.1rem 0;
}

.demo-label {
  color: #6b7280;
}

.demo-value {
  font-weight: 500;
  color: #111827;
}

.features-demo-footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #4b5563;
}

.features-demo-footer .pill {
  align-self: flex-start;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  background: #eef2ff;
  font-size: 0.78rem;
  color: var(--bs-primary);
  font-weight: 600;
}


.features-modules-section {
  padding: 3rem 0 3.5rem;
  background: #f3f6ff;
}

.feature-module-card {
  height: 100%;
  background: #ffffff;
  border-radius: 22px;
  padding: 1.4rem 1.2rem 1.3rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 0.88rem;
}

.feature-module-card .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.feature-module-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.feature-module-card p {
  font-size: 0.87rem;
  color: #6b7280;
  margin-bottom: 0.6rem;
}

.feature-module-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.feature-module-card li {
  font-size: 0.82rem;
  color: #4b5563;
  margin-bottom: 0.2rem;
}


.features-flow-section {
  padding: 3rem 0 3rem;
  background: #ffffff;
}

.features-flow-row {
  margin-top: 0.5rem;
}

.features-flow-step {
  height: 100%;
  background: #f9fafb;
  border-radius: 18px;
  padding: 1.2rem 1rem 1.1rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  font-size: 0.88rem;
}

.features-flow-step h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.features-flow-step p {
  font-size: 0.83rem;
  color: #6b7280;
  margin-bottom: 0;
}

.features-flow-step .step-number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}


.features-safety-section {
  padding: 3rem 0 3.2rem;
  background: #f3f6ff;
}

.features-safety-card {
  height: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 1.8rem 1.7rem 1.6rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.features-safety-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
}

.features-safety-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-safety-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.features-safety-list i {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.features-safety-cta {
  margin-top: 0.8rem;
  padding: 0.6rem 0.8rem;
  border-radius: 14px;
  background: #f9fafb;
  font-size: 0.84rem;
  color: #4b5563;
}


@media (max-width: 991.98px) {
  .features-hero-card {
    padding: 1.6rem 1.5rem 1.7rem;
  }

  .features-automation-demo {
    margin-top: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .features-hero-section {
    padding: 2.2rem 0 2.6rem;
  }

  .feature-module-card {
    padding: 1.3rem 1.1rem 1.2rem;
  }

  .features-safety-card {
    padding: 1.5rem 1.4rem 1.4rem;
  }
}


.plan-compare-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}


.plan-compare-header {
  width: 100%;
  padding: 0.9rem 1.4rem;
  border: none;
  background-color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.98rem;
  color: #111827;
  cursor: pointer;
}

.plan-compare-header:hover {
  background-color: #f3f4f6;
}


.plan-compare-chevron {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.plan-compare-chevron::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}


.plan-compare-card.is-collapsed .plan-compare-chevron::before {
  transform: rotate(-135deg);
}


.plan-compare-table {
  width: 100%;
  overflow-x: auto;
}

.plan-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) repeat(3, 140px);
    border-top: 1px solid #e5e7eb;
    background-color: #fff;
}

.plan-col-feature {
    padding: 0.9rem 1rem;
    min-width: 0;
}

.plan-col-plan {
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-title {
    font-weight: 600;
    color: #111827;
    line-height: 1.35;
    margin-bottom: 0.3rem;
    overflow-wrap: anywhere;
}
.feature-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

@media (max-width: 767.98px) {
    .plan-row {
        grid-template-columns: minmax(240px, 1fr) repeat(3, 80px);
    }

    .plan-col-feature,
    .plan-col-plan {
        padding: 0.7rem 0.8rem;
    }

    .feature-desc {
        font-size: 0.8rem;
    }
}


.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.check-icon::before {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #16a34a;
  border-bottom: 2px solid #16a34a;
  transform: rotate(-45deg) translateY(-1px);
}




.plan-compare-card.is-collapsed .plan-compare-table {
  display: none;
}

.main-404 {
    min-height: 70vh;
    background: radial-gradient(circle at top left, #e3ecff 0, #f4f6ff 35%, transparent 60%), radial-gradient(circle at bottom right, #e5fff7 0, #f6fffb 40%, #ffffff 75%);
}


.error-badge {
    background-color: #ffffff;
    border-radius: 999px;
    padding: .45rem 1.15rem;
    font-size: .78rem;
    font-weight: 500;
    color: #6b7280;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.error-badge-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 228, 230, 0.9);
    color: #e03131;
    font-size: .9rem;
}


.error-card-wrapper {
    position: relative;
    width: 260px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
}


.error-ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    inset: 0;
}

    .error-ring.ring-1 {
        inset: 8%;
        opacity: .9;
    }

    .error-ring.ring-2 {
        inset: -4%;
        opacity: .7;
    }

    .error-ring.ring-3 {
        inset: -16%;
        opacity: .5;
    }


.error-card {
    position: absolute;
    inset: 20%;
    border-radius: 32px;
    overflow: hidden;
    background: #fdfdfd;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.error-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(18px);
}


.error-card-glow {
    position: absolute;
    inset: -35%;
    background: radial-gradient(circle at top, rgba(59,130,246,0.40), transparent 55%), radial-gradient(circle at bottom right, rgba(251,191,36,0.40), transparent 55%);
}


.error-card-code {
    position: relative;
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--bs-primary); 
    letter-spacing: .12em;
    text-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.error-card-label {
    position: relative;
    margin-top: .3rem;
    font-size: .8rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(55,65,81,0.75);
}


@media (max-width: 991.98px) {
    .main-404 {
        padding-top: 5rem;
    }

    .error-card-wrapper {
        margin-top: 1.5rem;
        width: 220px;
    }

    .error-card-code {
        font-size: 3rem;
    }
}
.cb-color{
    background-color: var(--bs-primary);
    color: #fff;
}
.cb-color:hover{
    background-color: var(--primary-color);
    color: #fff;
}

.turnstile-wrap {
    margin: 20px 0 16px 0;
    display: flex;
    justify-content: flex-start;
}




.plan-compare-card .plan-col-feature {
    display: grid !important;
    grid-template-columns: 240px minmax(0, 1fr) !important;
    column-gap: 24px !important;
    align-items: start !important;
    padding: 0.85rem 1.4rem !important;
}

.plan-compare-card .plan-col-plan {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.plan-compare-card .feature-title {
    display: block !important;
    width: 240px !important;
    min-width: 240px !important;
    margin: 0 !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: #111827 !important;
}

.plan-compare-card .feature-desc {
    display: block !important;
    margin: 0 !important;
    font-size: 0.83rem !important;
    line-height: 1.5 !important;
    color: #6b7280 !important;
    min-width: 0 !important;
}

@media (max-width: 767.98px) {
    .plan-compare-card .plan-col-feature {
        grid-template-columns: 190px minmax(0, 1fr) !important;
        column-gap: 16px !important;
    }

    .plan-compare-card .feature-title {
        width: 190px !important;
        min-width: 190px !important;
    }
}

