:root {
  --bg-main: #0a1a2f;
  --bg-accent: #164e63;
  --glass-bg: rgba(255, 255, 255, 0.13);
  --glass-border: rgba(255, 255, 255, 0.24);
  --text-main: #ebf6ff;
  --text-muted: rgba(235, 246, 255, 0.76);
  --card-shadow: 0 20px 55px rgba(2, 6, 23, 0.42);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Outfit', sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(56, 189, 248, 0.24) 0%, transparent 37%),
    radial-gradient(circle at 88% 80%, rgba(16, 185, 129, 0.2) 0%, transparent 36%),
    linear-gradient(130deg, var(--bg-main), var(--bg-accent));
  color: var(--text-main);
  position: relative;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.bg-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(56px);
  pointer-events: none;
  z-index: 0;
}

.bg-blur-1 {
  width: 230px;
  height: 230px;
  background: rgba(14, 165, 233, 0.38);
  top: 30px;
  right: -70px;
}

.bg-blur-2 {
  width: 290px;
  height: 290px;
  background: rgba(16, 185, 129, 0.25);
  bottom: -90px;
  left: -85px;
}

.site-header,
.main-content,
.site-footer {
  position: relative;
  z-index: 2;
}

.nav-glass {
  background: rgba(7, 23, 42, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #f8fbff;
}

.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #22d3ee, #14b8a6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #04202f;
}

.brand-mark small {
  display: block;
  font-size: 0.72rem;
  color: rgba(235, 246, 255, 0.74);
}

.navbar .nav-link {
  color: rgba(235, 246, 255, 0.78);
  padding: 0.56rem 0.9rem;
  border-radius: 999px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.55);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(125, 211, 252, 0.35);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240,249,255,0.96%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1.2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--card-shadow);
}

.hero-kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.95);
  font-weight: 700;
  font-size: 0.8rem;
}

.text-white-75 {
  color: var(--text-muted);
}

.btn-corporate {
  background: linear-gradient(135deg, #06b6d4, #14b8a6);
  border: 0;
  color: #04202f;
  font-weight: 700;
  padding: 0.6rem 1.1rem;
}

.btn-corporate:hover {
  color: #02141f;
  opacity: 0.95;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat-grid div {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.8rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
}

.stat-grid strong {
  font-size: 1.25rem;
}

.stat-grid span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.model-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.model-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.card-image-wrap {
  position: relative;
}

.card-image {
  height: 270px;
  object-fit: cover;
}

.glass-chip {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 0.42rem 0.76rem;
  color: var(--text-main);
}

.rating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-weight: 700;
  color: #f8fafc;
  background: rgba(2, 16, 33, 0.6);
}

.soft-badge {
  background: rgba(241, 245, 249, 0.92) !important;
  color: #0f172a !important;
}

.description-text {
  line-height: 1.45;
  color: var(--text-muted);
}

.mini-card,
.soft-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.9rem;
  padding: 0.85rem;
}

.soft-pill {
  display: inline-block;
  font-weight: 600;
  color: #d5f5ff;
}

.partner-showcase {
  background:
    radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.16), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(20, 184, 166, 0.14), transparent 45%),
    var(--glass-bg);
}

.partner-pill {
  background: rgba(14, 165, 233, 0.16);
  border-color: rgba(125, 211, 252, 0.42);
  color: #dff7ff;
}

.partner-banner-wrap {
  padding: 0.35rem 0;
}

.partner-banner-link {
  display: inline-flex;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(2, 20, 40, 0.36);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.34);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  overflow: hidden;
}

.partner-banner-link:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.62);
  box-shadow: 0 20px 40px rgba(8, 47, 73, 0.4);
}

.partner-banner-mobile {
  padding: 0.32rem;
}

.partner-banner-desktop {
  width: min(100%, 740px);
  justify-content: center;
  padding: 0.32rem;
}

.partner-banner-desktop img {
  width: 100%;
  height: auto;
}

.custom-accordion .accordion-item {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.custom-accordion .accordion-button,
.custom-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: #ecf8ff;
  box-shadow: none;
}

.form-control-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.form-control-glass::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.form-control-glass:focus {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(125, 211, 252, 0.8);
  box-shadow: none;
}

.legal-content p {
  line-height: 1.62;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(235, 246, 255, 0.84);
}

.footer-links a:hover {
  color: #fff;
}

.glass-alert {
  border: 1px solid rgba(248, 113, 113, 0.4);
  background: rgba(127, 29, 29, 0.35);
  color: #fee2e2;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 110px;
  padding: 0.58rem 0.88rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.float-btn.telegram {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.float-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .navbar .nav-link {
    border-radius: 0.6rem;
  }

  .navbar-collapse {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.9rem;
    background: rgba(7, 23, 42, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 767.98px) {
  .card-image {
    height: 240px;
  }

  .hero-section h1 {
    font-size: 1.86rem;
  }

  .partner-pill {
    width: 100%;
    text-align: center;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }

  .float-btn {
    min-width: 100px;
    font-size: 0.88rem;
  }
}
