@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --kond-sky: #dff1ff;
  --kond-sky-deep: #b8e2ff;
  --kond-blue: #1b8cff;
  --kond-blue-dark: #0a5dc2;
  --kond-ice: #f4faff;
  --kond-text: #10243a;
  --kond-muted: #5d7288;
  --kond-radius: 1.15rem;
  --kond-shadow: 0 18px 50px rgba(27, 140, 255, 0.12);
  --kond-transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--kond-text);
  background: var(--kond-ice);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  overflow-x: hidden;
}

body.nav-scrolled .navbar-kond {
  box-shadow: 0 10px 30px rgba(16, 36, 58, 0.08);
}

.bg-sky {
  position: relative;
  background: linear-gradient(165deg, #e9f6ff 0%, #f6fbff 50%, #ffffff 100%);
  overflow: hidden;
}

.bg-sky::before,
.bg-sky::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
  animation: blobFloat 12s ease-in-out infinite alternate;
}

.bg-sky::before {
  width: 320px;
  height: 320px;
  background: #9ed0ff;
  top: -80px;
  right: -60px;
}

.bg-sky::after {
  width: 260px;
  height: 260px;
  background: #c8e8ff;
  bottom: -60px;
  left: -40px;
  animation-delay: -4s;
}

@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, 25px) scale(1.08); }
}

.navbar-kond {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(27, 140, 255, 0.08);
  transition: box-shadow var(--kond-transition);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.navbar-kond .nav-link {
  font-weight: 600;
  color: var(--kond-muted);
  transition: color var(--kond-transition);
}

.navbar-kond .nav-link:hover {
  color: var(--kond-blue);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--kond-blue-dark);
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5eb3ff, var(--kond-blue));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(27, 140, 255, 0.35);
  animation: pulseIcon 3s ease-in-out infinite;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero {
  padding: 6rem 0 4.5rem;
  position: relative;
  z-index: 1;
}

.hero .lead {
  max-width: 680px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 560px;
}

.hero-stats > div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 140, 255, 0.14);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  box-shadow: 0 10px 26px rgba(16, 36, 58, 0.05);
}

.hero-stats strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--kond-blue-dark);
}

.hero-stats span {
  display: block;
  color: var(--kond-muted);
  font-size: 0.82rem;
  margin-top: 0.3rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(27, 140, 255, 0.14);
  border-radius: var(--kond-radius);
  box-shadow: var(--kond-shadow);
  backdrop-filter: blur(8px);
}

.hero-float {
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.section-pad {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kond-blue);
  margin-bottom: 0.5rem;
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-lead {
  color: var(--kond-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--kond-transition), transform 0.7s var(--kond-transition);
}

.reveal.is-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; }

.service-card,
.system-card,
.mini-feature,
.process-card,
.adv-item,
.price-row,
.contact-card,
.form-card {
  background: #fff;
  border: 1px solid rgba(27, 140, 255, 0.1);
  border-radius: var(--kond-radius);
  box-shadow: 0 8px 24px rgba(16, 36, 58, 0.04);
  transition: transform var(--kond-transition), box-shadow var(--kond-transition), border-color var(--kond-transition);
}

.service-card {
  padding: 1.5rem;
  height: 100%;
}

.service-card:hover,
.system-card:hover,
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--kond-shadow);
  border-color: rgba(27, 140, 255, 0.25);
}

.system-card,
.process-card {
  padding: 1.75rem;
}

.promo-card {
  background: linear-gradient(125deg, #0a5dc2 0%, #1b8cff 55%, #5eb3ff 100%);
  color: #fff;
  border-radius: calc(var(--kond-radius) + 0.35rem);
  box-shadow: 0 28px 70px rgba(27, 140, 255, 0.3);
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 65%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.expertise-panel {
  background: #fff;
  border: 1px solid rgba(27, 140, 255, 0.1);
  border-radius: calc(var(--kond-radius) + 0.25rem);
  padding: 2.5rem;
  box-shadow: var(--kond-shadow);
}

.mini-feature {
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.mini-feature i {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--kond-blue);
  background: #eef7ff;
  font-size: 1.2rem;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.city-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: #fff;
  color: var(--kond-blue-dark);
  border: 1px solid rgba(27, 140, 255, 0.12);
  box-shadow: 0 10px 26px rgba(16, 36, 58, 0.05);
  padding: 0.85rem 1.25rem;
  font-weight: 800;
}

.process-number {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--kond-blue), #5eb3ff);
  box-shadow: 0 10px 24px rgba(27, 140, 255, 0.24);
  font-weight: 800;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(145deg, #eef7ff, #dff0ff);
  color: var(--kond-blue);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.adv-item {
  padding: 1rem 1.2rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.price-section .section-pad {
  padding-top: 4rem;
}

.price-panel {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.6rem;
  border-radius: calc(var(--kond-radius) + 0.25rem);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 140, 255, 0.1);
  box-shadow: var(--kond-shadow);
}

.price-list-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.price-row {
  min-height: 82px;
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.price-info {
  min-width: 0;
}

.price-info strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.25;
}

.price-info span {
  display: block;
  margin-top: 0.25rem;
  color: var(--kond-muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.price-value {
  flex: 0 0 auto;
  color: var(--kond-blue);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: right;
  white-space: nowrap;
  padding-left: 0.75rem;
}

.cta-band {
  background: linear-gradient(125deg, #0a5dc2 0%, #1b8cff 55%, #5eb3ff 100%);
  color: #fff;
  border-radius: calc(var(--kond-radius) + 0.2rem);
  padding: 2.75rem 2.25rem;
  box-shadow: 0 24px 60px rgba(27, 140, 255, 0.28);
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  top: -60px;
  right: -40px;
}

.contact-card {
  padding: 1.5rem;
  height: 100%;
  text-align: center;
}

.contact-card i {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: #eef7ff;
}

.contact-card a {
  color: var(--kond-blue-dark);
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--kond-blue);
}

.form-card {
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.form-card .form-control,
.form-card .form-select {
  border-radius: 0.75rem;
  border-color: rgba(27, 140, 255, 0.2);
  padding: 0.7rem 0.95rem;
}

.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--kond-blue);
  box-shadow: 0 0 0 0.2rem rgba(27, 140, 255, 0.15);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-alert {
  border-radius: 0.75rem;
  display: none;
}

.form-alert.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.btn-kond {
  background: linear-gradient(135deg, var(--kond-blue), #5eb3ff);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 24px rgba(27, 140, 255, 0.3);
  transition: transform var(--kond-transition), box-shadow var(--kond-transition);
}

.btn-kond:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(27, 140, 255, 0.38);
}

.btn-kond:disabled {
  opacity: 0.7;
  transform: none;
}

.btn-outline-kond {
  border: 2px solid var(--kond-blue);
  color: var(--kond-blue);
  font-weight: 700;
  border-radius: 0.75rem;
  padding: 0.68rem 1.35rem;
  transition: all var(--kond-transition);
}

.btn-outline-kond:hover {
  background: var(--kond-blue);
  color: #fff;
}

footer.site-footer {
  background: linear-gradient(180deg, #0b2a4a, #061a2e);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.25rem 0;
}

footer.site-footer a {
  color: #9ec5fe;
  text-decoration: none;
}

footer.site-footer a:hover {
  text-decoration: underline;
}

/* Admin */
.admin-sidebar {
  min-height: 100vh;
  background: linear-gradient(180deg, #0b2a4a, #123a62);
}

.admin-sidebar .nav-link {
  color: rgba(255, 255, 255, 0.82);
  border-radius: 0.6rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
  padding: 0.55rem 0.85rem;
}

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

.admin-sidebar .badge-new {
  font-size: 0.65rem;
  vertical-align: middle;
}

.stat-card {
  border: none;
  border-radius: var(--kond-radius);
  box-shadow: 0 8px 24px rgba(16, 36, 58, 0.06);
  height: 100%;
  transition: transform var(--kond-transition);
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-card .stat-value {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--kond-blue-dark);
  line-height: 1.1;
}

.stat-card .stat-label {
  color: var(--kond-muted);
  font-size: 0.9rem;
}

.chart-bar {
  height: 8px;
  border-radius: 99px;
  background: #e8f2fb;
  overflow: hidden;
}

.chart-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--kond-blue), #5eb3ff);
  border-radius: 99px;
  transition: width 0.8s ease;
}

.lead-table td {
  vertical-align: middle;
}

.lead-meta {
  font-size: 0.8rem;
  color: var(--kond-muted);
}

.lang-switcher .dropdown-toggle {
  border-width: 2px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lang-switcher .dropdown-menu {
  min-width: 9rem;
  border-radius: 1rem;
  padding: 0.35rem;
}

.lang-switcher .dropdown-item {
  border-radius: 0.65rem;
  font-weight: 600;
}

.lang-switcher .dropdown-item.active {
  background: var(--kond-sky-deep);
  color: var(--kond-blue-dark);
}

.nav-pills .nav-link {
  border-radius: 999px;
  font-weight: 600;
  color: var(--kond-muted);
}

.nav-pills .nav-link.active {
  background: linear-gradient(135deg, var(--kond-blue), #5eb3ff);
  color: #fff;
}

@media (max-width: 767.98px) {
  .navbar-kond .navbar-collapse {
    text-align: center;
  }

  .hero {
    padding-top: 4.5rem;
    text-align: center;
  }

  .hero .d-flex {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-pad {
    padding: 3.5rem 0;
  }

  .section-title,
  .section-lead {
    text-align: center;
  }

  main .section-pad .col-lg-4,
  main .section-pad .col-lg-5,
  main .section-pad .col-lg-6,
  main .section-pad .col-lg-7,
  main .section-pad .col-lg-8 {
    text-align: center;
  }

  main .section-pad .adv-item,
  main .section-pad .mini-feature {
    text-align: left;
  }

  .cta-band {
    padding: 2rem 1.35rem;
    text-align: center;
  }

  .promo-card,
  .expertise-panel {
    padding: 1.5rem;
    text-align: center;
  }

  .price-row {
    min-height: auto;
    text-align: center;
    justify-content: space-between;
  }

  .price-list-wrap {
    grid-template-columns: 1fr;
  }

  .price-panel {
    padding: 0.45rem;
  }

  .price-info {
    text-align: left;
  }

  .price-value {
    font-size: 0.92rem;
  }

  .form-card {
    padding: 1.35rem;
  }

  .contact-card {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Dark modern public theme */
body:not(.bg-light) {
  --kond-sky: #0d2437;
  --kond-sky-deep: #123957;
  --kond-blue: #36b7ff;
  --kond-blue-dark: #8ed8ff;
  --kond-ice: #071522;
  --kond-text: #eef8ff;
  --kond-muted: #9fb4c7;
  --kond-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  color: var(--kond-text);
  background:
    radial-gradient(circle at 18% 8%, rgba(54, 183, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 90% 18%, rgba(69, 104, 255, 0.14), transparent 28rem),
    linear-gradient(180deg, #08131f 0%, #0a1724 42%, #06111c 100%);
}

body:not(.bg-light) .bg-sky {
  background:
    radial-gradient(circle at 12% 20%, rgba(54, 183, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 10%, rgba(102, 130, 255, 0.16), transparent 26rem),
    linear-gradient(165deg, #0a1a29 0%, #0b2032 48%, #071522 100%);
}

body:not(.bg-light) .bg-sky::before {
  background: #1c8bd8;
  opacity: 0.2;
}

body:not(.bg-light) .bg-sky::after {
  background: #4ecbff;
  opacity: 0.14;
}

body:not(.bg-light) .navbar-kond {
  background: rgba(6, 17, 28, 0.78);
  border-bottom: 1px solid rgba(142, 216, 255, 0.13);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

body:not(.bg-light) .navbar-toggler {
  border-color: rgba(142, 216, 255, 0.25);
}

body:not(.bg-light) .navbar-toggler-icon {
  filter: invert(1) grayscale(1) brightness(1.6);
}

body:not(.bg-light) .navbar-kond .nav-link,
body:not(.bg-light) .logo-mark {
  color: rgba(238, 248, 255, 0.82);
}

body:not(.bg-light) .navbar-kond .nav-link:hover,
body:not(.bg-light) .logo-mark:hover {
  color: #fff;
}

body:not(.bg-light) .logo-icon {
  background: linear-gradient(135deg, #36b7ff, #176dff);
  box-shadow: 0 14px 34px rgba(54, 183, 255, 0.35);
}

body:not(.bg-light) .text-primary {
  color: var(--kond-blue) !important;
}

body:not(.bg-light) .text-secondary {
  color: var(--kond-muted) !important;
}

body:not(.bg-light) .text-bg-primary,
body:not(.bg-light) .badge.text-bg-primary {
  background: rgba(54, 183, 255, 0.15) !important;
  color: #bfeaff !important;
  border: 1px solid rgba(54, 183, 255, 0.28);
}

body:not(.bg-light) .section-eyebrow {
  color: #78d4ff;
}

body:not(.bg-light) .section-title,
body:not(.bg-light) h1,
body:not(.bg-light) h2,
body:not(.bg-light) h3,
body:not(.bg-light) strong {
  color: #f6fbff;
}

body:not(.bg-light) .section-lead {
  color: var(--kond-muted);
}

body:not(.bg-light) .hero-card,
body:not(.bg-light) .hero-stats > div,
body:not(.bg-light) .price-panel,
body:not(.bg-light) .service-card,
body:not(.bg-light) .system-card,
body:not(.bg-light) .mini-feature,
body:not(.bg-light) .process-card,
body:not(.bg-light) .adv-item,
body:not(.bg-light) .price-row,
body:not(.bg-light) .contact-card,
body:not(.bg-light) .form-card,
body:not(.bg-light) .expertise-panel {
  background: linear-gradient(180deg, rgba(17, 39, 58, 0.86), rgba(10, 26, 41, 0.86));
  border: 1px solid rgba(142, 216, 255, 0.14);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

body:not(.bg-light) .service-card:hover,
body:not(.bg-light) .system-card:hover,
body:not(.bg-light) .process-card:hover {
  border-color: rgba(54, 183, 255, 0.42);
  box-shadow: 0 24px 70px rgba(54, 183, 255, 0.13), 0 20px 55px rgba(0, 0, 0, 0.28);
}

body:not(.bg-light) .service-icon,
body:not(.bg-light) .contact-card i,
body:not(.bg-light) .mini-feature i {
  background: linear-gradient(145deg, rgba(54, 183, 255, 0.16), rgba(23, 109, 255, 0.12));
  color: #7fd7ff;
  border: 1px solid rgba(142, 216, 255, 0.16);
}

body:not(.bg-light) .hero-stats strong,
body:not(.bg-light) .price-value,
body:not(.bg-light) .city-list span,
body:not(.bg-light) .contact-card a {
  color: #bfeaff;
}

body:not(.bg-light) .city-list span {
  background: rgba(17, 39, 58, 0.9);
  border-color: rgba(142, 216, 255, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

body:not(.bg-light) .promo-card,
body:not(.bg-light) .cta-band {
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.18), transparent 14rem),
    linear-gradient(125deg, #0b5cff 0%, #00a3ff 48%, #26d8ff 100%);
  box-shadow: 0 28px 80px rgba(0, 163, 255, 0.22);
}

body:not(.bg-light) .promo-badge {
  background: rgba(6, 17, 28, 0.28);
  border-color: rgba(255, 255, 255, 0.28);
}

body:not(.bg-light) .process-number,
body:not(.bg-light) .btn-kond {
  background: linear-gradient(135deg, #00a3ff, #26d8ff);
  color: #06111c;
  box-shadow: 0 14px 34px rgba(38, 216, 255, 0.22);
}

body:not(.bg-light) .btn-kond:hover {
  color: #06111c;
  box-shadow: 0 18px 44px rgba(38, 216, 255, 0.32);
}

body:not(.bg-light) .btn-outline-kond {
  border-color: rgba(54, 183, 255, 0.75);
  color: #bfeaff;
}

body:not(.bg-light) .btn-outline-kond:hover {
  background: #36b7ff;
  border-color: #36b7ff;
  color: #06111c;
}

body:not(.bg-light) .form-card .form-control,
body:not(.bg-light) .form-card .form-select {
  background: rgba(5, 16, 27, 0.72);
  border-color: rgba(142, 216, 255, 0.18);
  color: #eef8ff;
}

body:not(.bg-light) .form-card .form-control::placeholder,
body:not(.bg-light) .form-card .form-select {
  color: rgba(238, 248, 255, 0.52);
}

body:not(.bg-light) .form-card .form-control:focus,
body:not(.bg-light) .form-card .form-select:focus {
  background: rgba(5, 16, 27, 0.92);
  border-color: #36b7ff;
  box-shadow: 0 0 0 0.2rem rgba(54, 183, 255, 0.16);
}

body:not(.bg-light) .lang-switcher .dropdown-toggle {
  background: rgba(17, 39, 58, 0.8);
  color: #dff5ff;
  border-color: rgba(142, 216, 255, 0.24);
}

body:not(.bg-light) .lang-switcher .dropdown-menu {
  background: #0b2032;
  border: 1px solid rgba(142, 216, 255, 0.14) !important;
}

body:not(.bg-light) .lang-switcher .dropdown-item {
  color: rgba(238, 248, 255, 0.82);
}

body:not(.bg-light) .lang-switcher .dropdown-item:hover,
body:not(.bg-light) .lang-switcher .dropdown-item.active {
  background: rgba(54, 183, 255, 0.14);
  color: #fff;
}

body:not(.bg-light) footer.site-footer {
  background: linear-gradient(180deg, #06111c, #030912);
  border-top: 1px solid rgba(142, 216, 255, 0.1);
}

@media (max-width: 767.98px) {
  body:not(.bg-light) .navbar-kond .navbar-collapse {
    background: rgba(6, 17, 28, 0.96);
    border: 1px solid rgba(142, 216, 255, 0.12);
    border-radius: 1rem;
    margin-top: 0.8rem;
    padding: 0.75rem;
  }
}

/* Softer polished landing refinements */
body:not(.bg-light) {
  background:
    radial-gradient(circle at 16% 6%, rgba(66, 191, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 88% 14%, rgba(79, 113, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 50% 100%, rgba(41, 171, 226, 0.08), transparent 34rem),
    linear-gradient(180deg, #081827 0%, #0b1825 52%, #07111c 100%);
}

body:not(.bg-light) .hero {
  padding-top: 7rem;
  padding-bottom: 5.5rem;
}

body:not(.bg-light) .hero h1 {
  max-width: 780px;
  font-size: clamp(2.45rem, 5vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

body:not(.bg-light) .hero .lead {
  font-size: clamp(1.03rem, 1.35vw, 1.22rem);
  line-height: 1.72;
  color: #aac0d2 !important;
}

body:not(.bg-light) .badge.text-bg-primary {
  padding: 0.55rem 0.85rem !important;
  background: rgba(54, 183, 255, 0.1) !important;
  color: #c9efff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body:not(.bg-light) .hero-visual {
  padding: 1.4rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

body:not(.bg-light) .hero-visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 85% 12%, rgba(54, 183, 255, 0.22), transparent 12rem),
    radial-gradient(circle at 8% 88%, rgba(255, 255, 255, 0.08), transparent 10rem);
  pointer-events: none;
}

.hero-visual > * {
  position: relative;
  z-index: 1;
}

.hero-visual-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0.55rem 1.25rem;
}

.hero-orb {
  width: 78px;
  height: 78px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #071522;
  background: linear-gradient(135deg, #dff7ff, #36b7ff 58%, #176dff);
  box-shadow: 0 18px 38px rgba(54, 183, 255, 0.24);
  font-size: 2rem;
}

.hero-visual-label {
  color: #83d9ff;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  margin-bottom: 0.3rem;
}

.hero-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.3rem;
}

.hero-pill-grid span,
.hero-location-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  color: #d9f4ff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(142, 216, 255, 0.12);
  padding: 0.62rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-pill-grid i,
.hero-location-strip i {
  color: #66d2ff;
}

.hero-location-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(142, 216, 255, 0.1);
}

body:not(.bg-light) .hero-stats > div {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(142, 216, 255, 0.12);
  box-shadow: none;
}

body:not(.bg-light) .section-pad {
  padding-top: 4.7rem;
  padding-bottom: 4.7rem;
}

body:not(.bg-light) .section-title {
  letter-spacing: -0.04em;
}

body:not(.bg-light) .section-lead {
  line-height: 1.75;
}

body:not(.bg-light) .service-card,
body:not(.bg-light) .system-card,
body:not(.bg-light) .process-card,
body:not(.bg-light) .contact-card {
  padding: 1.55rem;
}

body:not(.bg-light) .service-card,
body:not(.bg-light) .system-card,
body:not(.bg-light) .mini-feature,
body:not(.bg-light) .process-card,
body:not(.bg-light) .adv-item,
body:not(.bg-light) .price-row,
body:not(.bg-light) .contact-card,
body:not(.bg-light) .form-card,
body:not(.bg-light) .expertise-panel,
body:not(.bg-light) .price-panel {
  background: linear-gradient(180deg, rgba(16, 36, 54, 0.68), rgba(10, 25, 39, 0.72));
  border-color: rgba(164, 225, 255, 0.11);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.18);
}

body:not(.bg-light) .service-card:hover,
body:not(.bg-light) .system-card:hover,
body:not(.bg-light) .process-card:hover {
  transform: translateY(-4px);
}

body:not(.bg-light) .service-icon {
  width: 50px;
  height: 50px;
  border-radius: 17px;
}

body:not(.bg-light) .promo-card,
body:not(.bg-light) .cta-band {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

body:not(.bg-light) .promo-card {
  padding: 2.3rem;
}

@media (max-width: 767.98px) {
  body:not(.bg-light) .hero {
    padding-top: 5rem;
    padding-bottom: 3.8rem;
  }

  body:not(.bg-light) .hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.25rem);
  }

  body:not(.bg-light) .hero-visual {
    text-align: center;
  }

  .hero-visual-top {
    flex-direction: column;
    text-align: center;
  }

  .hero-pill-grid {
    grid-template-columns: 1fr;
  }

  .hero-location-strip {
    justify-content: center;
  }

  body:not(.bg-light) .section-pad {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }
}
