/* Debug */

body {
  margin: 0;
  padding: 0;
  font-family: 'BPG Nino Mtavruli';
  overflow-x: hidden;
}

body {
  font-weight: 500 !important;
  font-size: 26px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

/* English pages - Plus Jakarta Sans */
html[lang="en"] body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

@media (max-width: 492px) {
  body {
    text-transform: uppercase !important;
  }
}

/* ========== SCROLL & LOAD ANIMATIONS ========== */

/* Base state for scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero load animations */
.hero-animate {
  opacity: 0;
  animation: heroFadeIn 0.8s ease-out forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page load fade */
body {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.page-loaded {
  opacity: 1;
}

/* Card hover lift effect */
.service-card,
.solution-card,
.pricing-card,
.hotel-service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.pricing-card:hover,
.hotel-service-card:hover {
  transform: translateY(-8px);
}

/* Smooth section transitions */
section {
  transition: background-color 0.3s ease;
}

/* Button pulse effect */
.cta-btn, .pricing-contact-btn {
  position: relative;
  overflow: hidden;
}

.cta-btn::after, .pricing-contact-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-btn:hover::after, .pricing-contact-btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Stagger animations for grids */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.4s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.5s; }

/* Service items stagger (service detail pages) */
.service-grid .service-item:nth-child(1) { transition-delay: 0s; }
.service-grid .service-item:nth-child(2) { transition-delay: 0.1s; }
.service-grid .service-item:nth-child(3) { transition-delay: 0.2s; }
.service-grid .service-item:nth-child(4) { transition-delay: 0.3s; }
.service-grid .service-item:nth-child(5) { transition-delay: 0.4s; }
.service-grid .service-item:nth-child(6) { transition-delay: 0.5s; }

/* Monitoring benefits stagger */
.monitoring-benefit:nth-child(1) { transition-delay: 0s; }
.monitoring-benefit:nth-child(2) { transition-delay: 0.15s; }
.monitoring-benefit:nth-child(3) { transition-delay: 0.3s; }

/* Process steps stagger */
.process-steps .process-step:nth-child(1) { transition-delay: 0s; }
.process-steps .process-step:nth-child(2) { transition-delay: 0.15s; }
.process-steps .process-step:nth-child(3) { transition-delay: 0.3s; }
.process-steps .process-step:nth-child(4) { transition-delay: 0.45s; }

/* Solution cards stagger */
.solutions-grid .solution-card:nth-child(1),
.row .solution-card-new:nth-child(1) { transition-delay: 0s; }
.solutions-grid .solution-card:nth-child(2),
.row .solution-card-new:nth-child(2) { transition-delay: 0.05s; }
.solutions-grid .solution-card:nth-child(3),
.row .solution-card-new:nth-child(3) { transition-delay: 0.1s; }
.solutions-grid .solution-card:nth-child(4),
.row .solution-card-new:nth-child(4) { transition-delay: 0.15s; }
.solutions-grid .solution-card:nth-child(5),
.row .solution-card-new:nth-child(5) { transition-delay: 0.2s; }
.solutions-grid .solution-card:nth-child(6),
.row .solution-card-new:nth-child(6) { transition-delay: 0.25s; }
.solutions-grid .solution-card:nth-child(7),
.row .solution-card-new:nth-child(7) { transition-delay: 0.3s; }
.solutions-grid .solution-card:nth-child(8),
.row .solution-card-new:nth-child(8) { transition-delay: 0.35s; }

/* Pricing cards stagger */
.pricing-grid .pricing-card:nth-child(1),
.row .pricing-card:nth-child(1) { transition-delay: 0s; }
.pricing-grid .pricing-card:nth-child(2),
.row .pricing-card:nth-child(2) { transition-delay: 0.15s; }
.pricing-grid .pricing-card:nth-child(3),
.row .pricing-card:nth-child(3) { transition-delay: 0.3s; }

/* Number counter animation */
@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.plan-price .num,
.pricing-header .amount {
  animation: countUp 0.5s ease-out;
}

/* Glowing effect for featured items */
.pricing-card.featured {
  animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(237, 35, 40, 0.1); }
  50% { box-shadow: 0 4px 30px rgba(237, 35, 40, 0.25); }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body {
    opacity: 1;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* HERO SECTION */

.hero-section {
  position: relative;
  min-height: 100px;
  width: 100%;
  overflow: hidden;
}

.heading1 {
  font-size: 21px !important;
}

/* HERO Image */

.hero-section img.bg-cover, .hero-section .bg-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

/* Navbar */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-top: 22px;
  padding-bottom: 0;
  border: none;
  box-shadow: none;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 38px;
}

/* LOGO */

.navbar-brand {
  background: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.navbar-brand img {
  display: block;
  width: auto;
  background: #fff;
}

.navbar-nav {
  display: flex;
  gap: 38px;
  align-items: flex-start;
  margin-top: 2px;
  margin-right: 8px;
  padding-left: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  padding: 0;
  background: none;
  border: none;
  transition: color 0.13s;
  line-height: 1;
}

.navbar-nav .nav-link {
  position: relative;
  color: #fff !important;
  font-size: 12px;
  font-weight: 400 !important;
  text-decoration: none !important;
  padding: 0;
  background: none;
  border: none;
  line-height: 1;
  transition: transform .18s ease;
}

.navbar-nav .nav-link:hover {
  transform: scale(1.08);
  color: #fff !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, #ED2328 0%, #ff4d4d 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

/* navlink underline red */

.navbar-nav .nav-link.active::after, .navbar-nav .nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  opacity: 1;
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(0.7);
  opacity: 0.5;
}

/* optional: make active text a bit bolder (still white) */

/* prices nav */

.prices-nav .prices-link {
  position: relative;
  color: #000 !important;
  font-size: 12px;
  font-weight: 400 !important;
  text-decoration: none !important;
  padding: 0;
  background: none;
  border: none;
  line-height: 1;
  transition: transform .18s ease;
}

.prices-nav .prices-link:hover {
  transform: scale(1.08);
  color: #000 !important;
}

.prices-nav .prices-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #e43b3b;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
  width: 45px !important;
}

.prices-nav .career-link::after {
  width: 56px !important;
}

.prices-nav .prices-link.active::after, .prices-nav .prices-link[aria-current="page"]::after {
  transform: scaleX(1);
  opacity: 1;
}

/* optional: active text bolder */

/* HERO TEXT */

.hero-title-container {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 5;
  text-align: center;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-section {
    min-height: 340px;
  }
}

@media (max-width: 900px) {
  .navbar-container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 600px) {
  .navbar-brand img {
    height: 21px;
  }
}

@media (max-width: 600px) {
  .navbar-brand {
    padding: 1px 8px 2px 5px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 0.97rem;
  }
}

@media (max-width: 600px) {
  .navbar-nav {
    gap: 7px;
  }
}

/* Clients Section */

.client-logos {
  background: #fff;
  padding: 36px 0 27px 0;
}

.client-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-logos-row img {
  display: block;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.90;
}

@media (max-width: 600px) {
  .client-logos-row img {
    height: 26px;
  }
}

/* map */

.about-section {
  background: #fff;
  padding: 42px 0 32px 70px;
}

.about-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.about-info {
  flex: 1.15;
  min-width: 230px;
  margin-top: 20px;
}

.about-info h2 {
  font-size: 26px;
  font-weight: 900;
  color: #1c1c1c;
  margin-bottom: 16px;
  text-align: left;
}

@media (max-width: 762px) {
  .about-info h2 {
    font-size: 16px;
  }
}

.about-info p {
  font-family: 'Inter', 'BPG Glaho', Arial, sans-serif;
  font-size: 14px;
  text-transform: capitalize;
  color: #444;
  line-height: 1.5;
  text-align: left;
  margin: 0;
  max-width: 390px;
}

.about-map {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-map img {
  max-width: 570px;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .about-info, .about-map {
    text-align: center;
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .about-info p, .about-info h2 {
    text-align: center;
    margin-left: auto;
    margin-right: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 900px) {
  .about-map img {
    max-width: 410px;
    margin-right: 65px;
    padding-right: 10px;
  }
}

/* service cards */

.services-section {
  background: #fff;
  padding: 54px 0 44px 0;
}

.services-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1c1c1c;
  text-align: left;
  margin-bottom: 36px;
  margin-left: 95px;
  letter-spacing: 0.01em;
}

@media (min-width: 792px) {
  .services-title {
    text-align: left;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  max-width: 100% !important;
}

.service-card {
  background: #f5f5f5;
  padding: 34px 20px 28px 20px;
  max-width: 100%;
  text-align: center;
  transition: box-shadow 0.22s;
}

.service-card:hover {
  background-color: #ffffff;
  transition: 0.9s;
}

.service-card img {
  height: 55px !important;
  width: auto;
  margin-bottom: 20px;
  margin-right: 300px;
}

.service-card h3 {
  font-size: 14px;
  color: #222;
  margin: 0 0 10px 0;
  text-align: left;
}

.service-card p {
  font-family: 'Inter', 'BPG Glaho', Arial, sans-serif;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 100 !important;
  color: #413d3d;
  margin: 0;
  line-height: 1.55;
  text-align: left;
}

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .services-title {
    font-size: 1.2rem;
  }
}

/* Solutions */

.solutions-section {
  background: #fff;
  padding: 54px 0 12px 0;
  z-index: 1;
}

.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  background: #fff;
  gap: 0;
}

.solutions-title {
  text-align: left;
  font-size: 1.6rem;
  margin-left: 95px;
}

@media (max-width: 762px) {
  .solutions-title {
    text-align: center;
    font-size: 16px;
  }
}

.solutions-desc {
  text-align: left;
  font-size: small;
  margin-left: 95px;
  line-height: initial;
  margin-bottom: 50px;
  text-transform: capitalize;
}

@media (max-width: 762px) {
  .solutions-desc {
    font-size: 11px;
    padding-left: 10px;
  }
}

.solution-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 5px;
  padding-top: 20px;
  background: #FAFAFA;
  font-family: 'Inter', 'BPG Glaho', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #222;
  text-align: center;
  transition: background 0.13s;
  position: relative;
  box-sizing: border-box;
}

.solution-card img {
  margin-bottom: 2px;
  height: 43px;
  width: auto;
}

.solution-card span {
  display: block;
}

.solution-card:empty {
  background: #f8f8f8;
}

.solutions-footnote {
  color: #292929;
  font-size: 13px !important;
  text-align: left;
  margin-top: 16px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-style: initial;
  font-family: 'Inter', 'BPG Glaho', Arial, sans-serif;
}

@media (max-width: 1100px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .solution-card {
    min-height: 85px;
    font-size: 0.88rem;
  }
}

/* text */

@media (max-width: 762px) {
  .solutions-footnote {
    font-size: 10px !important;
  }
}

/* The red asterisk/star at start */

/* footer */

.footer {
  background: #262626;
  color: #fff;
  font-family: 'Inter', 'BPG Glaho', Arial, sans-serif;
  font-weight: 200;
}

.footer a {
  color: #fff;
  opacity: 0.9;
  transition: color 0.16s, opacity 0.16s;
  text-decoration: none;
}

.footer a:hover {
  color: #1CB6FF;
  opacity: 1;
}

.footer .fw-bold {
  font-weight: 700;
}

/* hero-section-new */

.hero-section {
  min-height: 80%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* companylogos */

/* viewport clip */

.logo-marquee-outer {
  width: 100%;
  overflow: hidden;
  background: transparent;
  height: 98px;
  position: relative;
}

/* moving track */

.logo-marquee-inner {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
  animation: logos-marquee 45s linear infinite;
}

/* pause animation on hover */

.logo-marquee-outer:hover .logo-marquee-inner {
  animation-play-state: paused;
}

.logo-marquee-inner img {
  height: 78px;
  width: auto;
  flex: 0 0 auto;
  display: block;
  margin: 0;
}

/* loop */

@keyframes logos-marquee {
  from {
    transform: translate3d(0,0,0);
  }
  to {
    transform: translate3d(-50%,0,0);
  }
}

/* Mobile */

@media (max-width:600px) {
  .logo-marquee-outer {
    height: 100px;
  }
}

@media (max-width:600px) {
  .logo-marquee-inner img {
    height: 55px;
  }
}

@media (max-width:600px) {
  .logo-marquee-inner {
    animation-duration: 30s;
  }
}

/* solutions-hover */

.solution-card {
  position: relative;
  background: #f8f8f8;
  transition: background 0.2s;
  cursor: pointer;
  overflow: hidden;
  gap: 20px;
}

.solution-card .solution-icon, .solution-card .solution-title {
  transition: opacity 0.15s;
}

@media (min-width: 762px) {
  .solution-hover-text {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222;
    font-weight: 400 !important;
    font-size: 12px;
    padding-top: 40px;
    text-align: center;
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background: #fff;
    transition: opacity 0.1s;
    z-index: 3;
    text-transform: capitalize;
  }
}

@media (max-width: 762px) {
  .solution-active-text {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222;
    font-weight: 400 !important;
    font-size: 12px;
    padding-top: 40px;
    text-align: center;
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background: #fff;
    transition: opacity 0.1s;
    z-index: 3;
    text-transform: capitalize;
  }
}

@media (min-width: 576px) {
  .solution-card:hover, .solution-card:focus-within {
    background: #fff;
  }
}

@media (min-width: 576px) {
  .solution-card:hover .solution-icon, .solution-card:hover .solution-title {
    opacity: 0;
  }
}

@media (min-width: 576px) {
  .solution-card:hover .solution-hover-text, .solution-card:focus-within .solution-hover-text {
    opacity: 1;
    pointer-events: all;
  }
}

@media (max-width: 576px) {
  .solution-card:focus, .solution-card:focus-within {
    background: #fff;
  }
}

@media (max-width: 576px) {
  .solution-card:focus .solution-icon, .solution-card:focus.solution-title, .solution-card:focus-within .solution-icon, .solution-card:focus.solution-title {
    opacity: 0;
  }
}

@media (max-width: 576px) {
  .solution-card:focus .solution-active-text, .solution-card:focus-within .solution-active-text {
    opacity: 1;
    pointer-events: auto;
  }
}

.solutions-grid {
}

/* make the overlay position correctly */

.solution-card {
  position: relative;
}

@media (max-width: 762px) {
  .solution-card.is-open {
    background: #fff;
  }
}

@media (max-width: 762px) {
  .solution-card.is-open .solution-icon, .solution-card.is-open .solution-title {
    opacity: 0;
  }
}

@media (max-width: 762px) {
  .solution-card.is-open .solution-active-text {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 762px) {
  .solution-cta .cta-back {
    display: none;
  }
}

@media (max-width: 762px) {
  .solution-card.is-open .solution-cta .cta-more {
    display: none;
  }
}

@media (max-width: 762px) {
  .solution-card.is-open .solution-cta .cta-back {
    display: inline;
  }
}

/* make the CTA clickable even when overlay is open */

.solution-card {
  position: relative;
}

.solution-cta {
  position: relative;
  z-index: 5;
}

.offcanvas.offcanvas-start {
  max-width: 75%;
  background: #f8f8f8;
}

.offcanvas-body {
  padding: 0 !important;
}

.offcanvas .nav-link {
  font-size: 14px;
  text-align: left;
  letter-spacing: .01em;
  color: #222 !important;
  margin-left: 30px;
  padding: 15px 0;
}

.offcanvas .nav-item {
  width: 100%;
}

.offcanvas .nav-link:hover {
  color: #ff2222 !important;
}

.footer {
  display: block;
}

.footer-mobile {
  display: none;
}

@media (max-width: 700px) {
  .footer {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .footer-mobile {
    display: block !important;
    background: #282626;
    color: #f8f8f8;
    text-align: center;
    font-size: 12px;
    padding: 18px 0 18px 0;
    letter-spacing: 0.01em;
    font-family: sans-serif !important;
    text-transform: capitalize;
  }
}

/* pricing */

.pricing {
  background: #f5f5f5;
  margin-top: 30px;
  overflow: visible;
  position: relative;
  z-index: 10;
}

/* titles */

.price-title {
  text-align: center;
  font-weight: 900;
  color: #2a2a2a;
  margin-bottom: 6px;
}

.price-sub {
  text-align: center;
  color: #6a6a6a;
  font-size: 16px;
  margin-bottom: 28px;
}

.price-row {
  position: relative;
  overflow: visible;
}

.price-row.g-0 > [class*="col-"] {
  padding-left: 36px;
  padding-right: 36px;
}

.price-col {
  padding: 26px 36px 80px;
  background: transparent;
}

@media (min-width: 762px) {
  .price-col:hover {
    background-color: #ffffff;
    transition: 0.8s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
  }
}

@media (min-width:768px) {
  .price-col.sep::before {
    top: 0;
    transform: translateY(-10px);
  }
}

@media (min-width:768px) {
  .price-col.sep::after {
    bottom: 0;
    transform: translateY(10px);
  }
}

.price-container {
  max-width: 1160px;
  margin: 0 auto;
}

.price-title {
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  color: #2a2a2a;
  margin: 0 0 8px;
}

.price-sub {
  text-align: center;
  color: #7d7d7d;
  font-size: 16px;
  margin: 0 0 36px;
}

.price-row {
  position: relative;
}

@media (min-width:768px) {
  .price-col:not(:first-child) {
    border-left: 1px solid #e6e6e6;
  }
}

/* red dots */

@media (min-width:768px) {
  .price-col:not(:first-child)::before {
    top: -13px;
  }
}

@media (min-width:768px) {
  .price-col:not(:first-child)::after {
    bottom: -13px;
  }
}

/* plan head */

.plan-head {
  margin: 0 0 14px;
}

.plan-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  border-radius: 10px;
}

.plan-tag--gray {
  background: #e7e7e7;
  color: #3b3b3b;
}

.plan-tag--red {
  background: #e63637;
  color: #fff;
}

.plan-tag--blue {
  background: #284b97;
  color: #fff;
}

/* price line identical to Figma */

.plan-price {
  z-index: 2;
  margin-bottom: 40px;
}

.plan-price .num {
  font-size: 44px;
  font-weight: 1000;
  color: #413d3d;
  letter-spacing: -0.5px;
  font-family: sans-serif;
  padding-left: 25px;
}

.plan-price .currency {
  font-size: 28px;
  font-weight: 900;
  color: #413d3d;
  font-family: sans-serif;
}

.plan-price .period {
  font-size: 12px;
  color: #6f6f6f;
  font-family: 'Inter';
  font-weight: 700;
  display: block;
}

.feature-list {
  list-style: none;
  margin: 5px 0 0;
  padding: 0;
  text-align: left;
}

.feature-list li {
  position: relative;
  font-size: 13px;
  color: #2d2d2d;
  margin: 12px 0;
  padding-left: 30px;
}

.feature-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e63637' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center/contain;
}

.featured {
  position: relative;
}

.featured .side-ribbon {
  position: absolute;
  right: 20px;
  top: 8px;
  background: #e63637;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 25px 10px !important;
  border-radius: 8px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  z-index: 9999;
}

.featured .side-ribbon {
  position: absolute;
  right: 20px;
  top: 8px;
  background: #e63637;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .5px;
  padding: 12px 10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: 9999;
  clip-path: polygon(0 0, 50% 12%, 100% 0, 100% 100%, 0 100%);
}

.plan-footnote {
  margin-top: auto;
  padding-top: 18px;
  color: #413d3d;
  font-size: 12px;
  max-width: 360px;
  margin-top: 28px;
  font-family: 'Inter';
  font-weight: 400;
}

.plan-footnote::before {
  content: "*";
  color: #f80505;
  margin-right: 4px;
}

.plan-footnote .aster {
  color: #e63637;
  margin-right: 6px;
}

.pricing-disclaimer {
  margin-top: 28px;
  color: #413d3d;
  font-size: 14px;
  text-align: left;
}

/* mobile */

@media (max-width:767.98px) {
  .price-row.g-0 > [class*="col-"] {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width:767.98px) {
  .plan-price .num {
    font-size: 44px;
  }
}

@media (max-width:767.98px) {
  .plan-price .currency {
    font-size: 24px;
  }
}

@media (max-width:767.98px) {
  .feature-list li {
    font-size: 12px;
  }
}

@media (max-width:767.98px) {
  .featured .side-ribbon {
    right: -10px;
    top: 6px;
  }
}

@media (max-width:767.98px) {
  .plan-footnote {
    max-width: 100%;
    font-size: 12px !important;
  }
}

.prices-nav {
  display: flex;
  gap: 30px !important;
  align-items: center;
  margin: 0;
  padding: 8px 40px 0 18px !important;
  list-style: none;
}

.prices-nav .prices-link {
  display: inline-block;
  color: #111 !important;
  font-size: 12px;
  font-weight: 400 !important;
  text-decoration: none !important;
  padding: 0;
  background: none;
  border: 0;
  line-height: 1;
  transition: transform .18s ease;
}

@media (min-width:768px) {
  .price-col:not(:first-child) {
    border-left: 0.4px solid #8c8c8c;
    position: relative;
    height: 600px;
  }
}

@media (min-width:768px) {
  .price-col:not(:first-child)::before, .price-col:not(:first-child)::after {
    content: "";
    position: absolute;
    left: -2.8px;
    width: 5px;
    height: 5px;
    background: #e63637;
    border-radius: 50%;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}

@media (min-width:768px) {
  .price-col:not(:first-child)::before {
    top: -13px;
  }
}

@media (min-width:768px) {
  .price-col:not(:first-child)::after {
    bottom: -13px;
  }
}

/* career */

.career {
  background: #fff;
  padding: 56px 0 0;
  margin-bottom: 0;
}

.career-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.career-title {
  text-align: center;
  font-weight: 900;
  font-size: 36px;
  color: #2b2b2b;
  margin-bottom: 26px;
  font-family: 'BPG Nino Mtavruli' !important;
}

.vacancy-list {
  margin-top: 8px;
  text-align: left;
}

.vacancy-row {
  display: grid;
  grid-template-columns: 30px minmax(0,1fr) auto auto 24px;
  align-items: center;
  gap: 4px;
  padding: 18px 0;
  position: relative;
  text-decoration: none;
  padding-left: 150px;
}

.vacancy-row::after {
  content: "";
  position: absolute;
  left: 103px;
  right: 4px;
  top: 90%;
  transform: translateY(-0.5px);
  height: 0.4px;
  background: #b5b5b5;
}

.vacancy-row:last-child::after {
  display: none;
}

.vacancy-row::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 0.25px solid #8c8c8c;
  border-radius: 50%;
  position: relative;
  justify-self: center;
}

.vc-title {
  font-weight: 700;
  font-size: 12px;
  color: #413d3d;
}

.vc-date {
  color: #413d3d;
  font-size: 12px;
  white-space: nowrap;
  margin-right: 18px;
}

.vc-status {
  font-size: 12px;
  white-space: nowrap;
}

.vc-status.ok {
  color: #2ab153;
}

.vc-status.closed {
  color: #ed2328;
}

/* dots */

.vc-bullet, .vc-tail {
  position: absolute;
  top: calc(90% - 2px);
  width: 4px;
  height: 4px;
  background: #e43b3b;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}

.vc-bullet {
  left: 100px;
}

.vc-tail {
  right: 0;
}

.vc-tail::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 1px;
  background: #e6e6e6;
}

.vacancy-row.tail-0 .vc-tail::before {
  display: none;
}

.vacancy-row.tail-24 .vc-tail::before {
  width: 24px;
}

.vacancy-row.tail-60 .vc-tail::before {
  width: 60px;
}

.vacancy-row.tail-90 .vc-tail::before {
  width: 90px;
}

/* (Optional) Small responsive tweak */

@media (max-width:900px) {
  .career-title {
    font-size: 28px;
  }
}

@media (max-width:900px) {
  .vc-title {
    font-size: 18px;
  }
}

@media (max-width:900px) {
  .vc-date, .vc-status {
    font-size: 16px;
  }
}

.vacancy-row:last-child .vc-bullet, .vacancy-row:last-child .vc-tail {
  display: none;
}

/* 5 columns, 3 rows. */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  overflow: visible;
}

/* Cell */

.solution-card {
  position: relative;
  background: #f5f5f5 !important;
  overflow: visible;
  font-size: 18px;
}

@media (min-width: 992px) {
  .solution-card {
    height: 270px !important;
  }
}

@media (max-width: 700px) {
  .solution-card {
    font-size: 13px;
  }
}

@media (min-width: 992px) {
  .solution-hover-text {
    font-size: 14px;
    padding: 80px;
  }
}

@media (max-width: 980px) {
  .solution-hover-text {
    padding: 30px;
  }
}

@media (max-width: 400px) {
  .solution-hover-text {
    padding: 20px;
    font-size: 12px;
  }
}

@media (max-width: 1100px) {
  .solutions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .solution-card {
    min-height: 140px;
    padding: 20px 14px;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .solution-card {
    position: relative;
  }
}

@media (max-width: 700px) {
  .solution-card::before, .solutions-grid::before, .solutions-grid::after, .sol-dot {
  }
}

@media (max-width: 480px) {
  .solution-card {
    min-height: 120px;
    padding: 18px 12px;
  }
}

@media (max-width: 768px) {
  .price-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 0 16px 10px;
  }
}

@media (max-width: 768px) {
  .price-row > [class*="col-"], .price-col {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
    border-left: none !important;
  }
}

@media (max-width: 768px) {
  .price-col {
    padding: 22px 18px 28px;
    padding-bottom: 30px !important;
  }
}

@media (max-width: 768px) {
  .price-row::-webkit-scrollbar {
    height: 0;
  }
}

@media (max-width: 768px) {
  .price-row {
    scrollbar-width: none;
  }
}

@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .solutions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 700px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 360px) {
  .solutions-grid {
  }
}

.solution-card {
  position: relative;
  border: 1px solid #E3E3E3;
  background: #FAFAFA;
  overflow: visible;
}

.solution-card::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ed2328;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
}

@media (max-width: 700px) {
  .solutions-grid .solution-card:nth-child(n + 3):not(:nth-child(2n + 1))::before {
    display: block;
  }
}

@media (max-width: 700px) {
  .solution-card {
    min-height: 140px;
    padding: 30px 24px;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .solution-card img {
    height: 40px;
  }
}

/* override mobile */

.hero-section {
  min-height: 80vh;
  width: 100%;
}

.hero-title-container {
  width: 100%;
}

.logo-marquee-outer {
  width: 100%;
}

.service-card img {
  height: 42px;
  width: auto;
  margin: 0 0 28px 0;
  max-width: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .price-row.g-0 > [class*="col-"] {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 992px) {
  .partners1-mobile {
    display: none;
  }
}

@media (max-width: 990px) {
  .partners1-mobile {
    font-size: 16px;
    padding: 15px;
  }
}

@media (max-width: 990px) {
  .about-info-p {
    width: 370px;
    font-size: 12px !important;
    padding: 10px;
  }
}

.solution-card {
  position: relative;
}

.solution-card::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e43b3b;
  transform: translate(-50%,-50%);
  /*box-shadow: 0 0 0 3px #fff;*/
  top: 0;
  left: 0;
  display: none;
}

@media (min-width:900px) {
  .solutions-grid .solution-card:nth-child(n + 5):not(:nth-child(4n + 1))::before {
    display: block;
  }
}

@media (min-width:700px) and (max-width:899px) {
  .solutions-grid .solution-card:nth-child(n + 4):not(:nth-child(3n + 1))::before {
    display: block;
  }
}

@media (max-width:699px) {
  .solutions-grid .solution-card:nth-child(n + 3):nth-child(2n)::before {
    display: block;
  }
}

/* button */

.solution-cta {
  position: absolute;
  right: 14px;
  bottom: 4px;
  display: none;
  align-items: center;
  gap: 8px;
  font: 600 12px/1 'BPG Nino Mtavruli', system-ui, -apple-system, 'Inter', sans-serif;
  color: #a6a6a6;
  background: transparent;
  border: 0;
  padding: 8px 10px;
  cursor: pointer;
  user-select: none;
}

.solution-cta::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #e43b3b;
  border-bottom: 2px solid #e43b3b;
  transform: rotate(-45deg);
  display: inline-block;
}

@media (max-width:700px) {
  .solution-cta {
    display: inline-flex;
  }
}

.solution-card.is-open .solution-hover-text {
  opacity: 1;
  pointer-events: auto;
}

.solution-card.is-open .solution-cta {
  color: #e43b3b;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 280px;
  padding: 38px;
  box-sizing: border-box;
  transition: transform .2s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, box-shadow .22s ease;
}

.service-card:hover::before, .service-card:focus-within::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
}

/* Services Width */

.full-bleed {
  /*width: 100vw;*/
  /*margin-left: calc(50% - 50vw);*/
  /*margin-right: calc(50% - 50vw);*/
}

.solution-card {
  border: 0;
}

/* add top border to rows 2+ */

@media (min-width:900px) {
  .solution-card:not(:nth-child(-n + 4)) {
    border-top: 0.4px solid #8c8c8c;
  }
}

@media (min-width:900px) {
  .solution-card:not(:nth-child(4n + 1)) {
    border-left: 0.4px solid #8c8c8c;
  }
}

@media (min-width:700px) and (max-width:899px) {
  .solution-card:not(:nth-child(-n + 3)) {
    border-top: 0.4px solid #8c8c8c;
  }
}

@media (min-width:700px) and (max-width:899px) {
  .solution-card:not(:nth-child(3n + 1)) {
    border-left: 0.4px solid #8c8c8c;
  }
}

@media (max-width:699px) {
  .solution-card:not(:nth-child(-n + 2)) {
    border-top: 0.4px solid #8c8c8c;
  }
}

@media (max-width:699px) {
  .solution-card:not(:nth-child(2n + 1)) {
    border-left: 0.4px solid #8c8c8c;
  }
}

@media (max-width: 792px) {
  .service-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-auto-rows: min-content;
    column-gap: 20px;
    row-gap: 6px;
    align-items: start;
    text-align: left;
    height: 140px;
    padding: 30px;
  }
}

@media (max-width: 792px) {
  .service-card img {
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 42px !important;
    width: auto;
    margin: 0;
  }
}

@media (max-width: 792px) {
  .service-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 4px 0;
    font-size: 11px;
  }
}

@media (max-width: 792px) {
  .service-card p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    line-height: 1.45;
    font-size: 10px;
  }
}

/* Add dividers between mobile menu items */

.offcanvas .nav-link {
  border-bottom: 1px solid #d9d9d9;
  padding: 14px 0;
  margin: 0 20px;
}

/* Remove line after the last link */

.offcanvas .nav-item:last-child .nav-link {
  border-bottom: none;
}

.mobile-menu-footer {
  font-family: sans-serif;
  text-transform: capitalize;
}

.navbar-toggler {
  border: none !important;
  padding: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 26px;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: none;
}

.navbar-toggler-icon::before, .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background-color: #fff;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.prices-toggl {
  display: inline-block;
  width: 26px;
  height: 2px;
  background-color: #d70a0a !important;
  position: relative;
  transition: none;
}

.prices-toggl::before, .prices-toggl::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background-color: #e71414 !important;
}

@media (max-width: 762px) {
  .price-navigation {
    background-color: #f5f5f5 !important;
  }
}

@media (max-width: 762px) {
  .prices-nav {
    background-color: #f5f5f5 !important;
  }
}

@media (max-width: 762px) {
  .price-collapse {
    background-color: #f5f5f5 !important;
  }
}

@media (max-width: 762px) {
  .price-col {
    margin-right: 20px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 762px) {
  .career .vacancy-list {
    padding: 0 20px;
  }
}

@media (max-width: 762px) {
  .career .vacancy-row {
    position: relative;
    display: grid;
    grid-template-columns: 26px 1fr 34px;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 6px;
    align-items: center;
    padding: 16px 38px 16px 16px;
    border-bottom: 1px solid #ececec;
    text-decoration: none;
    color: #222;
  }
}

@media (max-width: 762px) {
  .career .vc-bullet {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 18px;
    height: 18px;
    border: 2px solid #D3D3D3;
    border-radius: 50%;
    background: transparent !important;
    margin: 0;
    align-self: center;
    justify-self: center;
  }
}

@media (max-width: 762px) {
  .career .vc-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    margin: 0;
  }
}

@media (max-width: 762px) {
  .career .vc-date {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    padding: 0 !important;
    font-size: 14px;
    color: #7b7b7b;
  }
}

@media (max-width: 762px) {
  .career .vc-status {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
    width: 28px;
    height: 28px;
    text-indent: -9999px;
    overflow: hidden;
    position: relative;
    padding: 0 !important;
    white-space: nowrap;
  }
}

@media (max-width: 762px) {
  .career .vc-status.ok::after {
    content: "";
    position: absolute;
    inset: 0;
    background: center / 22px 22px no-repeat url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\ <path fill='none' stroke='%232AB153' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M4 12l6 6 10-12'/>\</svg>");
  }
}

@media (max-width: 762px) {
  .career .vc-status.closed::after {
    content: "";
    position: absolute;
    inset: 0;
    background: center / 22px 22px no-repeat url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\ <path fill='none' stroke='%23E53935' stroke-width='3' stroke-linecap='round' d='M5 5l14 14M19 5L5 19'/>\</svg>");
  }
}

@media (max-width: 762px) {
  .career .vc-tail {
    position: absolute;
    right: 12px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E53935;
    transform: translateY(-50%);
    pointer-events: none;
    left: auto !important;
  }
}

@media (max-width: 762px) {
  .career .vacancy-row::before, .career .vacancy-row::after {
    display: none !important;
  }
}

@media (min-width: 760px) {
  .price-title {
    font-family: 'BPG Nino Mtavruli' !important;
  }
}

@media (min-width: 760px) {
  .heading1 {
    font-family: 'BPG Nino Mtavruli' !important;
  }
}

/* new */

@media (max-width: 760px) {
  logo-marquee-inner {
  }
}

@media (max-width: 760px) {
  .logo-marquee-outer {
  }
}

.price-row {
  scrollbar-width: none;
}

.cta-more {
  font-weight: 300 !important;
  font-size: 10px;
  padding-top: 3px;
}

@media (max-width: 768px) {
  .price-col::before, .price-col::after {
    content: none !important;
  }
}

@media (max-width: 768px) {
  .plan-footnote::after {
    content: none !important;
    display: none !important;
  }
}

@media (max-width: 768px) {
  .price-row > [class*="col-"], .price-col {
    background: inherit !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding-bottom: 30px !important;
  }
}

@media (max-width: 768px) {
  .price-pager {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 8px 0 6px;
  }
}

@media (max-width: 768px) {
  .price-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0.3px solid #ed2328 !important;
    background: transparent;
    padding: 4px;
    outline: none;
  }
}

.price-dot.active {
  background: #ed2328;
  border-color: #ed2328;
}

@media (min-width: 760px) {
  .price-dot {
    display: none;
  }
}

@media (max-width: 768px) {
  .pricing .price-col {
    position: relative;
    padding-left: 48px !important;
    padding-right: 28px !important;
    padding-bottom: 16px !important;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  .pricing .price-col::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    top: 32px;
    bottom: 12px;
    left: 25px;
    width: 6px !important;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle, #ed2328 3px, transparent 3px) top center / 6px 6px no-repeat, linear-gradient(#d9d9d9, #d9d9d9) center / 1px 100% no-repeat, radial-gradient(circle, #ed2328 3px, transparent 8px) bottom center / 6px 6px no-repeat;
  }
}

@media (max-width: 768px) {
  .pricing .price-col::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    top: 32px;
    bottom: 12px;
    right: -5px;
    width: 6px;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(circle, #ed2328 3px, transparent 3px) top center / 6px 6px no-repeat, linear-gradient(#d9d9d9, #d9d9d9) center / 1px 100% no-repeat, radial-gradient(circle, #ed2328 3px, transparent 3px) bottom center / 6px 6px no-repeat;
  }
}

@media (max-width: 768px) {
  .pricing .price-pager {
    position: relative;
    top: -10px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 760px) {
  .side-ribbon {
    margin-right: 30px;
  }
}

@media (max-width: 768px) {
  .pricing .price-col::before, .pricing .price-col::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    bottom: 12px;
    width: 6px !important;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle, #ed2328 3px, transparent 3px) top center / 6px 6px no-repeat, linear-gradient(#d9d9d9, #d9d9d9) center calc(3px) / 1px calc(100% - 9px) no-repeat, radial-gradient(circle, #ed2328 3px, transparent 3px) bottom center / 6px 6px no-repeat;
  }
}

.prices-nav {
  gap: 38px !important;
}

/* contacts */

.contact-section {
  margin: 140px 0 50px !important;
  font-size: initial;
}

.contact-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-title {
  text-align: center;
  font-weight: 900;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 22px;
  color: #1e1e1e;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  background: #f5f5f5;
  border-radius: 14px;
  padding: 28px 28px 18px;
}

.contact-col h3 {
  font-weight: 800;
  font-size: 20px;
  margin: 0 0 10px;
  color: #2a2a2a;
}

.contact-col p {
  margin: 6px 0;
  font-family: Inter, system-ui, -apple-system, "BPG Glaho", sans-serif !important;
  font-size: 14px;
  line-height: 1.55;
  color: #333;
  text-align: left;
}

.contact-map {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.contact-map img {
  width: min(920px, 100%);
  height: auto;
  border-radius: 8px;
  display: block;
}

@media (max-width: 900px) {
  .contact-title {
    font-size: 30px;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }
}

@media (max-width: 900px) {
  .contact-col h3 {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .contact-col p {
    font-size: 13px;
  }
}

.contact-section {
  background: #f5f5f5;
  padding: 60px 0;
}

.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Center the page title */

.contact-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 32px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.contact-col {
  flex: 1 1 280px;
}

.contact-col h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-col p {
  font-size: 14px;
  line-height: 1.6;
  margin: 4px 0;
}

.contact-map {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.contact-map img {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
}

@media (max-width: 762px) {
  .career .vacancy-row {
    position: relative !important;
    display: block !important;
    padding: 18px 56px 18px 0 !important;
    border: 0 !important;
  }
}

@media (max-width: 762px) {
  .career .vacancy-row::after {
    content: "" !important;
    pointer-events: none !important;
  }
}

@media (max-width: 762px) {
  .career .vc-bullet {
    display: block !important;
    position: absolute !important;
    left: 60px !important;
    top: 16% !important;
    width: 16px !important;
    height: 16px !important;
    border: 0.4px solid #262626 !important;
    border-radius: 50% !important;
    background: #fff !important;
    z-index: 2 !important;
  }
}

@media (max-width: 762px) {
  .career .vc-tail {
    display: none !important;
  }
}

@media (max-width: 762px) {
  .career .vc-title {
    display: block !important;
    margin: 0 64px 6px 74px !important;
    font-size: 14px !important;
    line-height: 15px !important;
    font-weight: 400 !important;
  }
}

@media (max-width: 762px) {
  .career .vc-date {
    display: block !important;
    margin: 0 64px 0 74px !important;
    font-size: 9px !important;
    color: #8c8c8c !important;
  }
}

@media (max-width: 762px) {
  .career .vc-status {
    position: absolute !important;
    top: 35% !important;
    transform: translateY(-50%) !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    z-index: 3 !important;
  }
}

@media (max-width: 762px) {
  .career .vacancy-row {
    position: relative !important;
    padding: 10px 13px !important;
  }
}

@media (max-width: 762px) {
  .career .vacancy-row::after {
    content: "" !important;
    position: absolute;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    height: 6px;
    pointer-events: none;
    background: radial-gradient(circle, #E53935 3px, transparent 3.1px) left center / 6px 6px no-repeat, linear-gradient(#8c8c8c, #8c8c8c) center / 100% 0.4px no-repeat, radial-gradient(circle, #E53935 3px, transparent 3.1px) right center / 6px 6px no-repeat;
    z-index: 1;
  }
}

/* 1111111111 */

@media (max-width: 762px) {
  .career .vacancy-row::after {
    content: "" !important;
    display: block !important;
  }
}

@media (max-width: 762px) {
  .career .vacancy-row:last-child::after {
    display: none !important;
  }
}

@media (max-width: 762px) {
  .career .vacancy-row::before {
    z-index: 2 !important;
    background: #fff !important;
  }
}

@media (max-width: 762px) {
  .career .vc-status {
    position: absolute;
    right: 28px;
    overflow: hidden;
  }
}

@media (max-width: 762px) {
  .career {
    padding-top: 40px !important;
  }
}

.career-title {
  padding-left: 35px !important;
}

@media (max-width: 760px) {
  .contact-nav {
    padding-bottom: 96px !important;
  }
}

@media (max-width: 760px) {
  .pricing {
    margin-top: 90px !important;
  }
}

.vacancy-detail {
  display: none;
  background: #f5f5f5;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 50px;
  width: 100%;
}

.vacancy-detail.active {
  display: block;
}

#vacancy-back {
  background: none;
  border: none;
  font-size: 16px;
  color: #e43b3b;
  cursor: pointer;
  margin-bottom: 16px;
}

.hidden {
  display: none !important;
}

.vacancy-detail {
  display: none;
}

.vacancy-detail.active {
  display: block;
}

.vacancy-detail .job-title {
  font-weight: 800;
  font-size: 26px;
  margin: 8px 0 14px;
}

.vacancy-detail p, .vacancy-detail ul {
  text-align: left;
  font-family: Inter, system-ui, -apple-system, "BPG Glaho", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  margin: 6px 0;
}

.vacancy-detail ul {
  padding-left: 18px;
}

/* MAP hover new! */

.about-map {
  display: flex;
  justify-content: center;
}

.geo-map {
  position: relative;
  width: min(645px,100%);
}

.geo-map .map-img {
  display: block;
  width: 100%;
  height: auto;
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%,-50%);
  width: 27px;
  height: 27px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.map-pin img {
  width: 100%;
  height: 100%;
  display: block;
}

.map-pin img:hover {
  transform: scale(1.2);
  transition: ease 0.3s;
}

.map-pin::before {
  /*content: attr(data-title) " — " attr(data-text);*/
  content: attr(data-title);
  position: absolute;
  left: 50%;
  transform: translate(-50%, 6px);
  bottom: 46px;
  background: #222;
  color: #fff;
  font: 500 12px/1.45 'Inter','BPG Glaho',sans-serif;
  padding: 10px 12px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #222;
  opacity: 0;
  transition: opacity .16s ease;
}

.map-pin:hover::before, .map-pin:hover::after, .map-pin.open::before, .map-pin.open::after {
  opacity: 1;
  transform: translate(-50%,0);
}

@media (max-width:600px) {
  .map-pin {
    width: 34px;
    height: 34px;
  }
}

@media (max-width:600px) {
  .map-pin::before {
    font-size: 11px;
  }
}

/* scroll */

@media (max-width: 600px) {
  :root {
    --menu-left: 30px;
    --logo-nudge: 0px;
  }
}

@media (max-width: 600px) {
  .navbar .container-fluid, #mobileMenu .offcanvas-header {
    padding-left: var(--menu-left) !important;
    padding-right: var(--menu-left) !important;
  }
}

@media (max-width: 600px) {
  .navbar .navbar-brand, .navbar .navbar-brand img.site-logo {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}

@media (max-width: 600px) {
  .navbar .navbar-brand img.site-logo {
    position: relative;
    left: var(--logo-nudge);
  }
}

.footer .container {
  padding-left: var(--bs-gutter-x, 0.75rem) !important;
  padding-right: var(--bs-gutter-x, 0.75rem) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Bootstrap container max-width mirrors */

@media (min-width: 576px) {
  .footer .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .footer .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .footer .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .footer .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .footer .container {
    max-width: 1320px;
  }
}

/* Keep the clean two-column layout inside those rails */

@media (min-width: 992px) {
  .footer .row {
    display: grid !important;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0;
  }
}

@media (min-width: 992px) {
  .footer .row > .col {
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (min-width: 992px) {
  .footer .row > .col:first-child, .footer .row > .col:first-child h1, .footer .row > .col:first-child p {
    text-align: left !important;
    margin-left: 0 !important;
  }
}

@media (min-width: 992px) {
  .footer .row > .col:last-child {
    text-align: right !important;
    white-space: nowrap;
  }
}

@media (min-width: 992px) {
  .footer .row > .col:last-child a {
    display: inline-block;
    margin-left: 16px;
    vertical-align: middle;
    transition: transform .2s ease;
  }
}

@media (min-width: 992px) {
  .footer .row > .col:last-child a:hover {
    transform: translateY(-2px);
  }
}

.career {
  --vc-icon-size: 16px;
}

.career .vacancy-row::before {
  content: "";
  display: inline-block;
  width: var(--vc-icon-size);
  height: var(--vc-icon-size);
  background-image: url("../../assets/img/search1.svg?h=43f12f6c48e5a195a3e17e5df1f304fc");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 0 !important;
  border-radius: 0 !important;
  justify-self: center;
  z-index: 1;
}

@media (max-width: 762px) {
  .career .vc-bullet {
    content: "";
    display: inline-block;
    width: var(--vc-icon-size);
    height: var(--vc-icon-size);
    background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'>\ <circle cx='12.5' cy='12.5' r='9.5' fill='none' stroke='%238E8E8E' stroke-width='2.6'/>\ <line x1='18.5' y1='18.5' x2='26' y2='26' stroke='%238E8E8E' stroke-width='2.6' stroke-linecap='round'/>\</svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 0 !important;
    border-radius: 0 !important;
    left: 60px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

@media (max-width: 600px) {
  :root {
    --header-logo-nudge: -10px;
    --drawer-logo-nudge: -10px;
    --drawer-side-padding: 22px;
  }
}

@media (max-width: 600px) {
  .navbar .navbar-brand img, .navbar .navbar-brand img.site-logo {
    position: relative;
    left: var(--header-logo-nudge) !important;
    padding-left: 0 !important;
    max-height: 36px;
    width: auto;
  }
}

@media (max-width: 600px) {
  #mobileMenu .offcanvas-header {
    padding-left: var(--drawer-side-padding) !important;
    padding-right: var(--drawer-side-padding) !important;
  }
}

/* MOBILE MENU logo */

@media (max-width: 600px) {
  #mobileMenu .offcanvas-header .navbar-brand img, #mobileMenu .offcanvas-header img.site-logo {
    position: relative;
    left: var(--drawer-logo-nudge) !important;
    margin-left: 0 !important;
    max-height: 36px;
    width: auto;
  }
}

@media (max-width: 762px) {
  :root {
    --career-icon-url: url("../../assets/img/search1.svg?h=43f12f6c48e5a195a3e17e5df1f304fc");
    --career-icon-size: 20px;
    --career-icon-left: 60px;
  }
}

@media (max-width: 762px) {
  .career .vacancy-row {
    position: relative !important;
  }
}

@media (max-width: 762px) {
  .career .vc-bullet {
    position: absolute !important;
    left: var(--career-icon-left) !important;
    top: 30% !important;
    transform: translateY(-50%) !important;
    width: var(--career-icon-size) !important;
    height: var(--career-icon-size) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    background-image: var(--career-icon-url) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    z-index: 3 !important;
  }
}

.geo-map {
  position: relative;
}

.map-pin {
  z-index: 1;
}

.map-pin img {
  position: relative;
  z-index: 1;
}

.map-pin::after {
  z-index: 2;
}

.map-pin::before {
  z-index: 2;
}

.map-pin:hover, .map-pin.open {
  z-index: 999;
}

@media (max-width: 600px) {
  .map-pin {
    width: 28px !important;
    height: 28px !important;
  }
}

@media (max-width: 600px) {
  .map-pin img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 600px) {
  .map-pin::before {
    bottom: 38px;
  }
}

@media (max-width: 600px) {
  .map-pin::after {
    bottom: 28px;
  }
}

.contact-section {
  background: #f5f5f5 !important;
  padding: 28px 0 36px !important;
}

.contact-section .contact-title {
  margin: 0 0 24px !important;
  text-align: center !important;
  font-weight: 900 !important;
  font-size: 26px !important;
  line-height: 1.1 !important;
  color: #222 !important;
}

.contact-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  column-gap: 160px !important;
  row-gap: 0 !important;
  justify-content: center !important;
  align-items: start !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  text-align: left !important;
}

.contact-grid .contact-col h3 {
  margin: 0 0 8px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #222 !important;
}

.contact-grid .contact-col p {
  margin: 2px 0 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  color: #333 !important;
  font-family: Inter, system-ui, -apple-system, "BPG Glaho", sans-serif !important;
}

.contact-map {
  grid-column: 1 / -1 !important;
  display: flex !important;
  justify-content: center !important;
  margin-top: 38px !important;
}

.contact-map img {
  width: 680px !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 6px;
  display: block !important;
}

.contact-grid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--gap);
}

.contact-col {
  flex: 0 0 calc((var(--rail) - var(--gap)) / 2);
  width: auto !important;
  max-width: none !important;
}

.contact-map {
  flex: 0 0 100%;
  order: 3;
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.contact-map img {
  width: 100%;
  max-width: var(--rail);
  height: auto;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .contact-col {
    flex: 0 0 100%;
  }
}

@media (max-width: 1024px) {
  .contact-map img {
    max-width: var(--rail);
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 18px 0 28px !important;
  }
}

@media (max-width: 600px) {
  .contact-wrap {
    max-width: 100% !important;
    padding: 0 18px !important;
  }
}

@media (max-width: 600px) {
  .contact-title {
    text-align: center !important;
    font-size: 28px !important;
    line-height: 1.15 !important;
    margin: 10px 0 18px !important;
    text-transform: none !important;
  }
}

@media (max-width: 600px) {
  .contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 24px !important;
    row-gap: 8px !important;
    align-items: start !important;
  }
}

@media (max-width: 600px) {
  .contact-grid .contact-col, .contact-grid .contact-col * {
    text-transform: none !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 600px) {
  .contact-grid .contact-col h3 {
    font-size: 16px !important;
    font-weight: 800 !important;
    margin: 0 0 6px !important;
    color: #222 !important;
  }
}

@media (max-width: 460px) {
  .contact-grid .contact-col h3 {
    font-size: 14px !important;
    font-weight: 800 !important;
    margin: 0 0 6px !important;
    color: #222 !important;
  }
}

@media (max-width: 600px) {
  .contact-grid .contact-col p {
    font-size: 14px !important;
    line-height: 1.38 !important;
    margin: 4px 0 !important;
    color: #333 !important;
  }
}

@media (max-width: 600px) {
  .contact-map {
    grid-column: 1 / -1 !important;
    margin-top: 12px !important;
  }
}

@media (max-width: 600px) {
  .contact-map img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 4px !important;
  }
}

@media (max-width: 460px) {
  .contact-grid {
    column-gap: 16px !important;
  }
}

@media (max-width: 460px) {
  .contact-grid .contact-col p {
    font-size: 12px !important;
  }
}

html, body {
  /*height: 100%;*/
}

body {
  display: flex;
  flex-direction: column;
}

.hero-section {
  flex: 1 0 auto;
}

.footer {
  margin-top: auto;
  height: auto !important;
  padding: 24px 0;
}

.contact-page .footer-mobile {
  display: none !important;
}

@media (max-width: 991.98px) {
  .price-navigation .navbar-toggler {
    margin-top: 15px;
  }
}

@media (max-width: 460px) {
  .price-navigation .navbar-brand img.site-logo {
    position: relative !important;
    margin-top: 19px !important;
  }
}

@media (max-width: 460px) {
  [id^="mobileMenu"] .offcanvas-header .navbar-brand img.site-logo, [id^="mobileMenu"] .offcanvas-header img.site-logo {
    margin-top: 19px !important;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 24px 0 20px 20px;
  }
}

@media (max-width: 600px) {
  .about-map img {
    display: block !important;
    padding: 0 !important;
    max-width: 520px !important;
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 600px) {
  .map-pin {
    width: 22px !important;
    height: 40px !important;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
  }
}

.navbar-nav .contact-link::after, .prices-nav .contact-link::after {
  width: 63px !important;
  left: 1px !important;
}

/* same typography for <p> and <a> in contact columns */

.contact-grid .contact-col p, .contact-grid .contact-col a {
  display: block;
  margin: 4px 0;
  font-family: Inter, system-ui, -apple-system, "BPG Glaho", sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #333;
  text-align: left;
  text-decoration: none;
}

/* mobile tweaks to match your p rules */

@media (max-width: 600px) {
  .contact-grid .contact-col p, .contact-grid .contact-col a {
    font-size: 12px;
    line-height: 1.5;
  }
}

@media (max-width: 460px) {
  .contact-grid .contact-col p, .contact-grid .contact-col a {
    font-size: 12px;
  }
}

/* contact (left column): phone / mail / pin on links */

.contact-grid .contact-col:first-child a {
  display: block;
  position: relative;
  padding-left: 1.4em;
  text-decoration: none;
  color: inherit;
}

.contact-grid .contact-col:first-child a::before {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.5;
}

.contact-grid .contact-col:first-child a:nth-of-type(1)::before {
  content: "📞";
}

.contact-grid .contact-col:first-child a:nth-of-type(2)::before {
  content: "✉️";
}

.contact-grid .contact-col:first-child a:nth-of-type(3)::before {
  content: "📍";
}

/* correction */

/* === Footer hardening (tablet-safe across all pages) === */

/* 1) Neutralize inline widths/margins coming from HTML */

.footer > .container {
  width: 100% !important;
  max-width: min(1320px, 100%) !important;
}

.footer .row > .col {
  margin: 0 !important;
  padding: 0 !important;
}

/* 2) Keep desktop footer layout on tablets too (≥701px) */

@media (min-width:701px) {
  .footer .row {
    display: grid !important;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0;
  }
}

@media (min-width:701px) {
  .footer .row > .col:first-child, .footer .row > .col:first-child h1, .footer .row > .col:first-child p {
    text-align: left !important;
    margin-left: 0 !important;
  }
}

@media (min-width:701px) {
  .footer .row > .col:last-child {
    text-align: right !important;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

@media (min-width:701px) {
  .footer .row > .col:last-child a {
    display: inline-block;
    margin-left: 0 !important;
  }
}

/* 3) Under 700px you already swap to the compact footer */

@media (max-width:700px) {
  .footer {
    display: none !important;
  }
}

@media (max-width:700px) {
  .footer-mobile {
    display: block !important;
  }
}

/* 4) Page-specific spacing fixes: avoid odd gaps above the footer */

.career {
  padding-bottom: 0 !important;
}

/* overrides the inline 200px */

.contact-section {
  margin-bottom: 0 !important;
}

/* keeps footer snug */

/* === STICKY FOOTER & NO BLANK SPACE BELOW === */

html, body {
  min-height: 100svh;
}

body {
  display: flex !important;
  flex-direction: column;
}

.footer, .footer-mobile {
  margin-top: auto !important;
  height: auto !important;
}

/* One footer at a time (desktop vs mobile) */

@media (min-width:701px) {
  .footer {
    display: block !important;
  }
}

@media (min-width:701px) {
  .footer-mobile {
    display: none !important;
  }
}

@media (max-width:700px) {
  .footer {
    display: none !important;
  }
}

@media (max-width:700px) {
  .footer-mobile {
    display: block !important;
  }
}

/* Section padding so there's space ABOVE the footer, not after it */

.career {
  padding-bottom: clamp(24px, 6vh, 120px) !important;
}

.contact-section {
  padding-bottom: clamp(24px, 6vh, 120px) !important;
}

/* Undo any earlier rule that switched body to block on mobile */

@media (max-width:700px) {
  body {
    display: flex !important;
  }
}

/* Only pages with a hero image should have a tall hero */

.hero-section:has(.bg-cover) {
  min-height: 80vh !important;
}

.hero-section:not(:has(.bg-cover)) {
  min-height: auto !important;
}

html {
}

/* === Services: remove awkward gaps on tablet widths === */

/* sensible spacing for all sizes */

.services-grid {
  /*gap: 28px 40px !important;*/
}

/* kill the icon push + let cards size to content */

.service-card img {
  margin-right: 0 !important;
}

/* tablet / in-between: 601–1199px */

@media (min-width:601px) and (max-width:1199px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  }
}

@media (min-width:601px) and (max-width:1199px) {
  .service-card {
    height: auto !important;
    min-height: 190px !important;
    padding: 28px 24px !important;
  }
}

@media (min-width:601px) and (max-width:1199px) {
  .service-card img {
    height: 44px !important;
    margin: 0 0 12px 0 !important;
  }
}

/* large desktop: let content define height (keeps it tidy as well) */

@media (min-width:1200px) {
  .service-card {
    height: auto !important;
    min-height: 230px !important;
  }
}

/* CAREER — tablet fix: rails, no overlaps, keep full-length lines */

@media (min-width:763px) and (max-width:1200px) {
  .career-wrap {
    max-width: 1040px;
    margin-inline: auto;
  }
}

@media (min-width:763px) and (max-width:1200px) {
  .career .vacancy-list {
    max-width: 1000px;
    margin-inline: auto;
    padding-inline: clamp(24px,6vw,56px);
  }
}

@media (min-width:763px) and (max-width:1200px) {
  .career .vacancy-row {
    margin-right: 0 !important;
    padding-right: clamp(24px,6vw,56px) !important;
    grid-template-columns: 30px minmax(260px,1fr) minmax(160px,max-content) minmax(120px,max-content) 24px;
    align-items: center;
    column-gap: clamp(10px,2vw,24px);
    overflow: visible !important;
  }
}

/* grey line stays full inside the rails */

@media (min-width:763px) and (max-width:1200px) {
  .career .vacancy-row::after {
    left: 103px !important;
    right: clamp(24px,6vw,56px) !important;
  }
}

/* right red dot sits inside the same rail */

@media (min-width:763px) and (max-width:1200px) {
  .career .vc-tail {
    right: calc(clamp(24px,6vw,56px) - 4px) !important;
  }
}

/* title never wraps into the date – truncate instead */

@media (min-width:763px) and (max-width:1200px) {
  .career .vc-title {
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* override inline paddings so date/status don’t push off-grid */

@media (min-width:763px) and (max-width:1200px) {
  .career .vc-date {
    padding-right: 0 !important;
    justify-self: end;
    white-space: nowrap;
  }
}

@media (min-width:763px) and (max-width:1200px) {
  .career .vc-status {
    padding-right: 0 !important;
    margin-right: clamp(24px,6vw,56px);
    justify-self: end;
    white-space: nowrap;
    text-align: right;
  }
}

/* ===== CAREER — tablet (final, 762–901px) ===== */

@media (min-width: 762px) and (max-width: 901px) {
  .career-wrap {
    max-width: 1100px;
    margin-inline: auto;
  }
}

@media (min-width: 762px) and (max-width: 901px) {
  .career .vacancy-list {
    padding-inline: clamp(28px, 6vw, 64px);
  }
}

/* rails + spacing */

@media (min-width: 762px) and (max-width: 901px) {
  .career .vacancy-row {
    grid-template-columns: 30px minmax(260px, 1fr) minmax(190px, max-content) minmax(210px, max-content) 24px !important;
    column-gap: clamp(14px, 3vw, 36px) !important;
    padding-right: clamp(28px, 6vw, 64px) !important;
    overflow: visible !important;
  }
}

/* text safe — no overlap, can wrap if needed */

@media (min-width: 762px) and (max-width: 901px) {
  .career .vc-title {
    font-size: 15px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
}

@media (min-width: 762px) and (max-width: 901px) {
  .career .vc-date {
    font-size: 14px !important;
    white-space: nowrap !important;
  }
}

@media (min-width: 762px) and (max-width: 901px) {
  .career .vc-status {
    font-size: 14px !important;
    white-space: normal !important;
    word-break: break-word !important;
    text-align: right !important;
    margin-right: clamp(28px, 6vw, 64px) !important;
  }
}

/* keep grey line & right red dot inside the same rail */

@media (min-width: 762px) and (max-width: 901px) {
  .career .vacancy-row::after {
    left: 103px !important;
    right: clamp(28px, 6vw, 64px) !important;
  }
}

@media (min-width: 762px) and (max-width: 901px) {
  .career .vc-tail {
    right: calc(clamp(28px, 6vw, 64px) - 4px) !important;
  }
}

/* avoid weird spacing from global letter-spacing */

@media (min-width: 762px) and (max-width: 901px) {
  .career .vc-title, .career .vc-date, .career .vc-status {
    letter-spacing: 0 !important;
  }
}

/* --- Career tablet nudge LEFT (762–901px) --- */

/* remove extra rail padding on the list */

@media (min-width: 762px) and (max-width: 901px) {
  .career .vacancy-list {
    padding-inline: 0 !important;
  }
}

/* shift rows left + keep a small right rail */

@media (min-width: 762px) and (max-width: 901px) {
  .career .vacancy-row {
    padding-left: 110px !important;
    padding-right: 24px !important;
    grid-template-columns: 30px minmax(240px,1fr) minmax(160px,max-content) minmax(200px,max-content) 24px !important;
  }
}

/* keep grey line inside the new rails */

@media (min-width: 762px) and (max-width: 901px) {
  .career .vacancy-row::after {
    left: 82px !important;
    right: 24px !important;
  }
}

/* move the left bullet to match the new line start */

@media (min-width: 762px) and (max-width: 901px) {
  .career .vc-bullet {
    left: 80px !important;
  }
}

/* keep the right red dot inside the rail */

@media (min-width: 762px) and (max-width: 901px) {
  .career .vc-tail {
    right: 24px !important;
  }
}

/* safe typography so nothing gets cut */

@media (min-width: 762px) and (max-width: 901px) {
  .career .vc-title {
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
  }
}

@media (min-width: 762px) and (max-width: 901px) {
  .career .vc-date {
    white-space: nowrap !important;
  }
}

@media (min-width: 762px) and (max-width: 901px) {
  .career .vc-status {
    white-space: normal !important;
    word-break: break-word !important;
    text-align: right !important;
    letter-spacing: 0 !important;
  }
}

/* CONTACT — tablet/mid widths only: keep 2 centered columns */

@media (min-width:670px) and (max-width:960px) {
  .contact-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
  }
}

/* force 2 equal columns and center them */

@media (min-width:670px) and (max-width:960px) {
  .contact-grid {
    display: grid !important;
    grid-template-columns: minmax(280px,1fr) minmax(280px,1fr) !important;
    column-gap: 100px;
    row-gap: 0;
    align-items: start;
    justify-content: center;
  }
}

/* neutralize earlier flex rules so sizing doesn’t break */

@media (min-width:670px) and (max-width:960px) {
  .contact-col {
    flex: none !important;
    width: auto !important;
    max-width: 480px !important;
    justify-self: end;
    text-align: left;
  }
}

@media (min-width:670px) and (max-width:960px) {
  .contact-grid .contact-col:nth-child(2) {
    justify-self: start;
    text-align: left;
  }
}

/* map spans under both columns and stays centered */

@media (min-width:670px) and (max-width:960px) {
  .contact-map {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
}

@media (min-width:670px) and (max-width:960px) {
  .contact-map img {
    width: 100%;
    max-width: 920px;
    height: auto;
  }
}

/* CONTACT — keep 2 centered columns on mid widths */

@media (min-width:670px) and (max-width:1100px) {
  .contact-wrap {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 clamp(16px,4vw,32px);
  }
}

/* kill any flex fallback and force a centered 2-col grid */

@media (min-width:670px) and (max-width:1100px) {
  .contact-section .contact-grid {
    display: grid !important;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(300px, 1fr)) !important;
    column-gap: clamp(48px, 8vw, 120px);
    row-gap: 0;
    justify-content: center;
    justify-items: start;
    align-items: start;
  }
}

/* neutralize widths from older flex rules */

@media (min-width:670px) and (max-width:1100px) {
  .contact-section .contact-col {
    flex: none !important;
    width: auto !important;
    max-width: 480px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
  }
}

/* mirror around center line */

@media (min-width:670px) and (max-width:1100px) {
  .contact-section .contact-col:first-child {
    justify-self: end;
  }
}

@media (min-width:670px) and (max-width:1100px) {
  .contact-section .contact-col:nth-child(2) {
    justify-self: start;
  }
}

/* map full row, centered */

@media (min-width:670px) and (max-width:1100px) {
  .contact-section .contact-map {
    grid-column: 1 / -1;
    display: flex !important;
    justify-content: center !important;
    margin-top: clamp(16px,4vw,28px);
  }
}

@media (min-width:670px) and (max-width:1100px) {
  .contact-section .contact-map img {
    width: 100%;
    max-width: min(960px, 100%) !important;
    height: auto !important;
    display: block;
  }
}

/* CONTACT — keep two centered columns between 600–840px */

@media (min-width:600px) and (max-width:840px) {
  .contact-wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 clamp(12px,4vw,24px);
  }
}

@media (min-width:600px) and (max-width:840px) {
  .contact-section .contact-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
    column-gap: clamp(32px,6vw,80px) !important;
    row-gap: 0 !important;
    justify-content: center !important;
    justify-items: start !important;
    align-items: start !important;
  }
}

/* neutralize old flex/width rules */

@media (min-width:600px) and (max-width:840px) {
  .contact-section .contact-col {
    flex: none !important;
    width: auto !important;
    max-width: 460px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
  }
}

/* mirror around centerline */

@media (min-width:600px) and (max-width:840px) {
  .contact-section .contact-col:first-child {
    justify-self: end !important;
  }
}

@media (min-width:600px) and (max-width:840px) {
  .contact-section .contact-col:nth-child(2) {
    justify-self: start !important;
  }
}

/* map spans full row, centered */

@media (min-width:600px) and (max-width:840px) {
  .contact-section .contact-map {
    grid-column: 1 / -1 !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: clamp(12px,3vw,24px) !important;
  }
}

@media (min-width:600px) and (max-width:840px) {
  .contact-section .contact-map img {
    width: 100% !important;
    max-width: min(900px, 100%) !important;
    height: auto !important;
    display: block !important;
  }
}

/* CONTACT — mobile: always 2 columns + each detail one line */

/* keep the two columns and center the block */

@media (max-width: 900px) {
  .contact-section .contact-grid {
    display: grid !important;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr) !important;
    column-gap: clamp(16px, 5vw, 44px);
    row-gap: 6px;
    max-width: 780px;
    margin: 0 auto;
    padding-inline: clamp(10px, 4vw, 24px);
    text-align: left;
  }
}

@media (max-width: 900px) {
  .contact-section .contact-col {
    min-width: 0;
  }
}

/* titles */

@media (max-width: 900px) {
  .contact-section .contact-col h3 {
    white-space: nowrap !important;
    margin-bottom: .4rem;
    font-size: clamp(15px, 2.7vw, 18px);
  }
}

/* every line (phone, email, address lines, days, hours) stays on ONE line */

@media (max-width: 900px) {
  .contact-section .contact-col p, .contact-section .contact-col a {
    display: block !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: unset !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    margin: .25rem 0;
    line-height: 1.45;
    font-size: clamp(12px, 2.4vw, 16px) !important;
  }
}

body.offcanvas-open .career .vc-bullet, body.offcanvas-open .career .vc-tail {
  display: none !important;
}

@media (min-width:700px) and (max-width:1199px) {
  .solutions-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    justify-content: center;
    align-content: center;
    width: 100% !important;
    margin: 0 auto !important;
  }
}

/* === Fix Missing Lines Between Cards (Tablet Only) === */

@media (min-width:700px) and (max-width:1199px) {
  .solutions-grid .solution-card {
    border: 0.5px solid #8c8c8c !important;
    box-sizing: border-box;
  }
}

/* Remove double-thick edges */

@media (min-width:700px) and (max-width:1199px) {
  .solutions-grid .solution-card:nth-child(4n + 1) {
    border-left: none !important;
  }
}

@media (min-width:700px) and (max-width:1199px) {
  .solutions-grid .solution-card:nth-child(-n + 4) {
    border-top: none !important;
  }
}

/* Subpixel compensation to keep perfect joins */

@media (min-width:700px) and (max-width:1199px) {
  .solutions-grid {
    border-collapse: collapse !important;
    gap: 0 !important;
  }
}

/* prices,career,contact */

/* --- UNIVERSAL MOBILE LOGO FIX --- */

/* Applies same logo position across all pages on screens ≤768px */

@media (max-width: 768px) {
  .navbar-brand img, .offcanvas-header .navbar-brand img {
    max-height: 36px !important;
    max-width: 201px !important;
    margin-left: 24px !important;
    margin-top: 4px !important;
    object-fit: contain;
    display: block;
  }
}

/* Fix alignment for mobile menu (offcanvas) logos */

@media (max-width: 768px) {
  .offcanvas-header .navbar-brand img {
    margin-top: 16px !important;
    margin-left: 12px !important;
  }
}

/* Prevent overlapping or weird scaling on very small devices */

@media (max-width: 400px) {
  .navbar-brand img {
    margin-left: 18px !important;
    margin-top: 2px !important;
    max-width: 180px !important;
  }
}

/* 00000 */

/* ==========================================================   Unified layout for TABLET + DESKTOP (mobile stays intact)   Applies from 900px upward; smooth scaling with clamp().   ========================================================== */

/* date “rail” width & gaps scale with viewport */

@media (min-width: 900px) {
  .career .vacancy-list {
    --rail: clamp(180px, 18vw, 320px);
    --g: clamp(18px, 1.8vw, 36px);
  }
}

/* 5-col grid:     [bullet] [title (flex)] [DATE (fixed, centered)] [status (flex)] [tail] */

@media (min-width: 900px) {
  .career .vacancy-row {
    display: grid;
    grid-template-columns: 24px 1fr var(--rail) 1fr 8px;
    align-items: center;
  }
}

/* Title: never ellipsize on desktop/tablet; allow wrapping cleanly */

@media (min-width: 900px) {
  .career .vc-title {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-break: normal;
    line-height: 1.18;
    font-size: clamp(12px, 1.15vw, 12px);
  }
}

@media (min-width: 900px) {
  .career .vc-date {
    grid-column: 3;
    justify-self: center;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0;
    font-size: clamp(12px, 1.0vw, 12px);
  }
}

@media (min-width: 900px) {
  .career .vc-status {
    grid-column: 4;
    justify-self: end;
    text-align: right;
    white-space: nowrap;
    font-size: clamp(12px, 1.0vw, 12px);
  }
}

.career-wrap {
  --bullet: 24px;
  --tail: 8px;
  --bias: 55px;
}

@media (min-width: 900px) {
  .career-wrap .career-title {
    text-align: center;
    /*transform: translateX(calc((var(--bullet) - var(--tail)) / 2 + var(--bias)));*/
    will-change: transform;
  }
}

@media (max-width: 899.98px) {
  .career-wrap .career-title {
    transform: none;
  }
}

.career .vc-bullet, .career .vc-tail, .career .vacancy-row::after {
  z-index: 1 !important;
}

@media (min-width: 992px) {
  .navbar.navbar-dark .navbar-nav .nav-link {
    position: relative;
    display: inline-block;
    z-index: 0;
  }
}

@media (min-width: 992px) {
  .navbar.navbar-dark .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    inset: -12px -18px;
  }
}

@media (min-width: 992px) {
  .navbar.navbar-dark .navbar-nav .nav-link::after {
    z-index: 1;
  }
}

.price-navigation {
  --nav-underline: #E34B3A;
}

/* Desktop / tablet only */

@media (min-width: 992px) {
  .price-navigation .prices-link {
    position: relative;
    display: inline-block;
    line-height: 1;
    --hit-x: 18px;
    --hit-y: 12px;
  }
}

@media (min-width: 992px) {
  .price-navigation .prices-link::before {
    content: "";
    position: absolute;
    inset: calc(-1 * var(--hit-y)) calc(-1 * var(--hit-x));
    z-index: 0;
  }
}

@media (min-width: 992px) {
  .price-navigation .prices-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    background: var(--nav-underline, #E34B3A);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .25s ease;
    z-index: 1;
  }
}

@media (min-width: 992px) {
  .price-navigation .prices-link:hover::after, .price-navigation .prices-link:focus-visible::after, .price-navigation .prices-link.active::after, .price-navigation .prices-link[aria-current="page"]::after {
    transform: scaleX(1);
  }
}

@media (min-width: 992px) {
  .price-navigation .prices-link:focus-visible {
    outline: none;
    text-decoration: none;
  }
}

/* featured-list */

@media (min-width: 600px) and (max-width: 770px) {
  .price-col .feature-list li:last-child {
    max-width: 50ch;
  }
}

@media (min-width: 450px) and (max-width: 599.98px) {
  .price-col .feature-list li:last-child {
    max-width: 45ch;
  }
}

@media (min-width: 450px) and (max-width: 770px) {
  .price-col .feature-list {
    width: fit-content;
    max-width: 45ch;
    margin: 0 auto;
  }
}

@media (min-width: 450px) and (max-width: 770px) {
  .price-col .feature-list li {
    text-align: left;
    padding-left: 46px;
  }
}

@media (min-width: 576px) and (max-width: 900px) {
  .about-section .about-info {
    padding-left: 0 !important;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (min-width: 576px) and (max-width: 900px) {
  .about-section .about-info-p {
    width: 90vw;
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.about-info {
}

/* Prevent overlay with minimal changes */

.about-flex {
  display: flex;
}

.about-info {
  position: relative;
  z-index: 1;
  margin-top: 0!important;
}

/* Solutions grid text – tidy for mid tablet/desktop widths */

/* Tablet range: make the text tile wider so it uses fewer lines */

/* (Optional) tiny padding trim so the content gets a bit more width */

@media (min-width: 820px) and (max-width: 1220px) {
  .solutions-grid .solution-card {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* The text inside the text-only card(s) */

@media (min-width: 820px) and (max-width: 1220px) {
  .solutions-grid .solution-card .solution-active-text {
    width: 100%;
    max-width: 42ch;
    margin: 0 auto;
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.5;
    text-align: center;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .solutions-grid .solution-card .solution-hover-text {
    margin: 0 auto;
    line-height: 1.35;
    font-size: clamp(14px, 0.95vw, 16px);
    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    padding-inline: 8px;
  }
}

/* Desktop/tablet only */

/* optional: one place to tweak the gutter */

@media (min-width: 900px) {
  .career .vacancy-list {
    --railPad: clamp(12px, 1vw, 24px);
  }
}

@media (min-width: 900px) {
  .career .vc-date {
    justify-self: start;
    text-align: left !important;
    padding-left: var(--railPad);
  }
}

/* ========== CLEAN FOOTER STYLES (LIGHT) ========== */

/* ========== NEW FOOTER DESIGN ========== */
.site-footer {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #0f1525 100%);
  color: #fff;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(237, 35, 40, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 35, 40, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.footer-top {
  position: relative;
  z-index: 1;
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  text-align: left !important;
}

/* Brand Column */
.footer-brand-col {
  padding-right: 20px;
  text-align: center;
}

.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0 0 24px;
  font-family: 'Inter', sans-serif;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #ED2328;
  border-color: #ED2328;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(237, 35, 40, 0.3);
}

/* Links Columns */
.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  font-family: 'BPG Nino Mtavruli', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links-col h4::after,
.footer-contact-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #ED2328;
  border-radius: 2px;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col li {
  margin-bottom: 12px;
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 0;
}

.footer-links-col a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #ED2328;
  transition: width 0.3s ease;
}

.footer-links-col a:hover {
  color: #fff;
  padding-left: 8px;
}

.footer-links-col a:hover::before {
  width: 20px;
}

/* Contact Column */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-contact-item i {
  width: 36px;
  height: 36px;
  background: rgba(237, 35, 40, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ED2328;
  font-size: 14px;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: #ED2328;
}

/* Bottom Bar */
.site-footer .footer-bottom {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Inter', sans-serif;
}

.footer-helpdesk-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.footer-helpdesk-link:hover {
  background: #ED2328;
  border-color: #ED2328;
  color: #fff;
}

.footer-helpdesk-link i {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 30px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: 400px;
    padding-right: 0;
  }

  .footer-contact-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 50px 0 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    text-align: center;
    max-width: 100%;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links-col h4::after,
  .footer-contact-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links-col,
  .footer-contact-col {
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-contact-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Override old footer styles */
.footer, .footer-mobile, .footer-desktop {
  display: none !important;
}

/* Legacy footer classes - hide */
.footer-main, .footer-brand, .footer-tagline,
.footer-contact-info, .footer-nav, .footer-col,
.footer-address {
  display: none !important;
}

/* Language Switcher - Pill Toggle */
.lang-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 3px;
  gap: 1px;
}

.lang-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  line-height: 1;
  user-select: none;
}

.lang-pill-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.lang-pill-btn.active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  pointer-events: none;
}

/* White nav (inner pages) */
.price-navigation .lang-pill {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.price-navigation .lang-pill-btn {
  color: rgba(0, 0, 0, 0.35);
}

.price-navigation .lang-pill-btn:hover {
  color: rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.04);
}

.price-navigation .lang-pill-btn.active {
  background: rgba(0, 0, 0, 0.07);
  color: #1a1a2e;
}

