* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111827;
  overflow-x: hidden;
  background: #F8FAFF;
}

h1,
h2,
h3,
h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.6rem 0;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(27, 58, 107, 0.08), 0 4px 32px rgba(27, 58, 107, 0.10);
  padding: 0.35rem 0;
}

#navbar.scrolled #hamburger {
  color: #1B3A6B;
}

#navbar.scrolled #hamburger:hover {
  background-color: rgba(27, 58, 107, 0.08);
}

#navbar .nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  padding: 0.25rem 0;
  cursor: pointer;
}

#navbar.scrolled .nav-link {
  color: #374151;
}

#navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #E8A020;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar .nav-link:hover::after,
#navbar .nav-link.active::after {
  transform: scaleX(1);
}

#navbar .nav-link:hover {
  color: #E8A020;
}

#navbar.scrolled .nav-link:hover {
  color: #1B3A6B;
}

#navbar.scrolled .nav-link.active {
  color: #1B3A6B;
}

#mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 15, 36, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 7rem 2rem 3rem;
  gap: 1.25rem;
  overflow-y: auto;
}

#mobile-menu.open {
  display: flex;
}

#close-menu {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1110;
  color: white;
  outline: none;
}

#close-menu:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}

#mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  transition: all 0.25s ease;
  padding: 0.5rem 1.5rem;
  border-radius: 99px;
  width: 100%;
  max-width: 280px;
  text-align: center;
}

#mobile-menu a:hover {
  color: #E8A020;
  background: rgba(255, 255, 255, 0.05);
}

.hero-bg {
  background: linear-gradient(140deg, #070F24 0%, #0D1F3C 40%, #1B3A6B 75%, #1e4a8a 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 65vw;
  height: 65vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
  min-width: 100%;
  animation: marquee 70s linear infinite;
}

.marquee-track-reverse {
  animation: marquee-reverse 75s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-reverse {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

.counter-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.service-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(27, 58, 107, 0.08);
  border-radius: 1.5rem;
  padding: 2.25rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(27, 58, 107, 0.13), 0 0 24px rgba(232, 160, 32, 0.08);
  border-color: rgba(232, 160, 32, 0.25);
  background: rgba(255, 255, 255, 0.98);
}

.carousel-slide {
  display: none;
}

.carousel-slide.active {
  display: block;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-item.open .faq-question {
  color: #E8A020;
}

.faq-item.open {
  border-left: 3px solid #E8A020;
  background: rgba(232, 160, 32, 0.02);
}

.step-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item.open .step-content {
  max-height: 200px;
}

.step-item.open .step-num {
  background: #E8A020;
  color: white;
}

.logo-marquee-outer {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.gradient-text {
  background: linear-gradient(135deg, #E8A020 30%, #f5c96a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-card {
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(27, 58, 107, 0.12);
}

.premium-blog-card {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.promo-card {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.world-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #F8FAFF;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#1B3A6B, #2563EB);
  border-radius: 3px;
}

.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.email-input:focus {
  outline: none;
  border-color: #E8A020;
  box-shadow: 0 0 0 4px rgba(232, 160, 32, 0.15);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C48A00;
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.12), rgba(232, 160, 32, 0.06));
  border: 1px solid rgba(232, 160, 32, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}



.step-indicator {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-logo-badge {
  transition: transform 0.3s ease;
}

.nav-logo-badge:hover {
  transform: rotate(15deg) scale(1.1);
}

.nav-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav-logo-cadde {
  color: #ffffff;
  transition: color 0.3s ease;
}

.nav-logo-vize {
  color: #E8A020;
  transition: color 0.3s ease;
}

#navbar.scrolled .nav-logo-cadde {
  color: #1B3A6B;
}

#navbar.scrolled .nav-logo-vize {
  color: #E8A020;
}

.footer-logo-img {
  height: 200px;
  width: auto;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(var(--tw-rotate, 0deg));
  }

  50% {
    transform: translateY(-10px) rotate(var(--tw-rotate, 0deg));
  }

  100% {
    transform: translateY(0px) rotate(var(--tw-rotate, 0deg));
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float 6s ease-in-out 3s infinite;
}

.country-flag {
  width: 44px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease;
}

.country-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.1rem;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e9f0;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  gap: 0.75rem;
}

.country-card:hover {
  border-color: #bfcdf0;
  box-shadow: 0 8px 28px rgba(27, 58, 107, 0.11);
  transform: translateY(-3px);
  background: #f8fbff;
}

.country-card:hover .country-flag {
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.country-card:hover .country-name {
  color: #1B3A6B;
}

.country-card:hover .country-arrow {
  color: #2563EB;
  transform: translateX(3px);
}

.country-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: #374151;
  transition: color 0.25s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.country-arrow {
  color: #d1d5db;
  flex-shrink: 0;
  transition: color 0.25s, transform 0.25s;
}

.country-featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
  border-radius: 20px;
  border: 1px solid;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.country-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(27, 58, 107, 0.18);
}

.country-featured .country-flag-lg {
  width: 64px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.country-featured:hover .country-flag-lg {
  transform: scale(1.06);
}

.stat-item {
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #E8A020, #f5c96a);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-item:hover::before {
  opacity: 1;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
}

.sss-section {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(160deg, #070f24 0%, #0d1f3c 45%, #0b1a34 100%);
  overflow: hidden;
}

.sss-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sss-orb-1 {
  width: 560px;
  height: 560px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.13) 0%, transparent 65%);
}

.sss-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.09) 0%, transparent 65%);
}

.sss-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.sss-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sss-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8A020;
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.25);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.sss-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.sss-title-accent {
  background: linear-gradient(135deg, #E8A020 20%, #f5c96a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sss-subtitle {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

.sss-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.sss-left-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sss-right-col {
  display: flex;
  flex-direction: column;
  padding-top: 3.6rem;
}

.sss-left-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sss-left-header .sss-title {
  text-align: left;
}

.sss-left-header .sss-subtitle {
  text-align: left;
  margin: 0;
  max-width: 100%;
}


.sss-qmark-visual {
  position: relative;
  width: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 0;
  overflow: hidden;
}

.sss-qm-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
}

.sss-qm-glow--blue {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 20%;
  background: rgba(37, 99, 235, 0.22);
}

.sss-qm-glow--amber {
  width: 160px;
  height: 160px;
  bottom: 15%;
  right: 15%;
  background: rgba(232, 160, 32, 0.18);
}

.sss-qm-center {
  position: relative;
  z-index: 5;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.sss-qm-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sss-qm-ring--1 {
  width: 130px;
  height: 130px;
  border: 1px solid rgba(232, 160, 32, 0.2);
  animation: spin 18s linear infinite;
}

.sss-qm-ring--2 {
  width: 105px;
  height: 105px;
  border: 1px dashed rgba(37, 99, 235, 0.25);
  animation: spin 12s linear infinite reverse;
}

.sss-qm-core {
  position: relative;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(232, 160, 32, 0.15));
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 20px 40px -10px rgba(6, 11, 23, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sss-qm-char {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #E8A020 0%, #f5c96a 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
  filter: drop-shadow(0 0 12px rgba(232, 160, 32, 0.4));
}

.sss-qm-bubble {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  --rot: 0deg;
  transform: rotate(var(--rot)) translateY(0);
  animation: float-gentle 4s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.sss-qm-bubble:hover {
  transform: rotate(var(--rot)) scale(1.08) translateY(-3px) !important;
  z-index: 20;
  box-shadow: 0 10px 25px -5px rgba(6, 11, 23, 0.4), 0 0 15px 1px rgba(255, 255, 255, 0.05);
}

@keyframes float-gentle {

  0%,
  100% {
    transform: rotate(var(--rot)) translateY(0px);
  }

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

.sss-qm-bubble--1 {
  top: 9%;
  left: 15%;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.32);
  color: #93c5fd;
  animation-duration: 4.2s;
  --rot: -4deg;
  font-size: 0.72rem;
  padding: 0.48rem 0.9rem;
}

.sss-qm-bubble--2 {
  top: 26%;
  right: 2%;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.28);
  color: #34d399;
  animation-duration: 3.6s;
  --rot: 3deg;
  font-size: 0.64rem;
  padding: 0.38rem 0.75rem;
}

.sss-qm-bubble--3 {
  top: 46%;
  left: 2%;
  background: rgba(167, 139, 250, 0.13);
  border: 1px solid rgba(167, 139, 250, 0.28);
  color: #c4b5fd;
  animation-duration: 4.8s;
  --rot: -3deg;
  font-size: 0.64rem;
  padding: 0.38rem 0.75rem;
}

.sss-qm-bubble--4 {
  top: 53%;
  right: 3%;
  background: rgba(239, 68, 68, 0.11);
  border: 1px solid rgba(239, 68, 68, 0.24);
  color: #fca5a5;
  animation-duration: 3.4s;
  --rot: 5deg;
  font-size: 0.70rem;
  padding: 0.45rem 0.88rem;
}

.sss-qm-bubble--5 {
  bottom: 12%;
  left: 8%;
  background: rgba(232, 160, 32, 0.13);
  border: 1px solid rgba(232, 160, 32, 0.28);
  color: #E8A020;
  animation-duration: 5.1s;
  --rot: -2deg;
  font-size: 0.62rem;
  padding: 0.36rem 0.68rem;
}

.sss-qm-bubble--6 {
  bottom: 5%;
  right: 15%;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.26);
  color: #5eead4;
  animation-duration: 4.3s;
  --rot: 4deg;
  font-size: 0.70rem;
  padding: 0.45rem 0.88rem;
}

.sss-qm-bubble--7 {
  bottom: 11%;
  left: 38%;
  background: rgba(251, 191, 36, 0.11);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: #fde68a;
  animation-duration: 3.9s;
  --rot: -5deg;
  font-size: 0.64rem;
  padding: 0.38rem 0.75rem;
}

.sss-qm-bubble--8 {
  top: 8%;
  right: 32%;
  background: rgba(249, 115, 22, 0.11);
  border: 1px solid rgba(249, 115, 22, 0.24);
  color: #fdba74;
  animation-duration: 4.7s;
  --rot: 2deg;
  font-size: 0.60rem;
  padding: 0.35rem 0.65rem;
}

.sss-qm-bubble svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.sss-process-visual {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
}


.sss-qcat-card {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px -12px rgba(6, 11, 23, 0.55);
}

.sss-qcat-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
}

.sss-qcat-icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.sss-qcat-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}

.sss-qcat-sub {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
}

.sss-qcat-count-badge {
  margin-left: auto;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(232, 160, 32, 0.14);
  border: 1px solid rgba(232, 160, 32, 0.3);
  color: #E8A020;
  flex-shrink: 0;
}

.sss-qcat-list {
  padding: 0.6rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.sss-qcat-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  cursor: default;
  transition: background 0.2s, border-color 0.2s;
}

.sss-qcat-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.sss-qcat-item-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sss-qcat-icon--blue {
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.28);
  color: #93c5fd;
}

.sss-qcat-icon--red {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

.sss-qcat-icon--amber {
  background: rgba(232, 160, 32, 0.14);
  border: 1px solid rgba(232, 160, 32, 0.3);
  color: #E8A020;
}

.sss-qcat-icon--green {
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.28);
  color: #34d399;
}

.sss-qcat-icon--purple {
  background: rgba(167, 139, 250, 0.14);
  border: 1px solid rgba(167, 139, 250, 0.28);
  color: #c4b5fd;
}

.sss-qcat-icon--teal {
  background: rgba(20, 184, 166, 0.13);
  border: 1px solid rgba(20, 184, 166, 0.26);
  color: #5eead4;
}

.sss-qcat-item-text {
  flex: 1;
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.sss-qcat-item-num {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.05em;
}

.sss-qcat-footer {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.4);
}

.sss-process-visual {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
}

.sss-proc-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(37, 99, 235, 0.14) 0%, rgba(232, 160, 32, 0.07) 55%, transparent 80%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.sss-proc-card {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px -12px rgba(6, 11, 23, 0.55);
}

.sss-proc-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
}

.sss-proc-logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.sss-proc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.sss-proc-sub {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.sss-proc-live {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 600;
  color: #34d399;
  flex-shrink: 0;
}

.sss-proc-steps {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sss-proc-step {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0;
  position: relative;
}

.sss-proc-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 9px;
  top: calc(50% + 9px);
  width: 1px;
  height: calc(100% - 2px);
  background: rgba(255, 255, 255, 0.1);
}

.sss-proc-step--done:not(:last-child)::after {
  background: rgba(52, 211, 153, 0.3);
}

.sss-proc-step--active:not(:last-child)::after {
  background: linear-gradient(to bottom, rgba(232, 160, 32, 0.5), rgba(255, 255, 255, 0.08));
}

.sss-proc-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.sss-proc-dot--done {
  background: rgba(52, 211, 153, 0.18);
  border: 1.5px solid rgba(52, 211, 153, 0.55);
  color: #34d399;
}

.sss-proc-dot--active {
  background: rgba(232, 160, 32, 0.2);
  border: 1.5px solid rgba(232, 160, 32, 0.6);
  position: relative;
}

.sss-proc-dot--active::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E8A020;
  animation: pulse 1.5s ease-in-out infinite;
}

.sss-proc-dot--pending {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.sss-proc-step-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 0.5rem;
  min-width: 0;
}

.sss-proc-step-name {
  font-size: 0.73rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sss-proc-step--pending .sss-proc-step-name {
  color: rgba(255, 255, 255, 0.35);
}

.sss-proc-step-tag {
  font-size: 0.58rem;
  font-weight: 600;
  border-radius: 5px;
  padding: 2px 7px;
  white-space: nowrap;
  flex-shrink: 0;
}

.sss-tag--green {
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.28);
  color: #34d399;
}

.sss-tag--amber {
  background: rgba(232, 160, 32, 0.14);
  border: 1px solid rgba(232, 160, 32, 0.32);
  color: #E8A020;
}

.sss-tag--dim {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.25);
}

.sss-proc-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  gap: 0.5rem;
}

.sss-proc-stat {
  text-align: center;
  flex: 1;
}

.sss-proc-stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.sss-proc-stat-label {
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sss-proc-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.09);
  flex-shrink: 0;
}

.sss-proc-pill {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.22);
  border-radius: 100px;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  z-index: 5;
}


.sss-chat-visual {
  position: relative;
  flex: 1;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sss-visual-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 50% 50%, rgba(37, 99, 235, 0.12) 0%, rgba(232, 160, 32, 0.08) 60%, transparent 80%);
  filter: blur(50px);
  pointer-events: none;
}

.sss-chat-window {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(6, 11, 23, 0.6);
  z-index: 5;
}

.sss-chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sss-chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.sss-chat-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.sss-chat-online {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
}

.sss-online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 5px rgba(52, 211, 153, 0.7);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.sss-chat-rating {
  display: flex;
  gap: 1px;
  margin-left: auto;
  flex-shrink: 0;
}

.sss-chat-messages {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 220px;
}

.sss-msg {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}

.sss-msg--user {
  flex-direction: column;
  align-items: flex-end;
}

.sss-msg--expert {
  flex-direction: row;
  align-items: flex-end;
}

.sss-expert-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 2px;
}

.sss-bubble {
  max-width: 82%;
  padding: 0.55rem 0.85rem;
  border-radius: 14px;
  font-size: 0.72rem;
  line-height: 1.5;
}

.sss-bubble--user {
  background: rgba(232, 160, 32, 0.18);
  border: 1px solid rgba(232, 160, 32, 0.28);
  color: rgba(255, 255, 255, 0.88);
  border-bottom-right-radius: 4px;
}

.sss-bubble--expert {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  border-bottom-left-radius: 4px;
}

.sss-bubble--expert strong {
  color: #E8A020;
}

.sss-msg-time {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px;
  padding: 0 2px;
}

.sss-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}

.sss-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: typing-bounce 1.4s ease-in-out infinite;
}

.sss-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.sss-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-bounce {

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

  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

.sss-chat-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.sss-input-field {
  flex: 1;
  padding: 0.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.sss-send-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #E8A020, #f5c96a);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d1f3c;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.sss-send-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(232, 160, 32, 0.4);
}

.sss-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(6, 11, 23, 0.4);
  z-index: 10;
}

.sss-float-badge--tr {
  top: 4%;
  right: -5%;
  transform: rotate(3deg);
  transition: transform 0.5s ease;
}

.sss-float-badge--tr:hover {
  transform: rotate(0deg);
}

.sss-float-badge--bl {
  bottom: 8%;
  left: -5%;
  transform: rotate(-3deg);
  transition: transform 0.5s ease;
}

.sss-float-badge--bl:hover {
  transform: rotate(0deg);
}

.sss-float-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sss-float-badge-icon--green {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.sss-float-badge-icon--blue {
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #93c5fd;
}

.sss-float-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sss-float-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.sss-float-pill {
  position: absolute;
  top: -4%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(232, 160, 32, 0.12);
  border: 1px solid rgba(232, 160, 32, 0.28);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 6px 16px rgba(232, 160, 32, 0.15);
}



.sss-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.sss-ring-outer {
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: spin 60s linear infinite;
}

.sss-ring-inner {
  width: 270px;
  height: 270px;
  border: 1px dashed rgba(255, 255, 255, 0.09);
  animation: spin 40s linear infinite reverse;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.sss-card-main {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  width: 230px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 1.1rem 1.1rem 1rem;
  box-shadow: 0 25px 50px -12px rgba(6, 11, 23, 0.55);
  overflow: hidden;
  z-index: 10;
  transition: transform 0.7s ease;
}

.sss-card-main:hover {
  transform: translate(-50%, -50%) rotate(0deg);
}

.sss-card-main-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #E8A020, transparent);
  opacity: 0.65;
}

.sss-card-main-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.sss-card-main-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
}

.sss-card-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.sss-card-main-sub {
  font-size: 0.62rem;
  color: rgba(147, 197, 253, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sss-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  margin-left: auto;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.7);
}

.sss-steps {
  position: relative;
  padding-left: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.sss-step-line {
  position: absolute;
  left: 0.9rem;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.sss-step {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  position: relative;
  z-index: 1;
}

.sss-step-dot {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0f172a;
  margin-top: 1px;
}

.sss-step-dot--done {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
  color: #fff;
}

.sss-step-dot--active {
  background: #E8A020;
  box-shadow: 0 0 12px rgba(232, 160, 32, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

.sss-step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.sss-step-status {
  font-size: 0.6rem;
  font-weight: 500;
  margin-top: 1px;
}

.sss-step-status--done {
  color: #34d399;
}

.sss-step-status--active {
  color: #fbbf24;
}

.sss-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.55rem;
  background: linear-gradient(135deg, #E8A020, #f5c96a);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  color: #0d1f3c;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(232, 160, 32, 0.28);
}

.sss-card-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(232, 160, 32, 0.4);
}

.sss-badge-approved {
  position: absolute;
  top: 8%;
  right: -2%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(6, 11, 23, 0.4);
  z-index: 20;
  transform: rotate(4deg);
  transition: transform 0.5s ease;
}

.sss-badge-approved:hover {
  transform: rotate(0deg);
}

.sss-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  flex-shrink: 0;
}

.sss-badge-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

.sss-badge-sub {
  font-size: 0.62rem;
  color: rgba(147, 197, 253, 0.8);
}

.sss-card-flight {
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 200px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(6, 11, 23, 0.45);
  z-index: 20;
  transform: rotate(-5deg);
  transition: transform 0.5s ease;
}

.sss-card-flight:hover {
  transform: rotate(0deg);
}

.sss-flight-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 0.6rem;
  margin-bottom: 0.55rem;
}

.sss-flight-code {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.sss-flight-city {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.45);
}

.sss-flight-right {
  text-align: right;
}

.sss-flight-mid {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  padding: 0 6px;
}

.sss-flight-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.sss-flight-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sss-flight-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(147, 197, 253, 0.7);
}

.sss-flight-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #ffffff;
}

.sss-flight-badge {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0d1f3c;
  background: rgba(232, 160, 32, 0.9);
  padding: 0.2rem 0.45rem;
  border-radius: 5px;
}

.sss-stat-bubble {
  position: absolute;
  bottom: 15%;
  right: 0%;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232, 160, 32, 0.3);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(6, 11, 23, 0.35);
  text-align: center;
  z-index: 20;
}

.sss-stat-bubble-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #E8A020;
  letter-spacing: -0.03em;
  line-height: 1;
}

.sss-stat-bubble-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  margin-top: 2px;
  white-space: nowrap;
}

.sss-icon-float {
  position: absolute;
  padding: 0.55rem;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid;
  z-index: 15;
  box-shadow: 0 8px 20px rgba(6, 11, 23, 0.3);
}

.sss-icon-float--left {
  top: 20%;
  left: 4%;
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(99, 149, 235, 0.35);
  color: #93c5fd;
}

.sss-icon-float--right {
  top: 35%;
  right: 2%;
  background: rgba(232, 160, 32, 0.2);
  border-color: rgba(232, 160, 32, 0.35);
  color: #E8A020;
}

.sss-icon-float--tl {
  top: 20%;
  left: 4%;
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(99, 149, 235, 0.35);
  color: #93c5fd;
}

.sss-icon-float--br {
  top: 35%;
  right: 2%;
  background: rgba(232, 160, 32, 0.2);
  border-color: rgba(232, 160, 32, 0.35);
  color: #E8A020;
}

.sss-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}


.sss-faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.sss-faq-item.sss-open {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(232, 160, 32, 0.35);
}

.sss-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s;
}

.sss-faq-btn:hover {
  color: #ffffff;
}

.sss-faq-item.sss-open .sss-faq-btn {
  color: #ffffff;
}

.sss-faq-num {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.sss-faq-item.sss-open .sss-faq-num {
  background: rgba(232, 160, 32, 0.15);
  border-color: rgba(232, 160, 32, 0.4);
  color: #E8A020;
}

.sss-faq-q {
  flex: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

.sss-faq-arrow {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s;
  display: flex;
  align-items: center;
}

.sss-faq-item.sss-open .sss-faq-arrow {
  transform: rotate(180deg);
  color: #E8A020;
}

.sss-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.sss-faq-body.sss-body-open {
  max-height: 260px;
}

.sss-faq-body p {
  padding: 0 1.2rem 0.9rem 3.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.65;
}

.sss-faq-body p strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.sss-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.sss-cta-text {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.93rem;
}

.sss-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, #E8A020, #f5c96a);
  color: #0d1f3c;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.sss-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 160, 32, 0.35);
}

.final-cta-section {
  position: relative;
  padding: 5rem 0 5.5rem;
  background: linear-gradient(160deg, #04090f 0%, #070f24 50%, #0d1f3c 100%);
  overflow: hidden;
}

.final-cta-noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.final-cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-orb-l {
  width: 480px;
  height: 480px;
  top: -180px;
  left: -100px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.07) 0%, transparent 65%);
}

.final-cta-orb-r {
  width: 560px;
  height: 560px;
  bottom: -200px;
  right: -120px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 65%);
}

.final-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.final-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0 2.5rem;
  flex: 1;
  min-width: 120px;
}

.final-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.final-stat-plus {
  color: #E8A020;
  font-size: 1.2rem;
}

.final-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.final-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.final-cta-content {
  text-align: center;
}

.final-cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 1.1rem;
}

.final-cta-accent {
  background: linear-gradient(135deg, #E8A020 0%, #f5c96a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.final-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.final-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 2rem;
  background: #25D366;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.final-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.4);
  background: #20ba58;
}

.final-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 2rem;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: all 0.25s ease;
}

.final-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}

.final-trust-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.final-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.final-badge svg {
  stroke: rgba(232, 160, 32, 0.7);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .final-stat-divider {
    display: none;
  }

  .final-stats-row {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .final-stat {
    padding: 0 1rem;
  }
}

@media (max-width: 1024px) {
  .sss-two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
  }

  .sss-right-col {
    padding-top: 0;
  }

  .sss-left-header .sss-title,
  .sss-left-header .sss-subtitle {
    text-align: center;
  }

  .sss-left-header {
    align-items: center;
  }

  .sss-visual-wrap {
    min-height: 420px;
  }

  .sss-card-main {
    width: 210px;
  }

  .sss-badge-approved {
    right: 5%;
  }

  .sss-card-flight {
    left: 0%;
  }
}

@media (max-width: 640px) {
  .sss-visual-wrap {
    min-height: 360px;
  }

  .sss-ring-outer {
    width: 300px;
    height: 300px;
  }

  .sss-ring-inner {
    width: 210px;
    height: 210px;
  }

  .sss-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .sss-qm-center {
    width: 90px;
    height: 90px;
    margin-bottom: 0.5rem;
  }

  .sss-qm-ring--1 {
    width: 90px;
    height: 90px;
  }

  .sss-qm-ring--2 {
    width: 72px;
    height: 72px;
  }

  .sss-qm-core {
    width: 56px;
    height: 56px;
  }

  .sss-qm-char {
    font-size: 1.8rem;
  }

  .sss-qm-bubble {
    font-size: 0.58rem !important;
    padding: 0.32rem 0.65rem !important;
    gap: 0.22rem !important;
  }

  .sss-qm-bubble--1 {
    top: 16% !important;
    left: 15% !important;
  }

  .sss-qm-bubble--2 {
    top: 24% !important;
    right: 11% !important;
  }

  .sss-qm-bubble--3 {
    top: 39% !important;
    left: 11% !important;
  }

  .sss-qm-bubble--4 {
    top: 51% !important;
    right: 11% !important;
  }

  .sss-qm-bubble--5 {
    bottom: 18% !important;
    left: 12% !important;
  }

  .sss-qm-bubble--6 {
    bottom: 16% !important;
    right: 15% !important;
  }

  .sss-qm-bubble--7 {
    bottom: 15% !important;
    left: 42% !important;
  }

  .sss-qm-bubble--8 {
    top: 13% !important;
    right: 28% !important;
  }
}


.final-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.final-feat-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: border-color 0.25s, background 0.25s;
}

.final-feat-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.final-feat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 149, 235, 0.12);
  color: #7eb3ff;
}

.final-feat-icon--gold {
  background: rgba(232, 160, 32, 0.12);
  color: #E8A020;
}

.final-feat-icon--green {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.final-feat-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.final-feat-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.final-feat-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .final-feature-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.contact-section {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(160deg, #f8faff 0%, #eef2ff 50%, #f0f4ff 100%);
  overflow: hidden;
}

.contact-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 65%);
}

.contact-orb-2 {
  width: 450px;
  height: 450px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.08) 0%, transparent 65%);
}

.contact-orb-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 65%);
}

.contact-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(27, 58, 107, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8A020;
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.25);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.contact-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.contact-title-accent {
  background: linear-gradient(135deg, #E8A020 20%, #f5c96a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: default;
}

.contact-info-card:hover {
  background: #ffffff;
  border-color: #e2e8f0;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-info-icon--amber {
  background: rgba(232, 160, 32, 0.12);
  color: #d97706;
}

.contact-info-icon--blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.contact-info-icon--green {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.contact-info-icon--purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
}

a.contact-info-value:hover {
  color: #d97706;
}

.contact-social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.contact-social-btn:hover {
  background: #f8fafc;
  border-color: rgba(232, 160, 32, 0.4);
  color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(232, 160, 32, 0.6), transparent);
  border-radius: 24px 24px 0 0;
}

.contact-form-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.contact-form-subtitle {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

.cf-section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cf-section-label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  background: rgba(232, 160, 32, 0.15);
  border: 1px solid rgba(232, 160, 32, 0.3);
  border-radius: 5px;
  font-size: 0.68rem;
  color: #E8A020;
  font-weight: 800;
}

.cf-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.4rem;
}

.cf-input,
.cf-select {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.cf-input::placeholder {
  color: #94a3b8;
}

.cf-select option {
  background: #ffffff;
  color: #1e293b;
}

.cf-input:focus,
.cf-select:focus {
  border-color: #E8A020;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(232, 160, 32, 0.12);
}

.cf-input.error,
.cf-select.error {
  border-color: rgba(239, 68, 68, 0.6);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.cf-select-wrap {
  position: relative;
}

.cf-select-wrap::after {
  content: '';
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #94a3b8;
  pointer-events: none;
}

.cf-applicant-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.4rem;
  position: relative;
  margin-bottom: 0.75rem;
  transition: border-color 0.25s;
}

.cf-applicant-card:hover {
  border-color: rgba(232, 160, 32, 0.35);
}

.cf-applicant-badge {
  position: absolute;
  top: -0.7rem;
  left: 1rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
}

.cf-applicant-badge--primary {
  background: linear-gradient(135deg, #E8A020, #f5c96a);
  color: #0d1f3c;
}

.cf-applicant-badge--extra {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #64748b;
}

.cf-remove-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 8px;
  color: rgba(239, 68, 68, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cf-remove-btn:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.35);
  color: #f87171;
}

.cf-add-btn {
  width: 100%;
  padding: 0.85rem;
  background: transparent;
  border: 1.5px dashed #cbd5e1;
  border-radius: 12px;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

.cf-add-btn:hover {
  background: rgba(232, 160, 32, 0.04);
  border-color: rgba(232, 160, 32, 0.5);
  color: #d97706;
}

.cf-phone-warning {
  font-size: 0.7rem;
  font-weight: 600;
  color: #f87171;
  margin-top: 0.3rem;
  display: none;
}

.cf-phone-note {
  font-size: 0.68rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.cf-error-msg {
  display: none;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f87171;
  text-align: center;
  margin-bottom: 1rem;
}

.cf-submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #E8A020, #f5c96a);
  color: #0d1f3c;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(232, 160, 32, 0.25);
  letter-spacing: 0.01em;
}

.cf-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 160, 32, 0.4);
  background: linear-gradient(135deg, #f5aa28, #fad273);
}

.cf-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.cf-dropdown-btn {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  outline: none;
}

.cf-dropdown-btn:hover,
.cf-dropdown-btn:focus {
  border-color: #E8A020;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(232, 160, 32, 0.12);
}

.cf-dropdown-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
  z-index: 50;
  max-height: 240px;
  overflow-y: auto;
  display: none;
}

.cf-dropdown-panel.open {
  display: block;
  animation: dropdownFadeIn 0.18s ease;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

.cf-dropdown-search {
  position: sticky;
  top: 0;
  background: #ffffff;
  padding: 0.6rem;
  border-bottom: 1px solid #f1f5f9;
}

.cf-dropdown-search input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  color: #1e293b;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.cf-dropdown-search input::placeholder {
  color: #94a3b8;
}

.cf-dropdown-search input:focus {
  border-color: #E8A020;
}

.cf-dropdown-item {
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: #374151;
  cursor: pointer;
  transition: all 0.15s ease;
}

.cf-dropdown-item:hover {
  background: rgba(232, 160, 32, 0.08);
  color: #d97706;
  padding-left: 1.25rem;
}

.cf-success-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
}

.cf-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(22, 163, 74, 0.1);
  border: 2px solid rgba(22, 163, 74, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #16a34a;
}

.cf-success-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.cf-success-sub {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.cf-result-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.25rem;
  text-align: left;
  margin-bottom: 0.75rem;
}

.cf-result-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cf-result-active {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 100px;
}

.cf-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.cf-result-field {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
}

.cf-result-field-label {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.3rem;
}

.cf-result-field-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.04em;
}

.cf-result-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
  gap: 0.5rem;
}

.cf-result-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: #E8A020;
  text-decoration: none;
  truncate: true;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.cf-result-link:hover {
  text-decoration: underline;
}

.cf-copy-btn {
  flex-shrink: 0;
  padding: 0.3rem 0.7rem;
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.25);
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #E8A020;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cf-copy-btn:hover {
  background: rgba(232, 160, 32, 0.2);
  border-color: rgba(232, 160, 32, 0.4);
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }

  .contact-section {
    padding: 5rem 0;
  }

  .cf-result-grid {
    grid-template-columns: 1fr;
  }

  .contact-trust-grid {
    grid-template-columns: 1fr;
  }
}

.contact-social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.contact-trust-block {
  margin-top: 1.25rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
}

.contact-trust-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.contact-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contact-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.contact-trust-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-trust-icon--amber {
  background: rgba(232, 160, 32, 0.1);
  color: #d97706;
}

.contact-trust-icon--green {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.contact-trust-icon--purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.contact-trust-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.contact-trust-desc {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 0.15rem;
  line-height: 1.4;
}

.cp-brand {
  margin-bottom: 2rem;
}

.cp-brand-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d97706;
  background: rgba(232, 160, 32, 0.08);
  border: 1px solid rgba(232, 160, 32, 0.2);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}

.cp-brand-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cp-brand-accent {
  background: linear-gradient(135deg, #E8A020 20%, #f5c96a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cp-brand-desc {
  font-size: 0.975rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 420px;
}

.cp-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.cp-stat {
  flex: 1;
  text-align: center;
}

.cp-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.cp-stat-num span {
  font-size: 1.1rem;
  color: #E8A020;
  font-weight: 700;
}

.cp-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

.cp-stat-div {
  width: 1px;
  height: 2.5rem;
  background: #e2e8f0;
  flex-shrink: 0;
}

.cp-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.cp-contact-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease;
  cursor: pointer;
}

.cp-contact-row:hover {
  background: #f8fafc;
}

.cp-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-contact-icon--blue {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.cp-contact-icon--amber {
  background: rgba(232, 160, 32, 0.1);
  color: #d97706;
}

.cp-contact-icon--slate {
  background: rgba(15, 23, 42, 0.06);
  color: #475569;
}

.cp-contact-meta {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.1rem;
}

.cp-contact-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e293b;
}

.cp-testimonial {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  position: relative;
}

.cp-testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: #E8A020;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.cp-testimonial-text {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  font-style: italic;
}

.cp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cp-testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8A020, #f5c96a);
  color: #0f172a;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cp-testimonial-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
}

.cp-testimonial-role {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 0.1rem;
}

.cp-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
}

.cp-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.18s ease;
}

.cp-info-row:hover {
  background: #f8fafc;
}

.cp-info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.cp-info-icon--blue {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.cp-info-icon--amber {
  background: rgba(232, 160, 32, 0.1);
  color: #d97706;
}

.cp-info-icon--slate {
  background: rgba(15, 23, 42, 0.06);
  color: #64748b;
}

.cp-info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.2rem;
}

.cp-info-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.cp-info-sub {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 0.15rem;
}

.cp-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  color: #15803d;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cp-whatsapp-btn:hover {
  background: #dcfce7;
  border-color: #86efac;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.12);
}

.cp-process-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.cp-process-section-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cp-process-section-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 12px;
  background: #E8A020;
  border-radius: 1.5px;
}

.cp-process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  padding-left: 0.15rem;
}

.cp-process-timeline::before {
  content: '';
  position: absolute;
  left: calc(0.15rem + 13px);
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #f1f5f9;
  z-index: 1;
}

.cp-process-item {
  display: flex;
  gap: 0.85rem;
  position: relative;
  z-index: 2;
}

.cp-process-badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.22s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cp-process-item:hover .cp-process-badge {
  border-color: #E8A020;
  background: #fffbeb;
  color: #d97706;
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.12);
  transform: scale(1.05);
}

.cp-process-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 2px;
}

.cp-process-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e293b;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.18s ease;
}

.cp-process-item:hover .cp-process-title {
  color: #0f172a;
}

.cp-process-desc {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.4;
}

.cp-countries-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.cp-countries-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cp-countries-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 12px;
  background: #E8A020;
  border-radius: 1.5px;
}

.cp-countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.cp-country-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cp-country-badge:hover {
  background: #fffbeb;
  color: #d97706;
  border-color: rgba(232, 160, 32, 0.3);
  transform: translateY(-1px);
}

.partner-logo-card {
  background: #ffffff;
  border: 1px solid #e5e9f0;
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  position: relative;
  overflow: hidden;
}

.partner-logo-card:hover {
  transform: translateY(-6px);
}

.partner-logo-card img,
.partner-logo-card svg {
  width: 120px;
  height: 30px;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: opacity(0.85);
}

.partner-logo-card:hover img,
.partner-logo-card:hover svg {
  filter: opacity(1);
}

.partner-logo-card.vfs-glow:hover {
  border-color: rgba(10, 63, 44, 0.35);
  box-shadow: 0 15px 35px rgba(10, 63, 44, 0.08);
}

.partner-logo-card.idata-glow:hover {
  border-color: rgba(27, 58, 107, 0.35);
  box-shadow: 0 15px 35px rgba(27, 58, 107, 0.08);
}

.partner-logo-card.bls-glow:hover {
  border-color: rgba(29, 78, 216, 0.35);
  box-shadow: 0 15px 35px rgba(29, 78, 216, 0.08);
}

.partner-logo-card.asvisa-glow:hover {
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.08);
}

.country-tabs-container {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 920px;
  margin: 0 auto 3.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 8px;
  padding: 10px 10px;
  border: 1.5px solid rgba(226, 232, 248, 0.9);
  box-shadow:
    0 2px 8px rgba(15, 37, 87, 0.06),
    0 12px 40px rgba(15, 37, 87, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
}

.country-tabs-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: radial-gradient(ellipse at 20% 0%, rgba(232, 160, 32, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.country-tabs-container::-webkit-scrollbar {
  display: none;
}

.country-tab-btn {
  flex: 1;
  min-width: max-content;
  padding: 11px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
  position: relative;
  transition:
    background 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  text-align: center;
  z-index: 1;
}

.country-tab-btn.active {
  background: #ffffff;
  color: #0f2557;
  font-weight: 700;
  box-shadow:
    0 3px 10px rgba(15, 37, 87, 0.08),
    0 1px 3px rgba(15, 37, 87, 0.04);
  transform: translateY(-0.5px);
}

.country-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #E8A020, #f5c96a);
  box-shadow: 0 0 5px rgba(232, 160, 32, 0.55);
}

.country-tab-btn:hover:not(.active) {
  background: rgba(15, 37, 87, 0.06);
  color: #0f2557;
  transform: translateY(-0.5px);
}

.country-tab-btn:active {
  transform: translateY(0);
}

.country-tab-panel {
  display: none;
}

.country-tab-panel.active {
  display: block;
  will-change: opacity, transform;
  animation: tabReveal 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.country-tab-panel.leaving {
  animation: tabFade 0.2s ease forwards;
  pointer-events: none;
}

@keyframes tabReveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.99);
  }

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

@keyframes tabFade {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.country-card-premium {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.15rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1.5px solid rgba(226, 232, 240, 0.8);
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.04),
    0 4px 12px rgba(15, 23, 42, 0.03);
  transition:
    border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.25s ease;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.country-card-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg,
      rgba(232, 160, 32, 0) 0%,
      rgba(232, 160, 32, 0) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.country-card-premium:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.06),
    0 8px 24px rgba(15, 23, 42, 0.08),
    0 20px 40px -8px rgba(15, 23, 42, 0.06);
  transform: translateY(-5px);
  background: linear-gradient(135deg, #fafcff 0%, #ffffff 100%);
}

.country-card-premium:hover::before {
  opacity: 1;
  background: linear-gradient(135deg,
      rgba(37, 99, 235, 0.03) 0%,
      rgba(232, 160, 32, 0.02) 100%);
}

.country-card-premium .country-flag {
  width: 48px;
  height: 34px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow:
    0 2px 6px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease;
  flex-shrink: 0;
}

.country-card-premium:hover .country-flag {
  transform: scale(1.12) rotate(-1deg);
  box-shadow:
    0 6px 16px rgba(15, 23, 42, 0.15),
    0 0 0 1px rgba(15, 23, 42, 0.08);
}

.country-card-premium .country-name-premium {
  font-weight: 700;
  font-size: 0.88rem;
  color: #1e293b;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  line-height: 1.3;
}

.country-card-premium:hover .country-name-premium {
  color: #1d4ed8;
}

.country-card-premium::after {
  content: '→';
  position: absolute;
  right: 1rem;
  font-size: 0.75rem;
  color: #2563eb;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.country-card-premium:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .country-tabs-container {
    gap: 6px;
    padding: 8px 10px;
    border-radius: 8px;
    margin-bottom: 2rem;
  }

  .country-tab-btn {
    padding: 10px 16px;
    font-size: 0.78rem;
    border-radius: 6px;
    gap: 4px;
  }

  .country-card-premium {
    padding: 0.75rem 0.9rem;
    gap: 0.7rem;
    border-radius: 8px;
  }

  .country-card-premium .country-flag {
    width: 38px;
    height: 27px;
    border-radius: 5px;
  }

  .country-card-premium .country-name-premium {
    font-size: 0.8rem;
  }

  .country-card-premium::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .country-tab-btn {
    padding: 8px 12px;
    font-size: 0.72rem;
  }
}