﻿@charset "UTF-8";
/* NewApplyFlow Isolated Styles - FINAL MOBILE FIX (SCSS CONVERTED) */
/* ================================================================ */
/* Import Standardized Form Elements */
/* ================================================================ */
/* STANDARDIZED FORM ELEMENTS - PIXEL PERFECT FROM FIGMA */
/* All inputs, selects, checkboxes, and buttons must use these */
/* ================================================================ */
/* ================================================================ */
/* INPUT FIELDS */
/* ================================================================ */
.form-input {
  width: 100%;
  height: 64px;
  background-color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 8px 23px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  outline: none;
  transition: all 0.2s ease;
}
.form-input::placeholder {
  color: #a1a1a1;
  font-weight: 400;
}
.form-input:focus {
  border: 2px solid var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 110, 255, 0.1);
}
.form-input.has-error {
  border: 2px solid var(--error-red);
  background-color: #FFF5F5;
}
.form-input.has-error::placeholder {
  color: var(--error-red);
}
@media (max-width: 991px) and (min-width: 769px) {
  .form-input {
    height: 62px;
    padding: 9px 20px;
  }
}
@media (max-width: 768px) {
  .form-input {
    height: 60px;
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 10px;
  }
}

/* ================================================================ */
/* SELECT DROPDOWNS */
/* ================================================================ */
.form-select {
  width: 100%;
  height: 64px;
  background-color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 8px 23px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23000' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 23px center;
  background-size: 12px 8px;
  transition: all 0.2s ease;
}
.form-select:focus {
  border: 2px solid var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 110, 255, 0.1);
}
.form-select.has-error {
  border: 2px solid var(--error-red);
  background-color: #FFF5F5;
}
.form-select option {
  padding: 10px;
  color: var(--black);
}
@media (max-width: 991px) and (min-width: 769px) {
  .form-select {
    height: 62px;
    padding: 9px 20px;
  }
}
@media (max-width: 768px) {
  .form-select {
    height: 60px;
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 10px;
    background-position: right 18px center;
  }
}

/* ================================================================ */
/* DATE INPUT */
/* ================================================================ */
.form-date-input {
  width: 100%;
  max-width: 100%;
  /* overflow fix: never exceed parent container */
  box-sizing: border-box;
  /* padding is included in width, prevents overflow */
  height: 64px;
  background-color: var(--white);
  border: none;
  border-radius: 12.25px;
  padding: 7.656px 22.969px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  outline: none;
  transition: all 0.2s ease;
  /* Native date picker calendar icon — visibility fix for mobile */
}
.form-date-input::-webkit-calendar-picker-indicator {
  display: block !important;
  /* prevent mobile browsers from hiding it via inheritance */
  visibility: visible !important;
  cursor: pointer;
  opacity: 0.7;
  flex-shrink: 0;
  /* prevent icon from being squeezed out in flex contexts */
  padding-right: 4px;
}
.form-date-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
}
.form-date-input:focus {
  border: 2px solid var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 110, 255, 0.1);
}
.form-date-input.has-error {
  border: 2px solid var(--error-red);
  background-color: #FFF5F5;
}
@media (max-width: 768px) {
  .form-date-input {
    /* Match form-input height (60px) for visual consistency */
    height: 60px;
    padding: 10px 16px;
    /* CRITICAL: font-size must be >= 16px on mobile to prevent */
    /* iOS Safari from auto-zooming the viewport on input focus. */
    font-size: 16px;
    border-radius: 10px;
  }
  .form-date-input::-webkit-calendar-picker-indicator {
    /* Ensure icon stays visible inside tighter mobile padding */
    min-width: 20px;
    min-height: 20px;
  }
}

/* ================================================================ */
/* CHECKBOXES */
/* ================================================================ */
.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.form-checkbox-group .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.form-checkbox-group .custom-checkbox-box {
  width: 22px;
  height: 22px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 5px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .form-checkbox-group .custom-checkbox-box {
    width: 20px;
    height: 20px;
  }
}
.form-checkbox-group .sr-only:checked + .custom-checkbox-box {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}
.form-checkbox-group .sr-only:checked + .custom-checkbox-box::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: bold;
  font-size: 14px;
}
.form-checkbox-group .sr-only:focus + .custom-checkbox-box {
  box-shadow: 0 0 0 3px rgba(0, 110, 255, 0.2);
}
.form-checkbox-group .checkbox-label {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
  cursor: pointer;
  flex: 1;
}
.form-checkbox-group .checkbox-label a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}
@media (max-width: 768px) {
  .form-checkbox-group .checkbox-label {
    font-size: 12px;
  }
}
.form-checkbox-group.has-error .custom-checkbox-box {
  border: 2px solid var(--error-red) !important;
  background-color: #FFF5F5;
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.2);
}

/* ================================================================ */
/* BUTTONS */
/* ================================================================ */
/* Primary Button (Dark Blue) */
.btn-primary {
  width: 100%;
  max-width: 350px;
  padding: 16px 32px;
  margin: 0 auto;
  background-color: var(--dark-blue);
  color: var(--white);
  border: none;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-primary);
  border-radius: 56px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}
.btn-primary:hover {
  background-color: var(--hover-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(18, 43, 98, 0.3);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:disabled {
  background-color: var(--light-gray);
  cursor: not-allowed;
  transform: none;
}
.btn-primary.btn-loading {
  opacity: 0.72;
  cursor: wait;
  transform: none;
  pointer-events: none;
  gap: 10px;
}
@media (max-width: 991px) and (min-width: 769px) {
  .btn-primary {
    font-size: 17px;
    padding: 14px 32px;
  }
}
@media (max-width: 768px) {
  .btn-primary {
    font-size: 16px;
    padding: 10px 30px;
    min-height: 50px;
    border-radius: 40px;
  }
}
.btn-primary a {
  text-decoration: none;
}

/* Secondary Button (Blue) */
.btn-secondary {
  width: 100%;
  max-width: 384px;
  padding: 16px 32px;
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-primary);
  border-radius: 56px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}
.btn-secondary:hover {
  background-color: #0056CC;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 110, 255, 0.3);
}
.btn-secondary:active {
  transform: translateY(0);
}
.btn-secondary:disabled {
  background-color: var(--light-gray);
  cursor: not-allowed;
  transform: none;
}
.btn-secondary.btn-loading {
  opacity: 0.72;
  cursor: wait;
  transform: none;
  pointer-events: none;
  gap: 10px;
}
@media (max-width: 991px) and (min-width: 769px) {
  .btn-secondary {
    font-size: 18px;
    padding: 14px 32px;
  }
}
@media (max-width: 768px) {
  .btn-secondary {
    font-size: 16px;
    padding: 10px 30px;
    min-height: 50px;
    border-radius: 40px;
  }
}
.btn-secondary a {
  text-decoration: none;
}

/* ================================================================ */
/* BUTTON SPINNER — loading state inline circle */
/* ================================================================ */
@keyframes naf-spin {
  to {
    transform: rotate(360deg);
  }
}
.btn-spinner {
  display: inline-block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: naf-spin 0.7s linear infinite;
}
@media (max-width: 768px) {
  .btn-spinner {
    width: 16px;
    height: 16px;
  }
}

/* ================================================================ */
/* FORM LABELS */
/* ================================================================ */
.form-label {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  display: block;
}
.form-label.required::after {
  content: "*";
  color: var(--white);
  margin-left: 4px;
}
@media (max-width: 768px) {
  .form-label {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.form-label-light {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}
.form-label-light.required::after {
  content: "*";
  color: var(--white);
  margin-left: 4px;
}
@media (max-width: 768px) {
  .form-label-light {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

/* ================================================================ */
/* HELPER TEXT */
/* ================================================================ */
.form-helper-text {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 30px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .form-helper-text {
    font-size: 11px;
  }
}

/* ================================================================ */
/* ERROR MESSAGES — Figma tasarımına uygun                          */
/* ================================================================ */
/*
 * GLOBAL FALLBACK: form-card dışında (beyaz bg üzerinde) sade kırmızı metin
 */
.field-validation-error {
  display: block;
  margin-top: 16px;
  padding: 0 4px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  color: #FF3B30;
  line-height: 1.4;
  background: none;
  border-radius: 0;
  border: none;
  width: auto;
  height: auto;
  min-height: auto;
  text-indent: 0;
  position: static;
}
.field-validation-error.form-mini {
  max-width: 350px;
  margin: auto;
  margin-bottom: 30px !important;
}
.field-validation-error::before {
  content: none !important;
}
@media (max-width: 768px) {
  .field-validation-error {
    font-size: 11px;
  }
}

.field-validation-valid {
  display: none !important;
}

/*
 * FORM-CARD İÇİNDE (Mavi arka plan): Figma pill stili
 * — Sol tarafta kırmızı yuvarlak ⚠ rozet, sağ tarafta yarı şeffaf beyaz pill,
 *   içinde beyaz hata metni.
 */
.form-card .field-validation-error {
  display: flex;
  align-items: center;
  width: calc(100% - 16px);
  margin-left: auto;
  border-radius: 0 22.969px 22.969px 0;
  background: rgba(255, 255, 255, 0.65);
  color: #DC3545;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  /* Poppins Medium */
  padding: 0 14px 0 24px;
  margin-top: 16px;
  margin-bottom: 5px;
  text-indent: 0;
  position: relative;
  height: 32px;
  min-height: 32px;
}
.form-card .field-validation-error::before {
  content: "⚠" !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #DC3545;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  position: absolute;
  left: -16px;
  top: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .form-card .field-validation-error {
    font-size: 12px;
    height: 28px;
    min-height: 28px;
    padding: 0 12px 0 20px;
  }
  .form-card .field-validation-error::before {
    width: 28px;
    height: 28px;
    font-size: 13px;
    left: -14px;
  }
}

/* Input kırmızı kenarlık - ASP.NET server-side validation */
.form-input.input-validation-error {
  border: 2px solid #FF3B30 !important;
  background-color: #FFF5F5 !important;
}

/* Select hata durumu — background-image (ok ikonu) korunmalı, arka plan opak kalmalı */
.form-select.input-validation-error {
  border: 2px solid #FF3B30 !important;
  background-color: #FFF5F5 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FF3B30' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 22.969px center !important;
  background-size: 12px 8px !important;
}

/* Form-card içinde input hatası — beyaz arka plan korunur */
.form-card .form-input.input-validation-error {
  border: 2px solid #FF3B30 !important;
  background-color: #ffffff !important;
}

/* Form-card içinde select hatası — beyaz arka plan korunur */
.form-card .form-select.input-validation-error {
  border: 2px solid #FF3B30 !important;
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FF3B30' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 22.969px center !important;
  background-size: 12px 8px !important;
}

/* Searchable select wrapper — form-card dışı genel (beyaz bg) */
.searchable-select.has-error > .searchable-select__trigger {
  border: 2px solid #FF3B30 !important;
  background-color: #ffffff !important;
  color: inherit;
}

/* ── form-card içinde searchable-select — her zaman beyaz trigger ── */
.form-card .searchable-select__trigger {
  background-color: #ffffff;
}

/* ── form-card içinde searchable-select hata durumu ── */
.form-card .searchable-select.has-error > .searchable-select__trigger {
  background-color: #ffffff !important;
  border: 2px solid #FF3B30 !important;
}

/* Radio grubu hata kenarlığı */
.radio-button-group.has-error .radio-button {
  border-color: #FF3B30;
}

/*
/*
 * Form-card içindeki .form-input-group'a sol padding ekle
 * Böylece hata ikonunun 15px'lik sola taşması kartın kenarında dahi görünür
 * .form-card .form-input-group { padding-left: 15px; }
 */
/* ================================================================ */
/* INPUT GROUP (with label) */
/* ================================================================ */
.form-input-group {
  margin-bottom: 16px;
}
.form-input-group:last-of-type {
  margin-bottom: 40px;
}
.form-input-group .form-label {
  margin-bottom: 12px;
}
.form-input-group .form-input,
.form-input-group .form-select,
.form-input-group .form-date-input {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .form-input-group {
    margin-bottom: 20px;
  }
}

/* ================================================================ */
/* FLOATING LABEL INPUT — Figma 243-385                              */
/* Add class .form-floating-group alongside .form-input-group.       */
/* HTML order MUST be: <input> then <label>. placeholder=" " needed. */
/* ================================================================ */
.form-floating-group {
  position: relative;
  margin-bottom: 20px;
  /* The inner input / select */
  /* The floating label */
  /* Floated state — input focused OR has content */
  /* Focus border */
  /* Error state — beyaz arka plan !important ile korunur */
  /* field-validation-error below — tek blok yönteminde gizle */
  /* Searchable select inside floating group — override trigger style */
}
.form-floating-group .form-input,
.form-floating-group .form-select {
  height: 64px;
  padding: 24px 15px 8px;
  /* room for the floating label on top */
  border: 2px solid #0056b3;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  font-weight: 700;
  color: #0056b3;
  letter-spacing: -0.03em;
  /* ── Tarayıcı autofill renk override'ı ── */
  /* Chrome/Safari sarı arka planı ve sistem rengini engelle */
}
.form-floating-group .form-input::placeholder,
.form-floating-group .form-select::placeholder {
  color: transparent;
  /* hide space-placeholder */
}
.form-floating-group .form-input:-webkit-autofill, .form-floating-group .form-input:-webkit-autofill:hover, .form-floating-group .form-input:-webkit-autofill:focus,
.form-floating-group .form-select:-webkit-autofill,
.form-floating-group .form-select:-webkit-autofill:hover,
.form-floating-group .form-select:-webkit-autofill:focus {
  -webkit-text-fill-color: #0056b3 !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  transition: background-color 5000s ease-in-out 0s;
  caret-color: #0056b3;
}
@media (max-width: 768px) {
  .form-floating-group .form-input,
  .form-floating-group .form-select {
    height: 60px;
    padding: 22px 15px 6px;
    font-size: 16px;
  }
}
.form-floating-group .form-label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: #a1a1a1;
  pointer-events: none;
  transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease, transform 0.18s ease;
  margin: 0;
  white-space: nowrap;
  background: transparent;
}
.form-floating-group .form-input:focus ~ .form-label,
.form-floating-group .form-input:not(:placeholder-shown) ~ .form-label,
.form-floating-group .form-select:focus ~ .form-label,
.form-floating-group .form-select:not([value=""]):valid ~ .form-label,
.form-floating-group .form-select.has-value ~ .form-label {
  top: 10px;
  transform: translateY(0);
  font-size: 10px;
  color: #739fcc;
  letter-spacing: -0.03em;
}
.form-floating-group .form-input:focus,
.form-floating-group .form-select:focus {
  border-color: #0056b3;
  box-shadow: 0 4px 6px rgba(0, 86, 179, 0.15);
  outline: none;
}
.form-floating-group .form-input.input-validation-error,
.form-floating-group .form-select.input-validation-error {
  border-color: #FF3B30 !important;
  background-color: #ffffff !important;
}
.form-floating-group .field-validation-error {
  display: none !important;
}
.form-floating-group .field-validation-error::before {
  content: none !important;
}
@media (max-width: 768px) {
  .form-floating-group {
    margin-bottom: 16px;
  }
}
.form-floating-group .searchable-select__trigger {
  height: 64px;
  padding: 24px 15px 8px;
  border: 2px solid #0056b3;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  font-weight: 700;
  color: #0056b3;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  background-color: #fff;
  /* Seçili değer metni */
  /* Placeholder / boş durum */
}
.form-floating-group .searchable-select__trigger .searchable-select__value {
  color: #0056b3;
  font-weight: 700;
}
.form-floating-group .searchable-select__trigger .searchable-select__placeholder {
  color: transparent; /* floating label bunu karşılar */
}
@media (max-width: 768px) {
  .form-floating-group .searchable-select__trigger {
    height: 60px;
    padding: 22px 15px 6px;
    font-size: 16px;
  }
}
.form-floating-group .searchable-select.has-value ~ .form-label, .form-floating-group .searchable-select:focus-within ~ .form-label {
  top: 10px;
  transform: translateY(0);
  font-size: 10px;
  color: #739fcc;
  letter-spacing: -0.03em;
}
.form-floating-group .searchable-select.has-error > .form-floating-group .searchable-select__trigger {
  border-color: #FF3B30 !important;
  background-color: #FFF5F5;
  color: #0056b3;
}

/* .form-floating-group: floating label also triggers on searchable-select.has-value */
.form-floating-group:has(.searchable-select.has-value) .form-label,
.form-floating-group:has(.searchable-select:focus-within) .form-label {
  top: 10px !important;
  transform: translateY(0) !important;
  font-size: 10px !important;
  color: #739fcc !important;
  letter-spacing: -0.03em !important;
}

/* ================================================================ */
/* OTP INPUT BOXES — Tam tanım _OtpVerification.scss'de              */
/* ================================================================ */
/* ================================================================ */
/* PHONE INPUT GROUP (with country code) */
/* ================================================================ */
.phone-input-group {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 12px;
  height: 68px;
  padding: 0 1rem;
  margin-bottom: 0.75rem;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.phone-input-group .country-code {
  color: var(--black);
  font-weight: 600;
  font-size: 16px;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #E0E0E0;
  height: 24px;
  display: flex;
  align-items: center;
}
.phone-input-group .phone-input {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-family: var(--font-primary);
  color: var(--black);
}
.phone-input-group .phone-input::placeholder {
  color: #A0A0A0;
  font-weight: 300;
}
.phone-input-group.has-error {
  border: 2px solid #FF3B30 !important;
}
.phone-input-group.has-error .country-code {
  color: #FF3B30;
  border-right-color: #FFECEC;
}
.phone-input-group.has-error .phone-input {
  color: #FF3B30;
}
@media (max-width: 768px) {
  .phone-input-group {
    height: 56px;
    padding: 0 0.875rem;
  }
  .phone-input-group .country-code {
    font-size: 16px;
    padding-right: 12px;
    margin-right: 12px;
  }
  .phone-input-group .phone-input {
    font-size: 16px;
  }
}

/* ================================================================ */
/* PHONE FLOATING GROUP — GsmEntry Figma 243-374                    */
/* Flat structure: .phone-label + .country-code + .phone-input      */
/* All are direct children of .phone-input-group                    */
/* ================================================================ */
.phone-floating-group .phone-input-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 64px;
  border: 2px solid #0056b3;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 8px 15px 6px;
  margin-bottom: 0;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  gap: 0;
  /* Label: takes full width, sits on top */
  /* +90 prefix — inline with input */
  /* Phone input — fills remaining width */
}
.phone-floating-group .phone-input-group:focus-within {
  border-color: #0056b3;
  box-shadow: 0 4px 6px rgba(0, 86, 179, 0.15);
}
.phone-floating-group .phone-input-group .phone-label {
  display: block;
  width: 100%;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 500;
  color: #739fcc;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
  pointer-events: none;
}
.phone-floating-group .phone-input-group .country-code {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: #0056b3;
  letter-spacing: -0.03em;
  padding: 0 10px 0 0;
  margin-right: 10px;
  border-right: 1px solid #d0d9f0;
  height: 24px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  /* override base .phone-input-group .country-code styles */
  border-bottom: none;
}
.phone-floating-group .phone-input-group .phone-input {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: #0056b3;
  letter-spacing: -0.03em;
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  min-width: 0;
  padding: 0;
  height: 24px;
}
.phone-floating-group .phone-input-group .phone-input::placeholder {
  color: rgba(0, 86, 179, 0.35);
  font-weight: 400;
}
.phone-floating-group .phone-input-group.has-error {
  border-color: #FF3B30 !important;
}
.phone-floating-group .phone-input-group.has-error .phone-label {
  color: #FF3B30;
}
.phone-floating-group .phone-input-group.has-error .country-code {
  color: #FF3B30;
  border-right-color: #FFECEC;
}
.phone-floating-group .phone-input-group.has-error .phone-input {
  color: #FF3B30;
}
@media (max-width: 768px) {
  .phone-floating-group .phone-input-group {
    height: 60px;
    padding: 6px 15px 4px;
  }
  .phone-floating-group .phone-input-group .country-code,
  .phone-floating-group .phone-input-group .phone-input {
    font-size: 16px;
  }
}

/* ================================================================ */
/* SEARCHABLE BANK SELECT COMPONENT                                  */
/* Works with the JS component in WorkDetails.js                    */
/* ================================================================ */
.searchable-select {
  position: relative;
  width: 100%;
  /* The trigger button mimics .form-select appearance */
  /* When showing placeholder text color it gray */
  /* Dropdown panel */
  /* Search input inside dropdown */
  /* Options list */
  /* Individual option */
  /* No results message */
}
.searchable-select__trigger {
  width: 100%;
  height: 64px;
  background-color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 8px 23px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-align: left;
  transition: all 0.2s ease;
}
.searchable-select__trigger:focus, .searchable-select__trigger[aria-expanded=true] {
  border: 2px solid var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 110, 255, 0.1);
}
@media (max-width: 991px) and (min-width: 769px) {
  .searchable-select__trigger {
    height: 62px;
    padding: 9px 20px;
  }
}
@media (max-width: 768px) {
  .searchable-select__trigger {
    height: 60px;
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 10px;
  }
}
.searchable-select__value {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--black);
}
.searchable-select__value:empty::before, .searchable-select__value[data-placeholder]::before {
  content: attr(data-placeholder);
  color: #a1a1a1;
}
.searchable-select__trigger[data-empty=true] .searchable-select__value {
  color: #a1a1a1;
}
.searchable-select__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--black);
  transition: transform 0.2s ease;
}
.searchable-select__trigger[aria-expanded=true] .searchable-select__arrow {
  transform: rotate(180deg);
}
.searchable-select__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 200;
  overflow: hidden;
}
.searchable-select__dropdown.is-open {
  display: block;
}
.searchable-select__search {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--black);
  outline: none;
  background-color: var(--white);
}
.searchable-select__search::placeholder {
  color: #a1a1a1;
}
@media (max-width: 768px) {
  .searchable-select__search {
    font-size: 16px;
    /* prevent iOS zoom */
  }
}
.searchable-select__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 240px;
  overflow-y: auto;
  /* Scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: #d0d0d0 transparent;
}
.searchable-select__list::-webkit-scrollbar {
  width: 4px;
}
.searchable-select__list::-webkit-scrollbar-track {
  background: transparent;
}
.searchable-select__list::-webkit-scrollbar-thumb {
  background-color: #d0d0d0;
  border-radius: 4px;
}
.searchable-select__option {
  padding: 12px 16px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--black);
  cursor: pointer;
  transition: background-color 0.1s ease;
}
.searchable-select__option:hover {
  background-color: #f0f7ff;
}
.searchable-select__option.is-selected {
  background-color: #f0f7ff;
  color: var(--primary-blue);
  font-weight: 500;
}
@media (max-width: 768px) {
  .searchable-select__option {
    font-size: 15px;
    padding: 14px 16px;
    /* bigger touch target */
  }
}
.searchable-select__empty {
  padding: 16px;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 13px;
  color: #a1a1a1;
}

/* Import Page-Specific Styles */
/* ================================================================ */
/* OTP VERIFICATION PAGE STYLES - CLEAN WHITE BACKGROUND */
/* ================================================================ */
.otp-verification-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 991px) and (min-width: 769px) {
  .otp-verification-wrapper {
    padding: 0 1.5rem;
    max-width: 520px;
  }
}
@media (max-width: 768px) {
  .otp-verification-wrapper {
    padding: 1rem;
  }
}

.otp-page-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: 30px;
  color: var(--black);
}
@media (max-width: 991px) and (min-width: 769px) {
  .otp-page-title {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .otp-page-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

/* ================================================================ */
/* OTP INPUT SECTION */
/* ================================================================ */
.otp-instruction {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
  text-align: center;
  margin-bottom: 16px;
  line-height: normal;
  background: #F0F0F0;
  padding: 24px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .otp-instruction {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.otp-form {
  width: 100%;
}

.otp-input-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
@media (max-width: 991px) and (min-width: 769px) {
  .otp-input-container {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .otp-input-container {
    gap: 8px;
    margin-bottom: 20px;
  }
}
.otp-input-container .otp-input-box {
  width: 73px;
  height: 73px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 21px;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  outline: none;
  transition: all 0.2s ease;
}
.otp-input-container .otp-input-box:focus {
  background-color: #dbdbdb;
  border: 2px solid var(--primary-blue);
}
.otp-input-container .otp-input-box.filled {
  background-color: #dbdbdb;
}
.otp-input-container .otp-input-box.error {
  border: 1.5px solid var(--error-red);
  background-color: #f0f0f0;
}
@media (max-width: 991px) and (min-width: 769px) {
  .otp-input-container .otp-input-box {
    width: 62px;
    height: 62px;
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .otp-input-container .otp-input-box {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    font-size: 18px;
  }
}

.otp-error-message {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--error-red);
  text-align: center;
  margin-bottom: 20px;
  padding: 0 20px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .otp-error-message {
    font-size: 12px;
    margin-bottom: 15px;
  }
}

.otp-timer {
  font-family: var(--font-primary);
  font-size: 16.732px;
  font-weight: 400;
  color: var(--black);
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .otp-timer {
    font-size: 12px;
    margin-bottom: 20px;
  }
}

.otp-button-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.otp-button-container .btn-secondary {
  max-width: 390.92px;
  width: 100%;
}
@media (max-width: 768px) {
  .otp-button-container .btn-secondary {
    max-width: 280px;
  }
}

.otp-resend {
  text-align: center;
  margin-top: 20px;
}
.otp-resend .resend-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.otp-resend .resend-link:hover {
  opacity: 0.8;
}
.otp-resend .resend-link:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .otp-resend .resend-link {
    font-size: 12px;
  }
}

.otp-helper-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .otp-helper-text {
    font-size: 12px;
    margin-bottom: 20px;
  }
}

/* ================================================================ */
/* SUCCESS STATE - Blue card for success only */
/* ================================================================ */
.otp-success-state {
  text-align: center;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .otp-success-state {
    padding: 0 20px;
    border-radius: 24px;
  }
}
.otp-success-state .mcForm {
  width: 100%;
  display: flex;
  justify-content: center;
}
.otp-success-state .success-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.otp-success-state .success-icon svg {
  width: 48px;
  height: 48px;
}
.otp-success-state .success-title {
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .otp-success-state .success-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.otp-success-state .success-message {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 300;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .otp-success-state .success-message {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.otp-success-state .btn-primary {
  max-width: 390.92px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .otp-success-state .btn-primary {
    max-width: 280px;
  }
}

/* ================================================================ */
/* MODAL STATES */
/* ================================================================ */
.otp-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.otp-modal {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
}
.otp-modal .modal-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
}
.otp-modal .modal-message {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 30px;
  line-height: 1.5;
}
.otp-modal .modal-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}
@media (max-width: 768px) {
  .otp-modal {
    padding: 30px 20px;
  }
  .otp-modal .modal-title {
    font-size: 20px;
  }
  .otp-modal .modal-message {
    font-size: 14px;
  }
}

.otp-new-number-state {
  text-align: center;
  padding: 20px;
}
.otp-new-number-state .form-helper-text {
  margin-bottom: 30px;
}

/* ================================================================ */
/* SESSION EXPIRED BANNER — /otp?reason=sessionExpired yönlendirmesi */
/* ================================================================ */
@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.session-expired-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1.5px solid #fb923c;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 620px;
  animation: slideDownFade 0.35s ease both;
}
.session-expired-banner__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #fb923c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.session-expired-banner__body {
  flex: 1;
  text-align: left;
}
.session-expired-banner__title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: #9a3412;
  margin-bottom: 2px;
}
.session-expired-banner__message {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  color: #c2410c;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .session-expired-banner {
    padding: 12px 16px;
    gap: 10px;
  }
  .session-expired-banner__icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .session-expired-banner__title {
    font-size: 13px;
  }
  .session-expired-banner__message {
    font-size: 12px;
  }
}

/* ================================================================ */
/* SESSION EXPIRED MODAL — fetchSubmit 401 sonrası gösterilir       */
/* JS tarafından dinamik oluşturulur (NAF.showSessionExpiredModal)  */
/* ================================================================ */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.naf-session-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.naf-session-modal {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: fadeInScale 0.3s ease both;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.naf-session-modal__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border: 2px solid #fb923c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.naf-session-modal__title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.naf-session-modal__message {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.55;
  margin-bottom: 28px;
}
.naf-session-modal__progress {
  height: 4px;
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}
.naf-session-modal__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #fb923c, #f97316);
  border-radius: 2px;
  animation: progressShrink 4s linear forwards;
}
.naf-session-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.naf-session-modal__btn:hover {
  opacity: 0.88;
}
@media (max-width: 768px) {
  .naf-session-modal {
    padding: 28px 20px;
  }
  .naf-session-modal__title {
    font-size: 18px;
  }
  .naf-session-modal__message {
    font-size: 14px;
  }
}

@keyframes progressShrink {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
/* ================================================================ */
/* IDENTITY DETAILS PAGE STYLES */
/* ================================================================ */
.form-page-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* Page Title - OUTSIDE the blue box (per Figma) */
.page-title {
  font-family: var(--font-primary);
  font-size: 24px;
  /* Exact from Figma node 1-945 */
  font-weight: 600;
  /* Poppins Medium */
  color: var(--black);
  /* Exact black from Figma */
  text-align: center;
  margin-bottom: 2rem;
  /* Spacing between title and blue box */
  line-height: normal;
}
@media (max-width: 768px) {
  .page-title {
    font-size: 20px;
  }
}

.identity-card,
.contact-card,
.location-card,
.work-card,
.professional-card,
.work-details-card,
.additional-card {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}
.identity-card .form-title,
.contact-card .form-title,
.location-card .form-title,
.work-card .form-title,
.professional-card .form-title,
.work-details-card .form-title,
.additional-card .form-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--black);
}
@media (max-width: 768px) {
  .identity-card .form-title,
  .contact-card .form-title,
  .location-card .form-title,
  .work-card .form-title,
  .professional-card .form-title,
  .work-details-card .form-title,
  .additional-card .form-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.identity-card .identity-helper,
.identity-card .contact-helper,
.contact-card .identity-helper,
.contact-card .contact-helper,
.location-card .identity-helper,
.location-card .contact-helper,
.work-card .identity-helper,
.work-card .contact-helper,
.professional-card .identity-helper,
.professional-card .contact-helper,
.work-details-card .identity-helper,
.work-details-card .contact-helper,
.additional-card .identity-helper,
.additional-card .contact-helper {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .identity-card .identity-helper,
  .identity-card .contact-helper,
  .contact-card .identity-helper,
  .contact-card .contact-helper,
  .location-card .identity-helper,
  .location-card .contact-helper,
  .work-card .identity-helper,
  .work-card .contact-helper,
  .professional-card .identity-helper,
  .professional-card .contact-helper,
  .work-details-card .identity-helper,
  .work-details-card .contact-helper,
  .additional-card .identity-helper,
  .additional-card .contact-helper {
    font-size: 11px;
    margin-bottom: 20px;
  }
}

.identity-form,
.contact-form,
.location-form {
  width: 100%;
}

/* ================================================================ */
/* CUSTOM DATE PICKER (3 selects: Gün / Ay / Yıl)                   */
/* ================================================================ */
.date-picker-group {
  display: flex;
  gap: 10px;
  width: 100%;
  align-items: center;
}
.date-picker-group .date-select {
  /*        flex: 1 1 0;*/
  min-width: 0;
}
@media (max-width: 768px) {
  .date-picker-group .date-select {
    font-size: 16px !important;
  }
}
@media (max-width: 768px) {
  .date-picker-group {
    gap: 6px;
  }
}
.date-picker-group.has-error .searchable-select__trigger {
  border: 2px solid #FF3B30 !important;
  background-color: #ffffff !important;
}
.date-picker-group.has-error .form-select.date-select:not([data-search-initialized]) {
  border: 2px solid #FF3B30 !important;
}

/* ================================================================ */
/* CONTACT-INFO PAGE — Checkbox overrides (Figma node 249-214)       */
/* Scoped strictly to .contact-card so other pages are untouched.    */
/* ================================================================ */
.contact-card .contact-checkboxes {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.contact-card .contact-checkboxes .form-checkbox-group {
  margin-bottom: 0;
  gap: 10px;
  align-items: center;
}
.contact-card .contact-checkboxes .form-checkbox-group .custom-checkbox-box {
  width: 24.263px;
  height: 24.411px;
  border-radius: 4.656px;
  background: #ffffff;
  border: none;
  box-shadow: inset 1.164px 1.164px 3.492px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  margin-top: 0;
  transition: background 0.2s ease;
}
@media (max-width: 768px) {
  .contact-card .contact-checkboxes .form-checkbox-group .custom-checkbox-box {
    width: 22px;
    height: 22px;
  }
}
.contact-card .contact-checkboxes .form-checkbox-group .sr-only:checked + .custom-checkbox-box {
  background: #ffffff;
  box-shadow: inset 1.164px 1.164px 3.492px rgba(0, 0, 0, 0.25);
}
.contact-card .contact-checkboxes .form-checkbox-group .sr-only:checked + .custom-checkbox-box::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 700;
}
.contact-card .contact-checkboxes .form-checkbox-group .checkbox-label {
  font-size: 12px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.5;
}
.contact-card .contact-checkboxes .form-checkbox-group .checkbox-label a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 300;
}
@media (max-width: 768px) {
  .contact-card .contact-checkboxes .form-checkbox-group .checkbox-label {
    font-size: 11px;
  }
}

/* ================================================================ */
/* LOCATION PAGE — Floating label override (Figma node 246-135)      */
/* select'lerde initSearchableSelect native :valid'i bozuyor,        */
/* bu nedenle location-card içinde label her zaman üstte sabit.      */
/* ================================================================ */
.location-card .form-floating-group {
  position: relative;
}
.location-card .form-floating-group .form-label {
  top: 10px !important;
  transform: translateY(0) !important;
  font-size: 10px !important;
  color: #739fcc !important;
  letter-spacing: -0.03em;
  z-index: 2;
  pointer-events: none;
}
.location-card .form-floating-group .form-select {
  padding-top: 24px;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #0056b3;
}
@media (max-width: 768px) {
  .location-card .form-floating-group .form-select {
    padding-top: 22px;
    padding-bottom: 6px;
    font-size: 16px;
  }
}
.location-card .form-floating-group .searchable-select {
  width: 100%;
  /* ── Hata durumu: kırmızı kenarlık ──────────────────────── */
}
.location-card .form-floating-group .searchable-select__trigger {
  width: 100%;
  height: 64px;
  background: #ffffff;
  border: 2px solid #0056b3;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 15px 8px;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: #0056b3;
  letter-spacing: -0.03em;
  cursor: pointer;
  text-align: left;
}
@media (max-width: 768px) {
  .location-card .form-floating-group .searchable-select__trigger {
    height: 60px;
    padding: 22px 15px 6px;
    font-size: 16px;
  }
}
.location-card .form-floating-group .searchable-select__value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.location-card .form-floating-group .searchable-select__arrow {
  flex-shrink: 0;
  margin-left: 8px;
  color: #0056b3;
  display: flex;
  align-items: center;
}
.location-card .form-floating-group .searchable-select__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 2px solid #0056b3;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 86, 179, 0.15);
  z-index: 100;
  display: none;
}
.location-card .form-floating-group .searchable-select__dropdown.is-open {
  display: block;
}
.location-card .form-floating-group .searchable-select__search {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 15px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: #333;
  outline: none;
  border-radius: 8px 8px 0 0;
}
@media (max-width: 768px) {
  .location-card .form-floating-group .searchable-select__search {
    font-size: 16px;
  }
}
.location-card .form-floating-group .searchable-select__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 240px;
  overflow-y: auto;
}
.location-card .form-floating-group .searchable-select__option {
  padding: 10px 15px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.location-card .form-floating-group .searchable-select__option:hover, .location-card .form-floating-group .searchable-select__option.is-selected {
  background: rgba(0, 110, 255, 0.08);
  color: #0056b3;
  font-weight: 600;
}
.location-card .form-floating-group .searchable-select__empty {
  padding: 12px 15px;
  font-size: 13px;
  color: #999;
  font-style: italic;
}
.location-card .form-floating-group .searchable-select.has-error > .searchable-select__trigger {
  border-color: #FF3B30 !important;
  background-color: #ffffff !important;
}

/* ================================================================ */
/* TEK HATA BLOĞU — IdentityDetails / ContactInfo                   */
/* Mevcut field-validation-error pill stiliyle birebir uyumlu        */
/* ================================================================ */
.identity-error-block {
  display: flex;
  align-items: center;
  width: calc(100% - 16px);
  margin-left: auto;
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.65);
  color: #DC3545;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  max-width: 350px;
  margin: auto;
  padding: 8px 14px 8px 46px;
  margin-top: 8px;
  margin-bottom: 30px;
  position: relative;
  min-height: 32px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.identity-error-block::before {
  content: "⚠" !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #DC3545;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}
.identity-error-block--hidden {
  display: none !important;
}
@media (max-width: 768px) {
  .identity-error-block {
    font-size: 12px;
    min-height: 30px;
    padding: 8px 12px 8px 46px;
  }
  .identity-error-block::before {
    width: 32px;
    height: 32px;
    font-size: 16px;
    left: 0;
  }
}

/* ================================================================ */
/* PAYMENT NEW DESIGN — EFT Accordion + Lock Message                */
/* ================================================================ */
.pnd-eft-lock-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0, 86, 179, 0.07);
  border: 1.5px dashed rgba(0, 86, 179, 0.3);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 12px;
}
.pnd-eft-lock-msg__icon {
  flex-shrink: 0;
  color: #0056b3;
  margin-top: 1px;
}
.pnd-eft-lock-msg__text {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #0056b3;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .pnd-eft-lock-msg {
    padding: 12px 14px;
  }
  .pnd-eft-lock-msg__text {
    font-size: 12px;
  }
}

.pnd-eft-accordion {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.pnd-eft-accordion--open {
  max-height: 600px;
  opacity: 1;
}

.pnd-input-wrap {
  position: relative;
}
.pnd-input-wrap .pnd-input-label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 86, 179, 0.45);
  pointer-events: none;
  transition: top 0.18s ease, font-size 0.18s ease, transform 0.18s ease, color 0.18s ease, letter-spacing 0.18s ease;
  white-space: nowrap;
}
.pnd-input-wrap .pnd-input:focus ~ .pnd-input-label,
.pnd-input-wrap .pnd-input:not(:placeholder-shown) ~ .pnd-input-label {
  top: 7px;
  transform: translateY(0);
  font-size: 10px;
  font-weight: 500;
  color: #739fcc;
  letter-spacing: -0.03em;
}
.pnd-input-wrap:has(.pnd-input-icon) .pnd-input-label {
  right: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pnd-campaign-field {
  position: relative;
}
.pnd-campaign-field .pnd-input-label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 86, 179, 0.45);
  pointer-events: none;
  transition: top 0.18s ease, font-size 0.18s ease, transform 0.18s ease, color 0.18s ease;
}
.pnd-campaign-field .pnd-campaign-input:focus ~ .pnd-input-label,
.pnd-campaign-field .pnd-campaign-input:not(:placeholder-shown) ~ .pnd-input-label {
  top: 7px;
  transform: translateY(0);
  font-size: 10px;
  font-weight: 500;
  color: #739fcc;
  letter-spacing: -0.03em;
}

/* ================================================================ */
/* BLACKLIST ALERT BLOCK — ContactInfo                              */
/* ================================================================ */
.blacklist-alert-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: calc(100% - 16px);
  max-width: 350px;
  margin: 0 auto 20px;
  padding: 16px;
  background: rgba(255, 245, 230, 0.95);
  border: 1.5px solid #e07b00;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(224, 123, 0, 0.15);
}
.blacklist-alert-block .blacklist-alert-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.blacklist-alert-block .blacklist-alert-content {
  flex: 1;
}
.blacklist-alert-block .blacklist-alert-title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  color: #b05a00;
  margin: 0 0 6px;
}
.blacklist-alert-block .blacklist-alert-desc {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  color: #5a3a00;
  line-height: 1.5;
  margin: 0 0 8px;
}
.blacklist-alert-block .blacklist-alert-redirect {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  color: #e07b00;
  margin: 0;
}
.blacklist-alert-block .blacklist-alert-redirect span {
  font-weight: 700;
}
@media (max-width: 768px) {
  .blacklist-alert-block {
    padding: 14px;
    gap: 10px;
  }
  .blacklist-alert-block .blacklist-alert-title {
    font-size: 13px;
  }
  .blacklist-alert-block .blacklist-alert-desc {
    font-size: 11px;
  }
}

/* ================================================================ */
/* WORK STATUS PAGE STYLES */
/* ================================================================ */
.work-card .work-helper {
  text-align: center;
}
.work-card .work-marital-group,
.work-card .work-sector-group {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
.work-card .work-marital-group .form-label {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
}
.work-card .work-marital-group .radio-button-group {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-radius: 10px;
  overflow: hidden;
}
.work-card .work-marital-group .radio-button {
  flex: 1;
  height: 64px;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  border-radius: 0;
  position: relative;
}
.work-card .work-marital-group .radio-button:first-child {
  border-right: 1px solid #dde3ec;
  border-radius: 10px 0 0 10px;
}
.work-card .work-marital-group .radio-button:last-child {
  border-radius: 0 10px 10px 0;
}
.work-card .work-marital-group .radio-button span {
  font-size: 16px;
  font-weight: 400;
  color: #a1a1a1;
  letter-spacing: -0.03em;
}
.work-card .work-marital-group .radio-button input[type=radio]:checked + span {
  color: var(--dark-blue);
  font-weight: 600;
}
.work-card .work-marital-group .radio-button:has(input[type=radio]:checked) {
  background: rgba(255, 255, 255, 0.95);
}
.work-card .work-marital-group .radio-button:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: transparent;
}
@media (max-width: 768px) {
  .work-card .work-marital-group .radio-button {
    height: 56px;
  }
  .work-card .work-marital-group .radio-button span {
    font-size: 14px;
  }
}
.work-card .work-sector-group.form-floating-group {
  position: relative;
  margin-top: 20px;
}
.work-card .work-sector-group.form-floating-group .form-label {
  top: 10px !important;
  transform: translateY(0) !important;
  font-size: 10px !important;
  color: #739fcc !important;
  letter-spacing: -0.03em;
  z-index: 2;
  pointer-events: none;
}
.work-card .work-sector-group.form-floating-group .form-select {
  padding-top: 24px;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #0056b3;
}
@media (max-width: 768px) {
  .work-card .work-sector-group.form-floating-group .form-select {
    padding-top: 22px;
    padding-bottom: 6px;
    font-size: 16px;
  }
}
.work-card .work-sector-group.form-floating-group .searchable-select {
  width: 100%;
}
.work-card .work-sector-group.form-floating-group .searchable-select__trigger {
  width: 100%;
  height: 64px;
  background: #ffffff;
  border: 2px solid #0056b3;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 15px 8px;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: #0056b3;
  letter-spacing: -0.03em;
  cursor: pointer;
  text-align: left;
}
@media (max-width: 768px) {
  .work-card .work-sector-group.form-floating-group .searchable-select__trigger {
    height: 60px;
    padding: 22px 15px 6px;
    font-size: 16px;
  }
}
.work-card .work-sector-group.form-floating-group .searchable-select__value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.work-card .work-sector-group.form-floating-group .searchable-select__arrow {
  flex-shrink: 0;
  margin-left: 8px;
  color: #0056b3;
  display: flex;
  align-items: center;
}
.work-card .work-sector-group.form-floating-group .searchable-select__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 2px solid #0056b3;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 86, 179, 0.15);
  z-index: 100;
  display: none;
}
.work-card .work-sector-group.form-floating-group .searchable-select__dropdown.is-open {
  display: block;
}
.work-card .work-sector-group.form-floating-group .searchable-select__search {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 15px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: #333;
  outline: none;
  border-radius: 8px 8px 0 0;
}
.work-card .work-sector-group.form-floating-group .searchable-select__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}
.work-card .work-sector-group.form-floating-group .searchable-select__option {
  padding: 10px 15px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.work-card .work-sector-group.form-floating-group .searchable-select__option:hover, .work-card .work-sector-group.form-floating-group .searchable-select__option.is-selected {
  background: rgba(0, 110, 255, 0.08);
  color: #0056b3;
  font-weight: 600;
}
.work-card .work-sector-group.form-floating-group .searchable-select__empty {
  padding: 12px 15px;
  font-size: 13px;
  color: #999;
  font-style: italic;
}

.radio-button-group {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.radio-button-group.horizontal-three .radio-button {
  flex: 1;
  max-width: 153px;
}
@media (max-width: 768px) {
  .radio-button-group {
    flex-direction: row;
    gap: 16px;
  }
  .radio-button-group.horizontal-three {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .radio-button-group.horizontal-three .radio-button {
    flex: 1;
    min-width: calc(33.333% - 8px);
    max-width: none;
  }
}

.radio-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  background-color: var(--white);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.radio-button input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-button span {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: #a1a1a1;
  text-align: center;
}
.radio-button input[type=radio]:checked + span {
  color: var(--black);
  font-weight: 500;
}
.radio-button input[type=radio]:checked ~ span, .radio-button:has(input[type=radio]:checked) {
  border-color: var(--primary-blue);
  background-color: #f0f7ff;
}
.radio-button.is-checked {
  border-color: var(--primary-blue);
  background-color: #f0f7ff;
}
.radio-button:hover {
  border-color: var(--primary-blue);
}
@media (max-width: 991px) and (min-width: 769px) {
  .radio-button {
    height: 62px;
  }
  .radio-button span {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .radio-button {
    height: 60px;
    border-radius: 10px;
  }
  .radio-button span {
    font-size: 14px;
  }
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 350px;
  margin: auto;
}
@media (max-width: 991px) and (min-width: 769px) {
  .form-actions {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .form-actions {
    gap: 15px;
  }
}

.btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 41px;
  background-color: #d9d9d9;
  color: #a1a1a1;
  border: none;
  border-radius: 55px;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 88px;
  height: 60px;
}
.btn-back:hover {
  background-color: #c9c9c9;
  color: var(--black);
}
@media (max-width: 991px) and (min-width: 769px) {
  .btn-back {
    font-size: 18px;
    padding: 12px 32px;
    height: 54px;
  }
}
@media (max-width: 768px) {
  .btn-back {
    font-size: 16px;
    padding: 10px 30px;
    min-width: auto;
    height: 50px;
    border-radius: 40px;
  }
}

/* ================================================================ */
/* PRE-EVALUATION PAGE STYLES - CLEAN WHITE BACKGROUND */
/* ================================================================ */
.evaluation-page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 2rem 1rem;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .evaluation-page-wrapper {
    padding: 2rem 1rem;
  }
}

.evaluation-page-title {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  line-height: normal;
}
@media (max-width: 768px) {
  .evaluation-page-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

.evaluation-subtitle {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 300; /* Poppins Light */
  color: #000000; /* Exact black from Figma */
  text-align: center;
  margin-bottom: 50px;
  line-height: normal;
  max-width: 508.511px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .evaluation-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 100%;
  }
}

.evaluation-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  align-items: center;
}
.evaluation-steps .evaluation-step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  transition: opacity 0.5s ease;
  justify-content: flex-start;
}
.evaluation-steps .evaluation-step.active {
  opacity: 1;
}
.evaluation-steps .evaluation-step .step-check {
  width: 34.32px; /* Exact from Figma */
  height: 34.32px; /* Exact from Figma */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.evaluation-steps .evaluation-step .step-check svg {
  width: 100%;
  height: 100%;
}
.evaluation-steps .evaluation-step.active .step-check {
  opacity: 1;
}
.evaluation-steps .evaluation-step p {
  font-family: var(--font-primary);
  font-size: 16px; /* Exact from Figma */
  font-weight: 300; /* Poppins Light */
  color: #000000; /* Exact black from Figma */
  margin: 0;
  line-height: 42.9px; /* Exact from Figma */
  text-align: left;
}
@media (max-width: 768px) {
  .evaluation-steps .evaluation-step {
    gap: 15px;
  }
  .evaluation-steps .evaluation-step .step-check {
    width: 28px;
    height: 28px;
  }
  .evaluation-steps .evaluation-step p {
    font-size: 14px;
    line-height: 1.5;
  }
}

.evaluation-form-actions {
  display: flex;
  justify-content: center;
}

/* ================================================================ */
/* PAYMENT PAGE STYLES - VERTICAL ACCORDION DESIGN */
/* ================================================================ */
.payment-page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem 40px 1rem;
}
@media (max-width: 768px) {
  .payment-page-wrapper {
    padding: 0 1rem 60px 1rem;
    max-width: 100%;
  }
}

/* ================================================================ */
/* PRICE SUMMARY CARD (Gray Box) */
/* ================================================================ */
.price-summary-card {
  background-color: #F9FAFB;
  border: 1px solid #E3E3E3;
  border-radius: 20px;
  padding: 30px 40px;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 768px) {
  .price-summary-card {
    padding: 20px 15px;
    border-radius: 15px;
  }
}
.price-summary-card .price-summary-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.price-summary-card .price-summary-left .price-summary-title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  /* Poppins Medium */
  color: #000000;
  margin: 0;
  line-height: normal;
}
@media (max-width: 768px) {
  .price-summary-card .price-summary-left .price-summary-title {
    font-size: 14px;
  }
}
.price-summary-card .price-summary-left .price-summary-subtitle {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  /* Poppins Light */
  color: #000000;
  margin: 0;
  line-height: normal;
}
@media (max-width: 768px) {
  .price-summary-card .price-summary-left .price-summary-subtitle {
    font-size: 10px;
  }
}
.price-summary-card .price-summary-right {
  position: absolute;
  top: 30px;
  right: 40px;
}
@media (max-width: 768px) {
  .price-summary-card .price-summary-right {
    top: 20px;
    right: 15px;
  }
}
.price-summary-card .price-summary-right .price-amount {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  /* Poppins Medium */
  color: #000000;
  text-align: right;
}
@media (max-width: 768px) {
  .price-summary-card .price-summary-right .price-amount {
    font-size: 18.653px;
  }
}
.price-summary-card .price-summary-note {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}
.price-summary-card .price-summary-note p {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  /* Poppins Light */
  color: #000000;
  margin: 0;
  line-height: normal;
}
@media (max-width: 768px) {
  .price-summary-card .price-summary-note p {
    font-size: 9px;
  }
}

.form-card .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 2rem;
}
.form-card .checkbox-group .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.form-card .checkbox-group .custom-checkbox-box {
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 5px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid gray;
}
.form-card .checkbox-group .sr-only:checked + .custom-checkbox-box::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-blue);
  font-weight: bold;
  font-size: 14px;
}
.form-card .checkbox-group .checkbox-label {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
}
.form-card .checkbox-group .checkbox-label a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

.checkbox-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.checkbox-group .checkbox-label {
  color: #000;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.checkbox-group .checkbox-label a {
  color: #000;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* ================================================================ */
/* PAYMENT METHOD OPTIONS (Vertical Accordion) */
/* ================================================================ */
.payment-method-option {
  background-color: #F9FAFB;
  border: 1px solid #E3E3E3;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  /*    &.active {
          background-color: #f0f0f0;
      }
  */
}
@media (max-width: 768px) {
  .payment-method-option {
    border-radius: 15px;
    margin-bottom: 15px;
  }
}
.payment-method-option .payment-method-radio {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px 49px 24px 49px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}
@media (max-width: 768px) {
  .payment-method-option .payment-method-radio {
    padding: 15px 20px;
    gap: 12px;
  }
}
.payment-method-option .payment-method-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.payment-method-option .payment-method-radio input[type=radio]:checked + .radio-custom {
  background-color: #006EFF;
  border-color: #006EFF;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.25);
}
.payment-method-option .payment-method-radio input[type=radio]:checked + .radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}
.payment-method-option .payment-method-radio .radio-custom {
  width: 21px;
  height: 21px;
  border: 1px solid #d3d3d3;
  border-radius: 50%;
  background-color: white;
  position: relative;
  flex-shrink: 0;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .payment-method-option .payment-method-radio .radio-custom {
    width: 17.651px;
    height: 17.651px;
  }
}
.payment-method-option .payment-method-radio .payment-method-label {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 300;
  /* Poppins Light */
  color: #000000;
  flex: 1;
}
@media (max-width: 768px) {
  .payment-method-option .payment-method-radio .payment-method-label {
    font-size: 14px;
  }
}
.payment-method-option .payment-method-content {
  padding: 0 49px 24px 49px;
  background-color: transparent;
}
@media (max-width: 768px) {
  .payment-method-option .payment-method-content {
    padding: 0 20px 20px 20px;
  }
}

/* ================================================================ */
/* CREDIT CARD FORM INPUTS */
/* ================================================================ */
.payment-method-content .form-input-group {
  /* position:relative kaldırıldı – icon artık .input-with-icon'a göre konumlanıyor */
  margin-bottom: 20px;
  /* Yeni: input + icon tek wrapper içinde, hata span'ı bunun dışında */
}
.payment-method-content .form-input-group .input-with-icon {
  position: relative;
  display: block;
}
.payment-method-content .form-input-group .form-input {
  width: 100%;
  height: 76.558px;
  padding: 7.656px 22.967px;
  padding-left: 60px;
  /* Space for icon */
  background-color: var(--white);
  border: none;
  border-radius: 12.249px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  outline: none;
  transition: all 0.2s ease;
}
.payment-method-content .form-input-group .form-input::placeholder {
  color: #a1a1a1;
}
.payment-method-content .form-input-group .form-input:focus {
  border: 2px solid var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 110, 255, 0.1);
}
@media (max-width: 768px) {
  .payment-method-content .form-input-group .form-input {
    height: 50px;
    padding: 5px 15px;
    padding-left: 45px;
    font-size: 10px;
    border-radius: 8px;
  }
}
.payment-method-content .form-input-group .input-icon {
  position: absolute;
  left: 16.843px;
  /* .input-with-icon wrapper'ına göre konumlanır */
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: #000000;
}
.payment-method-content .form-input-group .input-icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .payment-method-content .form-input-group .input-icon {
    width: 18px;
    height: 18px;
    left: 11px;
  }
}
.payment-method-content .form-input-group .card-number-input {
  padding-left: 70px;
  /* More space for card icon */
}
@media (max-width: 768px) {
  .payment-method-content .form-input-group .card-number-input {
    padding-left: 50px;
  }
}
.payment-method-content .form-row {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .payment-method-content .form-row {
    gap: 10px;
  }
}
.payment-method-content .form-row .form-input-group {
  flex: 1;
}

/* ================================================================ */
/* EFT/HAVALE CONTENT */
/* ================================================================ */
#eftContent .eft-instruction {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 25px;
  line-height: normal;
}
@media (max-width: 768px) {
  #eftContent .eft-instruction {
    font-size: 12px;
  }
}
#eftContent .eft-field-group {
  margin-bottom: 20px;
}
#eftContent .eft-field-group .eft-field-label {
  display: block;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  /* Poppins Light */
  color: #000000;
  margin-bottom: 8px;
  line-height: normal;
}
#eftContent .eft-field-group .eft-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
#eftContent .eft-field-group .eft-field-wrapper .eft-field-input {
  flex: 1;
  height: 76.342px;
  padding: 7.634px 22.902px;
  background-color: var(--white);
  border: none;
  border-radius: 12.215px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  /* Poppins Medium */
  color: #000000;
  outline: none;
  cursor: default;
}
@media (max-width: 768px) {
  #eftContent .eft-field-group .eft-field-wrapper .eft-field-input {
    height: 50px;
    padding: 5px 15px;
    font-size: 10px;
    border-radius: 8px;
  }
}
#eftContent .eft-field-group .eft-field-wrapper .copy-button {
  width: 39.686px;
  height: 39.686px;
  background-color: #F9FAFB;
  border: none;
  border-radius: 7.634px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 1.527px 1.527px 7.634px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}
#eftContent .eft-field-group .eft-field-wrapper .copy-button:hover {
  background-color: #e0e0e0;
  transform: scale(1.05);
}
#eftContent .eft-field-group .eft-field-wrapper .copy-button:active {
  transform: scale(0.95);
}
#eftContent .eft-field-group .eft-field-wrapper .copy-button svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  #eftContent .eft-field-group .eft-field-wrapper .copy-button {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }
  #eftContent .eft-field-group .eft-field-wrapper .copy-button svg {
    width: 18px;
    height: 18px;
  }
}
#eftContent .eft-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
}
#eftContent .eft-warning svg {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  margin-top: 2px;
}
#eftContent .eft-warning p {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  /* Poppins Medium */
  color: #000000;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #eftContent .eft-warning p {
    font-size: 12px;
  }
}

/* ================================================================ */
/* CAMPAIGN CODE SECTION */
/* ================================================================ */
.campaign-code-section {
  text-align: center;
  margin: 30px 0;
}
.campaign-code-section p {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  /* Poppins Light */
  color: #000000;
}
.campaign-code-section p a {
  color: #000000;
  text-decoration: underline;
  font-weight: 400;
}
@media (max-width: 768px) {
  .campaign-code-section p {
    font-size: 11px;
  }
}

/* ================================================================ */
/* PAYMENT FOOTER */
/* ================================================================ */
.payment-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .payment-footer {
    flex-direction: column;
    gap: 15px;
  }
}
.payment-footer .payment-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 59px;
  border: 1px solid #000;
  padding: 8px;
  width: 100%;
  max-width: 123px;
}
@media (max-width: 768px) {
  .payment-footer .payment-total {
    align-items: center;
    width: 100%;
  }
}
.payment-footer .payment-total .total-label {
  font-family: var(--font-primary);
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}
@media (max-width: 768px) {
  .payment-footer .payment-total .total-label {
    font-size: 9px;
  }
}
.payment-footer .payment-total .total-amount {
  font-family: var(--font-primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
@media (max-width: 768px) {
  .payment-footer .payment-total .total-amount {
    font-size: 16px;
  }
}
.payment-footer .payment-submit-btn {
  width: 100%;
  max-width: 279px;
  padding: 16px 0;
  height: auto;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 768px) {
  .payment-footer .payment-submit-btn {
    min-width: 222px;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 40px;
    width: 100%;
  }
}

.payment-helper-text {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 300;
  /* Poppins Light */
  color: #000000;
  text-align: center;
  margin-top: 16px;
  line-height: normal;
}
@media (max-width: 768px) {
  .payment-helper-text {
    font-size: 9px;
  }
}

/* ================================================================ */
/* INLINE FIELD ERROR — JS tarafından eklenen hata mesajları          */
/* ================================================================ */
/* Input hatalıyken kırmızı border */
.payment-method-content .form-input.input-error {
  border: 2px solid #FF3B30 !important;
  background-color: #FFF8F8;
  box-shadow: none;
}

/* Input altına eklenen inline hata span'ı */
.inline-field-error {
  display: flex;
  align-items: center;
  margin-top: 6px;
  padding: 0 4px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  color: #FF3B30;
  line-height: 1.4;
}
.inline-field-error svg {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .inline-field-error {
    font-size: 10px;
  }
}

/* Checkbox altına eklenen hata span'ı */
.inline-checkbox-error {
  display: flex;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 8px;
  padding: 0 4px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  color: #FF3B30;
  line-height: 1.4;
}
.inline-checkbox-error svg {
  flex-shrink: 0;
}

/* field-validation-error stili _FormElements.scss canonical tanımından gelmektedir */
.field-validation-valid {
  display: none !important;
}

/* ================================================================ */
/* PAYMENT BOTTOM SECTION spacing */
/* ================================================================ */
.payment-bottom-section {
  width: 100%;
}

/* ================================================================ */
/* PAYMENT RESULT PAGE STYLES */
/* ================================================================ */
.payment-bottom-section {
  width: 100%;
}

.payment-result-card {
  text-align: center;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 1rem;
  margin: 100px auto 32px auto;
}
.payment-result-card a {
  text-decoration: none;
}
.payment-result-card .result-icon {
  display: flex;
  justify-content: center;
}
.payment-result-card .result-icon svg {
  width: 64px;
  height: 64px;
}
.payment-result-card .result-title {
  font-family: var(--font-primary);
  color: var(--white);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.payment-result-card .result-ref {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  color: #444;
}
.payment-result-card .result-ref .result-ref__label {
  font-weight: 400;
  opacity: 0.75;
}
.payment-result-card .result-ref .result-ref__value {
  font-weight: 600;
  color: #222;
  letter-spacing: 0.3px;
}
.payment-result-card .result-message {
  font-family: var(--font-primary);
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: #000;
  text-align: center;
}
.payment-result-card .result-actions {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-direction: column;
}
.payment-result-card .result-actions .btn-back {
  width: auto;
}
.payment-result-card .result-actions a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .payment-result-card .result-actions {
    flex-direction: column;
  }
}
.payment-result-card.success .result-title {
  color: var(--black);
}
.payment-result-card.error .result-title {
  color: var(--black);
}

/* ================================================================ */
/* FINDEKS CODE PAGE STYLES - CLEAN WHITE BACKGROUND (Like OTP) */
/* ================================================================ */
.findeks-verification-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 2rem 1rem;
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .findeks-verification-wrapper {
    padding: 1rem;
    min-height: 50vh;
  }
}

.findeks-header {
  text-align: center;
  margin-bottom: 30px;
}
.findeks-header .findeks-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.findeks-header .findeks-icon svg {
  width: 60px;
  height: 60px;
}

.findeks-page-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: 20px;
  color: var(--black);
}
@media (max-width: 768px) {
  .findeks-page-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

.findeks-subtitle {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 300;
  color: var(--black);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .findeks-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.findeks-info-box {
  background-color: #f0f0f0;
  border-radius: 20.915px;
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  max-width: 481.56px;
}
.findeks-info-box .findeks-info-icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  margin-top: 2px;
}
.findeks-info-box .findeks-info-icon svg {
  width: 100%;
  height: 100%;
}
.findeks-info-box .findeks-info-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.5;
  margin: 0;
}
.findeks-info-box .findeks-info-text strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  .findeks-info-box {
    padding: 15px;
    border-radius: 15px;
  }
  .findeks-info-box .findeks-info-text {
    font-size: 12px;
  }
}

.findeks-instruction {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 300;
  color: var(--black);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .findeks-instruction {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.findeks-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.findeks-timer {
  font-family: var(--font-primary);
  font-size: 16.732px;
  font-weight: 400;
  color: var(--black);
  text-align: center;
  margin-bottom: 30px;
  transition: color 0.25s ease;
}
.findeks-timer--expired {
  color: var(--error-red);
}
@media (max-width: 768px) {
  .findeks-timer {
    font-size: 12px;
    margin-bottom: 20px;
  }
}

.findeks-resend-note {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  color: var(--error-red);
  text-align: center;
  margin-top: 8px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .findeks-resend-note {
    font-size: 11px;
  }
}

.findeks-button-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.findeks-button-container .btn-secondary {
  max-width: 384px;
  width: 100%;
}
@media (max-width: 768px) {
  .findeks-button-container .btn-secondary {
    max-width: 280px;
  }
}

.findeks-resend {
  text-align: center;
  margin-top: 20px;
}
.findeks-resend .resend-link {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.findeks-resend .resend-link:hover {
  opacity: 0.8;
}
.findeks-resend .resend-link:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .findeks-resend .resend-link {
    font-size: 12px;
  }
}

.findeks-error-state {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.findeks-error-state a {
  text-decoration: none;
}
.findeks-error-state .findeks-error-message {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  color: var(--error-red);
  margin-bottom: 30px;
  line-height: 1.5;
}

.findeks-error-message {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--error-red);
  text-align: center;
  margin-bottom: 20px;
  padding: 0 20px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .findeks-error-message {
    font-size: 12px;
    margin-bottom: 15px;
  }
}

/* ============================================================
   _IntentModal.scss — Global Intent Modal (Figma Redesign)
   BU DOSYA HEM NewApplyFlow.css HEM DE main.css İÇİNE COMPILE OLUR.
   Tüm stiller .ik-intent-modal-root namespace'i altında izole edilmiştir.
   Dış dünyadan gelen button/h2/p reset'leri modal içine asla sızmaz.
   ============================================================ */
/* === OVERLAY === */
.ik-intent-modal-root {
  --im-blue: #006EFF;
  --im-dark-blue: #122B62;
  --im-white: #FFFFFF;
  --im-black: #003F75;
  --im-font: "Poppins", sans-serif;
  --im-card-unselected: rgba(255, 255, 255, 0.12);
  --im-card-selected-border: #3981F5;
  --im-green: #34C759;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  /* === MODAL KUTUSU === */
  /* === MODAL HEADER BAR === */
  /* === ADIMLAR === */
  /* === BAŞLIKLAR === */
  /* ============================================================
     ADIM 1: Intent Kartları
     ============================================================ */
  /* Kart (varsayılan = seçilmemiş) */
  /* Yeşil tik — varsayılan gizli */
  /* ============================================================
     ADIM 2: Kredi Türü Grid
     ============================================================ */
  /* Kredi türü butonları (varsayılan = seçilmemiş) */
  /* Tik ikonu — varsayılan gizli */
  /* === Daha Fazla / Daha Az Toggle === */
  /* ============================================================
     ADIM 2: Kredi Tutarı Input (Floating Label)
     ============================================================ */
  /* Floating label */
  /* ₺ suffix */
  /* === Devam Et Butonu === */
  /* === Disclaimer === */
  /* === Loading Overlay (fetch + form submit beklerken spinner) === */
}
@media (max-width: 768px) {
  .ik-intent-modal-root {
    align-items: flex-end;
  }
}
.ik-intent-modal-root.ik-intent-modal-root--hidden {
  opacity: 0;
  pointer-events: none;
}
.ik-intent-modal-root .ik-intent-modal {
  position: relative; /* spinner için gerekli — absolute child anchor */
  background: var(--im-blue);
  border-radius: 24px;
  padding: 0 60px 40px;
  width: 100%;
  max-width: 1000px;
  box-sizing: border-box;
  position: relative;
  color: var(--im-white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}
.ik-intent-modal-root--hidden .ik-intent-modal-root .ik-intent-modal {
  transform: translateY(60px);
}
@media (max-width: 768px) {
  .ik-intent-modal-root .ik-intent-modal {
    padding: 0 20px 28px;
    border-radius: 20px 20px 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 92vh;
    margin: 0;
    overflow-x: hidden;
  }
}
.ik-intent-modal-root .ik-intent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  margin-bottom: 16px;
  position: sticky;
  top: 0;
  background: var(--im-blue);
  z-index: 2;
}
@media (max-width: 768px) {
  .ik-intent-modal-root .ik-intent-header {
    margin-bottom: 8px;
  }
}
.ik-intent-modal-root .ik-intent-header-title {
  font-family: var(--im-font);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2px;
}
.ik-intent-modal-root .ik-intent-back,
.ik-intent-modal-root .ik-intent-close {
  all: unset;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  box-sizing: border-box;
  width: 36px;
  height: 36px;
}
.ik-intent-modal-root .ik-intent-back:hover,
.ik-intent-modal-root .ik-intent-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.ik-intent-modal-root .ik-intent-back.ik-intent-back--hidden {
  visibility: hidden;
  pointer-events: none;
}
.ik-intent-modal-root .ik-intent-step {
  display: block;
  animation: ikIntentFadeIn 0.3s ease;
}
.ik-intent-modal-root .ik-intent-step.ik-intent-step--hidden {
  display: none;
}
.ik-intent-modal-root .ik-intent-title {
  all: unset;
  display: block;
  font-family: var(--im-font);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.35;
}
@media (max-width: 768px) {
  .ik-intent-modal-root .ik-intent-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.ik-intent-modal-root .ik-intent-subtitle {
  all: unset;
  display: block;
  font-family: var(--im-font);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .ik-intent-modal-root .ik-intent-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }
}
.ik-intent-modal-root .ik-intent-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 769px) {
  .ik-intent-modal-root .ik-intent-cards {
    flex-direction: row;
    gap: 16px;
    max-width: 680px;
  }
}
.ik-intent-modal-root .ik-intent-card {
  all: unset;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--im-font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  transition: background 0.25s, border-color 0.25s, transform 0.15s, box-shadow 0.25s;
  background: var(--im-card-unselected);
  border: 2px solid transparent;
  color: #fff;
  /* Seçili kart */
}
@media (min-width: 769px) {
  .ik-intent-modal-root .ik-intent-card {
    flex: 1;
    padding: 24px 20px;
  }
}
.ik-intent-modal-root .ik-intent-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.ik-intent-modal-root .ik-intent-card.ik-intent-card--active {
  background: #fff;
  border-color: var(--im-card-selected-border);
  color: var(--im-black);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.ik-intent-modal-root .ik-intent-card.ik-intent-card--active:hover {
  transform: none;
  background: #fff;
}
.ik-intent-modal-root .ik-intent-card.ik-intent-card--active .ik-intent-card-icon svg {
  color: var(--im-blue);
}
.ik-intent-modal-root .ik-intent-card.ik-intent-card--active .ik-intent-card-check {
  opacity: 1;
  transform: scale(1);
}
.ik-intent-modal-root .ik-intent-card-check {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.ik-intent-modal-root .ik-intent-card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ik-intent-modal-root .ik-intent-card-icon svg {
  display: block;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.25s;
}
@media (max-width: 768px) {
  .ik-intent-modal-root .ik-intent-card-icon svg {
    width: 38px;
    height: 38px;
  }
}
.ik-intent-modal-root .ik-intent-card-text {
  line-height: 1.4;
}
.ik-intent-modal-root .ik-loan-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 6px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  /* Gizli extra grid */
}
@media (min-width: 769px) {
  .ik-intent-modal-root .ik-loan-type-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 680px;
  }
}
.ik-intent-modal-root .ik-loan-type-grid.ik-loan-type-grid--extra {
  display: none;
  margin-top: 10px;
}
.ik-intent-modal-root .ik-loan-type-grid.ik-loan-type-grid--extra.ik-loan-type-grid--visible {
  display: grid;
}
.ik-intent-modal-root .ik-loan-type-btn {
  all: unset;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--im-font);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  background: var(--im-card-unselected);
  border: 2px solid transparent;
  color: #fff;
  /* Seçili */
}
.ik-intent-modal-root .ik-loan-type-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}
@media (max-width: 768px) {
  .ik-intent-modal-root .ik-loan-type-btn {
    padding: 14px 8px;
    font-size: 13px;
    border-radius: 10px;
  }
}
.ik-intent-modal-root .ik-loan-type-btn.ik-loan-type-btn--active {
  background: #fff;
  border-color: var(--im-card-selected-border);
  color: var(--im-black);
}
.ik-intent-modal-root .ik-loan-type-btn.ik-loan-type-btn--active:hover {
  background: #fff;
}
.ik-intent-modal-root .ik-loan-type-btn.ik-loan-type-btn--active .ik-loan-type-check {
  opacity: 1;
  transform: scale(1);
}
.ik-intent-modal-root .ik-loan-type-check {
  position: absolute;
  top: 5px;
  right: 5px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  line-height: 0;
}
.ik-intent-modal-root .ik-loan-toggle {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 0;
  margin-bottom: 8px;
  cursor: pointer;
  font-family: var(--im-font);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  box-sizing: border-box;
}
.ik-intent-modal-root .ik-loan-toggle:hover {
  color: #fff;
}
.ik-intent-modal-root .ik-loan-toggle .ik-loan-toggle-icon {
  transition: transform 0.3s;
}
.ik-intent-modal-root .ik-loan-toggle.ik-loan-toggle--expanded .ik-loan-toggle-icon {
  transform: rotate(180deg);
}
.ik-intent-modal-root .ik-intent-amount-title {
  all: unset;
  display: block;
  font-family: var(--im-font);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 14px;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .ik-intent-modal-root .ik-intent-amount-title {
    font-size: 17px;
    margin-bottom: 12px;
  }
}
.ik-intent-modal-root .ik-intent-amount-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto 24px;
}
@media (min-width: 769px) {
  .ik-intent-modal-root .ik-intent-amount-wrap {
    max-width: 420px;
  }
}
.ik-intent-modal-root .ik-intent-amount-input {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  height: 64px;
  background: #fff;
  border: 2px solid #0056b3;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 24px 50px 8px 15px;
  font-family: var(--im-font);
  font-size: 18px;
  font-weight: 700;
  color: #0056b3;
  letter-spacing: -0.03em;
  transition: border-color 0.2s, box-shadow 0.2s;
  /* Autofill override */
}
.ik-intent-modal-root .ik-intent-amount-input:focus {
  border-color: #0056b3;
  box-shadow: 0 4px 6px rgba(0, 86, 179, 0.15);
  outline: none;
}
.ik-intent-modal-root .ik-intent-amount-input::placeholder {
  color: transparent;
}
.ik-intent-modal-root .ik-intent-amount-input:-webkit-autofill, .ik-intent-modal-root .ik-intent-amount-input:-webkit-autofill:hover, .ik-intent-modal-root .ik-intent-amount-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #0056b3 !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  transition: background-color 5000s ease-in-out 0s;
  caret-color: #0056b3;
}
@media (max-width: 768px) {
  .ik-intent-modal-root .ik-intent-amount-input {
    height: 60px;
    padding: 22px 50px 6px 15px;
    font-size: 16px;
  }
}
.ik-intent-modal-root .ik-intent-amount-label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--im-font);
  font-size: 16px;
  font-weight: 500;
  color: #a1a1a1;
  pointer-events: none;
  transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
.ik-intent-modal-root .ik-intent-amount-input:focus ~ .ik-intent-amount-label,
.ik-intent-modal-root .ik-intent-amount-input:not(:placeholder-shown) ~ .ik-intent-amount-label {
  top: 10px;
  transform: translateY(0);
  font-size: 10px;
  font-weight: 500;
  color: #739fcc;
  letter-spacing: -0.03em;
}
.ik-intent-modal-root .ik-intent-amount-suffix {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--im-font);
  font-size: 18px;
  font-weight: 700;
  color: #0056b3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.ik-intent-modal-root .ik-intent-amount-input:focus ~ .ik-intent-amount-suffix,
.ik-intent-modal-root .ik-intent-amount-input:not(:placeholder-shown) ~ .ik-intent-amount-suffix {
  opacity: 1;
}
.ik-intent-modal-root .ik-intent-continue-btn {
  all: unset;
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 24px;
  padding: 16px 32px;
  background: #fff;
  color: var(--im-blue);
  font-family: var(--im-font);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  box-sizing: border-box;
}
.ik-intent-modal-root .ik-intent-continue-btn:disabled, .ik-intent-modal-root .ik-intent-continue-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}
.ik-intent-modal-root .ik-intent-continue-btn:not(:disabled):hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
@media (max-width: 768px) {
  .ik-intent-modal-root .ik-intent-continue-btn {
    max-width: 100%;
  }
}
@media (min-width: 769px) {
  .ik-intent-modal-root .ik-intent-continue-btn {
    max-width: 320px;
  }
}
.ik-intent-modal-root .ik-intent-disclaimer {
  all: unset;
  display: block;
  font-family: var(--im-font);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
}
.ik-intent-modal-root .ik-intent-loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 62, 148, 0.93); /* koyu mavi — içerik okunmasın */
  border-radius: inherit;
  overflow: hidden; /* köşe taşmasını önle */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 20; /* .ik-intent-header sticky (z:2) üzerinde */
  pointer-events: all; /* tıklama geçişini engelle */
  animation: ikIntentFadeIn 0.2s ease;
}
@media (max-width: 768px) {
  .ik-intent-modal-root .ik-intent-loading-overlay {
    border-radius: 20px 20px 0 0;
  }
}
.ik-intent-modal-root .ik-intent-spinner {
  width: 52px;
  height: 52px;
  border: 5px solid rgba(255, 255, 255, 0.25);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: ikIntentSpin 0.75s linear infinite;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .ik-intent-modal-root .ik-intent-spinner {
    width: 44px;
    height: 44px;
    border-width: 4px;
  }
}
.ik-intent-modal-root .ik-intent-loading-text {
  all: unset;
  display: block;
  font-family: var(--im-font);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.3px;
  text-align: center;
}
@media (max-width: 768px) {
  .ik-intent-modal-root .ik-intent-loading-text {
    font-size: 14px;
  }
}

@keyframes ikIntentFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ikIntentSpin {
  to {
    transform: rotate(360deg);
  }
}
/* ================================================================ */
/* AYDINLATMA METNİ MODAL — Bottom-Sheet Overlay                   */
/* Figma Node: 228-44 | Responsive: mobile, tablet, desktop        */
/* ================================================================ */
/* Overlay (backdrop) */
.am-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: rgba(80, 80, 80, 0.9);
  /* Hidden by default */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.am-overlay.am-active {
  opacity: 1;
  pointer-events: all;
}
.am-overlay.am-active .am-panel {
  transform: translate(-50%, -50%);
}
@media (max-width: 991.98px) {
  .am-overlay.am-active .am-panel {
    transform: translate(0);
  }
}

/* Panel */
.am-panel {
  position: relative;
  background-color: #f0f0f0;
  border-radius: 25px 25px 0 0;
  width: 100%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
}
@media (min-width: 768px) {
  .am-panel {
    max-height: 85vh;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 25px;
    transform: translate(-50%, -50%);
  }
}

/* Header row — mavi zemin (Figma #2e6df8) */
.am-header {
  flex-shrink: 0;
  position: relative;
  display: flex;
  background-color: #2e6df8;
  border-radius: 25px 25px 0 0;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  padding: 10px 16px 14px;
}
@media (min-width: 768px) {
  .am-header {
    padding: 20px;
  }
}

/* X butonu satırı — tam sağa hizalı */
.am-header-top-row {
  display: flex;
  justify-content: flex-end;
}

/* Başlık + kilit ikonu yatay satır */
.am-header-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.am-header-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: normal;
}

/* Lock badge — beyaz kilit, mavi daire arka plan */
.am-lock-badge {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.am-lock-badge svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Close button — X ikonu, header-top-row içinde sağa hizalı */
.am-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}
.am-close svg {
  width: 14px;
  height: 14px;
  display: block;
}
.am-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Scrollable body */
.am-body {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 65px 48px 48px;
  /* right padding leaves room for scrollbar */
  scroll-behavior: smooth;
  /* Hide native scrollbar — custom one overlaid via JS */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  /* ---- Text styles matching Figma ---- */
  /* Tablo */
}
.am-body::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}
@media (max-width: 767px) {
  .am-body {
    padding: 16px 24px 40px 20px;
  }
}
.am-body .am-section-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #003f75;
  margin-bottom: 0;
  line-height: 1.56;
}
@media (max-width: 767px) {
  .am-body .am-section-title {
    font-size: 18px;
  }
}
.am-body .am-section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #003f75;
  margin-top: 24px;
  margin-bottom: 8px;
  line-height: 1.56;
}
.am-body p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #003f75;
  line-height: 1.56;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .am-body p {
    font-size: 13px;
  }
}
.am-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 8px 0;
}
.am-body ul li {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #003f75;
  line-height: 1.56;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .am-body ul li {
    font-size: 13px;
  }
}
.am-body ol {
  list-style: decimal;
  padding-left: 1.8rem;
  margin: 8px 0;
}
.am-body ol li {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #003f75;
  line-height: 1.56;
  margin-bottom: 6px;
  padding-left: 4px;
}
@media (max-width: 767px) {
  .am-body ol li {
    font-size: 13px;
  }
}
.am-body .am-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #003f75;
  border-radius: 8px;
  overflow: hidden;
}
.am-body .am-table thead tr {
  background-color: #003f75;
}
.am-body .am-table thead tr th {
  color: #fff;
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid #003f75;
  font-size: 13px;
  line-height: 1.4;
}
.am-body .am-table tbody tr {
  background-color: #fff;
}
.am-body .am-table tbody tr:nth-child(even) {
  background-color: #eef4fb;
}
.am-body .am-table tbody tr td {
  padding: 9px 14px;
  border: 1px solid #c8d8e8;
  vertical-align: top;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .am-body .am-table {
    font-size: 12px;
  }
  .am-body .am-table thead tr th,
  .am-body .am-table tbody tr td {
    padding: 7px 10px;
  }
}
.am-body .am-spacer {
  height: 16px;
}
.am-body .am-contact-info {
  font-size: 12px;
  font-style: italic;
  color: #537ea3;
  margin-top: 4px;
}
.am-body .am-contact-info a {
  color: #537ea3;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .am-body .am-contact-info {
    font-size: 11px;
  }
}

/* Custom scrollbar track — right edge of panel */
.am-scrollbar {
  position: absolute;
  right: 10px;
  top: 105px;
  bottom: 75px; /* footer yüksekliği hesaba katıldı */
  width: 10px;
  background-color: #d9d9d9;
  border-radius: 5px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .am-scrollbar {
    right: 4px;
    top: 80px;
    width: 6px;
  }
}

.am-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 40px;
  background-color: #a1a1a1;
  border-radius: 5px;
  transition: top 0.05s linear;
}

/* Footer — gradient mavi zemin + beyaz Kapat butonu (Figma 341:111) */
.am-footer {
  flex-shrink: 0;
  background: linear-gradient(to top, #1b4092, #2e6df8);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .am-footer {
    padding: 12px 16px;
  }
}

.am-footer-close {
  background: #fff;
  border: none;
  border-radius: 30px;
  color: #0056b3;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  padding: 10px 0;
  width: 300px;
  max-width: 100%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.25);
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.am-footer-close:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
@media (max-width: 767px) {
  .am-footer-close {
    width: 100%;
    font-size: 15px;
  }
}

.phone-failed-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 588px;
  margin: 0 auto;
  padding: 48px 1.5rem 64px;
}
@media (max-width: 768px) {
  .phone-failed-wrapper {
    padding: 32px 1rem 48px;
    gap: 20px;
  }
}
.phone-failed-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-failed-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  margin: 0;
  line-height: 1.35;
}
@media (max-width: 768px) {
  .phone-failed-title {
    font-size: 20px;
  }
}
.phone-failed-description {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.7;
  max-width: 420px;
  width: 100%;
}
.phone-failed-description p {
  margin-bottom: 0.75rem;
}
.phone-failed-description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .phone-failed-description {
    font-size: 14px;
  }
}
.phone-failed-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.phone-failed-option-hint {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  color: #222854;
  margin: 0;
  line-height: 1.5;
  max-width: 380px;
}
.phone-failed-option-hint a {
  color: #222854;
  text-decoration: underline;
}
.phone-failed-option-hint a:hover {
  opacity: 0.75;
}
.phone-failed-option .btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  width: 100%;
  max-width: 384px;
}
@media (max-width: 768px) {
  .phone-failed-option .btn-secondary {
    font-size: 16px;
  }
}
.phone-failed-info-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #f0f0f0;
  border-radius: 20px;
  padding: 22px 24px;
  max-width: 516px;
  width: 100%;
  text-align: left;
}
@media (max-width: 768px) {
  .phone-failed-info-box {
    padding: 16px 18px;
    border-radius: 14px;
  }
}
.phone-failed-info-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.phone-failed-info-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.55;
}
.phone-failed-info-text p {
  margin-bottom: 0.25rem;
}
.phone-failed-info-text p:last-child {
  margin-bottom: 0;
}
.phone-failed-info-text strong {
  font-weight: 500;
}
@media (max-width: 768px) {
  .phone-failed-info-text {
    font-size: 13px;
  }
}

.phone-update-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 590px;
  margin: 0 auto;
  padding: 48px 1.5rem 64px;
}
@media (max-width: 768px) {
  .phone-update-wrapper {
    padding: 32px 1rem 48px;
    gap: 18px;
  }
}
.phone-update-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-update-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  margin: 0;
  line-height: 1.35;
}
@media (max-width: 768px) {
  .phone-update-title {
    font-size: 20px;
  }
}
.phone-update-description {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.65;
  max-width: 440px;
  margin: 0;
}
@media (max-width: 768px) {
  .phone-update-description {
    font-size: 14px;
  }
}
.phone-update-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 490px;
  text-align: left;
}
.phone-update-form .phone-input-group {
  border: 1.5px solid #000;
  height: 64px;
  border-radius: 10px;
  width: 100%;
}
.phone-update-form .phone-input-group.has-error {
  border-color: var(--error-red) !important;
}
@media (max-width: 768px) {
  .phone-update-form .phone-input-group {
    height: 56px;
  }
}
.phone-update-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}
.phone-update-actions .btn-secondary {
  flex: 1;
  max-width: 280px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 56px;
}
@media (max-width: 768px) {
  .phone-update-actions .btn-secondary {
    font-size: 15px;
    min-height: 48px;
  }
}

.form-input-group-plain {
  width: 100%;
}
.form-input-group-plain .form-select {
  width: 100%;
  height: 64px;
  background-color: #fff;
  border: 2px solid #c8d0da;
  border-radius: 14px;
  padding: 0 48px 0 20px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='none' stroke='%23506690' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px 9px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input-group-plain .form-select:hover {
  border-color: #9aa8bb;
}
.form-input-group-plain .form-select:focus {
  border-color: #006eff;
  box-shadow: 0 0 0 3.5px rgba(0, 110, 255, 0.13), 0 1px 3px rgba(0, 0, 0, 0.06);
}
.form-input-group-plain .form-select:invalid {
  color: #9aa8bb;
}
.form-input-group-plain .form-select option[value=""][disabled] {
  color: #9aa8bb;
}
.form-input-group-plain .form-select option {
  color: var(--black);
  font-weight: 400;
}
@media (max-width: 768px) {
  .form-input-group-plain .form-select {
    height: 56px;
    font-size: 14px;
    padding: 0 44px 0 16px;
    border-radius: 12px;
  }
}
.form-input-group-plain.has-error .form-select,
.form-input-group-plain.has-error .searchable-select__trigger {
  border-color: #e53935 !important;
  background-color: #fff5f5;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}
.form-input-group-plain .searchable-select__trigger {
  border: 2px solid #c8d0da !important;
  border-radius: 14px;
  height: 64px;
  padding: 0 48px 0 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input-group-plain .searchable-select__trigger:hover {
  border-color: #9aa8bb !important;
}
.form-input-group-plain .searchable-select__trigger:focus, .form-input-group-plain .searchable-select__trigger[aria-expanded=true] {
  border-color: #006eff !important;
  box-shadow: 0 0 0 3.5px rgba(0, 110, 255, 0.13), 0 1px 3px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .form-input-group-plain .searchable-select__trigger {
    height: 56px;
    padding: 0 44px 0 16px;
    border-radius: 12px;
  }
}

.btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: #e3e3e3;
  color: #a1a1a1;
  border: none;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-primary);
  border-radius: 55px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 56px;
  white-space: nowrap;
}
.btn-back:hover {
  background-color: #d0d0d0;
  color: #888;
}
@media (max-width: 768px) {
  .btn-back {
    font-size: 15px;
    padding: 12px 20px;
    min-height: 48px;
    width: 76px;
  }
}

.bank-phone-not-found-error {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 59, 48, 0.08);
  border: 1.5px solid rgba(255, 59, 48, 0.35);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 12px 0 16px;
}
@media (max-width: 768px) {
  .bank-phone-not-found-error {
    padding: 12px 14px;
    gap: 10px;
  }
}
.bank-error-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.bank-error-content {
  flex: 1;
}
.bank-error-title {
  font-size: 14px;
  font-weight: 600;
  color: #FF3B30;
  margin: 0 0 4px;
}
@media (max-width: 768px) {
  .bank-error-title {
    font-size: 13px;
  }
}
.bank-error-message {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 59, 48, 0.85);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .bank-error-message {
    font-size: 12px;
  }
}
.bank-found-phone-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(70, 202, 136, 0.08);
  border: 1.5px solid rgba(70, 202, 136, 0.35);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .bank-found-phone-info {
    padding: 12px 14px;
    gap: 10px;
  }
}
.bank-found-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.bank-found-content {
  flex: 1;
}
.bank-found-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(70, 202, 136, 0.9);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bank-found-number {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .bank-found-number {
    font-size: 16px;
  }
}

.eft-details-wrapper {
  transition: filter 0.35s ease, opacity 0.35s ease;
}
.eft-details-wrapper.eft-blurred {
  filter: blur(5px);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

.payment-terms-group--eft {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(0, 110, 255, 0.05);
  border: 1.5px solid rgba(0, 110, 255, 0.2);
  border-radius: 12px;
}

.payment-footer--eft {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-date-input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 0 12px;
  height: 52px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  background-color: #fff;
  color: #1a1a1a;
  cursor: pointer;
  display: block;
}
.form-date-input:focus {
  outline: none;
  border-color: #006EFF;
  box-shadow: 0 0 0 3px rgba(0, 110, 255, 0.12);
}
@media (max-width: 480px) {
  .form-date-input {
    font-size: 16px;
    height: 50px;
  }
}

.form-input-group:has(.form-date-input) {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

/* ================================================================ */
/* _PaymentNewDesign.scss                                           */
/* Yeni ödeme sayfası için izole stiller                           */
/* Mevcut Payment.scss ile çakışmaz çünkü .pnd- prefix kullanır   */
/* ================================================================ */
/* ── Page wrapper ─────────────────────────────────────────────── */
.pnd-page {
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .pnd-page {
    padding: 30px 16px 60px;
  }
}

/* ── Step indicator ────────────────────────────────────────────── */
.pnd-step-label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #003f75;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .pnd-step-label {
    font-size: 13px;
  }
}

.pnd-progress {
  display: flex;
  gap: 9px;
  margin-bottom: 20px;
}
.pnd-progress__bar {
  height: 10px;
  width: 100px;
  border-radius: 5px;
  background: #d9d9d9;
}
.pnd-progress__bar--active {
  background: #006eff;
}
@media (max-width: 768px) {
  .pnd-progress {
    gap: 6px;
  }
  .pnd-progress__bar {
    width: 70px;
    height: 7px;
  }
}
@media (max-width: 380px) {
  .pnd-progress__bar {
    width: 55px;
  }
}

.pnd-page-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #003f75;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .pnd-page-title {
    font-size: 20px;
    margin-bottom: 28px;
  }
}

/* ── Two-column body ───────────────────────────────────────────── */
.pnd-body {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  width: 100%;
  max-width: 900px;
  /* Stack on mobile — display:contents ile iç blokları doğrudan flex child yapar */
}
@media (max-width: 900px) {
  .pnd-body {
    gap: 32px;
  }
}
@media (max-width: 700px) {
  .pnd-body {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 24px;
  }
}

/* ── Left column: payment method ───────────────────────────────── */
.pnd-left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pnd-left form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 700px) {
  .pnd-left {
    display: contents; /* Çocukları .pnd-body flex item'ı olur */
  }
}

/* Sol kolon formu: sözleşme onaylanmadan kilitli */
#pndPaymentForm {
  transition: opacity 0.25s ease, filter 0.25s ease;
}

/* EFT kutusu: checkbox işaretlenmeden blurlu */
.pnd-method-card.pnd-left--locked {
  opacity: 0.4;
  filter: blur(2px);
  pointer-events: none;
  user-select: none;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

/* ── Payment method card (blue border when selected) ───────────── */
.pnd-method-card {
  background: #f9fafb;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pnd-method-card--selected {
  border-color: #0056b3;
  box-shadow: 0 0 0 1px #0056b3;
  padding: 30px;
}
@media (max-width: 768px) {
  .pnd-method-card {
    padding: 18px 20px;
  }
}

/* ── Radio header row ──────────────────────────────────────────── */
.pnd-method-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.pnd-method-header--has-content {
  margin-bottom: 24px;
}

/* Custom radio */
.pnd-radio {
  appearance: none;
  -webkit-appearance: none;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 1.3px 1.3px 3.9px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s;
}
.pnd-radio:checked {
  background: #006eff;
  box-shadow: inset 1.3px 1.3px 3.9px rgba(0, 0, 0, 0.25);
}
.pnd-radio:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.pnd-method-label {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #003f75;
}
@media (max-width: 768px) {
  .pnd-method-label {
    font-size: 15px;
  }
}

/* ── Credit card form fields ───────────────────────────────────── */
.pnd-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pnd-field-row {
  display: flex;
  gap: 14px;
}
.pnd-field-row .pnd-input-wrap {
  flex: 1 1 0;
  min-width: 0;
}

.pnd-input-wrap {
  position: relative;
}

.pnd-input {
  width: 100%;
  height: 60px;
  background: #fff;
  border: 1px solid #0056b3;
  border-radius: 8px;
  padding: 5px 45px 5px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0056b3;
  outline: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  /* Override browser autofill styles */
}
.pnd-input::placeholder {
  font-weight: 500;
  font-size: 10px;
  color: #739fcc;
  letter-spacing: -0.3px;
}
.pnd-input:focus {
  border-color: #006eff;
  box-shadow: 0 4px 6px rgba(0, 110, 255, 0.18);
}
.pnd-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px #fff inset;
  -webkit-text-fill-color: #0056b3;
}
@media (max-width: 768px) {
  .pnd-input {
    height: 54px;
    font-size: 16px;
  }
}

/* Floating label — başta ortada (placeholder gibi), focus/dolu → sol üste */
.pnd-input-label {
  display: block;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 86, 179, 0.45);
  letter-spacing: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: top 0.18s ease, font-size 0.18s ease, transform 0.18s ease, color 0.18s ease, letter-spacing 0.18s ease;
}

/* Input focus veya dolu olduğunda label sol üste kayar */
.pnd-input:focus ~ .pnd-input-label,
.pnd-input:not(:placeholder-shown) ~ .pnd-input-label,
.pnd-input.input-validation-error ~ .pnd-input-label {
  top: 7px;
  transform: translateY(0);
  font-size: 10px;
  font-weight: 500;
  color: #739fcc;
  letter-spacing: -0.3px;
}

/* Validasyon hatası — Figma: border #dc3545 */
.pnd-input.input-validation-error {
  border-color: #dc3545 !important;
  box-shadow: 0 4px 6px rgba(220, 53, 69, 0.12);
}

.pnd-input.input-validation-error ~ .pnd-input-label {
  color: #dc3545;
}

.pnd-input--labeled {
  padding-top: 22px;
  padding-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
  color: #0056b3;
}
@media (max-width: 768px) {
  .pnd-input--labeled {
    font-size: 16px;
  }
}

/* Icon inside input — yüksekliği input ile eşleştirilir ki
   validation mesajı gelince .pnd-input-wrap boyutlanırken icon kaymasın */
.pnd-input-icon {
  position: absolute;
  right: 14px;
  top: 0;
  height: 60px;
  /* input height ile aynı — wrap'ın büyümesinden etkilenmez */
  color: #0056b3;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.pnd-input-icon svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 768px) {
  .pnd-input-icon {
    height: 54px;
    /* input mobile height */
  }
}

.pnd-validation-error {
  display: block;
  font-size: 11px;
  color: #dc3545;
  margin-top: 4px;
  padding-left: 4px;
}
.pnd-validation-error:empty {
  display: none;
}

/* ── Right column: order summary ───────────────────────────────── */
.pnd-right {
  width: 350px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 900px) {
  .pnd-right {
    width: 300px;
  }
}
@media (max-width: 700px) {
  .pnd-right {
    display: contents; /* Çocukları .pnd-body flex item'ı olur */
  }
}
.pnd-right form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
  justify-content: center;
}
.pnd-right form#pndCampaignForm {
  gap: 5px;
}

/* ── Summary card ──────────────────────────────────────────────── */
.pnd-summary-card {
  background: #f9fafb;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Figma 237-226: 20px gap between every row */
}
@media (max-width: 700px) {
  .pnd-summary-card {
    padding-top: 0;
  }
}

.pnd-summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #fff;
}

.pnd-summary-info {
  flex: 1;
  min-width: 0;
}

.pnd-summary-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #003f75;
  line-height: 1.3;
}

.pnd-summary-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #003f75;
  white-space: nowrap;
  margin-top: 2px;
}

.pnd-summary-amount {
  font-family: "Poppins", sans-serif;
  font-size: 0;
  /* trick to handle mixed font sizes in one element */
  font-weight: 500;
  color: #003f75;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}
.pnd-summary-amount .pnd-amount-value {
  font-size: 24px;
  font-weight: 500;
  color: #003f75;
}
.pnd-summary-amount .pnd-amount-currency {
  font-size: 16px;
  font-weight: 300;
  color: #003f75;
}
.pnd-summary-amount--discount .pnd-amount-value {
  color: #36fc99;
}
.pnd-summary-amount--discount .pnd-amount-currency {
  color: #36fc99;
}

.pnd-summary-note {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #003f75;
  line-height: 1.5;
}

/* ── Invalid campaign code error ──────────────────────────── */
.pnd-campaign-error {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  color: #dc3545;
  padding: 4px 4px 0;
}
.pnd-campaign-error:empty {
  display: none;
}

/* ── Campaign code input ───────────────────────────────────────── */
.pnd-campaign-wrap {
  display: flex;
  align-items: stretch;
  height: 60px;
  background: #fff;
  border: 1px solid #0056b3;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.pnd-campaign-wrap--error {
  border-color: #dc3545;
  box-shadow: 0 4px 6px rgba(220, 53, 69, 0.15);
}
.pnd-campaign-wrap.pnd-campaign-applied {
  border-color: #36fc99;
  background: #f0fff8;
}
@media (max-width: 768px) {
  .pnd-campaign-wrap {
    height: 54px;
  }
}

/* Inner field area — grows to fill, holds the floating label */
.pnd-campaign-field {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: stretch;
  /* Kampanya inputu için floating label: başta ortada, dolu/focus'ta üste */
}
.pnd-campaign-field .pnd-input-label {
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 86, 179, 0.45);
  letter-spacing: 0;
}
.pnd-campaign-field .pnd-campaign-input:focus ~ .pnd-input-label,
.pnd-campaign-field .pnd-campaign-input:not(:placeholder-shown) ~ .pnd-input-label {
  top: 7px;
  transform: translateY(0);
  font-size: 10px;
  font-weight: 500;
  color: #739fcc;
  letter-spacing: -0.3px;
}

.pnd-campaign-input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  /* Dolu haldeyken label üstte, metin alta oturur */
  padding: 22px 10px 4px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0056b3;
  letter-spacing: -0.54px;
}
.pnd-campaign-input::placeholder {
  /* Boş placeholder — sadece floating CSS için space karakteri ile çalışır */
  color: transparent;
}
@media (max-width: 768px) {
  .pnd-campaign-input {
    font-size: 16px;
  }
}

/* Right-side button wrapper — fixed 100px wide, 10px padding all around */
.pnd-campaign-btn-wrap {
  flex-shrink: 0;
  width: 100px;
  padding: 10px 9px;
  display: flex;
  align-items: stretch;
}

.pnd-campaign-btn {
  flex: 1;
  background: #006eff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.pnd-campaign-btn:hover {
  background: #0056b3;
}
.pnd-campaign-btn:active {
  background: #003f75;
}

/* ── Terms checkbox ────────────────────────────────────────────── */
#pndRightTerms {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
}

.pnd-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 6px;
}

.pnd-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 5px;
  background: #fff;
  box-shadow: inset 1.16px 1.16px 3.49px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  position: relative;
  margin-top: 1px;
  transition: background 0.2s;
}
.pnd-checkbox:checked {
  background: #006eff;
}
.pnd-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 48%;
  left: 50%;
  width: 12px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.pnd-terms-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #003f75;
  line-height: 1.5;
  cursor: pointer;
}
@media (max-width: 768px) {
  .pnd-terms-label {
    font-size: 13px; /* Apple/Google min erişilebilirlik standardı */
  }
}
.pnd-terms-label a {
  color: #003f75;
  text-decoration: underline;
  font-weight: 400;
}
.pnd-terms-label a:hover {
  color: #006eff;
}

/* ── Submit button ─────────────────────────────────────────────── */
.pnd-submit-btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  height: 54px;
  background: #006eff;
  border: none;
  border-radius: 59px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  transition: background 0.2s ease, transform 0.15s ease;
}
.pnd-submit-btn:hover {
  background: #0056b3;
  transform: translateY(-1px);
}
.pnd-submit-btn:active {
  transform: translateY(0);
}
.pnd-submit-btn--disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .pnd-submit-btn {
    max-width: 100%;
    font-size: 16px;
    height: 50px;
  }
}

/* ── EFT content block (hidden by default) ───────────────────────── */
.pnd-eft-content {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.pnd-eft-content.pnd-visible {
  display: flex;
}

.pnd-eft-terms-row {
  padding: 0;
}

/* ── EFT read-only info fields ───────────────────────────────────── */
.pnd-eft-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pnd-eft-field {
  /* EFT statik label — floating değil, her zaman sol üstte */
}
.pnd-eft-field__inner {
  position: relative;
  display: flex;
  align-items: center; /* dikey ortalama — padding-top hilesi yerine */
  height: 60px;
  background: #f0f4f9; /* salt-okunur alan vurgusu */
  border: 1px solid #0056b3;
  border-radius: 8px;
  padding: 0 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: visible; /* tıklanabilirlik için overflow:hidden kaldırıldı */
  cursor: pointer;
  transition: background 0.15s ease;
}
.pnd-eft-field__inner:hover {
  background: #e6edf8;
}
@media (max-width: 768px) {
  .pnd-eft-field__inner {
    height: 54px;
  }
}
.pnd-eft-field__value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 8px;
  padding-top: 14px; /* label için alan — value-row'u aşağı iter */
}
.pnd-eft-field__value {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0056b3;
  letter-spacing: -0.48px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .pnd-eft-field__value {
    font-size: 14px;
  }
}
.pnd-eft-field__currency {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #739fcc;
  flex-shrink: 0;
}
.pnd-eft-field .pnd-input-label {
  position: absolute;
  top: 7px;
  left: 14px;
  transform: translateY(0); /* global translateY(-50%) sıfırla */
  font-size: 10px;
  font-weight: 500;
  color: #739fcc;
  transition: none; /* EFT alanlarında animasyon yok */
  pointer-events: none;
}
@media (max-width: 768px) {
  .pnd-eft-field .pnd-input-label {
    font-size: 11px;
  }
}
.pnd-eft-field--amount .pnd-eft-field__inner {
  border-width: 2px;
}

/* ── Copy button ─────────────────────────────────────────────────── */
.pnd-copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #0056b3;
  padding: 4px;
  display: flex;
  align-items: center;
  align-self: center; /* dikey ortalama — padding-top hilesi kaldırıldı */
  flex-shrink: 0;
  border-radius: 4px;
  transition: color 0.15s ease, transform 0.1s ease;
}
.pnd-copy-btn:hover {
  color: #003f75;
  transform: scale(1.1);
}
.pnd-copy-btn.pnd-copied {
  color: #00b366;
}

/* ── EFT data wrapper — blur when checkbox unchecked ─────────────── */
.pnd-eft-data {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.pnd-eft-data--locked {
  filter: blur(5px);
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
}

/* ── EFT info note ────────────────────────────────────────────────── */
.pnd-eft-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.pnd-eft-info__icon {
  color: #0056b3;
  display: flex;
  align-items: center;
}
.pnd-eft-info__list {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #003f75;
  line-height: 1.6;
  padding-left: 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .pnd-eft-info__list {
    font-size: 13px; /* Apple/Google min erişilebilirlik standardı */
  }
}
.pnd-eft-info__list li {
  margin-bottom: 4px;
}
.pnd-eft-info__list li:last-child {
  margin-bottom: 0;
}

/* ── EFT SMS button ───────────────────────────────────────────────── */
.pnd-eft-sms-wrap {
  width: 100%;
  margin-top: 16px;
}

/* ── SMS gönderim feedback mesajı ─────────────────────────────────── */
.pnd-sms-feedback {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.pnd-sms-feedback--success {
  background: #f0fff8;
  border: 1px solid #36fc99;
  color: #005c2b;
}
.pnd-sms-feedback--warn {
  background: #fff8e1;
  border: 1px solid #fbbf24;
  color: #78350f;
}

/* ── Campaign badge (when applied) ────────────────────────────── */
.pnd-campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8fff4;
  border: 1px solid #36fc99;
  border-radius: 20px;
  padding: 3px 10px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #003f75;
}
.pnd-campaign-badge .pnd-campaign-badge__code {
  font-weight: 700;
  color: #00b366;
}

.pnd-payment-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff5f5;
  border: 1px solid #f5c6cb;
  border-left: 4px solid #dc3545;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #a71d2a;
  line-height: 1.5;
}
.pnd-payment-error__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: #dc3545;
}
.pnd-payment-error span {
  flex: 1;
}

/* ── SMS spinner animasyonu ───────────────────────────────────────── */
@keyframes pnd-spin {
  to {
    transform: rotate(360deg);
  }
}
.pnd-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: pnd-spin 0.75s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
}

.pnd-submit-btn--success {
  background: #00b366 !important;
  pointer-events: none;
}

/* ── Ödeme submit loading state ───────────────────────────────────── */
.pnd-submit-btn--loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.85;
  pointer-events: none;
  cursor: not-allowed;
}
.pnd-submit-btn--loading:hover {
  background: #006eff;
  transform: none;
}

/* ================================================================ */
/* MOBILE REORDER — Mobilde bölüm sıralaması                        */
/* display:contents ile .pnd-left / .pnd-right kutuları kaldırılıp  */
/* iç bloklar doğrudan .pnd-body flex child'ı olur.                 */
/* Desktop düzeni kesinlikle etkilenmez.                             */
/* ================================================================ */
@media (max-width: 700px) {
  /* 1. Ödeme tutar bilgileri */
  .pnd-summary-card {
    order: 1;
    width: 100%;
  }
  /* 3. Kart ve EFT seçim bölümü */
  #pndPaymentForm {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  /* 2. Kampanya kodu (opsiyonel — summary'den hemen sonra) */
  #pndCampaignForm {
    order: 3;
    width: 100%;
  }
  /* 4. Checkbox + Ödeme butonu */
  #pndMainForm {
    order: 4;
    width: 100%;
  }
}
.kur-page {
  font-family: "Poppins", sans-serif;
  background-color: #FFFFFF;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .kur-page {
    background-color: #EEF4FF;
  }
}

.kur-header {
  background: linear-gradient(to right, #2E6DF8, #0056B3);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
  flex-shrink: 0;
}
.kur-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 8px;
}
.kur-header__logo {
  height: 26px;
  width: auto;
}
.kur-header__user {
  display: flex;
  align-items: center;
  gap: 8px;
}
.kur-header__user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.kur-header__user-name {
  font-size: 11px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.3;
}
.kur-header__user-date {
  font-size: 9px;
  opacity: 0.8;
  color: #FFFFFF;
  line-height: 1.3;
}
.kur-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 14px;
}
.kur-header__back, .kur-header__download {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.15s;
  text-decoration: none;
  flex-shrink: 0;
}
.kur-header__back:hover, .kur-header__download:hover {
  background: rgba(255, 255, 255, 0.15);
}
.kur-header__title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  text-align: center;
  flex: 1;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .kur-header__top {
    padding: 22px 80px 10px;
  }
  .kur-header__nav {
    padding: 10px 80px 18px;
  }
  .kur-header__title {
    font-size: 22px;
    letter-spacing: -0.3px;
  }
  .kur-header__logo {
    height: 32px;
  }
  .kur-header__user-name {
    font-size: 13px;
  }
  .kur-header__user-date {
    font-size: 11px;
  }
}

.kur-tabs {
  background: #FFFFFF;
  padding: 10px 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.kur-tabs__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F2F8FF;
  border-radius: 10px;
  padding: 5px;
  box-sizing: border-box;
}
@media (max-width: 991.98px) {
  .kur-tabs__inner {
    justify-content: space-between;
  }
}
.kur-tabs__subtitle {
  font-size: 11px;
  color: #003F75;
  text-align: center;
  padding: 8px 0 10px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.kur-tabs__star {
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .kur-tabs {
    padding: 18px 80px 0;
  }
  .kur-tabs__subtitle {
    font-size: 13px;
    letter-spacing: 0.1px;
  }
}

.kur-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: transparent;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  max-width: 165px;
}
.kur-tab--active {
  color: #003F75;
  font-weight: 600;
  background: #FFFFFF;
  box-shadow: 0 0 0 1px rgba(46, 109, 248, 0.2), 0 2px 8px rgba(46, 109, 248, 0.18);
}
.kur-tab:hover:not(.kur-tab--active) {
  background: rgba(0, 0, 0, 0.03);
  color: #003F75;
}
@media (min-width: 992px) {
  .kur-tab {
    font-size: 14px;
    padding: 11px 32px;
    max-width: 200px;
  }
}

#kur-kisisel-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#kur-piyasa-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.kur-panel {
  display: none;
}
.kur-panel--active {
  display: block;
}

.kur-layout {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .kur-layout {
    max-width: 1200px;
    margin: 0 auto;
    gap: 28px;
    padding: 48px 0;
  }
}

.kur-eligibility-card {
  background: #F9FAFB;
  padding: 20px 15px;
}
@media (min-width: 992px) {
  .kur-eligibility-card {
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(0, 63, 117, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06);
    padding: 40px 48px;
    background: linear-gradient(160deg, #f5f9ff 0%, #F9FAFB 100%);
  }
}
.kur-eligibility-card__title {
  font-size: 17px;
  font-weight: 600;
  color: #003F75;
  text-align: center;
  margin: 0 0 18px;
}
@media (min-width: 992px) {
  .kur-eligibility-card__title {
    font-size: 22px;
    letter-spacing: -0.4px;
    margin-bottom: 28px;
  }
}

.kur-hgauge {
  margin-bottom: 24px;
}
.kur-hgauge__bar {
  width: 100%;
  height: 20px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(to right, #1a3f80 0%, #3075f0 35%, #5bc5e5 65%, #c5eeff 85%, #f4fbff 100%);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}
@media (min-width: 992px) {
  .kur-hgauge__bar {
    height: 28px;
    border-radius: 28px;
  }
}
.kur-hgauge__fill {
  display: none;
}
.kur-hgauge__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  padding: 0 2px;
  align-items: flex-end;
}
.kur-hgauge__labels span {
  font-size: 11px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
  line-height: 1;
}
@media (min-width: 992px) {
  .kur-hgauge__labels span {
    font-size: 12px;
  }
}
.kur-hgauge__label--active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #122B62 !important;
  line-height: 1;
}
.kur-hgauge__label--active svg {
  display: block;
}
@media (min-width: 992px) {
  .kur-hgauge__label--active {
    font-size: 30px !important;
  }
}

.kur-ai-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 18px 16px;
}
@media (min-width: 992px) {
  .kur-ai-card {
    padding: 32px 36px;
    border-radius: 18px;
    border-top: 3px solid rgba(46, 109, 248, 0.18);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  }
}
.kur-ai-card__headline {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4px;
  background: linear-gradient(90deg, #122B62 15%, #2E6DF8 50%, #122B62 84%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 992px) {
  .kur-ai-card__headline {
    font-size: 19px;
    margin-bottom: 6px;
  }
}
.kur-ai-card__sub {
  font-size: 11px;
  text-align: center;
  margin-bottom: 14px;
  color: rgba(0, 63, 117, 0.7);
}
@media (min-width: 992px) {
  .kur-ai-card__sub {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.kur-ai-card__list {
  font-size: 12px;
  font-weight: 300;
  color: #003F75;
  padding-left: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.kur-ai-card__list li {
  margin-bottom: 4px;
}
.kur-ai-card__list strong {
  font-weight: 500;
  color: #122B62;
}
@media (min-width: 992px) {
  .kur-ai-card__list {
    font-size: 14px;
  }
}
.kur-ai-card__block {
  margin-bottom: 14px;
  border-left: 3px solid rgba(46, 109, 248, 0.3);
  padding-left: 14px;
}
.kur-ai-card__block:last-of-type {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .kur-ai-card__block {
    border-left-color: rgba(46, 109, 248, 0.5);
    padding-left: 16px;
  }
}
.kur-ai-card__block-title {
  font-size: 12px;
  font-weight: 600;
  color: #2E6DF8;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .kur-ai-card__block-title {
    font-size: 14px;
  }
}
.kur-ai-card__block-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: #003F75;
  line-height: 1.7;
}
.kur-ai-card__block-list li {
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
}
.kur-ai-card__block-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2E6DF8;
}
@media (min-width: 992px) {
  .kur-ai-card__block-list {
    font-size: 14px;
  }
}
.kur-ai-card__disclaimer {
  font-size: 9px;
  color: rgba(0, 63, 117, 0.5);
  text-align: center;
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 992px) {
  .kur-ai-card__disclaimer {
    font-size: 11px;
  }
}

.kur-section {
  padding: 14px 15px;
}
.kur-section--gray {
  background-color: #F9FAFB;
}
.kur-section__header {
  margin-bottom: 12px;
}
.kur-section__label {
  font-size: 12px;
  color: rgba(0, 63, 117, 0.7);
  margin: 0 0 3px;
}
.kur-section__title {
  font-size: 15px;
  font-weight: 600;
  color: #003F75;
  margin: 0;
}
@media (min-width: 992px) {
  .kur-section {
    padding: 32px 36px;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 20px rgba(0, 0, 0, 0.07);
  }
  .kur-section--gray {
    border-radius: 20px;
    background: #FFFFFF;
  }
  .kur-section__header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 63, 117, 0.07);
  }
  .kur-section__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #2E6DF8;
  }
  .kur-section__title {
    font-size: 20px;
    letter-spacing: -0.3px;
    margin-top: 4px;
  }
}

.kur-indicators {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 992px) {
  .kur-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.kur-indicator {
  background: #F2F8FF;
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  padding: 13px 14px;
}
.kur-indicator__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.kur-indicator__name {
  font-size: 13px;
  color: #003F75;
}
@media (min-width: 992px) {
  .kur-indicator__name {
    font-size: 15px;
  }
}
.kur-indicator__bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.kur-indicator__note {
  font-size: 11px;
  font-style: italic;
  font-weight: 300;
  color: rgba(0, 63, 117, 0.8);
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 992px) {
  .kur-indicator__note {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .kur-indicator {
    padding: 24px 22px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid rgba(46, 109, 248, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  }
  .kur-indicator:hover {
    box-shadow: 0 8px 28px rgba(46, 109, 248, 0.16);
    border-color: rgba(46, 109, 248, 0.25);
    transform: translateY(-3px);
  }
}

.kur-bar {
  flex: 1;
  height: 32px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #edf2ff;
}
.kur-bar__fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--bar-gradient);
  width: var(--bar-pct);
}
.kur-bar__label {
  font-size: 11px;
  font-weight: 700;
  color: #122B62;
  white-space: nowrap;
  background: rgba(18, 43, 98, 0.08);
  padding: 4px 10px;
  border-radius: 10px;
  min-width: 74px;
  text-align: center;
  border: 1px solid rgba(18, 43, 98, 0.12);
}
@media (min-width: 992px) {
  .kur-bar__label {
    font-size: 12px;
    min-width: 88px;
    color: #122B62;
    background: rgba(46, 109, 248, 0.07);
    border-color: rgba(46, 109, 248, 0.15);
    font-weight: 600;
  }
}

.kur-strengths {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
  padding: 16px 18px;
}
@media (min-width: 992px) {
  .kur-strengths {
    border-radius: 16px;
    background: linear-gradient(135deg, #f0f5ff 0%, #fafcff 100%);
    border: 1px solid rgba(46, 109, 248, 0.12);
    box-shadow: none;
    padding: 24px 28px;
  }
}

.kur-strength-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.kur-strength-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.kur-strength-item:first-child {
  padding-top: 0;
}
.kur-strength-item__icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.kur-strength-item span {
  font-size: 13px;
  font-weight: 300;
  color: #003F75;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .kur-strength-item span {
    font-size: 15px;
  }
}

.kur-credit-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (min-width: 992px) {
  .kur-credit-types {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.kur-credit-card {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 13px 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
@media (min-width: 992px) {
  .kur-credit-card {
    padding: 22px 16px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    gap: 8px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  .kur-credit-card:hover {
    box-shadow: 0 8px 24px rgba(46, 109, 248, 0.14);
    transform: translateY(-3px);
  }
}
.kur-credit-card__name {
  font-size: 13px;
  font-weight: 600;
  color: #003F75;
  text-align: center;
  margin: 0 0 4px;
}
@media (min-width: 992px) {
  .kur-credit-card__name {
    font-size: 15px;
    margin-bottom: 8px;
  }
}
.kur-credit-card__gauge {
  width: 100%;
  padding: 0;
}
.kur-credit-card__level {
  font-size: 12px;
  color: rgba(0, 63, 117, 0.6);
}
.kur-credit-card__level--high {
  color: #122B62;
  font-weight: 500;
}
@media (min-width: 992px) {
  .kur-credit-card__level {
    font-size: 13px;
  }
}

.kur-mini-bar {
  width: 100%;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: #E4E4E4;
  margin: 6px 0 4px;
}
.kur-mini-bar__fill {
  height: 100%;
  border-radius: inherit;
}
@media (min-width: 992px) {
  .kur-mini-bar {
    height: 14px;
    border-radius: 14px;
    margin: 8px 0 6px;
  }
}

.kur-detail-btn {
  background: transparent;
  border: 1px solid rgba(46, 109, 248, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 500;
  color: #2E6DF8;
  cursor: pointer;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  transition: background 0.18s, border-color 0.18s;
}
.kur-detail-btn:hover {
  background: rgba(46, 109, 248, 0.07);
  border-color: rgba(46, 109, 248, 0.5);
}
@media (min-width: 992px) {
  .kur-detail-btn {
    font-size: 12px;
    padding: 6px 16px;
  }
}

.kur-risk-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 992px) {
  .kur-risk-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.kur-risk-card {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
}
.kur-risk-card__badge {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-size: 9px;
  font-weight: 700;
  color: #FFFFFF;
  min-width: 30px;
  letter-spacing: 0.5px;
  order: 2;
}
.kur-risk-card__badge--critical {
  background: #0056B3;
}
.kur-risk-card__badge--important {
  background: #2E6DF8;
}
@media (min-width: 992px) {
  .kur-risk-card__badge {
    writing-mode: horizontal-tb;
    transform: none;
    order: 0;
    min-width: unset;
    width: 100%;
    padding: 7px 20px;
    font-size: 11px;
    letter-spacing: 1.2px;
    justify-content: flex-start;
  }
}
.kur-risk-card__body {
  flex: 1;
  background: #F9FAFB;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  order: 1;
}
.kur-risk-card__label {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.kur-risk-card__label strong {
  font-size: 12px;
  font-weight: 500;
  color: #122B62;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .kur-risk-card__label strong {
    font-size: 14px;
  }
}
.kur-risk-card__note {
  font-size: 11px;
  font-style: italic;
  color: rgba(18, 43, 98, 0.7);
  margin: 0;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .kur-risk-card__note {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .kur-risk-card {
    flex-direction: column;
    border-radius: 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
  .kur-risk-card__body {
    background: #FFFFFF;
    padding: 22px 24px;
    flex: unset;
  }
}

.kur-cta {
  background: linear-gradient(106deg, #2E6DF8 38%, #0056B3 107%);
  padding: 26px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.kur-cta__logo img {
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.kur-cta__body {
  font-size: 13px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}
@media (min-width: 992px) {
  .kur-cta__body {
    font-size: 15px;
  }
}
.kur-cta__subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
}
@media (min-width: 992px) {
  .kur-cta__subtitle {
    font-size: 17px;
  }
}
.kur-cta__btn {
  display: inline-block;
  background: #FFFFFF;
  color: #0056B3;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  width: min(280px, 90%);
  text-align: center;
}
.kur-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
@media (min-width: 992px) {
  .kur-cta__btn {
    font-size: 16px;
    padding: 13px 36px;
    width: 300px;
  }
}
@media (min-width: 992px) {
  .kur-cta {
    border-radius: 14px;
    padding: 36px 48px;
  }
}

.kur-warning-card {
  border: 1.5px solid #2E6DF8;
  border-radius: 14px;
  overflow: hidden;
  margin: 12px 15px 20px;
}
@media (min-width: 992px) {
  .kur-warning-card {
    margin: 0 0 8px;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(46, 109, 248, 0.12);
    border: 2px solid #2E6DF8;
  }
}
.kur-warning-card__alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: linear-gradient(120deg, #2E6DF8 72%, #122B62 110%);
  color: #FFFFFF;
  font-size: 13px;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .kur-warning-card__alert {
    font-size: 16px;
    padding: 18px 32px;
    letter-spacing: 0.1px;
  }
}
.kur-warning-card__body {
  background: #FFFFFF;
  padding: 18px 15px;
}
@media (min-width: 992px) {
  .kur-warning-card__body {
    padding: 36px 56px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
  }
}
.kur-warning-card__text {
  font-size: 12px;
  color: #003F75;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .kur-warning-card__text {
    font-size: 15px;
    text-align: left;
    margin-bottom: 0;
    flex: 1;
  }
}
.kur-warning-card__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (min-width: 992px) {
  .kur-warning-card__cta {
    flex-shrink: 0;
    align-items: flex-start;
    max-width: 420px;
  }
}
.kur-warning-card__heading {
  font-size: 17px;
  font-weight: 500;
  color: #003F75;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .kur-warning-card__heading {
    font-size: 24px;
    letter-spacing: -0.4px;
    text-align: left;
  }
}
.kur-warning-card__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 380px;
}
.kur-warning-card__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  font-weight: 300;
  color: #003F75;
  padding: 6px 0;
  line-height: 1.4;
}
.kur-warning-card__benefits li svg {
  flex-shrink: 0;
  margin-top: 1px;
}
@media (min-width: 992px) {
  .kur-warning-card__benefits li {
    font-size: 14px;
  }
}
.kur-warning-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #2E6DF8, #0056B3);
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  width: min(300px, 100%);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.kur-warning-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(46, 109, 248, 0.3);
}
@media (min-width: 992px) {
  .kur-warning-card__btn {
    font-size: 16px;
    padding: 15px 44px;
    width: auto;
    min-width: 280px;
  }
}

.kur-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 20px;
  text-align: center;
  gap: 12px;
  color: #003F75;
}
.kur-coming-soon h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.kur-coming-soon p {
  font-size: 13px;
  font-weight: 300;
  margin: 0;
  opacity: 0.65;
}
@media (min-width: 992px) {
  .kur-coming-soon {
    padding: 100px 20px;
  }
  .kur-coming-soon h2 {
    font-size: 26px;
  }
  .kur-coming-soon p {
    font-size: 16px;
  }
}

.evds-rates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}
@media (min-width: 560px) {
  .evds-rates-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.evds-rate-card {
  background: #FFFFFF;
  border: 1.5px solid #e8edf5;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.evds-rate-card--active {
  border-color: #2E6DF8;
  box-shadow: 0 0 0 3px rgba(46, 109, 248, 0.12);
}
.evds-rate-card__icon {
  font-size: 24px;
}
.evds-rate-card__label {
  font-size: 12px;
  color: #6b7a99;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.evds-rate-card__value {
  font-size: 22px;
  font-weight: 800;
  color: #122B62;
  line-height: 1;
}
@media (min-width: 992px) {
  .evds-rate-card__value {
    font-size: 26px;
  }
}
.evds-rate-card__date {
  font-size: 11px;
  color: #aab4c8;
}

.evds-pulse-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(18, 43, 98, 0.07);
}
@media (min-width: 992px) {
  .evds-pulse-card {
    padding: 24px 28px;
    gap: 24px;
  }
}

.evds-gauge-wrap {
  width: 100%;
}

.evds-gauge {
  position: relative;
  height: 32px;
}
.evds-gauge__track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 12px;
  background: #e8edf5;
  border-radius: 999px;
}
.evds-gauge__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 999px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.evds-gauge__thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border: 2.5px solid #2E6DF8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 1s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(46, 109, 248, 0.25);
  z-index: 3;
}
.evds-gauge__pct {
  font-size: 10px;
  font-weight: 800;
  color: #122B62;
  line-height: 1;
}
.evds-gauge__labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  padding-top: 6px;
}
@media (min-width: 992px) {
  .evds-gauge__labels {
    font-size: 13px;
  }
}

.evds-pulse-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.evds-pulse-status {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.evds-pulse-icon {
  font-size: 26px;
  flex-shrink: 0;
}

.evds-pulse-label {
  font-size: 18px;
  font-weight: 800;
  color: #122B62;
}
@media (min-width: 992px) {
  .evds-pulse-label {
    font-size: 22px;
  }
}

.evds-pulse-message {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.65;
  font-style: italic;
}
@media (min-width: 992px) {
  .evds-pulse-message {
    font-size: 15px;
  }
}

.evds-radar-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(18, 43, 98, 0.07);
}
@media (min-width: 992px) {
  .evds-radar-card {
    padding: 24px 28px;
    gap: 20px;
  }
}

.evds-radar-bar-wrap {
  width: 100%;
}

.evds-radar-track {
  position: relative;
  height: 12px;
  background: #e8edf5;
  border-radius: 999px;
}

.evds-radar-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.evds-radar-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border: 2.5px solid #122B62;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 1s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(18, 43, 98, 0.2);
  z-index: 2;
}

.evds-radar-pct {
  font-size: 10px;
  font-weight: 800;
  color: #122B62;
  line-height: 1;
}

.evds-radar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #6b7a99;
  padding-top: 16px;
}
@media (min-width: 992px) {
  .evds-radar-labels {
    font-size: 13px;
  }
}

.evds-radar-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.evds-radar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 992px) {
  .evds-radar-badge {
    font-size: 15px;
  }
}
.evds-radar-badge--low {
  background: rgba(67, 160, 71, 0.12);
  color: #2e7d32;
}
.evds-radar-badge--mid {
  background: rgba(249, 168, 37, 0.12);
  color: #e65100;
}
.evds-radar-badge--high {
  background: rgba(18, 43, 98, 0.1);
  color: #122B62;
}

.evds-radar-message {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.65;
  font-style: italic;
}
@media (min-width: 992px) {
  .evds-radar-message {
    font-size: 15px;
  }
}

.evds-radar-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #2E6DF8;
  background: rgba(46, 109, 248, 0.06);
  padding: 10px 14px;
  border-radius: 10px;
  line-height: 1.55;
}
@media (min-width: 992px) {
  .evds-radar-tip {
    font-size: 14px;
  }
}

.evds-sparkline-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.evds-sparkline-title {
  font-size: 11px;
  color: #aab4c8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.evds-sparkline-canvas {
  width: 100%;
  max-width: 100%;
  height: 60px;
  display: block;
}
@media (min-width: 992px) {
  .evds-sparkline-canvas {
    max-width: 320px;
    height: 70px;
  }
}

.evds-logical-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(18, 43, 98, 0.07);
}
@media (min-width: 992px) {
  .evds-logical-card {
    padding: 24px 28px;
    gap: 24px;
  }
}

.evds-logical-market {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 100%);
  border-radius: 14px;
  border: 1.5px solid rgba(46, 109, 248, 0.15);
  text-align: center;
}
.evds-logical-market__label {
  font-size: 11px;
  font-weight: 600;
  color: #2E6DF8;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.evds-logical-market__value {
  font-size: 36px;
  font-weight: 800;
  color: #122B62;
  line-height: 1;
}
.evds-logical-market__value small {
  font-size: 14px;
  font-weight: 400;
  color: #6b7a99;
}
@media (min-width: 992px) {
  .evds-logical-market__value {
    font-size: 44px;
  }
}
.evds-logical-market__note {
  font-size: 11px;
  color: #6b7a99;
  font-style: italic;
  line-height: 1.55;
  max-width: 360px;
}
@media (min-width: 992px) {
  .evds-logical-market__note {
    font-size: 12px;
  }
}
.evds-logical-market--skeleton .evds-logical-market__value {
  color: #c5cfe8;
}

.evds-logical-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.evds-logical-form__label {
  font-size: 14px;
  font-weight: 600;
  color: #122B62;
}
@media (min-width: 992px) {
  .evds-logical-form__label {
    font-size: 15px;
  }
}
.evds-logical-form__row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.evds-logical-form__input-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  border: 1.5px solid #dde3f0;
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
  transition: border-color 0.2s;
}
.evds-logical-form__input-wrap:focus-within {
  border-color: #2E6DF8;
  box-shadow: 0 0 0 3px rgba(46, 109, 248, 0.1);
}
.evds-logical-form__prefix {
  padding: 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #2E6DF8;
  background: rgba(46, 109, 248, 0.06);
  border-right: 1px solid #dde3f0;
  height: 100%;
  display: flex;
  align-items: center;
}
.evds-logical-form__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #122B62;
  font-family: "Poppins", sans-serif;
  background: transparent;
  min-width: 0;
}
.evds-logical-form__input::placeholder {
  color: #aab4c8;
  font-weight: 400;
}
.evds-logical-form__input::-webkit-outer-spin-button, .evds-logical-form__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.evds-logical-form__input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.evds-logical-form__btn {
  padding: 12px 20px;
  background: #2E6DF8;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.evds-logical-form__btn:hover {
  background: rgb(8.2055555556, 82.0555555556, 244.9944444444);
}
.evds-logical-form__btn:active {
  transform: scale(0.97);
}
@media (min-width: 992px) {
  .evds-logical-form__btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}

.evds-logical-result {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  border: 2px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.evds-logical-result--green {
  background: rgba(67, 160, 71, 0.08);
  border-color: rgba(67, 160, 71, 0.25);
}
.evds-logical-result--blue {
  background: rgba(46, 109, 248, 0.08);
  border-color: rgba(46, 109, 248, 0.2);
}
.evds-logical-result--dark_blue {
  background: rgba(18, 43, 98, 0.07);
  border-color: rgba(18, 43, 98, 0.18);
}
.evds-logical-result--red {
  background: rgba(229, 57, 53, 0.07);
  border-color: rgba(229, 57, 53, 0.2);
}
.evds-logical-result__icon {
  font-size: 30px;
  flex-shrink: 0;
  line-height: 1;
}
.evds-logical-result__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.evds-logical-result__label {
  font-size: 17px;
  font-weight: 800;
  color: #122B62;
}
@media (min-width: 992px) {
  .evds-logical-result__label {
    font-size: 20px;
  }
}
.evds-logical-result__message {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.65;
  font-style: italic;
}
@media (min-width: 992px) {
  .evds-logical-result__message {
    font-size: 14px;
  }
}

[hidden] {
  display: none !important;
}

.evds-logical-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #6b7a99;
  padding: 8px 0;
}

.evds-logical-spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid #e8edf5;
  border-top-color: #2E6DF8;
  border-radius: 50%;
  animation: evds-spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes evds-spin {
  to {
    transform: rotate(360deg);
  }
}
.evds-logical-error {
  font-size: 13px;
  color: #e53935;
  background: rgba(229, 57, 53, 0.07);
  border-radius: 10px;
  padding: 10px 14px;
  font-style: italic;
}

/* ================================================================
   LANDING PAGE — Kredi Uygunluk Raporu
   Figma 406-287 (Desktop 1440px) / 406-407 (Mobile 390px)
   ================================================================ */
.lp-page {
  font-family: "Poppins", sans-serif;
  color: #003F75;
  background: #FFFFFF;
  overflow-x: hidden;
  width: 100%;
}

.lp-header {
  background: linear-gradient(270deg, #0056B3 1.21%, #2E6DF8 71.07%);
  width: 100%;
}
.lp-header__inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px;
  padding-right: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
@media (max-width: 768px) {
  .lp-header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.lp-header__logo img {
  height: 39px;
  width: auto;
  display: block;
}
.lp-header__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 991px) {
  .lp-header__title {
    display: none;
  }
}
.lp-header__support {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #FFFFFF;
  flex-shrink: 0;
}
.lp-header__support svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.lp-header__support span {
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .lp-header__support span {
    display: none;
  }
}
.lp-header__support:hover {
  opacity: 0.85;
}

.lp-hero {
  background: linear-gradient(to bottom, #FFFFFF 0%, #E6F7FF 100%);
  width: 100%;
}
.lp-hero__inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px;
  padding-right: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .lp-hero__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .lp-hero__inner {
    flex-direction: column;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.lp-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-shrink: 0;
  max-width: 425px;
}
@media (max-width: 991px) {
  .lp-hero__copy {
    max-width: 100%;
    padding: 30px 15px 20px;
    gap: 10px;
  }
}
.lp-hero__headline {
  font-size: 32px;
  font-weight: 500;
  color: #003F75;
  line-height: 1.25;
  margin: 0;
}
@media (max-width: 768px) {
  .lp-hero__headline {
    font-size: 24px;
  }
}
.lp-hero__subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #003F75;
  line-height: 1.5;
  margin: 0;
  max-width: 360px;
}
@media (max-width: 768px) {
  .lp-hero__subtitle {
    font-size: 16px;
    max-width: 100%;
  }
}
.lp-hero__tubitak {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  justify-content: center;
}
.lp-hero__tubitak img {
  height: 28px;
  width: auto;
}
.lp-hero__tubitak span {
  font-size: 14px;
  font-weight: 400;
  color: #003F75;
}
@media (max-width: 991px) {
  .lp-hero__tubitak {
    display: none;
  }
}
.lp-hero__card-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
@media (max-width: 991px) {
  .lp-hero__card-wrap {
    width: 100%;
    flex: none;
  }
}
.lp-hero__card {
  background: linear-gradient(to bottom, #006EFF 0%, #004299 100%);
  border-radius: 35px;
  width: 100%;
  max-width: 588px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .lp-hero__card {
    width: 100%;
    border-radius: 15px;
    padding: 50px 30px;
    gap: 25px;
  }
}
.lp-hero .form-floating-group {
  width: 100%;
}
.lp-hero .form-floating-group.nMargin {
  margin-bottom: 0;
}
.lp-hero .form-floating-group .form-input {
  background: #FFFFFF !important;
  border-color: #0056B3 !important;
  color: #0056B3 !important;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.lp-hero .form-floating-group .form-input:focus {
  border-color: #006EFF !important;
  box-shadow: 0 0 0 3px rgba(0, 110, 255, 0.18) !important;
}
.lp-hero .form-floating-group .form-input.input-validation-error {
  border-color: #e53935 !important;
}
.lp-hero .form-floating-group .form-label {
  color: #739FCC !important;
}
.lp-hero .form-floating-group .validation-pill {
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #ff6b6b;
  font-size: 12px;
  border-radius: 20px;
  padding: 4px 10px;
  margin-top: 4px;
}
.lp-hero .form-floating-group .validation-pill.show, .lp-hero .form-floating-group .validation-pill.field-validation-error:not(:empty) {
  display: flex;
}
.lp-hero .otp-send-error-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.5);
  border-left: 4px solid #ff6b6b;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #FFFFFF;
}
.lp-hero .otp-send-error-banner.is-blocked, .lp-hero .otp-send-error-banner.is-rate-limited {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.5);
  border-left-color: #fbbf24;
}
.lp-hero .otp-send-error-banner__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
}
.lp-hero__disclaimer {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .lp-hero__disclaimer {
    margin-bottom: 0;
  }
}
.lp-hero__disclaimer a {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 400;
}
.lp-hero__disclaimer a:hover {
  opacity: 0.85;
}
.lp-hero__cta {
  background: #FFFFFF;
  color: #0056B3;
  border: none;
  border-radius: 30px;
  height: 60px;
  width: 360px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.lp-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 86, 179, 0.35);
}
.lp-hero__cta:active {
  transform: translateY(0);
}
@media (max-width: 991px) {
  .lp-hero__cta {
    width: 100%;
    height: 50px;
    font-size: 16px;
  }
}
.lp-hero__cta .lp-btn-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(0, 86, 179, 0.25);
  border-top-color: #0056B3;
  border-radius: 50%;
  animation: lp-spin 0.7s linear infinite;
}

.lp-how {
  background: #FFFFFF;
  width: 100%;
}
.lp-how__inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px;
  padding-right: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .lp-how__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .lp-how__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.lp-how__title {
  font-size: 28px;
  font-weight: 500;
  color: #003F75;
  line-height: 1.3;
  margin: 0 0 15px;
}
@media (max-width: 768px) {
  .lp-how__title {
    font-size: 24px;
  }
}
.lp-how__desc {
  font-size: 22px;
  font-weight: 400;
  color: #003F75;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .lp-how__desc {
    font-size: 18px;
  }
}
.lp-how__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-how__step-title {
  font-size: 16px;
  font-weight: 500;
  color: #003F75;
  line-height: 1.5;
  margin: 0;
}
.lp-how__step-body {
  font-size: 14px;
  font-weight: 300;
  color: #003F75;
  line-height: 1.5;
  margin: 2px 0 0 25px;
}

.lp-screenshots {
  background: linear-gradient(to bottom, #E6F7FF 0%, #FFFFFF 50%, #E6F7FF 100%);
  width: 100%;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .lp-screenshots {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.lp-screenshots__header {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px;
  padding-right: 120px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .lp-screenshots__header {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 768px) {
  .lp-screenshots__header {
    margin-bottom: 30px;
  }
}
.lp-screenshots__title {
  font-size: 28px;
  font-weight: 500;
  color: #003F75;
  margin: 0 0 15px;
}
@media (max-width: 768px) {
  .lp-screenshots__title {
    font-size: 24px;
  }
}
.lp-screenshots__desc {
  font-size: 22px;
  font-weight: 400;
  color: #003F75;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .lp-screenshots__desc {
    font-size: 16px;
  }
}
.lp-screenshots__owl-wrapper {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px;
  padding-right: 120px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .lp-screenshots__owl-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.lp-screenshots__owl-wrapper .owl-stage-outer {
  overflow: hidden;
  padding-left: 0 !important;
}
.lp-screenshots__owl-wrapper .lp-owl__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
  background: transparent;
}
@media (max-width: 768px) {
  .lp-screenshots__owl-wrapper .lp-owl__img {
    height: auto;
    aspect-ratio: 197/400;
  }
}
.lp-screenshots__owl-wrapper .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.lp-screenshots__owl-wrapper .owl-dots .owl-dot {
  outline: none;
  background: none;
  border: none;
  padding: 2px;
  cursor: pointer;
}
.lp-screenshots__owl-wrapper .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E6F7FF;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: block;
  margin: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.lp-screenshots__owl-wrapper .owl-dots .owl-dot.active span, .lp-screenshots__owl-wrapper .owl-dots .owl-dot:hover span {
  background: #006EFF;
  transform: scale(1.15);
}

.lp-experts {
  background: linear-gradient(to bottom, #FFFFFF 50%, #E6F7FF 100%);
  width: 100%;
}
.lp-experts__inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px;
  padding-right: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .lp-experts__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .lp-experts__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.lp-experts__title {
  font-size: 28px;
  font-weight: 500;
  color: #003F75;
  margin: 0 0 15px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .lp-experts__title {
    font-size: 24px;
  }
}
.lp-experts__desc {
  font-size: 22px;
  font-weight: 400;
  color: #003F75;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .lp-experts__desc {
    font-size: 16px;
  }
}
.lp-experts__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .lp-experts__image-wrap {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.lp-experts__image {
  width: 390px;
  height: 390px;
  object-fit: cover;
  border: 1px solid #346EF3;
  border-radius: 4px;
  display: block;
  background: #E6F7FF;
}
@media (max-width: 991px) {
  .lp-experts__image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 0;
    border: none;
  }
}

.lp-support {
  background: #FFFFFF;
  width: 100%;
}
.lp-support__inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px;
  padding-right: 120px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .lp-support__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.lp-support__title {
  font-size: 28px;
  font-weight: 500;
  color: #003F75;
  margin: 0 0 15px;
}
@media (max-width: 768px) {
  .lp-support__title {
    font-size: 24px;
  }
}
.lp-support__desc {
  font-size: 22px;
  font-weight: 400;
  color: #003F75;
  line-height: 1.5;
  margin: 0 0 15px;
}
@media (max-width: 768px) {
  .lp-support__desc {
    font-size: 16px;
  }
}
.lp-support__link {
  font-size: 16px;
  font-weight: 400;
  color: #003F75;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .lp-support__link {
    display: block;
    text-align: left;
    margin-top: 20px;
  }
}
.lp-support__link:hover {
  opacity: 0.75;
}

.lp-footer {
  background: linear-gradient(-62.4deg, #01439a 0%, #0056B3 100%);
  width: 100%;
}
.lp-footer__inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px;
  padding-right: 120px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .lp-footer__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .lp-footer__inner {
    padding-bottom: 100px;
  }
}
.lp-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  width: 100%;
}
.lp-footer__trust-text {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
}
.lp-footer__badges {
  display: flex;
  align-items: center;
  gap: 59px;
  padding: 5px 30px;
}
.lp-footer__badges img {
  height: 37px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .lp-footer__badges {
    gap: 30px;
    padding: 5px 0;
  }
}
.lp-footer__copyright-short {
  font-size: 12px;
  color: #FFFFFF;
  margin: 0;
  text-align: left;
  width: 100%;
}
.lp-footer__legal {
  font-size: 12px;
  color: #DDE3EC;
  line-height: 1.6;
  margin: 0;
  width: 100%;
}

.lp-floating-cta {
  display: none;
}
@media (max-width: 991px) {
  .lp-floating-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 15px 15px;
    background: linear-gradient(to bottom, #006EFF 54%, #004299 100%);
    border-radius: 15px 15px 0 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .lp-floating-cta.is-hidden {
    transform: translateY(110%);
    pointer-events: none;
  }
  .lp-floating-cta__btn {
    width: 100%;
    background: #FFFFFF;
    color: #0056B3;
    border: none;
    border-radius: 30px;
    height: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.25);
    transition: background 0.15s ease;
  }
  .lp-floating-cta__btn:hover {
    background: #f0f5ff;
  }
}

@keyframes lp-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 991.98px) {
  .FAQSection .FAQContainer {
    width: calc(100% - 30px);
  }
}
.FAQSection .FAQContainer .moreFAQ {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: underline;
  font-weight: 600;
  font-size: 18px;
  line-height: 21.78px;
  text-align: justify;
  color: #2E6DF8;
  cursor: pointer;
  margin: auto;
  background: unset;
  margin-top: 37px;
  border: none;
}
.FAQSection .FAQContainer .moreFAQ .icon-paginationArrow {
  transform: rotate(270deg);
  height: 12px;
  width: 12px;
  margin-left: 6px;
  color: #2E6DF8;
}

.accordion {
  background-color: transparent;
  border-radius: 5px;
}
.accordion .accordion-item {
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.accordion .accordion-item:last-child {
  border-bottom: none;
}
.accordion .accordion-item .accordion-header {
  background: linear-gradient(to bottom, #FFF 0%, #E6F7FF 100%);
  color: #0056B3;
  cursor: pointer;
  position: relative;
  height: 70px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 25.6px;
  text-align: justify;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .accordion .accordion-item .accordion-header {
    height: auto;
    padding: 10px 20px;
    text-align: start;
  }
}
.accordion .accordion-item .accordion-header .text {
  z-index: 10;
}
@media (max-width: 991.98px) {
  .accordion .accordion-item .accordion-header .text {
    max-width: 70%;
  }
}
.accordion .accordion-item .accordion-header svg {
  position: absolute;
  left: -5px;
  bottom: -5px;
  z-index: 9;
  width: 100px;
  height: 70px;
}
.accordion .accordion-item .accordion-header:after {
  content: "+";
  font-size: 36px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.accordion .accordion-item .accordion-header.active:after {
  content: "-";
}
.accordion .accordion-item .accordion-body {
  background: #fff;
  color: #222854;
  display: none;
  padding: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
  padding: 20px 30px 30px 30px;
}
.accordion .accordion-item .accordion-body .btn-primary {
  display: block;
  background: #0056b3;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  margin-top: 15px;
  text-align: center;
  width: max-content;
}
@media (max-width: 991.98px) {
  .accordion .accordion-item .accordion-body .btn-primary {
    width: auto;
  }
}

/* IK Custom Form Controls Design System */
.ik-field {
  position: relative;
  display: flex;
  flex-direction: column;
}

.ik-input, .ik-select {
  width: 100%;
  height: 60px;
  background: #fff;
  border: 1px solid #0056B3;
  border-radius: 8px;
  padding: 22px 44px 4px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0056B3;
  outline: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: -0.03em;
}
.ik-input::placeholder, .ik-select::placeholder {
  color: transparent;
}
.ik-input:focus, .ik-select:focus {
  border-color: #006EFF;
  box-shadow: 0 4px 6px rgba(0, 110, 255, 0.18);
}
.ik-field:not(:has(.ik-field-icon)) .ik-input, .ik-field:not(:has(.ik-field-icon)) .ik-select {
  padding-right: 15px;
}
.ik-input:-webkit-autofill, .ik-select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px #fff inset;
  -webkit-text-fill-color: #0056B3;
}
@media (max-width: 768px) {
  .ik-input, .ik-select {
    height: 54px;
    font-size: 16px;
  }
}
.ik-input.is-error, .is-error.ik-select, .ik-input.input-validation-error, .input-validation-error.ik-select {
  border: 2px solid #DC3545 !important;
  box-shadow: 0 4px 6px rgba(220, 53, 69, 0.12) !important;
}
.ik-input.is-error ~ .ik-label, .is-error.ik-select ~ .ik-label, .ik-input.input-validation-error ~ .ik-label, .input-validation-error.ik-select ~ .ik-label {
  color: #DC3545;
}

textarea.ik-input, textarea.ik-select {
  height: auto;
  min-height: 100px;
  resize: vertical;
  padding-top: 28px;
}

.ik-label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 86, 179, 0.45);
  pointer-events: none;
  white-space: nowrap;
  transition: top 0.18s ease, font-size 0.18s ease, transform 0.18s ease, color 0.18s ease, letter-spacing 0.18s ease;
}
textarea ~ .ik-label {
  top: 18px;
  transform: translateY(0);
}

.ik-input:focus ~ .ik-label, .ik-select:focus ~ .ik-label,
.ik-input:not(:placeholder-shown) ~ .ik-label,
.ik-select:not(:placeholder-shown) ~ .ik-label,
.ik-input.is-error ~ .ik-label,
.is-error.ik-select ~ .ik-label,
.ik-input.input-validation-error ~ .ik-label,
.input-validation-error.ik-select ~ .ik-label {
  top: 6px;
  transform: translateY(0);
  font-size: 10px;
  font-weight: 500;
  color: #739FCC;
  letter-spacing: -0.3px;
}

textarea.ik-input:focus ~ .ik-label, textarea.ik-select:focus ~ .ik-label,
textarea.ik-input:not(:placeholder-shown) ~ .ik-label,
textarea.ik-select:not(:placeholder-shown) ~ .ik-label {
  top: 6px;
  font-size: 10px;
  color: #739FCC;
}

.ik-field-icon {
  position: absolute;
  right: 14px;
  top: 0;
  height: 60px;
  display: flex;
  align-items: center;
  color: #0056B3;
  pointer-events: none;
}
.ik-field-icon svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 768px) {
  .ik-field-icon {
    height: 54px;
  }
}

.ik-field--prefix {
  position: relative;
}

.ik-prefix-icon {
  position: absolute;
  left: 14px;
  top: 0;
  height: 60px;
  display: flex;
  align-items: center;
  color: #0056B3;
  pointer-events: none;
}
.ik-prefix-icon svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .ik-prefix-icon {
    height: 54px;
  }
}

.ik-select--prefixed,
.ik-input--prefixed {
  padding-left: 44px;
}

.ik-label--prefixed {
  left: 44px;
}

.ik-field--prefix:has(.is-error) .ik-prefix-icon,
.ik-field--has-error .ik-prefix-icon {
  color: #DC3545;
}

.ik-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230056B3' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
}
.ik-select:not([data-placeholder-shown=true]) ~ .ik-label, .ik-select.has-value ~ .ik-label, .ik-select:focus ~ .ik-label {
  top: 6px;
  transform: translateY(0);
  font-size: 10px;
  font-weight: 500;
  color: #739FCC;
  letter-spacing: -0.3px;
}
.ik-select.is-error, .ik-select.input-validation-error {
  border: 2px solid #DC3545 !important;
  box-shadow: 0 4px 6px rgba(220, 53, 69, 0.12) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23DC3545' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}
.ik-select.is-error ~ .ik-label, .ik-select.input-validation-error ~ .ik-label {
  color: #DC3545;
}

.ik-radio-group {
  display: flex;
  gap: 10px;
}
.ik-radio-group[data-orientation=vertical] {
  flex-direction: column;
}

.ik-radio {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  gap: 8px;
  padding: 0 16px;
}
.ik-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ik-radio:hover {
  border-color: rgba(0, 86, 179, 0.4);
}
.ik-radio .ik-radio-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 1px solid #D3D3D3;
  background: #fff;
  box-shadow: inset 1.3px 1.3px 3.9px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.ik-radio .ik-radio-label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #A1A1A1;
  transition: color 0.2s, font-weight 0.2s;
}
@media (max-width: 768px) {
  .ik-radio .ik-radio-label {
    font-size: 14px;
  }
}
.ik-radio input[type=radio]:checked ~ .ik-radio-box {
  background: #006EFF;
  border-color: #006EFF;
}
.ik-radio input[type=radio]:checked ~ .ik-radio-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.ik-radio input[type=radio]:checked ~ .ik-radio-label {
  color: #003F75;
  font-weight: 600;
}
.ik-radio:has(input[type=radio]:checked) {
  border-color: #0056B3;
  background: rgba(0, 86, 179, 0.04);
}
@media (max-width: 768px) {
  .ik-radio {
    height: 54px;
  }
}

.ik-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.ik-check .ik-check-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ik-check .ik-check-box {
  width: 22px;
  min-width: 22px;
  height: 22px;
  border-radius: 5px;
  background: #fff;
  box-shadow: inset 1.16px 1.16px 3.49px rgba(0, 0, 0, 0.25);
  position: relative;
  margin-top: 2px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.ik-check .ik-check-input:checked ~ .ik-check-box {
  background: #006EFF;
}
.ik-check .ik-check-input:checked ~ .ik-check-box::after {
  content: "";
  position: absolute;
  top: 48%;
  left: 50%;
  width: 12px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg);
}
.ik-check .ik-check-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #003F75;
  line-height: 1.5;
}
.ik-check .ik-check-label a {
  color: #0056B3;
  text-decoration: underline;
  font-weight: 400;
}
.ik-check.is-error .ik-check-box {
  box-shadow: 0 0 0 2px #DC3545, inset 1.16px 1.16px 3.49px rgba(0, 0, 0, 0.1);
}

.ik-campaign-wrap {
  display: flex;
  align-items: stretch;
  height: 60px;
  background: #fff;
  border: 1px solid #0056B3;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.ik-campaign-wrap.is-error {
  border: 2px solid #DC3545 !important;
  box-shadow: 0 4px 6px rgba(220, 53, 69, 0.12) !important;
}
.ik-campaign-wrap.is-success {
  border-color: #36FC99;
  background: #f0fff8;
}
@media (max-width: 768px) {
  .ik-campaign-wrap {
    height: 54px;
  }
}

.ik-campaign-field {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: stretch;
}
.ik-campaign-field .ik-label {
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}

.ik-campaign-input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 22px 10px 4px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0056B3;
  letter-spacing: -0.54px;
}
.ik-campaign-input::placeholder {
  color: transparent;
}
.ik-campaign-input:focus ~ .ik-label, .ik-campaign-input:not(:placeholder-shown) ~ .ik-label {
  top: 6px;
  transform: translateY(0);
  font-size: 10px;
  font-weight: 500;
  color: #739FCC;
  letter-spacing: -0.3px;
}
@media (max-width: 768px) {
  .ik-campaign-input {
    font-size: 16px;
  }
}

.ik-campaign-btn-wrap {
  flex-shrink: 0;
  width: 100px;
  padding: 10px 9px;
  display: flex;
  align-items: stretch;
}

.ik-campaign-btn {
  flex: 1;
  background: #006EFF;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.ik-campaign-btn:hover {
  background: #0056B3;
}
.ik-campaign-btn:active {
  background: #003F75;
}

.ik-error-msg {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: #DC3545;
  margin-top: 4px;
  padding-left: 4px;
  line-height: 1.4;
}
.ik-error-msg::before {
  content: "*";
  margin-right: 2px;
}
.ik-error-msg:empty {
  display: none;
}

.ik-custom-select, .ik-multiselect {
  position: relative;
  font-family: "Poppins", sans-serif;
}
.ik-custom-select__trigger {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  background: #fff;
  border: 1px solid #0056B3;
  border-radius: 8px;
  padding: 22px 40px 4px 15px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease;
  position: relative;
}
.ik-custom-select__trigger::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230056B3' d='M6 8L0 0h12z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .ik-custom-select__trigger {
    height: 54px;
  }
}
.ik-custom-select__value {
  font-size: 18px;
  font-weight: 700;
  color: #0056B3;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ik-custom-select__placeholder {
  font-size: 15px;
  font-weight: 400;
  color: transparent;
}
.ik-custom-select.is-open .ik-custom-select__trigger, .is-open.ik-multiselect .ik-custom-select__trigger {
  border-color: #006EFF;
  border-radius: 8px 8px 0 0;
  border-bottom-color: transparent;
}
.ik-custom-select.is-open .ik-custom-select__trigger::after, .is-open.ik-multiselect .ik-custom-select__trigger::after {
  transform: translateY(-50%) rotate(180deg);
}
.ik-custom-select__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #006EFF;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 200;
  display: none;
  overflow: hidden;
}
.ik-custom-select.is-open .ik-custom-select__dropdown, .is-open.ik-multiselect .ik-custom-select__dropdown {
  display: block;
}
.ik-custom-select__search {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 86, 179, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ik-custom-select__search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #0056B3;
  background: transparent;
}
.ik-custom-select__search input::placeholder {
  color: rgba(0, 86, 179, 0.4);
  font-weight: 300;
}
.ik-custom-select__search svg {
  width: 16px;
  height: 16px;
  color: rgba(0, 86, 179, 0.4);
  flex-shrink: 0;
}
.ik-custom-select__list {
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  padding: 6px 0;
}
.ik-custom-select__list::-webkit-scrollbar {
  width: 4px;
}
.ik-custom-select__list::-webkit-scrollbar-thumb {
  background: rgba(0, 86, 179, 0.2);
  border-radius: 2px;
}
.ik-custom-select__option {
  padding: 11px 15px;
  font-size: 15px;
  font-weight: 400;
  color: #0056B3;
  cursor: pointer;
  transition: background 0.12s ease;
}
.ik-custom-select__option:hover {
  background: rgba(0, 86, 179, 0.05);
}
.ik-custom-select__option.selected {
  font-weight: 600;
  color: #006EFF;
  background: rgba(0, 110, 255, 0.06);
}
.ik-custom-select__option.hidden {
  display: none;
}
.ik-custom-select__no-result {
  padding: 14px 15px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(0, 86, 179, 0.5);
  text-align: center;
}
.ik-custom-select.is-error .ik-custom-select__trigger, .is-error.ik-multiselect .ik-custom-select__trigger {
  border: 2px solid #DC3545 !important;
  box-shadow: 0 4px 6px rgba(220, 53, 69, 0.12) !important;
}
.ik-custom-select .ik-label, .ik-multiselect .ik-label {
  pointer-events: none;
}
.ik-custom-select.has-value .ik-label, .has-value.ik-multiselect .ik-label, .ik-custom-select.is-open .ik-label, .is-open.ik-multiselect .ik-label {
  top: 6px;
  transform: translateY(0);
  font-size: 10px;
  font-weight: 500;
  color: #739FCC;
  letter-spacing: -0.3px;
}

.ik-multiselect__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 6px 12px;
  border-bottom: 1px solid rgba(0, 86, 179, 0.1);
  min-height: 44px;
  align-items: center;
}
.ik-multiselect__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 86, 179, 0.08);
  border: 1px solid rgba(0, 86, 179, 0.18);
  border-radius: 100px;
  padding: 2px 8px 2px 10px;
  font-size: 12px;
  font-weight: 500;
  color: #0056B3;
}
.ik-multiselect__tag button {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0, 86, 179, 0.5);
  font-size: 14px;
  line-height: 1;
  padding: 0;
  margin-top: -1px;
  transition: color 0.15s;
}
.ik-multiselect__tag button:hover {
  color: #DC3545;
}
.ik-multiselect__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  font-size: 15px;
  font-weight: 400;
  color: #0056B3;
  cursor: pointer;
  transition: background 0.12s ease;
}
.ik-multiselect__option:hover {
  background: rgba(0, 86, 179, 0.05);
}
.ik-multiselect__option-check {
  width: 18px;
  min-width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  background: #fff;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
}
.ik-multiselect__option.selected {
  background: rgba(0, 110, 255, 0.05);
}
.ik-multiselect__option.selected .ik-multiselect__option-check {
  background: #006EFF;
  border-color: #006EFF;
}
.ik-multiselect__option.selected .ik-multiselect__option-check::after {
  content: "";
  position: absolute;
  top: 47%;
  left: 50%;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.cfc-demo {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.cfc-demo__title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #003F75;
  margin-bottom: 8px;
}
.cfc-demo__subtitle {
  font-size: 15px;
  font-weight: 300;
  color: rgba(0, 63, 117, 0.65);
  margin-bottom: 48px;
}
.cfc-demo__section {
  margin-bottom: 48px;
}
.cfc-demo__section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #739FCC;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 86, 179, 0.12);
}
.cfc-demo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.cfc-demo__code {
  margin-top: 10px;
  background: #f5f7fb;
  border: 1px solid rgba(0, 86, 179, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 12px;
  color: #555;
  font-family: monospace;
  white-space: pre-wrap;
  word-break: break-all;
}
@media (max-width: 768px) {
  .cfc-demo {
    padding: 24px 16px 60px;
  }
  .cfc-demo__title {
    font-size: 22px;
  }
  .cfc-demo__subtitle {
    font-size: 13px;
  }
}

body.no-interaction {
  pointer-events: none;
}

.custom-loader.fullscreen {
  pointer-events: all; /* Sadece loader tıklanabilir */
}

.custom-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: max-content;
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 8px;
  /*    box-shadow: 0 0 10px rgba(0,0,0,0.1);*/
}
.custom-loader.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1000000000000000000000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: all;
}
.custom-loader.section-loader {
  position: relative;
}
.custom-loader .dots {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: center;
}
.custom-loader .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #005bbb;
  opacity: 0.2;
  animation: blink 1.2s infinite ease-in-out;
}
.custom-loader .dot.dot2 {
  animation-delay: 0.2s;
}
.custom-loader .dot.dot3 {
  animation-delay: 0.4s;
}
@keyframes blink {
  0%, 80%, 100% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
}
.custom-loader .loader-text {
  font-size: 16px;
  color: #005bbb;
  font-weight: 500;
  text-align: center;
}

.menuToggle {
  height: 20px;
  width: 20px;
  min-width: 20px;
}

.toggleGroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #2E6DF8;
  margin-right: 25px;
}
.toggleGroup span {
  font-weight: 600;
  font-size: 8px;
  line-height: 100%;
  margin-top: 4px;
}

.mobilBtnGroup {
  align-items: center;
  display: none;
}
@media (max-width: 991.98px) {
  .mobilBtnGroup {
    display: flex;
  }
}
.mobilBtnGroup .loginBtn {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #2E6DF8;
  margin-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobilBtnGroup .loginBtn svg {
  height: 16px;
  width: 16px;
}

.mobile-menu {
  left: 0;
  top: 0;
  background: gray;
  height: 100%;
  z-index: 10000000000000000000;
  width: 100%;
  max-width: 329px;
  border-top-right-radius: 29px;
  border-bottom-right-radius: 29px;
  background: #fff;
  backdrop-filter: blur(150px);
  padding-top: 26px;
  display: none;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow-x: visible;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  padding-bottom: 50px;
}
.mobile-menu.open {
  transform: translateX(0);
}
@media (max-width: 991.98px) {
  .mobile-menu {
    display: block;
  }
}
.mobile-menu .logo-section {
  border-bottom: 0.5px solid #E2E6F1;
  padding-bottom: 24px;
  max-width: 270.5px;
  margin: auto;
  position: relative;
}
.mobile-menu .logo-section .icon-closeMobilMenuIcon {
  filter: drop-shadow(0 0 6px rgba(28, 117, 253, 0.7));
  height: 44px;
  min-width: 44px;
  width: 44px;
  position: absolute;
  right: 0;
  top: calc(50% - 12px);
  transform: translateY(-50%);
}
.mobile-menu .logo-section img {
  width: 130px;
  height: 36px;
}
.mobile-menu .icon-mobilMenuArrow {
  transition: transform 0.3s ease;
  transform: rotate(180deg); /* Aşağı baksın */
}
.mobile-menu .submenu-toggle.open .icon-mobilMenuArrow {
  transform: rotate(0); /* Aşağı baksın */
}
.mobile-menu nav {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #0056B3;
  padding-left: 35px;
  margin-top: 30px;
}
.mobile-menu nav .submenu {
  height: auto;
  width: 100%;
  max-width: 289px;
  margin-left: -15px;
  text-indent: 62px;
  margin-top: -15px;
  flex-direction: column;
  align-items: start;
}
.mobile-menu nav .submenu .submenu-items {
  position: relative;
  display: none;
  flex-direction: column;
}
.mobile-menu nav .submenu .submenu-items::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 1px;
  background: #E2E6F1;
  border-radius: 8px;
}
.mobile-menu nav .submenu .submenu-items li {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 15.5px;
}
.mobile-menu nav .submenu .submenu-items li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 8px;
  height: 8px;
  border-left: 1px solid #E2E6F1;
  border-bottom: 1px solid #E2E6F1;
  border-bottom-left-radius: 5px;
}
.mobile-menu nav .submenu .submenu-items li a {
  color: #0056B3;
  font-weight: 600;
}
.mobile-menu nav .submenu .submenu-items li:last-child {
  margin-bottom: 0;
}
.mobile-menu nav .submenu .submenu-toggle {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  height: 50px;
  width: 100%;
  justify-content: space-between;
}
.mobile-menu nav .submenu .submenu-toggle svg {
  height: 24px;
  width: 24px;
  min-width: 24px;
}
.mobile-menu nav .submenu .submenu-toggle.open {
  background: #E2E6F1;
  border-radius: 12px;
  backdrop-filter: blur(150px);
}
.mobile-menu nav ul {
  list-style: none;
  display: flex;
  gap: 31px;
  align-items: start;
  flex-direction: column;
}
.mobile-menu nav ul li {
  height: 27px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-menu nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu nav ul li svg {
  width: 26px;
  height: 26px;
  margin-right: 15px;
}
.mobile-menu nav ul li svg.icon-calculatorMobil {
  width: 24px;
  height: 24px;
}
.mobile-menu nav ul li svg.stars {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 0;
  filter: drop-shadow(0px 0px 6px rgba(31, 168, 60, 0.3));
}
.mobile-menu nav ul li.active::after {
  content: "";
  position: absolute;
  left: -42px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 55px;
  background-color: #2d62ed;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: 0 0 20px 8px rgba(31, 168, 60, 0.3);
  z-index: 0;
  transition: box-shadow 0.3s ease;
}
.mobile-menu .auth-buttons {
  border-top: 0.5px solid #E2E6F1;
  padding-top: 31px;
  max-width: 270.5px;
  margin: auto;
  margin-top: 28px;
}
.mobile-menu .auth-buttons .default-button svg {
  height: 20px;
  width: 20px;
  margin-right: 5px;
}
.mobile-menu .auth-buttons .signup-info {
  margin-top: 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}
.mobile-menu .auth-buttons .signup-info p {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #313760;
}
.mobile-menu .auth-buttons .signup-info small {
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  text-align: center;
  color: rgba(34, 40, 84, 0.5019607843);
}

.ikcgr-modal {
  position: fixed;
  inset: 0;
  z-index: 10000000000000000;
  display: none;
}
.ikcgr-modal.is-open {
  display: block;
}
.ikcgr-modal[hidden] {
  display: none !important;
}
.ikcgr-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.ikcgr-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  max-width: 500px;
  height: 414px;
  background: #fff;
  border: 1px solid #0056B3;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  overflow: hidden;
  border-radius: 10px;
  background: #0056b3;
}
@media (max-width: 991.98px) {
  .ikcgr-modal__dialog {
    height: 359px;
  }
}
.ikcgr-modal__header {
  height: 76px;
  background: #0056B3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
@media (max-width: 991.98px) {
  .ikcgr-modal__header {
    height: 67px;
  }
}
.ikcgr-modal__title {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  color: #FFFFFF;
}
@media (max-width: 991.98px) {
  .ikcgr-modal__title {
    font-size: 18px;
  }
}
.ikcgr-modal__close {
  position: relative;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}
.ikcgr-modal__close:focus {
  outline: none !important;
}
.ikcgr-modal__close:before, .ikcgr-modal__close:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 5px;
  background: #ffffff;
  transform-origin: center;
}
.ikcgr-modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.ikcgr-modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.ikcgr-modal__close:focus {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}
.ikcgr-modal__body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: #fff;
  max-height: 338px;
  height: 100%;
  box-sizing: border-box;
}
@media (max-width: 991.98px) {
  .ikcgr-modal__body {
    max-height: 294px;
  }
}
.ikcgr-modal__media {
  position: absolute;
  inset: 0;
  background-image: url("/images/popupbackground.png");
  background-position: center;
  background-size: cover;
}
.ikcgr-modal__content {
  position: relative;
  text-align: center;
  max-width: 642px;
}
.ikcgr-modal__text {
  margin: 0 0 45px 0;
  font-weight: 300;
  font-size: 24px;
  color: #fff;
  text-shadow: 3px 4px 4.2px rgba(0, 0, 0, 0.2509803922);
}
.ikcgr-modal__text strong {
  font-weight: 900;
}
@media (max-width: 991.98px) {
  .ikcgr-modal__text {
    font-size: 18px;
    margin: 0 0 30px 0;
  }
}
.ikcgr-modal__cta {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 24px;
  background: #FFFFFF;
  color: #0056B3;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.ikcgr-modal__cta:hover {
  filter: brightness(0.95);
}
.ikcgr-modal__cta:focus {
  outline: 2px solid #0056B3;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .ikcgr-modal__content {
    max-width: 92%;
  }
  .ikcgr-modal__text {
    font-size: 20px;
  }
}
.ik-form-floating {
  position: relative;
  margin-bottom: 14px;
  box-sizing: border-box;
}
.ik-form-floating label {
  position: absolute;
  top: 6px;
  left: 12px;
  font-size: 12px;
  color: #6b7280;
  pointer-events: none;
  transition: all 0.15s ease;
}
.ik-form-floating input, .ik-form-floating select, .ik-form-floating textarea {
  width: 100%;
  padding: 24px 12px 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}
.ik-form-floating input.error, .ik-form-floating select.error, .ik-form-floating textarea.error {
  border-color: #ef4444;
}
.ik-form-floating input:focus, .ik-form-floating select:focus, .ik-form-floating textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.ik-form-floating .ik-input-error {
  display: none;
  color: #ef4444;
  font-size: 12px;
  margin-top: 6px;
}

.ik-helper {
  font-size: 12px;
  color: #6b7280;
  margin: 8px 0 0;
}

.ik-result {
  display: grid;
  gap: 12px;
}
.ik-result .ik-codebox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  padding: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.ik-result .ik-codebox .ik-code {
  font-size: 20px;
}
.ik-result .ik-codebox .ik-copy-btn {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  max-height: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
.ik-result .ik-codebox .ik-copy-btn:hover {
  background: #f9fafb;
}
.ik-result .ik-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}
.ik-result .ik-cta .ik-btn {
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}
.ik-result .ik-cta .ik-btn-primary {
  background: #2563eb;
  color: #fff;
}
.ik-result .ik-cta .ik-btn-ghost {
  background: transparent;
  color: #111827;
}
.ik-result .ik-alert {
  font-size: 14px;
  padding: 12px;
  border-radius: 12px;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
}
.ik-result .ik-alert.success {
  background: #f3ffed;
  color: #878d7b;
  border: 1px solid #b0c7a4;
}

.ik-muted {
  color: #6b7280;
  font-size: 13px;
}

.ik-btn {
  font: inherit;
}

.ik-btn-primary {
  background: #2563eb;
  color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  border: none;
  cursor: pointer;
}
.ik-btn-primary:disabled {
  opacity: 0.6;
  cursor: default;
}

.application-result-page {
  background: #ffffff;
  min-height: 600px;
  padding: 0;
  position: relative;
}
@media (max-width: 991.98px) {
  .application-result-page {
    padding: 40px 0;
  }
}
.application-result-page__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 200px;
  display: flex;
  gap: 0;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1440px) {
  .application-result-page__container {
    padding: 0 100px;
  }
}
@media (max-width: 991.98px) {
  .application-result-page__container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
}
.application-result-page__info {
  flex: 0 0 auto;
  width: auto;
  padding-top: 40px;
}
@media (max-width: 991.98px) {
  .application-result-page__info {
    width: 100%;
    text-align: center;
    padding-top: 20px;
  }
}
.application-result-page__heading-group {
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .application-result-page__heading-group {
    margin-bottom: 30px;
  }
}
.application-result-page__heading {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 32.446px;
  line-height: normal;
  color: #000000;
  margin: 0 0 4px 0;
}
@media (max-width: 991.98px) {
  .application-result-page__heading {
    font-size: 28px;
  }
}
.application-result-page__subheading {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 23.597px;
  line-height: normal;
  color: #000000;
  margin: 0;
}
@media (max-width: 991.98px) {
  .application-result-page__subheading {
    font-size: 20px;
  }
}
.application-result-page__steps-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20.648px;
  line-height: normal;
  color: #000000;
  margin: 0 0 30px 0;
}
@media (max-width: 991.98px) {
  .application-result-page__steps-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.application-result-page__steps {
  position: relative;
  margin-top: 50px;
}
@media (max-width: 991.98px) {
  .application-result-page__steps {
    margin-top: 30px;
  }
}
.application-result-page__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 991.98px) {
  .application-result-page__step {
    margin-bottom: 30px;
  }
}
.application-result-page__step::before {
  content: "";
  position: absolute;
  left: 13.8px;
  top: 30px;
  width: 2px;
  height: 75px;
  background: linear-gradient(180deg, #006eff 0%, rgba(0, 110, 255, 0.2) 100%);
}
@media (max-width: 991.98px) {
  .application-result-page__step::before {
    height: 60px;
  }
}
.application-result-page__step:last-child::before {
  display: none;
}
.application-result-page__step--final {
  margin-top: 20px;
}
.application-result-page__step--final .application-result-page__step-icon {
  background: #006eff;
  border-radius: 50%;
  width: 27.649px;
  height: 27.649px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  flex-shrink: 0;
}
.application-result-page__step-number {
  background: #006eff;
  border-radius: 50%;
  width: 27.649px;
  height: 27.649px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18.821px;
  flex-shrink: 0;
}
.application-result-page__step-text {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 18.376px;
  line-height: normal;
  color: #000000;
  margin: 0;
  padding-top: 2px;
}
@media (max-width: 991.98px) {
  .application-result-page__step-text {
    font-size: 16px;
  }
}
.application-result-page__form-container {
  background: #006eff;
  border-radius: 34.296px;
  padding: 60px 65px;
  width: 620px;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 991.98px) {
  .application-result-page__form-container {
    padding: 40px 30px;
    width: 100%;
    max-width: 100%;
  }
}
.application-result-page__form-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 30.18px;
  line-height: normal;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .application-result-page__form-title {
    font-size: 26px;
  }
}
.application-result-page__form-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 19.206px;
  line-height: normal;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .application-result-page__form-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.application-result-page__form {
  width: 100%;
}
.application-result-page__form-step {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
  margin-bottom: 20px;
}
.application-result-page__phone-input {
  display: flex;
  background: #ffffff;
  border-radius: 10.975px;
  overflow: hidden;
  height: 68px;
  align-items: center;
  gap: 4px;
  margin-bottom: 15px;
}
@media (max-width: 991.98px) {
  .application-result-page__phone-input {
    height: 56px;
  }
}
.application-result-page__country-code {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  text-align: center;
  width: 79px;
  flex-shrink: 0;
  border-right: 1px solid #e5e5e5;
  padding: 0 10px;
}
.application-result-page__phone-input input {
  flex: 1;
  border: none;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  padding: 0 20px;
  background: transparent;
}
.application-result-page__phone-input input::placeholder {
  color: #a1a1a1;
}
.application-result-page__form-note {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 34.296px;
  color: #ffffff;
  margin-bottom: 20px;
}
.application-result-page__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}
.application-result-page__checkbox input[type=checkbox] {
  width: 24px;
  height: 24px;
  border-radius: 4.656px;
  border: none;
  background: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.application-result-page__checkbox input[type=checkbox]:checked {
  background: #ffffff;
  box-shadow: inset 1.164px 1.164px 3.492px 0px rgba(0, 0, 0, 0.25);
}
.application-result-page__checkbox label {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: normal;
  color: #ffffff;
  cursor: pointer;
}
.application-result-page__checkbox label a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.application-result-page__checkbox label a:hover {
  opacity: 0.9;
}
.application-result-page__submit-btn {
  width: 100%;
  background: #122b62;
  border-radius: 55.846px;
  padding: 13.961px 41.884px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: normal;
  color: #ffffff;
  text-align: center;
}
.application-result-page__submit-btn:hover {
  background: rgb(14.0431034483, 33.5474137931, 76.4568965517);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.application-result-page__submit-btn:active {
  transform: translateY(0);
}
@media (max-width: 991.98px) {
  .application-result-page__submit-btn {
    font-size: 18px;
    padding: 14px 30px;
  }
}
.application-result-page__login-link {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: normal;
  color: #ffffff;
  text-align: center;
  margin-top: 20px;
}
.application-result-page__login-link a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  font-weight: 300;
}
.application-result-page__login-link a:hover {
  opacity: 0.9;
}

.apply-flow-body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.apply-flow-header {
  position: relative;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #E5E5E5;
}
.apply-flow-header__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 200px;
}
@media (max-width: 1440px) {
  .apply-flow-header__container {
    padding: 0 100px;
  }
}
@media (max-width: 991.98px) {
  .apply-flow-header__container {
    padding: 0 20px;
  }
}
.apply-flow-header__logo {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}
.apply-flow-header__logo-img {
  height: auto;
  max-height: 46.504px;
  width: auto;
  display: block;
}

.apply-flow-main {
  flex: 1;
  width: 100%;
  position: relative;
}

.apply-flow-footer {
  position: relative;
  width: 100%;
  padding: 0;
  border-top: 1px solid #E5E5E5;
  margin-top: 60px;
  background: #ffffff;
}
@media (max-width: 991.98px) {
  .apply-flow-footer {
    margin-top: 40px;
  }
}
.apply-flow-footer__certification {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 0;
  margin: 0 auto;
  max-width: 1440px;
}
.apply-flow-footer__certification-logos {
  display: flex;
  align-items: center;
  gap: 8px;
}
.apply-flow-footer__cert-logo {
  height: 27.591px;
  width: auto;
  object-fit: contain;
}
.apply-flow-footer__certification-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16.462px;
  line-height: normal;
  color: #000000;
  margin: 0;
}
.apply-flow-footer__divider {
  width: 100%;
  height: 1px;
  background: #E5E5E5;
  margin: 0;
}
.apply-flow-footer__bottom {
  width: 100%;
  padding: 20px 0 30px;
}
.apply-flow-footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .apply-flow-footer__container {
    padding: 0 100px;
  }
}
@media (max-width: 991.98px) {
  .apply-flow-footer__container {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }
}
.apply-flow-footer__trust p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 19.206px;
  line-height: normal;
  color: #000000;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .apply-flow-footer__trust p {
    font-size: 16px;
  }
}
.apply-flow-footer__badges {
  display: flex;
  align-items: center;
  gap: 16px;
}
.apply-flow-footer__badge {
  height: 35.026px;
  width: auto;
  object-fit: contain;
}
.apply-flow-footer__badge-divider {
  width: 1px;
  height: 33.503px;
  background: #E5E5E5;
}
.apply-flow-footer__copyright p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  color: #000000;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .apply-flow-footer__copyright p {
    font-size: 11px;
  }
}

#dynamicContent {
  background: #fff;
  min-height: 200px;
}
#dynamicContent .default-button {
  margin-top: 30px;
  margin-left: 0;
}
@media (max-width: 991.98px) {
  #dynamicContent .default-button {
    margin-left: auto;
    margin-top: 10px;
  }
}
@media (max-width: 991.98px) {
  #dynamicContent.ph .default-button {
    margin-left: auto;
  }
}

.pagination {
  color: #222854;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
  margin: auto;
}
.pagination svg {
  height: 30px;
  width: 30px;
  color: #222854;
}
.pagination svg.icon-paginationArrow {
  height: 15px;
  width: 15px;
}
.pagination svg.reverse {
  transform: rotate(180deg);
}
.pagination .circle {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 2px solid #F1F1F1;
  font-family: Poppins;
  font-weight: 500;
  font-size: 22px;
  line-height: 34px;
  color: #222854;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box;
}
@media (max-width: 991.98px) {
  .pagination .circle {
    height: 35px;
    width: 35px;
    font-size: 18px;
    line-height: normal;
  }
}
@media (max-width: 375.99px) {
  .pagination .circle {
    height: 30px;
    width: 30px;
    font-size: 18px;
    line-height: normal;
  }
}
.pagination .circle.active {
  color: #fff;
  background: #0056B3;
  border: 2px solid transparent;
  font-weight: 700;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
}

.owl-dots {
  display: flex;
  align-items: end;
  gap: 20px;
  justify-content: center;
  height: 65px;
  padding-bottom: 12.5px;
}
@media (max-width: 991.98px) {
  .owl-dots {
    gap: 13px;
    height: 30px;
  }
}
.owl-dots button span {
  visibility: hidden;
}
.owl-dots .owl-dot {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: #E6F7FF;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}
@media (max-width: 991.98px) {
  .owl-dots .owl-dot {
    height: 20px;
    width: 20px;
  }
}
.owl-dots .owl-dot.active {
  background: #0056B3;
}

* {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  font-family: Poppins !important;
}

a {
  text-decoration: none;
  color: unset;
}

.owl-carousel .owl-stage-outer {
  padding-bottom: 8px;
}
@media (max-width: 991.98px) {
  .owl-carousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.owl-carousel .owl-item img {
  width: auto !important;
}

.errorSection {
  padding-top: 10px;
}
.errorSection.pb {
  padding-bottom: 10px;
}

.alert {
  padding: 15px 30px;
  box-sizing: border-box;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: opacity 0.3s ease;
}

.alert-warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Kapatma butonu */
.close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: inherit;
}

.close-btn:hover {
  opacity: 0.7;
}

.hiddenFAQ {
  display: none;
}

.white-div {
  width: 100%;
  height: 210px;
  background: #fff;
}
@media (max-width: 991.98px) {
  .white-div {
    display: none;
  }
}
.white-div.mini {
  height: 100px;
}

.bpWebchat {
  z-index: 100000000000000000000 !important;
}

@media (max-width: 991.98px) {
  .bpMessagePreview .bpFABMessagePreview {
    bottom: 8.5rem !important;
  }
  .bpFabWrapper {
    bottom: 3.5rem !important;
  }
}
.directApply {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg) scale(1);
  writing-mode: vertical-rl; /* Metni yukarıdan aşağıya yazdırır */
  text-orientation: mixed;
  color: #fff;
  background: #0056B3;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  height: 188px; /* Önceki width değeri */
  width: 54px; /* Önceki height değeri */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  padding: 15px 0;
  transition: 0.4s ease;
}
.directApply:hover {
  transform: translateY(-50%) rotate(180deg) scale(1.1);
  box-shadow: 0px 4px 6px 0px rgba(255, 255, 255, 0.2);
  transition: 0.4s ease;
}
@media (max-width: 991.98px) {
  .directApply {
    right: unset;
    left: 50%;
    transform: translateX(-50%) rotate(0);
    writing-mode: unset;
    width: 100%;
    height: 15px;
    top: unset;
    font-size: 16px;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2);
    bottom: 10px;
    border-radius: 30px;
    width: calc(100% - 60px);
    background: rgba(0, 86, 179, 0.8);
    backdrop-filter: blur(5px);
  }
  .directApply:hover {
    transform: translateX(-50%) rotate(0);
    transition: unset;
  }
}

.default-button {
  width: fit-content;
  background: rgb(0, 86, 179);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  color: #fff;
  transition: 0.4s ease;
  border: 1px solid rgb(0, 86, 179);
  border-radius: 40px;
  padding: 10px 30px;
  margin: auto;
  transform: scale(1);
  position: relative;
}
.default-button:disabled {
  cursor: not-allowed;
}
.default-button.loader {
  opacity: 0.8;
  pointer-events: none;
  transform: scale(1) !important;
  padding-left: 44px;
}
.default-button.loader::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 2px solid #fff;
  border-top-color: transparent;
  animation: btn-spin 0.9s linear infinite;
}
.default-button.loader:hover {
  transform: scale(1);
}
@media (max-width: 991.98px) {
  .default-button {
    padding: 6px 19.5px;
    font-size: 14px;
    font-weight: 600;
  }
}
.default-button.notMargin {
  margin: unset;
}
.default-button.header-button {
  margin-right: 25px;
  margin-left: 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 266px;
  height: 24px;
  padding: 10px 0;
  position: relative; /* .subeBtn'le alakalı konumlandırma için ekledim */
}
.default-button.header-button .sube {
  position: absolute;
  transition: top 0.5s ease; /* Hover'dan çıkarken animasyon süresi */
  top: 50%; /* Başlangıçta .sube en üstte */
  transform: translateY(-50%);
}
.default-button.header-button .subeBtn {
  display: flex;
  align-items: center;
  color: #fff;
  position: absolute;
  top: 50%; /* Başlangıçta .subeBtn ortalanmış olacak */
  transition: top 0.1s ease, transform 0.1s ease; /* İki animasyon aynı anda geçiş yapsın */
  left: 50%; /* Ortalamak için */
  transform: translate(-50%, -50%); /* Ortalamak için */
  width: 100%;
  justify-content: center;
  font-weight: 500;
}
.default-button.header-button .subeBtn .verticleLine {
  margin: 0 15px;
  height: 24px;
  width: 1px;
  background: #fff;
}
.default-button.header-button .subeBtn a {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.default-button.header-button .subeBtn a:hover {
  font-weight: 700;
}
.default-button.header-button .subeBtn a .icon {
  height: 20px;
  width: 20px;
  color: #fff;
  margin-right: 5px;
}
.default-button.header-button:hover {
  transform: scale(1); /* Ortalamak için */
}
.default-button.header-button:hover .subeBtn {
  top: 50%; /* Başlangıçta .subeBtn ortalanmış durumda */
  left: 50%;
  transform: translate(-50%, -50%);
}
.default-button.header-button:hover .sube {
  top: 100px; /* Subeyi 100px aşağı kaydırın */
}
.default-button.header-button:not(:hover) .subeBtn {
  transition-delay: 0.5s; /* Hover'dan çıkarken animasyon gecikmesi */
  top: -100px; /* Hover'dan çıkınca subeBtn yukarı kayacak */
}
.default-button.header-button:not(:hover) .sube {
  transition-delay: 0.5s; /* Hover'dan çıkarken animasyon gecikmesi */
}
.default-button:hover {
  transition: 0.4s ease;
  transform: scale(1.1);
}

@keyframes btn-spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.altTitle {
  max-width: 1200px;
  margin: auto;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #222854;
  margin-bottom: 50px;
}
.altTitle.landing {
  text-align: center;
}
.altTitle h3, .altTitle h2, .altTitle h1 {
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #222854;
}
@media (max-width: 991.98px) {
  .altTitle {
    font-size: 14px;
    width: calc(100% - 30px);
    text-align: center;
  }
}
.altTitle span, .altTitle a {
  color: #0056B3;
  font-weight: 600;
  text-decoration: underline;
}

.linearBackground {
  background: linear-gradient(180deg, #FFFFFF 0%, #F2F8FF 100%) !important;
}
.linearBackground.reverse {
  background: linear-gradient(180deg, #F2F8FF 0%, #FFFFFF 100%) !important;
}
.linearBackground.solid {
  background: #F2F8FF !important;
}

.BgWhite {
  background: #ffffff !important;
}

.BgLightWhite {
  background: rgba(249, 249, 249, 0.9764705882) !important;
}

.cardDetailTextBox {
  position: absolute;
  top: 0;
  right: 17.5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  padding: 5px 15px;
  background: #DFFFE2;
  color: #1FA83C;
  border: 2px solid #1FA83C;
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1019607843);
}

.sectionPadding {
  padding-top: 100px !important;
  padding-bottom: 50px !important;
}
.sectionPadding.reversePadding {
  padding-top: 50px !important;
  padding-bottom: 100px !important;
}
.sectionPadding.landing {
  padding-top: 50px !important;
  padding-bottom: 25px !important;
}
@media (max-width: 991.98px) {
  .sectionPadding.landing {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
}
@media (max-width: 991.98px) {
  .sectionPadding {
    padding-top: 50px !important;
    padding-bottom: 25px !important;
  }
  .sectionPadding.reversePadding {
    padding-top: 25px !important;
    padding-bottom: 50px !important;
  }
}

.titleSection {
  background: #fff;
}

.FixedContainer {
  max-width: 1200px;
  margin: auto;
  width: 100%;
}
@media (max-width: 991.98px) {
  .FixedContainer {
    width: calc(100% - 30px);
  }
}

.h1Title {
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  margin-bottom: 10px;
  color: #003F75;
  margin: 0;
  padding: 30px 0;
}
@media (max-width: 991.98px) {
  .h1Title {
    padding: 30px 0;
    font-size: 24px;
    line-height: normal;
  }
}
.h1Title.nonPadding {
  padding: 0;
}
.h1Title.center {
  text-align: center;
}

.infoBox {
  border: 1px solid #1FA83C;
  background: #DFFFE2;
  color: #1FA83C;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  border-radius: 20px;
  margin: auto;
  position: absolute;
  left: 20px;
  top: 30px;
  z-index: 5;
  padding: 5px 15px;
}

.h2and3Title {
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
  color: #739FCC;
  padding-bottom: 18px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 20px;
}
.h2and3Title.landing {
  text-align: center;
}
@media (max-width: 991.98px) {
  .h2and3Title.landing {
    font-size: 18px;
    line-height: normal;
  }
  .h2and3Title.landing h2 {
    font-size: 18px;
    line-height: normal;
  }
}
.h2and3Title h2, .h2and3Title h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
  color: #739FCC;
  margin: auto;
}
.h2and3Title h2 .boldText, .h2and3Title h3 .boldText {
  font-weight: 700;
  color: #0056B3;
}
@media (max-width: 991.98px) {
  .h2and3Title h2 .boldText.br, .h2and3Title h3 .boldText.br {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .h2and3Title {
    width: calc(100% - 30px);
    font-size: 24px;
    line-height: normal;
    padding-bottom: 0;
    text-align: center;
  }
}
.h2and3Title .boldText {
  font-weight: 700;
  color: #0056B3;
}
@media (max-width: 991.98px) {
  .h2and3Title .boldText.br {
    display: block;
  }
}

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Root Variables */
:root {
  color-scheme: light only;
  --primary-blue: #006EFF;
  --dark-blue: #122B62;
  --hover-blue: #0A193A;
  --white: #FFFFFF;
  --black: #003F75;
  --light-gray: #A1A1A1;
  --border-gray: #E5E5E5;
  --error-red: #DC3545;
  --font-primary: "Poppins", sans-serif;
  --gray-text: #003F75;
}

body {
  font-family: var(--font-primary);
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.newapplyflow-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ================================================================ */
/* LIVE SUPPORT BUTTON — Figma 243-411 / 243-407                    */
/* Fixed bottom-right; expands on hover / .is-active (mobile tap)  */
/* ================================================================ */
.live-support-btn {
  position: fixed;
  bottom: 32px;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px;
  background: #0056b3;
  border: 1px solid #2e6df8;
  border-right: none;
  border-top: none;
  border-radius: 30px 0 0 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: gap 0.2s ease, border-color 0.2s ease, padding 0.2s ease;
  /* Agent icon circle */
  /* "Canlı Destek" text — hidden by default */
  /* ── Hover (desktop) / .is-active (mobile) ── */
}
.live-support-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 41.6px;
  background: #fff;
  border: 0.8px solid #2e6df8;
  border-radius: 32px;
  box-shadow: 0 3.2px 3.2px rgba(46, 109, 248, 0.15);
  flex-shrink: 0;
}
.live-support-btn__icon svg {
  width: 24px;
  height: 25.6px;
}
.live-support-btn__label {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.25s ease, opacity 0.2s ease, margin-left 0.2s ease;
  margin-left: 0;
}
.live-support-btn:hover, .live-support-btn.is-active {
  gap: 5px;
  border-color: #36f99b;
  padding: 10px 14px 10px 10px;
}
.live-support-btn:hover .live-support-btn__label, .live-support-btn.is-active .live-support-btn__label {
  max-width: 140px;
  opacity: 1;
  margin-left: 5px;
}
@media (max-width: 768px) {
  .live-support-btn {
    bottom: 20px;
  }
  .live-support-btn__label {
    font-size: 14px;
  }
}

/* HEADER — Figma 237-47 */
.newapplyflow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
  background: linear-gradient(269.91deg, #0056b3 1.21%, #2e6df8 71.07%);
}
.newapplyflow-header .header-logo {
  display: inline-flex;
  flex-shrink: 0;
}
.newapplyflow-header .header-logo img {
  height: 39px;
  width: auto;
  display: block;
}
.newapplyflow-header .header-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  flex: 1;
  margin: 0 24px;
}
.newapplyflow-header .header-support {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}
.newapplyflow-header .header-support__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.newapplyflow-header .header-support span {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
}
.newapplyflow-header .header-support:hover {
  opacity: 0.85;
}
@media (max-width: 991px) {
  .newapplyflow-header {
    padding: 20px 24px;
  }
  .newapplyflow-header .header-title {
    font-size: 17px;
    margin: 0 12px;
  }
  .newapplyflow-header .header-support span {
    display: none;
    /* only icon on tablet */
  }
}
@media (max-width: 576px) {
  .newapplyflow-header {
    padding: 30px 15px;
  }
  .newapplyflow-header .header-logo img {
    height: 39px;
  }
  .newapplyflow-header .header-title {
    font-size: 15px;
  }
}

/* ================================================================ */
/* PROGRESS BAR */
/* ================================================================ */
.progress-bar-container {
  padding: 0 200px;
  margin: 100px auto 32px auto;
  background-color: var(--white);
}
@media (max-width: 991px) and (min-width: 769px) {
  .progress-bar-container {
    padding: 0 60px;
    margin: 60px auto 24px auto;
  }
}
@media (max-width: 768px) {
  .progress-bar-container {
    padding: 0;
    margin: 0 auto;
    margin-top: 16px;
    width: calc(100% - 30px);
  }
}

.progress-bar-label {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .progress-bar-label {
    font-size: 12px;
    margin-bottom: 8px;
  }
}

.progress-bar-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .progress-bar-wrapper {
    gap: 8px;
  }
}

.progress-bar-step {
  height: 9px;
  width: 156px;
  background-color: #d9d9d9;
  border: none;
  border-radius: 35px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.progress-bar-step.active {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}
.progress-bar-step .progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--primary-blue);
  border-radius: 35px;
  transition: width 0.3s ease;
}
@media (max-width: 768px) {
  .progress-bar-step {
    height: 6px;
    width: 100%;
    border-radius: 25px;
    border-width: 0.2px;
  }
}

/* ================================================================ */
/* MAIN CONTENT AREA - GRID LAYOUT FIX */
/* ================================================================ */
.FAQSection {
  padding-bottom: 4rem;
}

.apply-flow-container {
  width: 100%;
  background-color: var(--white);
  padding-bottom: 80px;
  /* Sabit alan bıraktık ki dropdown açıldığında footerin altına doğru sığsın */
  /* DESKTOP SETUP (992px üstü) */
  /* MOBİL: footer ile içerik arasındaki boşluk production'da da korunur */
}
.apply-flow-container .main-title {
  text-align: center;
  color: #003F75;
}
.apply-flow-container .main-title.NoneProgress {
  margin-top: 2rem;
}
.apply-flow-container .subtitle {
  text-align: center;
  color: #003F75;
}
@media (min-width: 992px) {
  .apply-flow-container {
    flex-wrap: nowrap;
    /* Desktopta yan yana tek sıra */
    align-items: end;
    justify-content: center;
    min-height: 100vh;
  }
  .apply-flow-container.end {
    min-height: auto;
  }
}
@media (max-width: 991px) {
  .apply-flow-container {
    padding-bottom: 100px;
  }
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.container.wAuto {
  max-width: 1200px;
}

/* MAIN WRAPPER */
.apply-flow-wrapper {
  display: flex;
  position: relative;
  /* Bu sayede Yazı ve Telefon yan yana gelir, Form aşağı düşer */
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  /* DESKTOP SETUP (992px üstü) */
}
.apply-flow-wrapper.login {
  padding: 100px 0;
}
@media (max-width: 991.98px) {
  .apply-flow-wrapper.login {
    padding: 0;
  }
}
.apply-flow-wrapper.other {
  flex-wrap: wrap;
  gap: 50px 220px;
  padding-top: 0;
  margin-top: 0;
}
@media (min-width: 992px) {
  .apply-flow-wrapper {
    flex-wrap: nowrap;
    /* Desktopta yan yana tek sıra */
    align-items: center;
    justify-content: center;
    gap: 220px;
    padding-top: 1rem;
  }
}

.landing_banner {
  flex: 100%;
  width: 100%;
  max-width: unset;
  overflow: visible;
  padding-top: 2rem;
}
@media (max-width: 991.98px) {
  .landing_banner {
    max-width: 100%;
    overflow: hidden;
  }
}
.landing_banner .owl-stage-outer {
  overflow: visible;
  padding: 1rem 0 1.5rem 0;
}
@media (max-width: 991.98px) {
  .landing_banner .owl-stage-outer {
    overflow: hidden;
  }
}
.landing_banner .owl-stage-outer .owl-item img {
  width: 90% !important;
  object-fit: contain;
}

.landing_banner__item {
  display: flex;
  align-items: center;
  justify-content: center;
  /*    .box {
      height: 200px;
      max-width: 720px;
      width: 100%;
      background: $AcikMavi;
      border-radius: 15px;
  }*/
}
.landing_banner__item img {
  max-width: 320px;
  width: 100%;
  height: 174px;
  border-radius: 15px;
  display: block;
  object-fit: cover;
}

/* ================================================================ */
/* 1. SOL SÜTUN: Yazılar ve Liste (MOBİL: SOL ÜST) */
/* ================================================================ */
.content-column {
  /* Mobilde yazıların telefonun altında kalmaması için z-index yüksek */
  z-index: 10;
  order: 1;
  /* Genişlik ayarı: Telefonla yan yana sığması için */
  width: 80%;
  padding-right: 5px;
  padding-left: 2rem;
  color: #003F75;
}
@media (min-width: 992px) {
  .content-column {
    order: 1;
    flex: 1;
    width: auto;
    max-width: 385px;
    padding: 0;
  }
}
.content-column .main-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--black);
  line-height: normal;
  /* Mobil Font: Çok küçültmüyoruz */
  font-size: 22px;
  text-align: left;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .content-column .main-title {
    font-size: 32px;
    line-height: 1.1;
    white-space: wrap;
  }
}
.content-column .subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: var(--black);
  font-size: 16px;
  text-align: left;
  margin-bottom: 22px;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .content-column .subtitle {
    font-size: 23px;
    margin-bottom: 2rem;
    max-width: 100%;
    white-space: wrap;
  }
}
.content-column .steps-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: left;
}
@media (min-width: 992px) {
  .content-column .steps-title {
    font-size: 18px;
    margin-bottom: 22px;
  }
}

/* TIMELINE */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.steps-list .step-line-vertical {
  display: none;
}
.steps-list .step-item {
  display: flex;
  gap: 12px;
  position: relative;
  padding-bottom: 2.5rem;
  /* Mobilde biraz sıkılaştırıldı */
  align-items: center;
  /* Kesik Çizgi */
}
@media (min-width: 992px) {
  .steps-list .step-item {
    gap: 1.5rem;
    padding-bottom: 2rem;
  }
}
.steps-list .step-item .step-number {
  width: 26px;
  height: 26px;
  background-color: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  line-height: normal;
}
@media (min-width: 992px) {
  .steps-list .step-item .step-number {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
.steps-list .step-item .step-number.star {
  background: transparent;
}
.steps-list .step-item .step-number.star img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.steps-list .step-item .step-text {
  font-family: "Poppins", sans-serif;
  font-size: 11.311px;
  /* Çok küçük değil, okunabilir */
  font-weight: 300;
  line-height: 1.3;
  color: var(--gray-text);
}
@media (max-width: 991.98px) {
  .steps-list .step-item .step-text {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .steps-list .step-item .step-text {
    font-size: 20px;
  }
}
.steps-list .step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 12px;
  /* Dairenin ortası */
  top: 26px;
  height: calc(100% - 20px);
  width: 0;
  border-left: 2px dashed #000;
  opacity: 0.2;
  z-index: 1;
}
@media (min-width: 992px) {
  .steps-list .step-item:not(:last-child)::after {
    left: 13px;
    top: 28px;
    height: calc(100% - 14px);
  }
}
.steps-list .step-item:last-child {
  padding-bottom: 0;
}

/* ================================================================ */
/* 2. ORTA SÜTUN: Telefon (MOBİL: SAĞ ÜST) */
/* ================================================================ */
.phone-illustration {
  display: flex;
  justify-content: center;
  /* Sağa yasla */
  align-items: flex-start;
  position: relative;
  z-index: 1;
  /* Yazının altında kalsın (gerekirse) */
  order: 2;
  width: 42%;
  /* Kalan alan */
  margin: 0;
  /* Telefonu yukarı çekerek başlık ile hizalıyoruz/iç içe geçiriyoruz */
  margin-top: 180px;
  /*    border-bottom: 1px solid rgba(0, 0, 0, 0.50);*/
  padding-right: 2rem;
}
.phone-illustration::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  /* Çizginin genişliğini buradan ayarlayabilirsin */
  width: calc(100% - 2rem);
  /* Örneğin sağdan 2rem boşluk bırak */
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
}
.phone-illustration img {
  width: 100%;
  /* Mobilde telefonun max boyutu */
  max-width: 180px;
  height: auto;
  object-fit: contain;
  /* Sağdan taşmayı engelle */
  margin-right: -10px;
}
.phone-illustration picture {
  margin: 0;
  padding: 0;
  display: flex;
}
@media (min-width: 992px) {
  .phone-illustration {
    order: 2;
    width: auto;
    max-width: 248px;
    overflow: hidden;
    align-self: end;
    justify-content: center;
    margin-right: 70px;
    margin-bottom: 60px;
    margin-top: 0;
    padding: 0;
  }
  .phone-illustration::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    /* Çizginin genişliğini buradan ayarlayabilirsin */
    width: 100%;
    /* Örneğin sağdan 2rem boşluk bırak */
    height: 1px;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .phone-illustration img {
    width: auto;
    max-width: none;
    margin-right: 0;
  }
}

/* ================================================================ */
/* 3. SAĞ SÜTUN: Form (MOBİL: EN ALT & TAM GENİŞLİK) */
/* ================================================================ */
.visual-wrapper {
  z-index: 5;
  order: 3;
  /* Mobil: Tam Genişlik */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .visual-wrapper {
    order: 3;
    flex: 1;
    width: auto;
    max-width: 620px;
    display: block;
    margin-top: 0;
  }
}

/* TÜBİTAK Logosu */
.tubitak-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
  height: 28px;
  order: 4;
}
@media (max-width: 991.98px) {
  .tubitak-badge {
    max-width: calc(100% - 30px);
    margin: auto;
    margin-top: 1.5rem;
    text-align: center;
    flex-direction: column;
    height: auto;
  }
}
.tubitak-badge img {
  max-width: 32px;
  object-fit: contain;
}
.tubitak-badge .badge-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--black);
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .tubitak-badge .badge-text {
    max-width: 300px;
  }
}
.tubitak-badge .badge-text strong {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ================================================================ */
/* PAGE TITLE - OUTSIDE BLUE BOX (Per Figma Design) */
/* ================================================================ */
.page-title {
  font-family: var(--font-primary);
  font-size: 24px;
  /* Exact from Figma (e.g., node 1-945) */
  font-weight: 600;
  /* Poppins Medium */
  color: var(---black);
  /* Exact black from Figma */
  text-align: center;
  line-height: normal;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .page-title {
    font-size: 20px;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    width: calc(100% - 30px);
  }
}

/* 3.2 Blue Form Card */
.form-card {
  background-color: var(--primary-blue);
  color: var(--white);
  /* MOBİL GÖRÜNÜM (Tam Genişlik) */
  width: 100%;
  border-radius: 24px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 2rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 110, 255, 0.2);
}
@media (max-width: 991.98px) {
  .form-card {
    border-radius: 24px;
  }
}
.form-card .form-input-group {
  max-width: 350px;
  margin: auto;
  margin-bottom: 30px;
}
.form-card .form-input-group.auto {
  max-width: unset;
  margin-bottom: 0;
}
.form-card .form-input-group.login {
  max-width: unset;
  margin-bottom: 0;
}
.form-card.fullRadius {
  border-radius: 30px;
}
@media (min-width: 992px) {
  .form-card {
    border-radius: 30px;
    padding: 48px 24px;
    box-shadow: none;
    width: 588px;
    min-height: max-content;
  }
}
.form-card .gsm-entry-form {
  padding: 0;
}
@media (min-width: 992px) {
  .form-card .gsm-entry-form {
    padding: 0 10px;
  }
}
.form-card .form-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  font-size: 24px;
}
@media (min-width: 992px) {
  .form-card .form-title {
    font-size: 30px;
  }
}
.form-card .form-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-align: center;
  opacity: 1;
  font-size: 15px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .form-card .form-subtitle {
    font-size: 19px;
    margin-bottom: 48px;
  }
}
.form-card .form-step-label {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}
.form-card .phone-input-group {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 12px;
  height: 68px;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.form-card .phone-input-group .country-code {
  color: var(--black);
  font-weight: 600;
  font-size: 16px;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #E0E0E0;
  height: 24px;
  display: flex;
  align-items: center;
}
.form-card .phone-input-group .phone-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: var(--black);
}
.form-card .phone-input-group .phone-input::placeholder {
  color: #A0A0A0;
  font-weight: 300;
}
.form-card .form-helper-text {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
  text-align: center;
}
.form-card .form-helper-text.applyFirst {
  margin-top: 1rem;
  text-align: start;
}
@media (min-width: 992px) {
  .form-card .form-helper-text.applyFirst {
    margin-top: 1rem;
    margin-bottom: 48px;
  }
}
.form-card .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 2rem;
  padding: 0 36px;
}
@media (max-width: 991.98px) {
  .form-card .checkbox-group {
    margin-top: 1rem;
    padding: 0 16px;
  }
}
.form-card .checkbox-group .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.form-card .checkbox-group .custom-checkbox-box {
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 5px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.form-card .checkbox-group .sr-only:checked + .custom-checkbox-box::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-blue);
  font-weight: bold;
  font-size: 14px;
}
.form-card .checkbox-group .checkbox-label {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
}
.form-card .checkbox-group .checkbox-label a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}
.form-card .submit-button {
  width: 100%;
  background-color: var(--dark-blue);
  color: var(--white);
  border: none;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Poppins", sans-serif;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-card .submit-button:hover {
  background-color: #0E2248;
  transform: translateY(-2px);
}
.form-card .submit-button:disabled:not(.btn-loading) {
  background-color: var(--light-gray);
  cursor: not-allowed;
  transform: none;
}
.form-card .submit-button.btn-loading {
  opacity: 0.72;
  cursor: wait;
  transform: none;
  pointer-events: none;
}
.form-card .login-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  opacity: 0.9;
}
.form-card .login-link a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}
.form-card .login-link a:hover {
  opacity: 0.8;
}

/* ================================================================ */
/* ERROR STATES */
/* field-validation-error canonical stili _FormElements.scss içinde tanımlı */
/* ================================================================ */
.field-validation-valid {
  display: none !important;
}

/* 2. TELEFON KUTUSU HATASI */
.phone-input-group.has-error {
  border: 2px solid #FF3B30 !important;
}
.phone-input-group.has-error .country-code {
  color: #FF3B30;
  border-right-color: #FFECEC;
}
.phone-input-group.has-error .phone-input {
  color: #FF3B30;
}

/* 3. CHECKBOX HATASI */
.checkbox-group + .field-validation-error {
  display: none !important;
}

.checkbox-group.has-error {
  border: none !important;
  background: transparent !important;
}
.checkbox-group.has-error .custom-checkbox-box {
  border: 2px solid #FF3B30 !important;
  background-color: #FFF5F5;
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.2);
}
.checkbox-group.has-error .checkbox-label {
  color: rgba(255, 255, 255, 0.95) !important;
}
.checkbox-group.has-error .checkbox-label a {
  color: #fff !important;
  text-decoration: underline;
}

/* ================================================================ */
/* FOOTER STYLES — Figma 237-145 */
/* ================================================================ */
.newapplyflow-footer {
  padding: 30px 120px;
  background: linear-gradient(-17.23deg, #2e6df8 0%, #0056b3 100%);
  margin-top: auto;
  /* Responsive Footer */
}
.newapplyflow-footer .footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 30px;
}
.newapplyflow-footer .footer-content .footer-trust {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
.newapplyflow-footer .footer-content .footer-badges {
  display: flex;
  align-items: center;
  gap: 59px;
  padding: 5px 30px;
}
.newapplyflow-footer .footer-content .footer-badges img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.newapplyflow-footer .footer-content .footer-copyright {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-align: right;
  width: 275px;
  flex-shrink: 0;
}
.newapplyflow-footer .footer-legal {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: #dde3ec;
  line-height: 1.6;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 1400px) {
  .newapplyflow-footer {
    padding: 30px 60px;
  }
}
@media (max-width: 991px) {
  .newapplyflow-footer {
    padding: 30px 30px;
  }
  .newapplyflow-footer .footer-content .footer-badges {
    gap: 30px;
    padding: 5px 15px;
  }
}
@media (max-width: 768px) {
  .newapplyflow-footer {
    padding: 24px 20px;
  }
  .newapplyflow-footer .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-bottom: 20px;
  }
  .newapplyflow-footer .footer-content .footer-trust {
    flex: none;
  }
  .newapplyflow-footer .footer-content .footer-badges {
    gap: 24px;
    padding: 5px 0;
  }
  .newapplyflow-footer .footer-content .footer-copyright {
    width: auto;
    text-align: center;
  }
  .newapplyflow-footer .footer-legal {
    font-size: 12px;
    text-align: center;
  }
}

/* ================================================================ */
/* PAYMENT PAGE — EFT SECTION (Figma 128:3153)                       */
/* ================================================================ */
/* Toplam Tutar + Ödeme Sonrası Ne Olacak? Kartı */
.payment-info-card {
  background-color: #f9fafb;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .payment-info-card {
    border-radius: 14px;
    padding: 20px 16px;
  }
}

.payment-info-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-info-total__label {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: #000;
}
.payment-info-total__amount {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 600;
  color: #000;
  text-align: right;
}
@media (max-width: 768px) {
  .payment-info-total__amount {
    font-size: 18px;
  }
}

.payment-info-divider {
  border: none;
  border-top: 1px solid #e3e3e3;
  margin: 16px 0;
}

.payment-post-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-post-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0 0 4px;
}

.payment-post-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.payment-post-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  color: #000;
  line-height: 1.4;
}
.payment-post-item .payment-post-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

/* Kampanya Kodu — Payment sayfası için form dışı */
.payment-page-wrapper .campaign-code-section {
  text-align: center;
  margin: 20px auto 0;
  max-width: 620px;
}
.payment-page-wrapper .campaign-code-section p {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 300;
  color: #000;
}
.payment-page-wrapper .campaign-code-section p a {
  color: #000;
  font-weight: 400;
  text-decoration: underline;
}
.payment-page-wrapper .campaign-code-section p a a:hover {
  color: var(--primary-blue);
}

/* ================================================================ */
/* PAYMENT TERMS GROUP — form içinde, beyaz arka plan üzerinde       */
/* .form-card içindeki beyaz stil ezilir, koyu renge döner           */
/* ================================================================ */
.payment-terms-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.payment-terms-group .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.payment-terms-group .custom-checkbox-box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--white);
  border: 1.5px solid #c0c0c0;
  border-radius: 5px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.payment-terms-group .custom-checkbox-box:hover {
  border-color: var(--primary-blue);
}
.payment-terms-group .sr-only:checked + .custom-checkbox-box {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}
.payment-terms-group .sr-only:checked + .custom-checkbox-box::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: bold;
  font-size: 14px;
}
.payment-terms-group .checkbox-label {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  cursor: pointer;
}
.payment-terms-group .checkbox-label a {
  color: var(--primary-blue);
  text-decoration: underline;
  font-weight: 500;
}
.payment-terms-group .checkbox-label a:hover {
  opacity: 0.8;
}
.payment-terms-group.has-error .custom-checkbox-box {
  border-color: #FF3B30 !important;
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.15);
}
.payment-terms-group.has-error .checkbox-label {
  color: #FF3B30;
}
