﻿/* ==========================================================================
   SGN - PREMIUM INSURTECH TEK PANEL (SLOGAN, ROZETLER VE WATERMARK İLE)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;600;700&display=swap');

/* --- Ana Tema Header Ezici --- */
header.sgn-header-wrapper {
  min-height: auto !important;
  height: auto !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  position: relative !important;
}

/* --- Font Kuralı --- */
.sgn-header-wrapper *:not(.fa) {
  font-family: 'Cabin', sans-serif !important;
  line-height: 1.5 !important;
}

.sgn-header-wrapper .fa {
  font-family: 'FontAwesome' !important;
}

/* --- Header Bar --- */
.sgn-header-bar {
  background-color: #ffffff !important;
  border-bottom: 3px solid #F66A06 !important;
  padding: 10px 0 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
  position: relative;
  z-index: 10;
}

.sgn-slogan {
  color: #212529 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  margin: 0 !important;
  line-height: 50px !important;
}

  .sgn-slogan span {
    color: #F66A06 !important;
    font-weight: 600 !important;
  }

/* --- HAREKETLİ ARKA PLAN --- */
@keyframes sgnGradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.sgn-hero-bg {
  position: relative;
  display: block !important;
  background: linear-gradient(-45deg, #ffffff, #fff4ec, #F66A06, #D85A04);
  background-size: 400% 400%;
  animation: sgnGradientFlow 15s ease infinite;
  padding: 60px 0 100px 0 !important;
  overflow: hidden !important;
  z-index: 1;
}

.sgn-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  z-index: -1;
}

/* --- YARI SAYDAM İLLÜSTRASYONLAR (WATERMARKS) --- */
.sgn-watermarks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Formun arkasında, arkaplanın önünde */
  pointer-events: none;
}

.sgn-wm-icon {
  position: absolute;
  font-size: 350px !important;
  color: #000000;
  opacity: 0.03; /* Neredeyse transparan, çok klas bir doku verir */
}

.sgn-wm-left {
  top: 5%;
  left: -5%;
  transform: rotate(-15deg);
}

.sgn-wm-right {
  bottom: -10%;
  right: -5%;
  transform: rotate(15deg);
}

.sgn-row-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2; /* Formu watermarkların üstüne alır */
}

/* --- YENİ: KARŞILAMA BAŞLIĞI (HERO TEXT - BUZLU CAM EFEKTİ) --- */
@keyframes sgnFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sgn-hero-header {
  text-align: center;
  margin: 0 auto 40px auto;
  max-width: 850px;
  animation: sgnFadeInDown 0.8s ease-out forwards;
  /* YENİ: Buzlu Cam (Glassmorphism) Arka Planı */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px 50px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 1);
}

.sgn-hero-title {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #1D1D1B !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.5px !important;
}

  .sgn-hero-title span {
    color: #F66A06 !important;
  }

.sgn-hero-subtitle {
  font-size: 16px !important;
  color: #495057 !important; /* Okunabilirliği artırmak için gri bir tık koyulaştırıldı */
  font-weight: 500 !important;
  margin: 0 !important;
}

/* Mobil için başlık kutusu uyarlaması */
@media (max-width: 767px) {
  .sgn-hero-header {
    padding: 20px 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    width: 90%;
  }

  .sgn-hero-title {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }

  .sgn-hero-subtitle {
    font-size: 14px !important;
  }
}

/* --- BİRLEŞİK BÜYÜK PANEL TASARIMI --- */
@keyframes sgnFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sgn-unified-panel {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 950px;
  background: #ffffff !important;
  border-radius: 16px !important;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.3s ease-out !important;
  opacity: 0;
  transform: translateY(20px);
  animation: sgnFadeInUp 0.6s ease-out forwards 0.2s;
  position: relative;
  margin: 0 auto;
  /* DİKKAT: Rozetlerin taşması için overflow hidden kaldırıldı */
}

  .sgn-unified-panel:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18) !important;
  }

.sgn-form-col {
  flex: 1;
  padding: 40px;
}

.sgn-panel-divider {
  width: 1px;
  background-color: #eef1f5;
  margin: 40px 0;
}

.sgn-card-title {
  color: #212529 !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin-bottom: 30px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* --- YENİ: UÇUŞAN GÜVEN ROZETLERİ (FLOATING BADGES) --- */
@keyframes sgnFloatBadge {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.sgn-trust-badge {
  position: absolute;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #212529 !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: sgnFloatBadge 5s ease-in-out infinite;
}

.sgn-badge-left {
  top: -20px;
  left: -30px;
}

.sgn-badge-right {
  bottom: -20px;
  right: -30px;
  animation-delay: -2.5s; /* İkisi aynı anda inip çıkmasın diye asenkronize ettik */
}

/* --- Form Elemanları --- */
.sgn-input-group {
  margin-bottom: 20px !important;
}

.sgn-input-label {
  display: block;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #212529 !important;
  margin-bottom: 8px;
}

.sgn-input {
  width: 100% !important;
  height: 48px !important;
  padding: 0 15px !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #212529 !important;
  background-color: #fcfcfc !important;
  border: 1px solid #e0e5e9 !important;
  border-radius: 8px !important;
  outline: none !important;
  transition: all 0.2s ease-out !important;
}

  .sgn-input::placeholder {
    color: #adb5bd !important;
  }

  .sgn-input:focus {
    background-color: #ffffff !important;
    border-color: #F66A06 !important;
    box-shadow: 0 0 0 3px rgba(246, 106, 6, 0.15) !important;
  }

  .sgn-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
    -webkit-text-fill-color: #212529 !important;
  }

/* --- Butonlar --- */
.sgn-btn-primary {
  display: block !important;
  width: 100% !important;
  height: 48px !important;
  background: #F66A06 !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.2s ease-out !important;
  margin-top: 25px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

  .sgn-btn-primary:hover {
    background: #D85A04 !important;
    box-shadow: 0 6px 15px rgba(246, 106, 6, 0.3) !important;
    transform: translateY(-2px) !important;
  }

.sgn-forgot-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #F66A06;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

  .sgn-forgot-link:hover {
    color: #D85A04;
    text-decoration: underline;
  }

/* --- ReCAPTCHA & Notlar --- */
.sgn-recaptcha-box {
  display: flex;
  justify-content: center;
  margin: 15px 0;
  transform: scale(0.9);
  transform-origin: center;
}

.sgn-form-note {
  color: #6c757d !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  text-align: center;
  margin-top: 15px;
}

/* --- SAĞA YAPIŞIK MODERN SOSYAL MEDYA BAR --- */
.sgn-sticky-social {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end !important;
  gap: 15px;
}

.sgn-sticky-link,
.sgn-sticky-link:link,
.sgn-sticky-link:visited {
  display: flex !important;
  align-items: center !important;
  width: 55px !important;
  height: 55px !important;
  background-color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 16px 0 0 16px !important;
  box-shadow: -4px 4px 15px rgba(0,0,0,0.1) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  overflow: hidden !important;
}

.sgn-sticky-icon {
  min-width: 55px !important;
  height: 55px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 26px !important;
}

.sgn-sticky-text {
  font-family: 'Cabin', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  transform: translateX(20px) !important;
  transition: all 0.3s ease !important;
  color: #ffffff !important;
}

.sgn-sticky-wa .sgn-sticky-icon i {
  color: #25D366 !important;
  transition: all 0.3s ease !important;
}

.sgn-sticky-phone .sgn-sticky-icon i {
  color: #1976d2 !important;
  transition: all 0.3s ease !important;
}

.sgn-sticky-ig .sgn-sticky-icon i {
  color: #e6683c !important;
  transition: all 0.3s ease !important;
}

.sgn-sticky-link:hover {
  width: 165px !important;
}

  .sgn-sticky-link:hover .sgn-sticky-text {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

.sgn-sticky-phone:hover .sgn-sticky-icon i, .sgn-sticky-wa:hover .sgn-sticky-icon i, .sgn-sticky-ig:hover .sgn-sticky-icon i {
  color: #ffffff !important;
}

.sgn-sticky-phone:hover {
  background-color: #1976d2 !important;
  box-shadow: -5px 10px 25px rgba(25, 118, 210, 0.4) !important;
}

.sgn-sticky-wa:hover {
  background-color: #25D366 !important;
  box-shadow: -5px 10px 25px rgba(37, 211, 102, 0.4) !important;
}

.sgn-sticky-ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  box-shadow: -5px 10px 25px rgba(220, 39, 67, 0.4) !important;
}

/* --- Mobil Uyum --- */
@media (max-width: 767px) {
  .sgn-header-bar {
    text-align: center !important;
  }

  .sgn-slogan {
    font-size: 14px !important;
    line-height: normal !important;
    margin-top: 10px !important;
  }

  .sgn-hero-bg {
    padding: 40px 15px !important;
  }

  .sgn-hero-title {
    font-size: 24px !important;
  }

  .sgn-hero-subtitle {
    font-size: 14px !important;
    padding: 0 15px;
  }

  /* Mobilde karmaşa yaratmamak için watermark ve rozetleri gizliyoruz */
  .sgn-watermarks, .sgn-trust-badge {
    display: none !important;
  }

  .sgn-unified-panel {
    flex-direction: column;
  }

  .sgn-form-col {
    padding: 30px 20px;
  }

  .sgn-panel-divider {
    width: auto;
    height: 1px;
    margin: 0 20px;
  }
}

/* ==========================================================================
   SGN - HAKKIMIZDA BÖLÜMÜ (PREMIUM VİDEO KARTLARI VE TİPOGRAFİ)
   ========================================================================== */

.sgn-about-section {
  background-color: #ffffff;
  padding: 80px 0 100px 0;
  position: relative;
  z-index: 2;
}

/* --- İki Bloklu Hakkımızda Alanı --- */
.sgn-about-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  
}

.sgn-about-brand-card,
.sgn-about-content-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 27, 0.07);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(29, 29, 27, 0.08);
}

.sgn-about-brand-card {
  display: flex;
  min-height: 270px;
  padding: 34px 26px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(145deg, #ffffff 0%, #fff8f2 100%);
}

.sgn-about-brand-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  top: -90px;
  right: -80px;
  border-radius: 50%;
  background: rgba(246, 106, 6, 0.12);
}

  .sgn-about-brand-card img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 230px;
    height: auto;
  }

  .sgn-about-brand-card span {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 210px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid rgba(246, 106, 6, 0.22);
    color: #6c757d;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
  }

.sgn-about-content-card {
  padding: 44px 48px;
  text-align: left;
}

.sgn-about-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #F66A06;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.sgn-section-title {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #1D1D1B !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin: 0 0 28px 0 !important;
  position: relative;
  display: inline-block;
}

  .sgn-section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #F66A06;
    border-radius: 10px;
  }

.sgn-section-subtitle {
  font-size: 18px !important;
  color: #6c757d !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  max-width: none;
  margin: 0 !important;
}

  .sgn-section-subtitle strong {
    color: #1D1D1B !important;
    font-weight: 700 !important;
  }

/* --- Oval, Gölgeli Video Kartları --- */
.sgn-video-wrapper {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden; /* Videonun köşelerinin oval formdan taşmasını engeller */
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease-out;
  margin-bottom: 30px;
  /* Videonun etrafına şık bir beyaz çerçeve (border) görünümü verir */
  border: 4px solid #ffffff;
}

  .sgn-video-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .sgn-video-wrapper video {
    width: 100% !important;
    height: auto !important;
    display: block;
    border-radius: 12px; /* İçerideki videonun da köşelerini yumuşatır */
    outline: none !important;
  }

/* Mobil için ortalama ayarları */
@media (max-width: 767px) {
  .sgn-about-section {
    padding: 50px 0;
  }

  .sgn-about-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 35px;
  }

  .sgn-about-brand-card {
    min-height: 190px;
    padding: 26px 22px;
  }

    .sgn-about-brand-card img {
      max-width: 210px;
    }

    .sgn-about-brand-card span {
      max-width: 250px;
      margin-top: 18px;
      padding-top: 16px;
    }

  .sgn-about-content-card {
    padding: 30px 24px;
  }

  .sgn-section-title {
    font-size: 26px !important;
  }

  .sgn-section-subtitle {
    font-size: 15px !important;
    padding: 0;
  }

  .sgn-video-wrapper {
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   SGN - HİZMETLERİMİZ BÖLÜMÜ (KART YAPIŞMA SORUNU ÇÖZÜLDÜ)
   ========================================================================== */

.sgn-services-section {
  background-color: #f8f9fa;
  padding: 80px 0 30px 0;
  position: relative;
}

/* Sütunların düzgün dizilmesi için Flex Grid ayarı */
.sgn-services-row {
  display: flex;
  flex-wrap: wrap;
}

/* YENİ: Kartların birbirine yapışmasını engelleyen zorunlu boşluklar */
.sgn-service-col {
  display: flex;
  padding: 15px !important; /* Yanlardan ve üstten nefes aldırır */
  margin-bottom: 15px !important; /* Alt alta bindiğinde mesafe koyar */
}

/* --- Kart Tasarımı --- */
.sgn-service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 30px;
  width: 100%; /* Sütunu tam kaplasın */
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.4s ease-out;
  border: 1px solid rgba(0,0,0,0.02);
}

  .sgn-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(246, 106, 6, 0.12);
    border-color: rgba(246, 106, 6, 0.1);
  }

/* --- İkon Kutusu --- */
.sgn-service-icon {
  width: 65px;
  height: 65px;
  background: #fff4ec;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.sgn-service-card:hover .sgn-service-icon {
  background: #F66A06;
}

.sgn-service-icon img {
  max-width: 35px;
  max-height: 35px;
  transition: all 0.3s ease;
}

.sgn-service-card:hover .sgn-service-icon img {
  transform: scale(1.15);
}

/* --- Başlık ve Metin --- */
.sgn-service-title {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1D1D1B !important;
  margin-bottom: 15px !important;
  line-height: 1.3 !important;
}

.sgn-service-desc {
  font-size: 14px !important;
  color: #6c757d !important;
  line-height: 1.6 !important;
  margin-bottom: 25px !important;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Detay Butonu --- */
.sgn-btn-service {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 12px 0;
  background: transparent;
  color: #F66A06 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border: 2px solid #fff4ec;
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sgn-service-card:hover .sgn-btn-service {
  background: #F66A06;
  color: #ffffff !important;
  border-color: #F66A06;
}

.sgn-btn-service:link,
.sgn-btn-service:visited,
.sgn-btn-service:focus,
.sgn-btn-service:active {
  color: #F66A06 !important;
  text-decoration: none !important;
}

.sgn-service-card:hover .sgn-btn-service:visited,
.sgn-service-card:hover .sgn-btn-service:focus,
.sgn-service-card:hover .sgn-btn-service:active {
  color: #ffffff !important;
}

/* ==========================================================================
   SGN - CALL TO ACTION (CTA / ÜYELİK) BÖLÜMÜ
   ========================================================================== */

.sgn-cta-section {
  padding: 55px 0 105px;
  background: #f8f9fa;
}

.sgn-cta-wrapper {
  position: relative;
  overflow: hidden;
  padding: 55px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(135deg, #111111 0%, #202020 56%, #35180a 100%);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.20);
}

  .sgn-cta-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(246, 106, 6, 0.16) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.55;
    pointer-events: none;
  }

.sgn-cta-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.sgn-cta-orbit-one {
  width: 300px;
  height: 300px;
  top: -170px;
  right: 23%;
  background: rgba(246, 106, 6, 0.28);
}

.sgn-cta-orbit-two {
  width: 220px;
  height: 220px;
  left: -130px;
  bottom: -145px;
  background: rgba(246, 106, 6, 0.14);
}

.sgn-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 48px;
  align-items: center;
}

.sgn-cta-content {
  text-align: left;
}

.sgn-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(246, 106, 6, 0.30);
  border-radius: 999px;
  color: #ff8a3d;
  background: rgba(246, 106, 6, 0.10);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.sgn-cta-title {
  color: #ffffff !important;
  max-width: 680px;
  margin: 0 0 18px !important;
  font-size: 38px !important;
  font-weight: 900 !important;
  letter-spacing: -0.8px !important;
  line-height: 1.18 !important;
}

  .sgn-cta-title span {
    color: #F66A06;
  }

.sgn-cta-description {
  max-width: 690px;
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.sgn-cta-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

  .sgn-cta-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13.5px;
    font-weight: 700;
  }

  .sgn-cta-benefits i {
    color: #F66A06;
  }

.sgn-cta-action-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  text-align: center;
  backdrop-filter: blur(10px);
}

.sgn-cta-action-icon {
  display: flex;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #F66A06, #D85A04);
  box-shadow: 0 13px 28px rgba(246, 106, 6, 0.32);
  font-size: 23px;
}

.sgn-cta-action-card strong {
  display: block;
  margin-bottom: 9px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
}

.sgn-cta-action-card p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13.5px;
  line-height: 1.6;
}

.sgn-btn-cta {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px !important;
  border-radius: 14px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #F66A06, #D85A04) !important;
  box-shadow: 0 12px 28px rgba(246, 106, 6, 0.30) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: 0.2px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

  .sgn-btn-cta:hover {
    color: #1a1a1a !important;
    background: #ffffff !important;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25) !important;
    transform: translateY(-3px) !important;
  }

.sgn-cta-action-card small {
  display: block;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11.5px;
}

  .sgn-cta-action-card small i {
    margin-right: 5px;
    color: #F66A06;
  }

@media (max-width: 991px) {
  .sgn-cta-wrapper {
    padding: 42px;
  }

  .sgn-cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sgn-cta-action-card {
    max-width: 500px;
  }
}

@media (max-width: 767px) {
  .sgn-cta-section {
    padding: 35px 15px 75px;
  }

  .sgn-cta-wrapper {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .sgn-cta-title {
    font-size: 27px !important;
    letter-spacing: -0.4px !important;
  }

  .sgn-cta-description {
    font-size: 15px;
  }

  .sgn-cta-benefits {
    flex-direction: column;
    gap: 11px;
  }

  .sgn-cta-action-card {
    padding: 26px 20px;
  }
}

/* ==========================================================================
   SGN - HAREKETLİ & TAM GENİŞLİK (FULL WIDTH) PREMIUM FOOTER
   ========================================================================== */

/* Hareketli Koyu Arka Plan Animasyonu */
@keyframes sgnFooterPan {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.sgn-footer-animated {
  background: linear-gradient(-45deg, #050505, #11131a, #1a0f05, #0a0a0a);
  background-size: 400% 400%;
  animation: sgnFooterPan 20s ease infinite;
  padding: 80px 0 20px 0;
  color: #ffffff;
  font-family: 'Cabin', sans-serif !important;
  position: relative;
  overflow: hidden;
}

  /* Arka Planda Uçuşan Parçacık Efekti (Noktalı Doku) */
  .sgn-footer-animated::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(246, 106, 6, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
  }

.sgn-footer-content {
  position: relative;
  z-index: 2;
}

/* --- TAM GENİŞLİK İLETİŞİM FORMU KARTI --- */

/* --- TAM GENİŞLİK İLETİŞİM FORMU KARTI (AYDINLIK & FERAH TASARIM) --- */
.sgn-fullwidth-form-wrapper {
  background: #ffffff; /* İç karartıcı karanlık yerine bembeyaz aydınlık kart */
  border: 1px solid #eef1f5;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 60px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); /* Koyu zeminde havada durma hissi veren gölge */
  position: relative;
  transition: all 0.4s ease;
}

  /* Çerçeve Parlama Efekti - Beyaz karta uyarlandı */
  .sgn-fullwidth-form-wrapper:hover {
    box-shadow: 0 20px 50px rgba(246, 106, 6, 0.15);
    border-color: rgba(246, 106, 6, 0.3);
    transform: translateY(-2px);
  }

.sgn-footer-title-center {
  text-align: center;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #1D1D1B !important; /* Aydınlık zemine uygun koyu antrasit yazı */
  margin-bottom: 40px !important;
  letter-spacing: 1px;
}

  .sgn-footer-title-center span {
    color: #F66A06;
  }

/* --- Aydınlık Form Elemanları --- */
.sgn-footer-input {
  width: 100% !important;
  background-color: #fcfcfc !important; /* Sitenin geneliyle uyumlu çok tatlı açık gri zemin */
  border: 1px solid #f66a06 !important;
  border-radius: 12px !important;
  padding: 15px 20px !important;
  font-size: 15px !important;
  color: #212529 !important; /* Aydınlık zemin için koyu metin rengi */
  outline: none !important;
  transition: all 0.3s ease !important;
  margin-bottom: 20px;
}

  .sgn-footer-input::placeholder {
    color: #adb5bd !important; /* Yumuşak gri placeholder */
  }

  .sgn-footer-input:focus {
    background-color: #ffffff !important;
    border-color: #F66A06 !important;
    box-shadow: 0 0 0 3px rgba(246, 106, 6, 0.15) !important;
  }


.sgn-btn-footer-submit {
  display: inline-block;
  padding: 15px 50px !important;
  background: linear-gradient(45deg, #F66A06, #D85A04) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  border: none !important;
  border-radius: 12px !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease !important;
  box-shadow: 0 5px 15px rgba(246, 106, 6, 0.3);
  margin-top: 10px;
}

  .sgn-btn-footer-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(246, 106, 6, 0.5);
  }

.sgn-footer-recaptcha {
  display: flex;
  justify-content: center;
  margin: 15px 0;
  transform: scale(0.95);
}

/* --- Alt Kısım: Linkler ve Harita --- */
.sgn-footer-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sgn-footer-subtitle {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
  border-left: 3px solid #F66A06;
  padding-left: 15px;
}

.sgn-quick-links-hz {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}

  .sgn-quick-links-hz li a {
    color: #adb5bd !important;
    font-size: 15px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
  }

    .sgn-quick-links-hz li a:hover {
      color: #F66A06 !important;
      padding-left: 5px;
    }

.sgn-map-glass {
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

  .sgn-map-glass:hover {
    border-color: #F66A06;
    box-shadow: 0 10px 30px rgba(246, 106, 6, 0.15);
  }

  .sgn-map-glass iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

.sgn-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  color: #6c757d;
  font-size: 14px;
}

/* Mobil Uyum */
@media (max-width: 767px) {
  .sgn-footer-animated {
    padding: 60px 15px 20px 15px;
  }

  .sgn-fullwidth-form-wrapper {
    padding: 30px 20px;
  }

  .sgn-footer-bottom-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sgn-quick-links-hz {
    flex-direction: column;
    gap: 15px;
  }
}

/* ==========================================================================
   SGN - HEADER SLOGAN (PREMIUM KAPSÜL / BADGE TASARIMI)
   ========================================================================== */

.sgn-header-slogan-wrapper {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 6px 18px 6px 8px; /* İkon tarafı dar, yazı tarafı geniş boşluk */
  border-radius: 50px;
  border: 1px solid #eef1f5;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  cursor: default;
}

  .sgn-header-slogan-wrapper:hover {
    box-shadow: 0 6px 20px rgba(246, 106, 6, 0.08);
    border-color: rgba(246, 106, 6, 0.2);
    transform: translateY(-1px);
  }

/* Slogan İkonunun Yuvarlak Arka Planı (Hizmetler kısmıyla uyumlu) */
.sgn-slogan-icon-box {
  width: 34px;
  height: 34px;
  background: #fff4ec; /* Logonun turuncusunun en soft hali */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.sgn-header-slogan-wrapper:hover .sgn-slogan-icon-box {
  background: #F66A06;
}

/* Kendi ekleyeceğin PNG ikonun boyut ayarı */
.sgn-slogan-icon-box img {
  max-width: 18px;
  max-height: 18px;
  transition: all 0.3s ease;
}

.sgn-header-slogan-wrapper:hover .sgn-slogan-icon-box img {
  filter: brightness(0) invert(1); /* Üzerine gelince ikon turuncu zemin üstünde beyaz olur */
}

.sgn-slogan-text {
  color: #6c757d;
  font-family: 'Cabin', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  margin: 0 !important;
  letter-spacing: 0.2px;
}

  .sgn-slogan-text span {
    color: #F66A06 !important;
    font-weight: 700 !important;
  }


/* ==========================================================================
   SGN - TOP BAR (TEPE MENÜ & İLETİŞİM ALANI)
   ========================================================================== */

.sgn-topbar {
  /* Turuncu renklerinizle oluşturulmuş premium gradient arka plan */
  background: linear-gradient(90deg, #D85A04, #F66A06, #D85A04);
  background-size: 200% auto;
  animation: sgnGradientFlow 10s ease infinite;
  color: #ffffff;
  padding: 8px 0;
  font-family: 'Cabin', sans-serif !important;
  font-size: 13px !important;
  box-shadow: 0 2px 10px rgba(246, 106, 6, 0.3);
  position: relative;
  z-index: 20; /* Header'ın ve arka planın her zaman üstünde dursun */
}

/* Flexbox Grid Düzeni */
.sgn-topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* --- Sol Taraf: Menü --- */
.sgn-topbar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px; /* Menüler arası boşluk */
}

  .sgn-topbar-menu li a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    opacity: 0.85;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
  }

    .sgn-topbar-menu li a:hover {
      opacity: 1;
      text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    }

/* --- Sağ Taraf: Telefon Numaraları --- */
.sgn-topbar-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
}

.sgn-topbar-phone {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 50px; /* Numaraları tatlı bir kapsül içine alır */
}

  .sgn-topbar-phone i {
    font-size: 15px;
  }

  .sgn-topbar-phone:hover {
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
    transform: translateY(-1px);
  }

/* --- Mobil Uyum (Senin İstediğin Sıralama) --- */
@media (max-width: 767px) {
  .sgn-topbar {
    padding: 12px 0;
  }

  .sgn-topbar-flex {
    flex-direction: column;
    gap: 12px;
  }

  /* Flex 'order' ile Numaralar ÜSTE, Menü ALTA alınır */
  .sgn-topbar-contact {
    order: 1; /* Birinci sırada görünsün */
    justify-content: center;
    width: 100%;
  }

  .sgn-topbar-menu {
    order: 2; /* İkinci sırada (Logodan hemen önce) görünsün */
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .sgn-topbar-phone {
    font-size: 13px !important;
    padding: 4px 10px;
  }
}
/* --- Şifremi Unuttum Linki Görünürlük Düzeltmesi --- */
.sgn-forgot-link {
  display: block !important;
  text-align: center !important;
  margin-top: 15px !important;
  color: #6c757d !important; /* Normalde koyu gri durur, her zaman net okunur */
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

  .sgn-forgot-link:hover {
    color: #F66A06 !important; /* Fareyle üzerine gelince bizim turuncuya döner */
    text-decoration: underline !important;
  }
  /* 9.06.2026 gelıstırmeler anasayfa */

.kh-animated-section {
  position: relative;
  overflow: hidden;
  padding: 95px 20px;
  background: radial-gradient(circle at top left, rgba(255, 102, 0, 0.16), transparent 34%), linear-gradient(135deg, #ffffff 0%, #fff7f1 52%, #f7f7f7 100%);
  font-family: Arial, Helvetica, sans-serif;
}

.kh-animated-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.kh-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.55;
  animation: khGlowMove 7s ease-in-out infinite alternate;
}

.kh-glow-one {
  width: 280px;
  height: 280px;
  background: rgba(255, 102, 0, 0.25);
  top: -80px;
  left: -80px;
}

.kh-glow-two {
  width: 360px;
  height: 360px;
  background: rgba(26, 26, 26, 0.10);
  right: -120px;
  bottom: -120px;
  animation-delay: 1.5s;
}

.kh-mini-title {
  display: inline-block;
  padding: 9px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 102, 0, 0.12);
  color: #ff6600;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.kh-animated-content h2 {
  margin: 0 0 22px 0;
  color: #1a1a1a;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 900;
}

  .kh-animated-content h2 span,
  .kh-animated-content h2 strong {
    color: #ff6600;
  }

.kh-animated-content p {
  max-width: 570px;
  margin: 0 0 30px 0;
  color: #555555;
  font-size: 17px;
  line-height: 1.8;
}

.kh-action-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.kh-main-btn,
.kh-ghost-btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.kh-main-btn {
  background: linear-gradient(135deg, #ff6600, #d94f00);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(255, 102, 0, 0.28);
}

  .kh-main-btn:link,
  .kh-main-btn:visited,
  .kh-main-btn:focus,
  .kh-main-btn:active {
    color: #ffffff;
    text-decoration: none;
  }

  .sgn-btn-cta:link,
  .sgn-btn-cta:visited,
  .sgn-btn-cta:focus,
  .sgn-btn-cta:active {
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .sgn-btn-cta:hover,
  .sgn-btn-cta:link:hover,
  .sgn-btn-cta:visited:hover,
  .sgn-btn-cta:focus:hover {
    color: #1a1a1a !important;
    background: #ffffff !important;
    text-decoration: none !important;
  }

    .sgn-btn-cta:hover i,
    .sgn-btn-cta:link:hover i,
    .sgn-btn-cta:visited:hover i {
      color: #F66A06 !important;
    }

  .kh-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(255, 102, 0, 0.38);
    color: #ffffff;
  }

.kh-ghost-btn {
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid rgba(26, 26, 26, 0.14);
}

  .kh-ghost-btn:link,
  .kh-ghost-btn:visited,
  .kh-ghost-btn:focus,
  .kh-ghost-btn:active {
    color: #1a1a1a;
    text-decoration: none;
  }

  .kh-ghost-btn:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
  }

.kh-stats-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

  .kh-stats-row div {
    min-width: 135px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 102, 0, 0.16);
    box-shadow: 0 14px 30px rgba(26, 26, 26, 0.07);
  }

  .kh-stats-row strong {
    display: block;
    color: #ff6600;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 4px;
  }

  .kh-stats-row span {
    color: #555555;
    font-size: 13.5px;
  }

.kh-animated-visual {
  position: relative;
  min-height: 510px;
}

.kh-main-card {
  position: absolute;
  width: 410px;
  min-height: 430px;
  right: 42px;
  top: 35px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 102, 0, 0.18);
  box-shadow: 0 30px 80px rgba(26, 26, 26, 0.16);
  backdrop-filter: blur(12px);
  animation: khFloatCard 4.8s ease-in-out infinite;
}

.kh-card-top {
  height: 58px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.10);
}

  .kh-card-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ff6600;
  }

    .kh-card-top span:nth-child(2) {
      background: #1a1a1a;
    }

    .kh-card-top span:nth-child(3) {
      background: #d94f00;
    }

.kh-car-area {
  position: relative;
  height: 185px;
  margin: 25px 26px 0 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.13), rgba(26, 26, 26, 0.05));
  overflow: hidden;
}

  .kh-car-area:before {
    content: "";
    position: absolute;
    width: 160%;
    height: 2px;
    left: -30%;
    bottom: 42px;
    background: repeating-linear-gradient( 90deg, rgba(26, 26, 26, 0.22), rgba(26, 26, 26, 0.22) 18px, transparent 18px, transparent 34px );
    animation: khRoadMove 1.4s linear infinite;
  }

.kh-car {
  position: absolute;
  left: 55px;
  bottom: 45px;
  width: 220px;
  height: 86px;
  animation: khCarShake 1.8s ease-in-out infinite;
}

.kh-car-body {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 215px;
  height: 54px;
  border-radius: 24px 34px 18px 18px;
  background: linear-gradient(135deg, #ff6600, #d94f00);
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.12);
}

.kh-car-window {
  position: absolute;
  left: 65px;
  bottom: 60px;
  width: 78px;
  height: 38px;
  border-radius: 18px 18px 4px 4px;
  background: #ffffff;
  border: 5px solid #1a1a1a;
}

.kh-wheel {
  position: absolute;
  bottom: 4px;
  width: 44px;
  height: 44px;
  background: #1a1a1a;
  border-radius: 50%;
  border: 8px solid #ffffff;
  box-shadow: 0 0 0 5px #ff6600;
  animation: khWheelSpin 0.8s linear infinite;
}

.kh-wheel-left {
  left: 34px;
}

.kh-wheel-right {
  right: 28px;
}

.kh-crash-mark {
  position: absolute;
  right: -14px;
  top: 3px;
  width: 42px;
  height: 42px;
  background: #1a1a1a;
  color: #ff6600;
  border: 2px solid #ff6600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 25px;
  box-shadow: 0 12px 28px rgba(255, 102, 0, 0.30);
  animation: khPulse 1.3s ease-in-out infinite;
}

.kh-progress-list {
  padding: 25px 28px 30px 28px;
}

.kh-progress-item {
  margin-bottom: 20px;
}

  .kh-progress-item span {
    display: block;
    margin-bottom: 9px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 800;
  }

  .kh-progress-item i {
    display: block;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1a1a1a, #ff6600, #d94f00);
    animation: khProgress 2.8s ease-in-out infinite;
    transform-origin: left;
  }

.kh-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 17px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(255, 102, 0, 0.20);
  box-shadow: 0 18px 44px rgba(26, 26, 26, 0.14);
  animation: khFloatBadge 4s ease-in-out infinite;
}

  .kh-floating-badge span {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.12);
    color: #ff6600;
    font-weight: 900;
    font-size: 20px;
  }

  .kh-floating-badge b {
    color: #1a1a1a;
    font-size: 14px;
    white-space: nowrap;
  }

.kh-badge-one {
  top: 38px;
  left: 25px;
}

.kh-badge-two {
  top: 225px;
  right: 0;
  animation-delay: 0.8s;
}

.kh-badge-three {
  bottom: 55px;
  left: 5px;
  animation-delay: 1.4s;
}

.kh-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 102, 0, 0.30);
  animation: khRotate 18s linear infinite;
}

.kh-orbit-one {
  width: 430px;
  height: 430px;
  right: 30px;
  top: 30px;
}

.kh-orbit-two {
  width: 330px;
  height: 330px;
  right: 80px;
  top: 82px;
  border-color: rgba(26, 26, 26, 0.16);
  animation-direction: reverse;
}

/* Animations */
@keyframes khFloatCard {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes khFloatBadge {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes khCarShake {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }

  35% {
    transform: translateX(4px) rotate(1deg);
  }

  70% {
    transform: translateX(-2px) rotate(-1deg);
  }
}

@keyframes khWheelSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes khRoadMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(34px);
  }
}

@keyframes khPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 12px 28px rgba(255, 102, 0, 0.28);
  }

  50% {
    transform: scale(1.12);
    box-shadow: 0 16px 38px rgba(255, 102, 0, 0.45);
  }
}

@keyframes khProgress {
  0% {
    transform: scaleX(0.35);
    opacity: 0.7;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0.35);
    opacity: 0.7;
  }
}

@keyframes khRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes khGlowMove {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(25px, 20px) scale(1.08);
  }
}

/* Tablet */
@media screen and (max-width: 992px) {
  .kh-animated-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .kh-animated-content {
    text-align: center;
  }

    .kh-animated-content p {
      margin-left: auto;
      margin-right: auto;
    }

  .kh-action-row,
  .kh-stats-row {
    justify-content: center;
  }

  .kh-animated-visual {
    min-height: 500px;
  }

  .kh-main-card {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    animation: khFloatCardMobile 4.8s ease-in-out infinite;
  }

  @keyframes khFloatCardMobile {
    0%, 100% {
      transform: translateX(-50%) translateY(0);
    }

    50% {
      transform: translateX(-50%) translateY(-14px);
    }
  }
}

/* Mobil */
@media screen and (max-width: 640px) {
  .kh-animated-section {
    padding: 65px 16px;
  }

  .kh-animated-content h2 {
    font-size: 31px;
  }

  .kh-animated-content p {
    font-size: 15.5px;
  }

  .kh-action-row {
    flex-direction: column;
  }

  .kh-main-btn,
  .kh-ghost-btn {
    width: 100%;
    text-align: center;
  }

  .kh-stats-row {
    flex-direction: column;
  }

    .kh-stats-row div {
      width: 100%;
    }

  .kh-animated-visual {
    min-height: 430px;
  }

  .kh-main-card {
    width: 100%;
    max-width: 350px;
    min-height: 390px;
    top: 35px;
  }

  .kh-car-area {
    height: 155px;
    margin: 20px 20px 0 20px;
  }

  .kh-car {
    left: 35px;
    transform: scale(0.85);
    transform-origin: left bottom;
  }

  .kh-floating-badge {
    padding: 10px 12px;
  }

    .kh-floating-badge span {
      width: 32px;
      height: 32px;
      font-size: 16px;
    }

    .kh-floating-badge b {
      font-size: 12px;
    }

  .kh-badge-one {
    top: 5px;
    left: 0;
  }

  .kh-badge-two {
    top: 210px;
    right: 0;
  }

  .kh-badge-three {
    bottom: 20px;
    left: 0;
  }

  .kh-orbit-one,
  .kh-orbit-two {
    display: none;
  }
}

html.kh-loading body {
  visibility: hidden;
  opacity: 0;
}

html.kh-ready body {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.18s ease-in;
}

/** 12.06.2026 yenı eklenenler **/

.sgn-footer-contact-panel {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.sgn-footer-contact-item {
  flex: 1;
  min-width: 240px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sgn-footer-contact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
  background: #F66A06;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sgn-footer-contact-item span {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.sgn-footer-contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.sgn-footer-contact-item a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

  .sgn-footer-contact-item a:hover {
    color: #F66A06;
    text-decoration: none;
  }

@media screen and (max-width: 767px) {
  .sgn-footer-contact-panel {
    padding: 18px;
  }

  .sgn-footer-contact-item {
    min-width: 100%;
  }
}

/* Ana sayfa SEO ve trafik odaklı içerik alanı */
.kh-seo-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0 95px;
  background:
    radial-gradient(circle at 8% 12%, rgba(246, 106, 6, 0.13), transparent 27%),
    radial-gradient(circle at 92% 86%, rgba(255, 102, 0, 0.10), transparent 30%),
    linear-gradient(180deg, #fffaf6 0%, #ffffff 48%, #f8f8f8 100%);
  color: #1a1a1a;
}

.kh-seo-section:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246, 106, 6, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 106, 6, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.kh-seo-container {
  position: relative;
  z-index: 2;
}

.kh-seo-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  animation: khSeoGlow 8s ease-in-out infinite alternate;
}

.kh-seo-glow-one {
  width: 280px;
  height: 280px;
  left: -130px;
  top: 26%;
  background: rgba(246, 106, 6, 0.09);
}

.kh-seo-glow-two {
  width: 360px;
  height: 360px;
  right: -190px;
  bottom: 8%;
  background: rgba(26, 26, 26, 0.055);
  animation-delay: -3s;
}

.kh-seo-header {
  display: block;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  max-width: 940px;
  margin: 0 auto 30px;
  text-align: center;
}

.kh-seo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 16px;
  border: 1px solid rgba(246, 106, 6, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #d95600;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(246, 106, 6, 0.09);
}

.kh-seo-header h2 {
  margin: 0 0 20px;
  color: #171717;
  font-size: 43px;
  line-height: 1.17;
  font-weight: 900;
  letter-spacing: -1.2px;
}

.kh-seo-header h2 span {
  display: block;
  color: #f66a06;
}

.kh-seo-header p {
  max-width: 850px;
  margin: 0 auto;
  color: #616161;
  font-size: 17px;
  line-height: 1.85;
}

.kh-seo-intro-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 26px;
  margin-bottom: 28px;
}

.kh-seo-feature,
.kh-seo-process,
.kh-seo-content,
.kh-seo-faq {
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 60px rgba(24, 24, 24, 0.075);
}

.kh-seo-feature {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 34px;
}

.kh-seo-feature-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #f66a06, #d84e00);
  color: #ffffff;
  font-size: 28px;
  box-shadow: 0 15px 32px rgba(246, 106, 6, 0.28);
  animation: khSeoIconFloat 4.5s ease-in-out infinite;
}

.kh-seo-feature h3,
.kh-seo-content h3 {
  margin: 0 0 13px;
  color: #1b1b1b;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 850;
}

.kh-seo-feature p,
.kh-seo-content p {
  margin: 0;
  color: #666666;
  font-size: 15.5px;
  line-height: 1.8;
}

.kh-seo-process {
  padding: 30px;
  background: linear-gradient(145deg, #171717, #292929);
  color: #ffffff;
}

.kh-seo-process-label,
.kh-seo-mini-title {
  display: block;
  margin-bottom: 18px;
  color: #f66a06;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.kh-seo-process ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kh-seo-process li {
  position: relative;
  display: flex;
  gap: 15px;
  padding: 0 0 22px;
}

.kh-seo-process li:last-child {
  padding-bottom: 0;
}

.kh-seo-process li:not(:last-child):after {
  content: "";
  position: absolute;
  left: 18px;
  top: 39px;
  width: 1px;
  height: calc(100% - 34px);
  background: linear-gradient(to bottom, #f66a06, rgba(246, 106, 6, 0.1));
}

.kh-seo-process li b {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f66a06;
  color: #ffffff;
  font-size: 12px;
  box-shadow: 0 8px 20px rgba(246, 106, 6, 0.24);
}

.kh-seo-process li span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13.5px;
  line-height: 1.55;
}

.kh-seo-process li strong {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 15px;
}

.kh-seo-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.kh-seo-topic-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 30px 27px;
  border: 1px solid rgba(26, 26, 26, 0.075);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(25, 25, 25, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.kh-seo-topic-card:before {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(246, 106, 6, 0.07);
  transition: transform 0.4s ease;
}

.kh-seo-topic-card:hover {
  transform: translateY(-8px);
  border-color: rgba(246, 106, 6, 0.27);
  box-shadow: 0 25px 60px rgba(246, 106, 6, 0.14);
}

.kh-seo-topic-card:hover:before {
  transform: scale(1.4);
}

.kh-seo-topic-card > i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 21px;
  border-radius: 15px;
  background: #fff1e8;
  color: #f66a06;
  font-size: 21px;
}

.kh-seo-topic-number {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(26, 26, 26, 0.07);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.kh-seo-topic-card h3 {
  position: relative;
  margin: 0 0 11px;
  color: #202020;
  font-size: 19px;
  font-weight: 850;
}

.kh-seo-topic-card p {
  position: relative;
  margin: 0;
  color: #6b6b6b;
  font-size: 14px;
  line-height: 1.72;
}

.kh-seo-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 28px;
}

.kh-seo-content,
.kh-seo-faq {
  padding: 34px;
}

.kh-seo-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 18px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.kh-seo-content li {
  color: #444444;
  font-size: 13.5px;
  line-height: 1.55;
}

.kh-seo-content li i {
  margin-right: 7px;
  color: #f66a06;
}

.kh-seo-faq h3 {
  margin: 0 0 18px;
  color: #1b1b1b;
  font-size: 24px;
  font-weight: 850;
}

.kh-seo-faq details {
  margin-bottom: 10px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 14px;
  background: #fafafa;
}

.kh-seo-faq summary {
  position: relative;
  padding: 16px 42px 16px 17px;
  color: #282828;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.kh-seo-faq summary::-webkit-details-marker {
  display: none;
}

.kh-seo-faq summary:after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #f66a06;
  font-size: 22px;
  font-weight: 400;
}

.kh-seo-faq details[open] summary:after {
  content: "−";
}

.kh-seo-faq details p {
  margin: 0;
  padding: 0 17px 17px;
  color: #686868;
  font-size: 13.5px;
  line-height: 1.7;
}

.kh-seo-faq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #d95600;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.kh-seo-faq-link:hover {
  color: #1a1a1a;
  text-decoration: none;
}

.kh-seo-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 38px;
  border-radius: 24px;
  background: linear-gradient(120deg, #f66a06 0%, #d84e00 62%, #1b1b1b 180%);
  box-shadow: 0 25px 60px rgba(216, 78, 0, 0.26);
  color: #ffffff;
}

.kh-seo-cta:after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -120px;
  border: 35px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.kh-seo-cta > div {
  position: relative;
  z-index: 2;
}

.kh-seo-cta span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.kh-seo-cta h3 {
  max-width: 650px;
  margin: 0;
  color: #ffffff;
  font-size: 23px;
  line-height: 1.38;
  font-weight: 850;
}

.kh-seo-cta-actions {
  display: flex;
  gap: 11px;
  flex-shrink: 0;
}

.kh-seo-primary-btn,
.kh-seo-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.kh-seo-primary-btn {
  background: #ffffff;
  color: #d84e00;
  box-shadow: 0 12px 25px rgba(28, 28, 28, 0.17);
}

.kh-seo-secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.kh-seo-primary-btn:link,
.kh-seo-primary-btn:visited,
.kh-seo-primary-btn:focus,
.kh-seo-primary-btn:active {
  color: #d84e00;
  text-decoration: none;
}

.kh-seo-secondary-btn:link,
.kh-seo-secondary-btn:visited,
.kh-seo-secondary-btn:focus,
.kh-seo-secondary-btn:active {
  color: #ffffff;
  text-decoration: none;
}

.sgn-hero-bg {
  scroll-margin-top: 20px;
}

.sgn-services-section,
.sgn-footer-animated {
  scroll-margin-top: 20px;
}

html {
  scroll-behavior: auto;
}

body.kh-smooth-scroll-active {
  scroll-behavior: auto;
}

.kh-seo-primary-btn:hover,
.kh-seo-secondary-btn:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.kh-seo-primary-btn:hover {
  color: #1b1b1b;
  box-shadow: 0 16px 32px rgba(28, 28, 28, 0.22);
}

.kh-seo-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.19);
  color: #ffffff;
}

@keyframes khSeoIconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(-3deg); }
}

@keyframes khSeoGlow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(28px, -18px, 0) scale(1.12); }
}

@media screen and (max-width: 991px) {
  .kh-seo-section {
    padding: 80px 0 75px;
  }

  .kh-seo-header h2 {
    font-size: 36px;
  }

  .kh-seo-intro-grid,
  .kh-seo-bottom-grid {
    grid-template-columns: 1fr;
  }

  .kh-seo-topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kh-seo-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .kh-seo-section {
    padding: 65px 0 60px;
  }

  .kh-seo-header {
    margin-bottom: 24px;
  }

  .kh-seo-header h2 {
    font-size: 29px;
    letter-spacing: -0.5px;
  }

  .kh-seo-header p {
    font-size: 15px;
    line-height: 1.75;
  }

  .kh-seo-feature {
    display: block;
    padding: 25px;
  }

  .kh-seo-feature-icon {
    margin-bottom: 20px;
  }

  .kh-seo-process,
  .kh-seo-content,
  .kh-seo-faq {
    padding: 25px;
  }

  .kh-seo-topics {
    grid-template-columns: 1fr;
  }

  .kh-seo-topic-card {
    min-height: auto;
  }

  .kh-seo-content ul {
    grid-template-columns: 1fr;
  }

  .kh-seo-cta {
    padding: 27px 24px;
  }

  .kh-seo-cta h3 {
    font-size: 20px;
  }

  .kh-seo-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .kh-seo-primary-btn,
  .kh-seo-secondary-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kh-seo-glow,
  .kh-seo-feature-icon {
    animation: none;
  }

  .kh-seo-topic-card,
  .kh-seo-primary-btn,
  .kh-seo-secondary-btn {
    transition: none;
  }
}

/* Yeni kurumsal iletişim merkezi */
.kh-contact-center {
  position: relative;
  margin-bottom: 42px;
}

.kh-contact-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.kh-contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  padding: 8px 14px;
  border: 1px solid rgba(246, 106, 6, 0.32);
  border-radius: 999px;
  background: rgba(246, 106, 6, 0.1);
  color: #ff8a35;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.kh-contact-heading h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 39px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.9px;
}

.kh-contact-heading h2 span {
  color: #f66a06;
}

.kh-contact-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.67);
  font-size: 16px;
  line-height: 1.75;
}

.kh-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.kh-contact-info,
.kh-contact-form-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
}

.kh-contact-info {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 90% 5%, rgba(246, 106, 6, 0.24), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(13px);
}

.kh-contact-info:after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -75px;
  width: 190px;
  height: 190px;
  border: 32px solid rgba(246, 106, 6, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.kh-contact-info-top,
.kh-contact-cards,
.kh-contact-assurance {
  position: relative;
  z-index: 2;
}

.kh-contact-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 19px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
}

.kh-contact-status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3cd278;
  box-shadow: 0 0 0 6px rgba(60, 210, 120, 0.11);
  animation: khContactPulse 2s ease-in-out infinite;
}

.kh-contact-info-top h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 27px;
  line-height: 1.33;
  font-weight: 850;
}

.kh-contact-info-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.75;
}

.kh-contact-cards {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.kh-contact-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.kh-contact-card:link,
.kh-contact-card:visited,
.kh-contact-card:focus,
.kh-contact-card:active {
  color: #ffffff;
  text-decoration: none;
}

.kh-contact-card:hover {
  transform: translateX(6px);
  border-color: rgba(246, 106, 6, 0.45);
  background: rgba(246, 106, 6, 0.11);
  color: #ffffff;
  text-decoration: none;
}

.kh-contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #f66a06, #d84e00);
  color: #ffffff;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(246, 106, 6, 0.23);
}

.kh-contact-card-icon.kh-contact-whatsapp {
  background: linear-gradient(135deg, #2bd66f, #169548);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.2);
}

.kh-contact-card small,
.kh-contact-card strong,
.kh-contact-card em {
  display: block;
}

.kh-contact-card small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.kh-contact-card strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  word-break: break-word;
}

.kh-contact-card em {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-style: normal;
}

.kh-contact-arrow {
  color: #f66a06;
  font-size: 15px;
  transition: transform 0.3s ease;
}

.kh-contact-card:hover .kh-contact-arrow {
  transform: translateX(4px);
}

.kh-contact-assurance {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.kh-contact-assurance span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11.5px;
}

.kh-contact-assurance i {
  margin-right: 6px;
  color: #f66a06;
}

.kh-contact-form-card {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #ffffff;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.kh-contact-form-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #f66a06, #ff9d58, #f66a06);
  background-size: 200% 100%;
  animation: khContactLine 5s linear infinite;
}

.kh-contact-form-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 27px;
}

.kh-contact-form-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #fff0e5;
  color: #f66a06;
  font-size: 20px;
}

.kh-contact-form-head h3 {
  margin: 0 0 4px;
  color: #1e1e1e;
  font-size: 23px;
  font-weight: 850;
}

.kh-contact-form-head p {
  margin: 0;
  color: #7a7a7a;
  font-size: 13px;
}

.kh-contact-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.kh-contact-field {
  display: block;
  margin-bottom: 16px;
}

.kh-contact-field > span {
  display: block;
  margin-bottom: 8px;
  color: #373737;
  font-size: 12px;
  font-weight: 800;
}

.kh-contact-field > span i {
  width: 16px;
  margin-right: 4px;
  color: #f66a06;
  text-align: center;
}

.kh-contact-field input,
.kh-contact-field textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  background: #f8f9fb;
  color: #222222;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.kh-contact-field input {
  height: 51px;
  padding: 0 16px;
}

.kh-contact-field textarea {
  min-height: 137px;
  padding: 15px 16px;
  resize: vertical;
}

.kh-contact-field input::placeholder,
.kh-contact-field textarea::placeholder {
  color: #a2a5ab;
}

.kh-contact-field input:focus,
.kh-contact-field textarea:focus {
  border-color: #f66a06;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(246, 106, 6, 0.11);
}

.kh-contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 3px;
}

.kh-contact-captcha {
  max-width: 304px;
  overflow: hidden;
  transform-origin: left center;
}

.kh-contact-submit {
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #f66a06, #d84e00);
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 13px 30px rgba(246, 106, 6, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kh-contact-submit i {
  margin-left: 7px;
  transition: transform 0.25s ease;
}

.kh-contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 37px rgba(246, 106, 6, 0.37);
}

.kh-contact-submit:hover i {
  transform: translateX(4px);
}

.kh-contact-map-card {
  display: grid;
  grid-template-columns: 0.39fr 0.61fr;
  min-height: 260px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.kh-contact-map-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 33px;
}

.kh-contact-map-icon {
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 19px;
  border-radius: 15px;
  background: #f66a06;
  color: #ffffff;
  font-size: 19px;
}

.kh-contact-map-copy small,
.kh-contact-map-copy strong {
  display: block;
}

.kh-contact-map-copy small {
  margin-bottom: 6px;
  color: #f66a06;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.kh-contact-map-copy strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
}

.kh-contact-map-copy p {
  margin: 4px 0 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.kh-contact-map-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.kh-contact-map-copy a:link,
.kh-contact-map-copy a:visited,
.kh-contact-map-copy a:focus,
.kh-contact-map-copy a:active {
  color: #ffffff;
  text-decoration: none;
}

.kh-contact-map-copy a:hover {
  border-color: #f66a06;
  background: rgba(246, 106, 6, 0.13);
  color: #ffffff;
  text-decoration: none;
}

.kh-contact-map {
  min-height: 260px;
}

.kh-contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  filter: saturate(0.75) contrast(1.04);
}

@keyframes khContactPulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(60, 210, 120, 0.09); }
  50% { box-shadow: 0 0 0 9px rgba(60, 210, 120, 0.03); }
}

@keyframes khContactLine {
  from { background-position: 0 0; }
  to { background-position: 200% 0; }
}

@media screen and (max-width: 991px) {
  .kh-contact-grid,
  .kh-contact-map-card {
    grid-template-columns: 1fr;
  }

  .kh-contact-map-copy {
    min-height: 230px;
  }

  .kh-contact-map {
    min-height: 300px;
  }

  .kh-contact-map iframe {
    min-height: 300px;
  }
}

@media screen and (max-width: 767px) {
  .kh-contact-heading {
    margin-bottom: 28px;
  }

  .kh-contact-heading h2 {
    font-size: 29px;
  }

  .kh-contact-heading p {
    font-size: 14.5px;
  }

  .kh-contact-info,
  .kh-contact-form-card {
    padding: 25px;
    border-radius: 21px;
  }

  .kh-contact-info-top h3 {
    font-size: 23px;
  }

  .kh-contact-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .kh-contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .kh-contact-captcha {
    transform: scale(0.87);
  }

  .kh-contact-submit {
    width: 100%;
  }

  .kh-contact-map-copy {
    min-height: auto;
    padding: 26px;
  }

  .kh-contact-map {
    min-height: 250px;
  }

  .kh-contact-map iframe {
    min-height: 250px;
  }
}

@media screen and (max-width: 380px) {
  .kh-contact-captcha {
    transform: scale(0.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  .kh-contact-status i,
  .kh-contact-form-card:before {
    animation: none;
  }
}

/* Yeni premium giriş ve üyelik ilk ekranı */
.kh-auth-hero {
  padding: 68px 0 82px !important;
  background: linear-gradient(135deg, #fffaf6 0%, #ffffff 42%, #fff0e5 100%) !important;
  animation: none !important;
  isolation: isolate;
}

.kh-auth-pattern {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.38;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246, 106, 6, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 106, 6, 0.07) 1px, transparent 1px);
  background-size: 45px 45px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

.kh-auth-light {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
  animation: khAuthLight 8s ease-in-out infinite alternate;
}

.kh-auth-light-one {
  width: 430px;
  height: 430px;
  left: -220px;
  top: -130px;
  background: rgba(246, 106, 6, 0.13);
}

.kh-auth-light-two {
  width: 350px;
  height: 350px;
  right: -170px;
  bottom: -150px;
  background: rgba(26, 26, 26, 0.055);
  animation-delay: -3s;
}

.kh-auth-container {
  position: relative;
  z-index: 2;
}

.kh-auth-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: center;
}

.kh-auth-showcase {
  position: relative;
  padding: 12px 6px 12px 0;
}

.kh-auth-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 15px;
  border: 1px solid rgba(246, 106, 6, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #d95600;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(246, 106, 6, 0.08);
}

.kh-auth-showcase h1 {
  max-width: 560px;
  margin: 0 0 18px !important;
  color: #191919 !important;
  font-size: 39px !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
  letter-spacing: -1.4px !important;
}

.kh-auth-showcase h1 span {
  display: block;
  color: #f66a06;
}

.kh-auth-lead {
  max-width: 540px;
  margin: 0 0 27px !important;
  color: #626262 !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.kh-auth-benefits {
  display: grid;
  gap: 10px;
  margin-bottom: 25px;
}

.kh-auth-benefits > div {
  display: grid;
  grid-template-columns: 43px 1fr;
  align-items: center;
  gap: 12px;
}

.kh-auth-benefits > div > span {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 106, 6, 0.14);
  border-radius: 14px;
  background: #ffffff;
  color: #f66a06;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(32, 32, 32, 0.06);
}

.kh-auth-benefits p {
  margin: 0 !important;
  color: #777777 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.kh-auth-benefits strong {
  display: block;
  margin-bottom: 2px;
  color: #292929;
  font-size: 15px;
}

.kh-auth-dashboard {
  max-width: 515px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 23px 60px rgba(28, 28, 28, 0.11);
  transform: perspective(900px) rotateY(2deg);
  animation: khAuthDashboard 5s ease-in-out infinite;
}

.kh-auth-dashboard-head {
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 15px 17px;
  border-bottom: 1px solid #eeeeee;
}

.kh-auth-dashboard-logo {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #f66a06, #d84e00);
  color: #ffffff;
  font-size: 17px;
}

.kh-auth-dashboard-head strong,
.kh-auth-dashboard-head small {
  display: block;
}

.kh-auth-dashboard-head strong {
  color: #222222;
  font-size: 14px;
}

.kh-auth-dashboard-head small {
  margin-top: 2px;
  color: #929292;
  font-size: 12px;
}

.kh-auth-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #3c9e61;
  font-size: 12px;
  font-weight: 800;
}

.kh-auth-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3cd278;
  box-shadow: 0 0 0 5px rgba(60, 210, 120, 0.1);
}

.kh-auth-dashboard-body {
  padding: 17px;
}

.kh-auth-progress {
  margin-bottom: 13px;
}

.kh-auth-progress > span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}

.kh-auth-progress b {
  color: #3b3b3b;
  font-size: 12px;
}

.kh-auth-progress em {
  color: #f66a06;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.kh-auth-progress > i {
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: #eeeeee;
}

.kh-auth-progress > i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f66a06, #ff9d58);
  animation: khAuthProgress 2.2s ease-out;
}

.kh-auth-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 0;
}

.kh-auth-dashboard-stats span {
  padding: 15px 8px;
  border-radius: 12px;
  background: #fafafa;
  text-align: center;
}

.kh-auth-dashboard-stats i,
.kh-auth-dashboard-stats b,
.kh-auth-dashboard-stats small {
  display: block;
}

.kh-auth-dashboard-stats i {
  margin-bottom: 4px;
  color: #f66a06;
  font-size: 13px;
}

.kh-auth-dashboard-stats b {
  color: #2e2e2e;
  font-size: 13px;
}

.kh-auth-dashboard-stats small {
  margin-top: 2px;
  color: #929292;
  font-size: 11px;
}

.kh-auth-trust {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.kh-auth-trust span {
  color: #777777;
  font-size: 13px;
  font-weight: 700;
}

.kh-auth-trust i {
  margin-right: 5px;
  color: #f66a06;
}

.kh-auth-forms {
  display: grid;
  gap: 17px;
}

.kh-auth-login-card,
.kh-auth-register-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 65px rgba(27, 27, 27, 0.11);
}

.kh-auth-login-card {
  padding: 26px 28px;
}

.kh-auth-login-card:before,
.kh-auth-register-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #f66a06, #ffb27c);
}

.kh-auth-card-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.kh-auth-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #fff0e5;
  color: #f66a06;
  font-size: 18px;
}

.kh-auth-card-head small,
.kh-auth-register-kicker {
  display: block;
  margin-bottom: 3px;
  color: #f66a06;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.kh-auth-card-head h2,
.kh-auth-register-head h2 {
  margin: 0 !important;
  color: #202020 !important;
  font-size: 24px !important;
  font-weight: 800 !important;
}

.kh-auth-login-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  align-items: end;
}

.kh-auth-login-card .kh-auth-login-options,
.kh-auth-login-card .kh-auth-login-btn {
  grid-column: 1 / -1;
}

.kh-auth-field {
  display: block;
  margin: 0;
}

.kh-auth-field > span {
  display: block;
  margin-bottom: 7px;
  color: #444444;
  font-size: 14px;
  font-weight: 600;
}

.kh-auth-field > div {
  position: relative;
}

.kh-auth-field > div > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #f66a06;
  font-size: 15px;
}

.kh-auth-field input {
  width: 100%;
  height: 47px;
  padding: 0 14px 0 39px;
  border: 1px solid #e4e6e9;
  border-radius: 12px;
  background: #f8f9fb;
  color: #252525;
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.kh-auth-field input::placeholder {
  color: #a5a8ad;
}

.kh-auth-field input:focus {
  border-color: #f66a06;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(246, 106, 6, 0.1);
}

.kh-auth-login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1px;
}

.kh-auth-login-options span {
  color: #858585;
  font-size: 13px;
}

.kh-auth-login-options span i {
  margin-right: 5px;
  color: #45b86f;
}

.kh-auth-login-options a,
.kh-auth-login-options a:link,
.kh-auth-login-options a:visited,
.kh-auth-login-options a:focus,
.kh-auth-login-options a:active {
  color: #d95600;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.kh-auth-login-options a:hover {
  color: #1c1c1c;
  text-decoration: none;
}

.kh-auth-login-btn,
.kh-auth-register-btn {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #f66a06, #d84e00);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(246, 106, 6, 0.26);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kh-auth-login-btn:hover,
.kh-auth-register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(246, 106, 6, 0.35);
}

.kh-auth-login-btn i,
.kh-auth-register-btn i {
  margin-left: 7px;
}

.kh-auth-register-card {
  padding: 26px 28px 22px;
}

.kh-auth-register-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 19px;
}

.kh-auth-register-head p {
  margin: 5px 0 0 !important;
  color: #858585 !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.kh-auth-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border: 1px solid rgba(246, 106, 6, 0.16);
  border-radius: 999px;
  background: #fff3ea;
  color: #d95600;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.kh-auth-register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.kh-auth-wide-field {
  grid-column: 1 / -1;
}

.kh-auth-register-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 15px;
}

.kh-auth-recaptcha {
  width: 304px;
  max-width: 100%;
  overflow: hidden;
  transform: scale(0.84);
  transform-origin: left center;
  margin-right: -49px;
}

.kh-auth-register-btn {
  min-width: 195px;
  padding: 12px 16px;
}

.kh-auth-register-btn:disabled,
.kh-auth-register-btn-loading {
  cursor: wait !important;
  opacity: 0.88;
  pointer-events: none;
}

.kh-register-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.kh-register-preloader-show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.kh-register-preloader-card {
  width: 100%;
  max-width: 390px;
  padding: 34px 28px;
  border-radius: 26px;
  background: radial-gradient(circle at top right, rgba(246, 106, 6, 0.18), transparent 38%), #ffffff;
  border: 1px solid rgba(246, 106, 6, 0.22);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  text-align: center;
  transform: translateY(14px) scale(0.96);
  transition: transform 0.28s ease;
}

.kh-register-preloader-show .kh-register-preloader-card {
  transform: translateY(0) scale(1);
}

.kh-register-spinner {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #F66A06, #ffb06f, #1a1a1a, #F66A06);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: khRegisterSpin 1s linear infinite;
}

.kh-register-spinner span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(246, 106, 6, 0.12);
}

.kh-register-preloader-card h3 {
  margin: 0 0 7px !important;
  color: #1a1a1a !important;
  font-size: 23px !important;
  font-weight: 900 !important;
  letter-spacing: -0.4px;
}

.kh-register-preloader-card p {
  margin: 0 !important;
  color: #d95600 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

@keyframes khRegisterSpin {
  to { transform: rotate(360deg); }
}

.kh-auth-terms {
  margin: 7px 0 0 !important;
  color: #999999 !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
}

.kh-auth-terms i {
  margin-right: 5px;
  color: #f66a06;
}

@keyframes khAuthLight {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(25px, 18px, 0) scale(1.08); }
}

@keyframes khAuthDashboard {
  0%, 100% { transform: perspective(900px) rotateY(2deg) translateY(0); }
  50% { transform: perspective(900px) rotateY(0deg) translateY(-7px); }
}

@keyframes khAuthProgress {
  from { width: 0; }
}

@media screen and (max-width: 1199px) {
  .kh-auth-layout {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 22px;
  }

  .kh-auth-showcase h1 {
    font-size: 35px !important;
  }

  .kh-auth-dashboard {
    transform: none;
  }
}

@media screen and (max-width: 991px) {
  .kh-auth-hero {
    padding: 55px 0 65px !important;
  }

  .kh-auth-layout {
    grid-template-columns: 1fr;
  }

  .kh-auth-showcase {
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  .kh-auth-showcase h1,
  .kh-auth-lead,
  .kh-auth-dashboard {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .kh-auth-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .kh-auth-benefits > div {
    display: block;
    text-align: center;
  }

  .kh-auth-benefits > div > span {
    margin: 0 auto 8px;
  }

  .kh-auth-trust {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .kh-auth-hero {
    padding: 42px 0 50px !important;
  }

  .kh-auth-showcase h1 {
    font-size: 29px !important;
    letter-spacing: -0.7px !important;
  }

  .kh-auth-lead {
    font-size: 14.5px !important;
  }

  .kh-auth-benefits {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .kh-auth-benefits > div {
    display: grid;
    text-align: left;
  }

  .kh-auth-benefits > div > span {
    margin: 0;
  }

  .kh-auth-dashboard {
    display: none;
  }

  .kh-auth-login-card,
  .kh-auth-register-card {
    padding: 23px 20px;
    border-radius: 20px;
  }

  .kh-auth-login-card form,
  .kh-auth-register-grid {
    grid-template-columns: 1fr;
  }

  .kh-auth-wide-field {
    grid-column: auto;
  }

  .kh-auth-register-head {
    display: block;
  }

  .kh-auth-free-badge {
    margin-top: 10px;
  }

  .kh-auth-register-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .kh-auth-recaptcha {
    transform: scale(0.88);
    margin-right: -36px;
  }

  .kh-auth-register-btn {
    width: 100%;
  }
}

@media screen and (max-width: 380px) {
  .kh-auth-showcase h1 {
    font-size: 27px !important;
  }

  .kh-auth-recaptcha {
    transform: scale(0.78);
    margin-right: -67px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kh-auth-light,
  .kh-auth-dashboard,
  .kh-auth-progress > i b,
  .kh-register-spinner {
    animation: none;
  }
}
