*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* {
    -webkit-tap-highlight-color: transparent;
}
body { font-family: 'Poppins', sans-serif; }
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.nav-logo {
  position: relative;
  z-index: 1;
}
.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 100;
  background: transparent;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hero-nav.nav-hidden {
  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
}
.hero-nav.nav-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 200;
  background: #0d0d0d;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}
.sticky-nav.nav-visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-nav.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
}
.nav-capsule {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #111111;
  border-radius: 50px;
  height: 60px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.nav-item a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 20px;
  height: 60px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .nav-item:not(.active) a:hover {
    color: #1a56db;
  }
}
.nav-item.active a {
  color: #1a56db;
}
.active-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #1a56db;
  flex-shrink: 0;
}
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 300;
  padding: 0;
  margin-left: auto;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sticky-nav .hamburger-btn span {
  background: #ffffff;
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #111111;
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.mobile-menu-overlay.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 260;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.mobile-nav-links .nav-item a {
  font-size: 20px;
  padding: 14px 24px;
  height: auto;
  justify-content: center;
}
@media (max-width: 991px) {
  .nav-capsule {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .nav-container {
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .nav-logo-img {
    height: 56px;
  }
}
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('/assets/images/index_desktop.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% center;
    overflow: hidden;
}
@media (max-width: 767px) {
  .hero-section {
    background-image: url('/assets/images/index_mobile.webp');
    background-position: center center;
  }
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.breadcrumbs {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumbs .separator {
    color: #ff9800;
    margin: 0 10px;
    font-size: 1.2rem;
    vertical-align: middle;
}
.breadcrumbs .active-page {
    color: #ff9800;
}
.about-bg {
    position: relative;
    height: 75vh;
    min-height: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('/assets/images/about_desktop.webp');
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center bottom;
    overflow: hidden;
    transition: background-position 0.2s ease-out;
}
.about-bg .about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}
.about-bg .about-content {
    position: relative;
    z-index: 2;
}
.about-bg h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 15px;
}
.about-bg .about-breadcrumbs {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
}
.about-bg .about-breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
}
.about-bg .about-breadcrumbs .dot {
    color: #1a56db;
    margin: 0 10px;
    font-size: 1.2rem;
    vertical-align: middle;
}
.about-bg .about-breadcrumbs .active-page {
    color: #ffffff;
}
.page-services .about-bg { background-image: url('/assets/images/services_desktop.webp'); background-size: auto 100%; background-position: center bottom; }
.page-products .about-bg { background-image: url('/assets/images/product_desktop.webp'); background-size: auto 100%; background-position: center bottom; }
.page-contact .about-bg { background-image: url('/assets/images/contact_desktop.webp'); background-size: auto 100%; background-position: center bottom; }
@media (max-width: 767px) {
  .about-bg { min-height: 350px; background-size: cover; background-image: url('/assets/images/about_mobile.webp'); }
  .about-bg .about-overlay { background: rgba(0, 0, 0, 0.25); }
  .about-bg h1 { font-size: 3.75rem; letter-spacing: 1px; word-break: break-word; }
  .about-bg .about-breadcrumbs { font-size: 0.85rem; }
  .page-services .about-bg { background-size: cover; background-image: url('/assets/images/services_mobile.webp'); }
  .page-products .about-bg { background-size: cover; background-image: url('/assets/images/product_mobile.webp'); }
  .page-contact .about-bg { background-size: cover; background-image: url('/assets/images/contact_mobile.webp'); }
}
@media (max-width: 480px) {
  .about-bg { min-height: 320px; background-size: cover; background-image: url('/assets/images/about_mobile.webp'); }
  .page-services .about-bg { background-size: cover; background-image: url('/assets/images/services_mobile.webp'); }
  .page-products .about-bg { background-size: cover; background-image: url('/assets/images/product_mobile.webp'); }
  .page-contact .about-bg { background-size: cover; background-image: url('/assets/images/contact_mobile.webp'); }
  .about-bg h1 { font-size: 2.7rem; }
  .about-bg .about-breadcrumbs { font-size: 0.75rem; }
}
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  text-align: left;
}
.hero-subtext {
  font-size: 14px;
  color: #F5F7FA;
  line-height: 1.8;
  max-width: 420px;
  text-align: justify;
}
.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  background: #1a56db;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: 50px;
  width: fit-content;
  transition: color 0.35s ease, transform 0.2s ease;
}
.hero-cta::before,
.hero-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transition: transform 0.35s ease;
}
.hero-cta::before {
  clip-path: polygon(0% 0%, 55% 0%, 45% 100%, 0% 100%);
  transform: translateX(-100%);
}
.hero-cta::after {
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 45% 100%);
  transform: translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .hero-cta:hover {
    color: #1a56db;
    transform: translateY(-2px);
  }
  .hero-cta:hover::before,
  .hero-cta:hover::after {
    transform: translateX(0);
  }
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-cta--outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
.hero-cta--outline::before,
.hero-cta--outline::after {
  background: rgba(255, 255, 255, 0.12);
}
@media (hover: hover) and (pointer: fine) {
  .hero-cta--outline:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
  }
}
@media (max-width: 600px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}
.hero-person-img {
  position: relative;
  z-index: 2;
  width: 120%;
  max-width: 720px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  margin-left: -40px;
}
.hero-scroll-dot {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #1a56db;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding: 140px 40px 80px;
    text-align: center;
  }
  .hero-right {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-headline {
    font-size: 42px;
  }
  .hero-container {
    padding: 130px 24px 60px;
  }
}
.site-footer {
  position: relative;
  background: #111417;
  overflow: hidden;
  padding: 90px 0 0;
}
.footer-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.footer-blob-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(26,86,219,0.06) 0%, transparent 70%);
  right: -180px;
  top: -200px;
}
.footer-blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,86,219,0.04) 0%, transparent 70%);
  left: 100px;
  bottom: 80px;
}
.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
.footer-newsletter-row {
  margin-bottom: 80px;
}
.footer-newsletter {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 7px 7px 7px 32px;
  transition: border-color 0.3s ease;
}
.footer-newsletter:focus-within {
  border-color: rgba(26,86,219,0.5);
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}
.newsletter-input::placeholder {
  color: #555555;
}
.newsletter-btn {
  background: #1a56db;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .newsletter-btn:hover {
    background: #1446b8;
    transform: translateY(-1px);
  }
}
.footer-columns {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1.4fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  margin-bottom: 22px;
  text-align: center;
}
.footer-logo-img {
  height: 120px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.footer-brand-desc {
  color: #666666;
  font-size: 13.5px;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 300px;
  text-align: justify;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #aaaaaa;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .social-icon:hover {
    background: #1a56db;
    color: #ffffff;
    border-color: #1a56db;
  }
}
.footer-col-heading {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 14px;
}
.footer-col-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #1a56db;
  border-radius: 2px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a {
  color: #666666;
  text-decoration: none;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, gap 0.3s ease;
}
.footer-links a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1a56db;
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-links a:hover {
    color: #1a56db;
    gap: 12px;
  }
  .footer-links a:hover::before {
    opacity: 1;
  }
}
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  color: #1a56db;
  flex-shrink: 0;
  margin-top: 2px;
  width: 15px;
}
.contact-info-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-link {
  color: #666666;
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.6;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact-link:hover {
    color: #1a56db;
  }
}
.contact-info-text {
  color: #666666;
  font-size: 13.5px;
  line-height: 1.75;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact-link:hover .contact-info-text {
    color: #1a56db;
  }
}
.footer-bottom {
  text-align: center;
  padding: 28px 0 36px;
}
.footer-divider {
  display: none;
}
.footer-copyright {
  color: #444444;
  font-size: 13px;
}
.footer-brand-name {
  color: #1a56db;
  font-weight: 500;
}
@media (max-width: 767px) {
  .footer-copyright{text-align:center;}
  .footer-brand-name{display:block;}
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .site-footer { padding-top: 50px; }
  .footer-container { padding: 0 24px; }
  .footer-columns { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand-desc { max-width: 100%; }
  .footer-col-heading { font-size: 14px; }
  .footer-newsletter-row { margin-bottom: 40px; }
  .footer-newsletter { flex-direction: column; padding: 16px 16px; border-radius: 16px; gap: 12px; }
  .newsletter-btn { width: 100%; text-align: center; padding: 14px; }
  .footer-socials { gap: 8px; flex-wrap: wrap; }
}
.services-heading-section {
  position: relative;
  background: #ffffff;
  padding: 120px 0 0 0;
  overflow: hidden;
}
.services-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.services-circle-decor {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(26,86,219,0.15);
  pointer-events: none;
}
.services-badge {
  opacity: 0;
  transform: translateY(-20px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  height: 42px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 28px;
}
.badge-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a56db;
  flex-shrink: 0;
}
.services-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 64px;
  color: #111111;
  line-height: 1.15;
  letter-spacing: -1.5px;
  max-width: 900px;
  margin-bottom: 20px;
}
.services-subtitle {
  font-size: 18px;
  font-weight: 450;
  color: #666666;
  max-width: 700px;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .services-heading {
    font-size: 48px;
  }
  .services-circle-decor {
    width: 240px;
    height: 240px;
    left: -60px;
  }
}
@media (max-width: 767px) {
  .services-heading-section {
    padding: 60px 0;
  }
  .services-container {
    padding: 0 24px;
  }
  .services-heading {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .services-subtitle {
    font-size: 15px;
  }
  .services-circle-decor {
    width: 160px;
    height: 160px;
    left: -40px;
  }
}
.services-grid-section {
  background: #ffffff;
  padding: 40px 0 120px 0;
}
.services-grid-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  position: relative;
  background: #111417;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 0;
  height: 380px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(90px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    border-color: #1a56db;
    box-shadow: 0 12px 40px rgba(26, 86, 219, 0.08);
  }
  .service-card:hover .card-static-content {
    transform: translateY(-102%);
    opacity: 0;
  }
  .service-card:hover .card-hover-overlay {
    transform: translateY(0);
    transition-delay: 0s;
  }
}
.card-static-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 36px 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.18) 100%);
  transition: transform 0.72s cubic-bezier(0.42, 0, 0.58, 1), opacity 0.72s ease;
  transform: translateY(0);
  opacity: 1;
}
.card-number {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1;
}
.card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.card-teaser {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  text-align: left;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more-hint {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.60);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.card-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(0);
  transition: none;
  z-index: 1;
  filter: brightness(0.60);
}
.card-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  padding: 0;
  display: block;
  transform: translateY(102%);
  transition: transform 0.75s cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0s;
  z-index: 4;
  overflow: hidden;
}
.card-full-desc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  font-size: 13.5px;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
  box-sizing: border-box;
  transform: translateY(-102%);
  opacity: 1;
  z-index: 5;
  transition: transform 0.75s cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0s;
}
@media (max-width: 1100px) {
  .services-grid-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .services-grid-container {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .service-card {
    height: auto;
    min-height: 300px;
    padding: 0;
  }
  .card-full-desc {
    padding: 30px;
  }
  .service-card.mobile-touch-active {
    border-color: #1a56db;
    box-shadow: 0 12px 40px rgba(26, 86, 219, 0.08);
  }
  .service-card.mobile-touch-active .card-static-content {
    transform: translateY(-102%);
    opacity: 0;
  }
  .service-card.mobile-touch-active .card-hover-overlay {
    transform: translateY(0);
    transition-delay: 0s;
  }
}
.clients-section {
  background: #ffffff;
  padding: 60px 80px 120px 80px;
}
.clients-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
}
.client-heading-box {
  background: #ffffff;
  padding: 50px 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.client-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  height: 36px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 500;
  color: #111111;
  opacity: 0;
  transform: translateY(-20px);
}
.client-section-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 48px;
  color: #111111;
  line-height: 1.15;
  letter-spacing: -1.5px;
  width: 100%;
  text-align: center;
}
.client-logo-box {
  background: #ffffff;
  border: none;
  border-right: 1px solid #e5e7eb;
  border-radius: 0;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: background 0.3s ease;
}
.client-logo-box:last-child {
  border-right: none;
}
@keyframes logoHeartbeat {
  0%   { transform: scale(1); }
  24%  { transform: scale(1.1); }
  48%  { transform: scale(0.9); }
  72%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}
@media (hover: hover) and (pointer: fine) {
  .client-logo-box:hover {
    background: #f9fafb;
    box-shadow: none;
    border-color: #e5e7eb;
  }
  .client-logo-box:hover .logo-wrapper {
    animation: logoHeartbeat 2.4s ease-in-out forwards;
  }
}
.logo-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .clients-section {
    padding: 60px 40px 100px 40px;
  }
}
@media (max-width: 767px) {
  .clients-section {
    padding: 40px 24px 60px;
  }
  .client-heading-box {
    padding: 30px 24px;
  }
  .client-section-heading {
      font-size: clamp(15px, 4.3vw, 22px);
      white-space: nowrap;
  }
}
.management-section {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: transparent;
}
.management-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: #111417;
  z-index: 0;
}
.management-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(135deg, #0a1f5c 0%, #1a3a8f 40%, #1a56db 100%);
  z-index: 0;
}
.management-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}
.management-shape-1 {
  position: absolute;
  bottom: 0;
  left: -60px;
  width: 320px;
  height: 280px;
  background: rgba(255, 255, 255, 0.06);
  transform: skewX(-15deg);
  z-index: 1;
  pointer-events: none;
}
.management-shape-2 {
  position: absolute;
  bottom: 0;
  left: 60px;
  width: 200px;
  height: 180px;
  background: rgba(255, 255, 255, 0.04);
  transform: skewX(-15deg);
  z-index: 1;
  pointer-events: none;
}
.management-shape-3 {
  position: absolute;
  bottom: 0;
  right: -40px;
  width: 260px;
  height: 220px;
  background: rgba(255, 255, 255, 0.05);
  transform: skewX(15deg);
  z-index: 1;
  pointer-events: none;
}
.management-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  z-index: 2;
  width: 100%;
}
.management-left-card {
  background: #ffffff;
  border-radius: 30px;
  padding: clamp(42px, 7vh, 80px) clamp(28px, 3vw, 50px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.management-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
  margin-bottom: clamp(10px, 1.5vh, 20px);
}
.management-desc {
  font-size: clamp(12px, 1vw, 15px);
  color: #555555;
  line-height: 1.7;
  margin-bottom: clamp(16px, 2.5vh, 32px);
  text-align: justify;
}
.management-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 16px);
  margin-bottom: clamp(20px, 3vh, 40px);
}
.management-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #111111;
}
.bullet-check {
  color: #1a56db;
  font-weight: 700;
}
.management-footer-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid #eeeeee;
  padding-top: clamp(16px, 2.5vh, 32px);
}
.management-footer-divider {
  width: 1px;
  height: 48px;
  background: #dddddd;
  flex-shrink: 0;
}
.text-sub-year {
  font-size: 12px;
  font-weight: 700;
  color: #666666;
  letter-spacing: 0.5px;
  line-height: 1.6;
  text-align: left;
}
.text-large-year {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 900;
  color: #111111;
  line-height: 1;
  text-align: right;
  flex-shrink: 0;
}
.management-right-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.stat-blue-box {
  background: #1a56db;
  border-radius: 24px;
  padding: clamp(24px, 3.5vh, 44px) clamp(20px, 2.5vw, 40px);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(26, 86, 219, 0.25);
}
.stat-white-box {
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(24px, 3.5vh, 44px) clamp(20px, 2.5vw, 40px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  overflow: hidden;
}
.stat-number {
  font-family: 'Archivo', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
}
.stat-number-dark {
  color: #111111;
}
.stat-arrow {
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
}
.stat-arrow-blue {
  color: #1a56db;
}
.stat-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  text-align: justify;
}
.stat-desc-dark {
  color: #666666;
}
@media (max-width: 991px) {
  .management-section {
    min-height: unset;
    padding: 60px 0;
  }
  .management-container {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
  }
  .management-right-stats {
    flex-direction: column;
    gap: 20px;
  }
  .management-left-card {
    padding: 30px;
  }
  .management-title {
    font-size: 22px;
  }
  .text-large-year {
    font-size: 44px;
  }
  .stat-number {
    font-size: 38px;
  }
  .management-section::before {
    height: 40%;
  }
  .management-section::after {
    height: 60%;
  }
}
@media (max-width: 767px) {
  .management-container {
    padding: 60px 24px 80px;
  }
  .management-right-stats {
    flex-direction: column;
    gap: 20px;
  }
  .management-left-card {
    padding: 30px;
  }
  .management-title {
    font-size: 22px;
  }
  .text-large-year {
    font-size: 44px;
  }
  .stat-number {
    font-size: 38px;
  }
  .management-section::before {
    height: 40%;
  }
  .management-section::after {
    height: 60%;
  }
}
.tech-slider-section {
  background: #ffffff;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.tech-section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  gap: 0;
}
.tech-header-block {
  margin-bottom: clamp(16px, 2vh, 36px);
  text-align: center;
}
.tech-main-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(28px, 3.5vw, 52px);
  color: #111111;
  line-height: 1.15;
  letter-spacing: -1.5px;
  max-width: 900px;
  margin: 0 auto clamp(8px, 1vh, 16px);
}
.tech-subtitle {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 450;
  color: #666666;
  max-width: 700px;
  line-height: 1.6;
  margin: 0 auto;
}
.tile-slider {
  width: 100%;
  overflow: hidden;
  margin-top: clamp(12px, 2vh, 28px);
  border-radius: 16px;
}
.tile-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.tile-slide {
  flex: 0 0 calc((100% - 80px) / 5);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: clamp(320px, 55vh, 520px);
}
.tile-slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.tile-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.tile-hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 16px;
  border: 1.5px solid #1a56db;
  box-sizing: border-box;
  transform: translateX(-102%);
  transition: transform 0.65s cubic-bezier(0.42, 0, 0.58, 1);
  z-index: 2;
}
.tile-hover-text {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  transform: translateX(102%);
  transition: transform 0.65s cubic-bezier(0.42, 0, 0.58, 1);
  z-index: 3;
  box-sizing: border-box;
  overflow: auto;
}
.tile-tech-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin: 0;
  flex-shrink: 0;
}
.tile-tech-desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(10px, 0.85vw, 12px);
  color: #111111;
  line-height: 1.45;
  margin: 0;
  text-align: justify;
}
@media (hover: hover) and (pointer: fine) {
  .tile-slide:hover .tile-hover-bg {
    transform: translateX(0);
  }
  .tile-slide:hover .tile-hover-text {
    transform: translateX(0);
  }
}
.tile-slide.tile-touch-active .tile-hover-bg {
  transform: translateX(0);
}
.tile-slide.tile-touch-active .tile-hover-text {
  transform: translateX(0);
}
.tile-slider-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(10px, 1.5vh, 20px);
}
.tile-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #1a1a1a;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .tile-arrow-btn:hover,
  .tile-arrow-btn:active {
    background: #1a56db;
    border-color: #1a56db;
    color: #ffffff;
  }
}
.tile-arrow-btn:focus {
  outline: none;
}
.tile-arrow-btn:focus-visible {
  outline: none;
}
@media (max-width: 767px) {
  .tech-slider-section {
    height: auto;
    min-height: unset;
    padding: 60px 0 40px;
  }
  .tech-section-container {
    padding: 0 24px;
    height: auto;
  }
  .tech-header-block {
    margin-bottom: 20px;
  }
  .tech-main-heading {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .tech-subtitle {
    font-size: 14px;
  }
  .tile-slide {
    flex: 0 0 100%;
    height: 130vw;
  }
  .tile-slider-track {
    gap: 0;
  }
  .tile-slider {
    width: 100%;
    overflow: hidden;
    margin-top: clamp(12px, 2vh, 28px);
    border-radius: 16px;
  }
  .tile-logo-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
  }
  .tile-hover-text {
    padding: 24px 22px;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .tile-tech-name {
    font-size: 20px;
  }
  .tile-tech-desc {
    font-size: 15px;
    line-height: 1.85;
  }
}
.tech-slide-card {
  flex: 0 0 20%;
  position: relative;
  border-radius: 0;
  border: none;
  height: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px 24px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: flex 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              background-position 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background-size: cover;
  background-position: 90% center;
}
.tech-slide-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #111111;
  opacity: 0.55;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.tech-slide-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.tech-slide-card .tech-icon-placeholder {
  position: absolute !important;
  top: 12px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: calc(100% - 24px) !important;
  height: 62% !important;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(20px) saturate(1.8) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.40),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08) !important;
  z-index: 2 !important;
  display: block !important;
  flex-shrink: unset !important;
  pointer-events: none !important;
}
.tech-slide-card .tech-icon-placeholder::after {
  content: '\2192' !important;
  position: absolute !important;
  top: 12px !important;
  right: 14px !important;
  left: auto !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: #1a56db !important;
  color: #ffffff !important;
  font-size: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.3s ease, color 0.3s ease !important;
}
.tech-icon-placeholder {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a56db;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.tech-icon-img {
  display: none;
}
.tech-icon-placeholder::after {
  content: '\2192';
  font-size: 18px;
  color: #ffffff;
  transition: color 0.3s ease;
}
.tech-tile-icon {
  position: absolute;
  top: 31%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  max-width: 80%;
  max-height: 55%;
  object-fit: contain;
  z-index: 3;
  opacity: 1;
  transition: opacity 0.55s ease, transform 0.55s ease, max-width 0.8s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.tech-tile-icon-solidity    { width: 88%; height: auto; max-width: 345px; top: 31%; z-index: 3; }
.tech-tile-icon-springboot  { width: 88%; height: auto; max-width: 345px; top: 31%; z-index: 3; }
.tech-tile-icon-reactnative { width: 88%; height: auto; max-width: 345px; top: 31%; z-index: 3; }
.tech-tile-icon-java        { width: 88%; height: auto; max-width: 345px; top: 31%; z-index: 3; }
.tech-tile-icon-android     { width: 88%; height: auto; max-width: 345px; top: 31%; z-index: 3; }
.tech-tile-icon-python      { width: 88%; height: auto; max-width: 345px; top: 31%; z-index: 3; }
.tech-tile-icon-php         { width: 88%; height: auto; max-width: 345px; top: 31%; z-index: 3; }
.tech-tile-icon-flutter     { width: 88%; height: auto; max-width: 345px; top: 31%; z-index: 3; }
.tech-tile-icon-embedded    { width: 88%; height: auto; max-width: 345px; top: 31%; z-index: 3; }
.tech-tile-icon-iot         { width: 88%; height: auto; max-width: 345px; top: 31%; z-index: 3; }
.tech-tile-icon-claude      { width: 88%; height: auto; max-width: 386px; top: 31%; z-index: 3; }
.tech-tile-icon-opencode    { width: 68%; height: auto; max-width: 193px; top: 31%; z-index: 3; }
.tech-tile-icon-claudecode  { width: 68%; height: auto; max-width: 193px; top: 31%; z-index: 3; }
.tech-tile-icon-gemini      { width: 95%; height: auto; max-width: 540px; top: 31%; z-index: 3; }
.tech-tile-icon-antigravity { width: 78%; height: auto; max-width: 258px; top: 31%; z-index: 3; }
.tech-tile-icon-copilot     { width: 46%; height: auto; max-width: 97px;  top: 31%; z-index: 3; }
.tech-tile-icon-notebooklm  { width: 78%; height: auto; max-width: 258px; top: 31%; z-index: 3; }
.tech-tile-icon-ros         { width: 78%; height: auto; max-width: 258px; top: 31%; z-index: 3; opacity: 1; }
.tech-tile-icon-vlsi        { width: 84%; height: auto; max-width: 310px; top: 31%; z-index: 3; opacity: 1; }
.tech-tile-icon-fpga        { width: 84%; height: auto; max-width: 310px; top: 31%; z-index: 3; opacity: 1; }
.tech-slide-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: flex-start;
  width: 100%;
}
.tech-slide-content::before {
  content: none;
}
.tech-slide-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  line-height: 1.2;
  transition: writing-mode 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
  white-space: nowrap;
}
.tech-slide-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 380px;
  text-align: justify;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
  display: none;
}
@media (max-width: 1200px) {
  .tech-slide-card {
    flex: 0 0 calc(100% / 3);
  }
  .tech-main-heading { font-size: 48px; }
}
@media (max-width: 767px) {
  .tech-slide-card,
  .service-card {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }
  .tech-section-container { padding: 0 24px; }
  .tech-main-heading { font-size: 32px; }
  .tech-subtitle { font-size: 14px; }
}
.tech-slide-card:has(.tech-tile-icon-flutter) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(84,197,255,0.28) 0%, rgba(84,197,255,0.10) 45%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(84, 197, 255, 0.35) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(84,197,255,0.30), 0 0 70px rgba(84,197,255,0.18) !important;
}
.tech-slide-card:has(.tech-tile-icon-python) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(255,214,0,0.24) 0%, rgba(55,118,171,0.18) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(255, 214, 0, 0.32) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,214,0,0.24), 0 0 70px rgba(55,118,171,0.16) !important;
}
.tech-slide-card:has(.tech-tile-icon-embedded) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(0,200,180,0.26) 0%, rgba(0,200,180,0.10) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(0, 200, 180, 0.32) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(0,200,180,0.26), 0 0 70px rgba(0,200,180,0.16) !important;
}
.tech-slide-card:has(.tech-tile-icon-iot) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(0,188,255,0.28) 0%, rgba(0,188,255,0.10) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(0, 188, 255, 0.32) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(0,188,255,0.26), 0 0 70px rgba(0,188,255,0.16) !important;
}
.tech-slide-card:has(.tech-tile-icon-java) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(240,80,30,0.28) 0%, rgba(240,80,30,0.10) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(240, 80, 30, 0.32) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,120,30,0.26), 0 0 70px rgba(240,80,30,0.16) !important;
}
.tech-slide-card:has(.tech-tile-icon-android) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(60,218,68,0.26) 0%, rgba(60,218,68,0.10) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(60, 218, 68, 0.32) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(60,218,68,0.26), 0 0 70px rgba(60,218,68,0.16) !important;
}
.tech-slide-card:has(.tech-tile-icon-reactnative) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(97,218,251,0.28) 0%, rgba(97,218,251,0.10) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(97, 218, 251, 0.32) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(97,218,251,0.26), 0 0 70px rgba(97,218,251,0.16) !important;
}
.tech-slide-card:has(.tech-tile-icon-php) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(119,123,180,0.32) 0%, rgba(90,80,160,0.16) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(119, 123, 180, 0.35) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(119,123,180,0.28), 0 0 70px rgba(119,123,180,0.18) !important;
}
.tech-slide-card:has(.tech-tile-icon-solidity) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(180,180,210,0.26) 0%, rgba(140,140,180,0.12) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(180, 180, 220, 0.32) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(200,200,220,0.28) !important;
}
.tech-slide-card:has(.tech-tile-icon-springboot) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(109,196,62,0.26) 0%, rgba(109,196,62,0.10) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(109, 196, 62, 0.32) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(109,196,62,0.26), 0 0 70px rgba(109,196,62,0.16) !important;
}
.tech-slide-card:has(.tech-tile-icon-claude) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(212,100,70,0.30) 0%, rgba(180,70,50,0.14) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(212, 100, 70, 0.34) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(212,100,70,0.26), 0 0 70px rgba(212,100,70,0.18) !important;
}
.tech-slide-card:has(.tech-tile-icon-opencode) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0.06) 100%) !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.38) !important;
}
.tech-slide-card:has(.tech-tile-icon-claudecode) .tech-icon-placeholder {
  position: absolute !important;
  top: 12px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: calc(100% - 24px) !important;
  height: 62% !important;
  border-radius: 18px !important;
  background: url('assets/images/claudecode_tile.webp') center/cover no-repeat !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  display: block !important;
  align-items: unset !important;
  justify-content: unset !important;
  flex-shrink: unset !important;
  padding: 0 !important;
  z-index: 2 !important;
}
.tile-preview{
    position:absolute;
    inset:0;
    z-index:6;
    opacity:1;
    visibility:visible;
    pointer-events:none;
    transition:opacity .35s ease, visibility .35s ease;
    overflow:hidden;
    border-radius:inherit;
}
.tile-preview img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    display:block;
}
.tech-slide-card:hover .tile-preview{
    opacity:0;
    visibility:hidden;
}
.tech-slide-card.js-hovered .tile-preview{
    opacity:0;
    visibility:hidden;
}
.tech-slide-card.mobile-expanded .tile-preview{
    opacity:0;
    visibility:hidden;
}
.tech-slide-card:has(.tile-preview) .tech-tile-icon,
.tech-slide-card:has(.tile-preview) .tech-icon-placeholder,
.tech-slide-card:has(.tile-preview) .tech-slide-content,
.tech-slide-card:has(.tile-preview) .tech-slide-title{
    opacity:0 !important;
    visibility:hidden !important;
}
.tech-slide-card:has(.tile-preview):hover .tech-tile-icon,
.tech-slide-card:has(.tile-preview):hover .tech-icon-placeholder,
.tech-slide-card:has(.tile-preview):hover .tech-slide-content,
.tech-slide-card:has(.tile-preview):hover .tech-slide-title{
    opacity:1 !important;
    visibility:visible !important;
}
.tech-slide-card:has(.tile-preview).js-hovered .tech-tile-icon,
.tech-slide-card:has(.tile-preview).js-hovered .tech-icon-placeholder,
.tech-slide-card:has(.tile-preview).js-hovered .tech-slide-content,
.tech-slide-card:has(.tile-preview).js-hovered .tech-slide-title{
    opacity:1 !important;
    visibility:visible !important;
}
.tech-slide-card:has(.tile-preview).mobile-expanded .tech-tile-icon,
.tech-slide-card:has(.tile-preview).mobile-expanded .tech-icon-placeholder,
.tech-slide-card:has(.tile-preview).mobile-expanded .tech-slide-content,
.tech-slide-card:has(.tile-preview).mobile-expanded .tech-slide-title{
    opacity:1 !important;
    visibility:visible !important;
}
.tech-slide-card:has(.tech-tile-icon-gemini) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(138,180,248,0.28) 0%, rgba(180,120,240,0.16) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(138, 180, 248, 0.32) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(138,180,248,0.26), 0 0 70px rgba(180,120,240,0.16) !important;
}
.tech-slide-card:has(.tech-tile-icon-antigravity) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(160,100,255,0.30) 0%, rgba(100,50,200,0.16) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(160, 100, 255, 0.34) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(160,100,255,0.26), 0 0 70px rgba(160,100,255,0.18) !important;
}
.tech-slide-card:has(.tech-tile-icon-copilot) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(0,120,212,0.30) 0%, rgba(0,80,180,0.16) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(0, 120, 212, 0.34) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(0,120,212,0.26), 0 0 70px rgba(0,120,212,0.18) !important;
}
.tech-slide-card:has(.tech-tile-icon-notebooklm) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(255,255,255,0.26) 0%, rgba(60,180,100,0.14) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.36), 0 0 60px rgba(60,180,100,0.14) !important;
}
.tech-slide-card:has(.tech-tile-icon-ros) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(80,120,200,0.28) 0%, rgba(40,80,160,0.14) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(80, 140, 220, 0.32) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(80,140,220,0.26), 0 0 70px rgba(80,120,200,0.16) !important;
}
.tech-slide-card:has(.tech-tile-icon-vlsi) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(26,86,219,0.38) 0%, rgba(60,120,255,0.20) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(60, 120, 255, 0.38) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(60,120,255,0.30), 0 0 80px rgba(26,86,219,0.22) !important;
}
.tech-slide-card:has(.tech-tile-icon-fpga) .tech-icon-placeholder {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(100,80,220,0.34) 0%, rgba(60,100,200,0.18) 50%, rgba(255,255,255,0.08) 100%) !important;
  border-color: rgba(100, 100, 240, 0.36) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(100,100,240,0.28), 0 0 75px rgba(100,80,220,0.20) !important;
}
.cta-dark-section {
  background: #ffffff;
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
}
.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: #1a56db;
  border-radius: 30px;
}
.cta-main-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 48px;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
}
.cta-action-right {
  display: flex;
  align-items: center;
}
.cta-brush-link {
  font-family: 'Caveat', cursive;
  font-size: 48px;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .cta-brush-link:hover {
    opacity: 0.85;
    transform: scale(1.05);
  }
}
.cta-arrow {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .cta-brush-link:hover .cta-arrow {
    transform: translate(5px, -5px);
  }
}
@media (max-width: 991px) {
  .cta-container {
    padding: 0 40px;
    gap: 30px;
  }
  .cta-main-title {
    font-size: 42px;
  }
  .cta-brush-link {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .cta-dark-section {
    padding: 40px 24px;
  }
  .cta-container {
    padding: 50px 30px;
    border-radius: 20px;
  }
  .cta-main-title {
    font-size: 26px;
    text-align: center;
  }
  .cta-brush-link {
    font-size: 32px;
    text-align: center;
  }
}
.about-frame-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 80px;
  background-color: #ffffff;
  overflow: hidden;
}
.about-frame-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 60px;
  align-items: stretch;
}
.about-frame-left {
  display: flex;
  flex-direction: column;
}
.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 12px;
  width: fit-content;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background-color: #1a56db;
  border-radius: 50%;
}
.about-frame-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 32px;
  color: #111111;
  line-height: 1.15;
  letter-spacing: -1.5px;
  max-width: 900px;
  margin-bottom: 16px;
}
.about-frame-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 20px;
  max-width: 720px;
  text-align: justify;
}
.about-split-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: flex-start;
}
.about-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.growth-metric-card {
  background-color: #1a56db;
  border-radius: 18px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 15px;
  align-items: center;
  min-height: 120px;
}
.growth-card-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.3;
  color: #ffffff;
  text-align: justify;
}
.growth-bars-container {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 8px;
  height: 110px;
}
.growth-bar {
  background-color: rgba(255, 255, 255, 0.15);
  width: 32px;
  position: relative;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.growth-bar:nth-child(1) { height: 60%; }
.growth-bar:nth-child(2) { height: 80%; }
.growth-bar:nth-child(3) { height: 100%; background-color: rgba(255, 255, 255, 0.25); }
.growth-bar span {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  transform: rotate(-90deg);
  white-space: nowrap;
}
.satisfaction-badge-card {
  display: flex;
  align-items: center;
  gap: 25px;
  background-color: #161920;
  padding: 18px 24px;
  border-radius: 18px;
  min-height: 85px;
}
.sat-percentage {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #ffffff;
  line-height: 1;
}
.sat-text-side {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #9ca3af;
}
.about-features-column {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  padding-left: 20px;
}
.about-frame-right {
  width: 100%;
  padding-right: 30px;
}
.media-frame-wrapper {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 30px;
  overflow: hidden;
}
.grid-reveal-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  background-image: url('/assets/images/management_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.reveal-tile {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.reveal-tile-cover {
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform-origin: right center;
  transform: scaleX(1);
  will-change: transform;
}
@media (max-width: 1200px) {
  .about-frame-container {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
  }
  .about-frame-title {
    font-size: 40px;
  }
  .about-split-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .about-frame-section {
    padding: 80px 30px;
  }
  .about-frame-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-frame-right {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .about-frame-title {
    font-size: 28px;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    letter-spacing: -0.5px;
  }
  .about-frame-section {
    padding: 60px 20px;
  }
  .growth-metric-card {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }
  .growth-card-text {
    text-align: left;
  }
  .growth-bars-container {
    justify-content: flex-start;
    width: 100%;
  }
  .about-frame-right {
    padding-right: 0;
  }
}
.about-frame-desc,
.team-desc {
  text-align: justify;
  text-justify: inter-word;
}
.principles-section {
  background: #0d0f14;
  padding: 120px 80px;
  overflow: visible;
}
.principles-container {
  max-width: 1200px;
  margin: 0 auto;
}
.principles-header {
  text-align: center;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.principles-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(26, 86, 219, 0.4);
  border-radius: 50px;
  padding: 5px 18px;
  font-size: 11px;
  font-weight: 600;
  color: #1a56db;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.principles-label-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1a56db;
  flex-shrink: 0;
}
.principles-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 48px;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -1.5px;
}
.principles-heading-accent {
  color: #1a56db;
}
.principles-subheading {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.75;
  max-width: 500px;
}
.hex-stage {
  position: relative;
  width: min(560px, 92vw);
  height: min(600px, 100vw);
  margin: 0 auto;
}
.hex-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hex-node {
  position: absolute;
  width: 155px;
  height: 155px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hex-node.is-visible {
  opacity: 1;
}
.node-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(26, 86, 219, 0.3);
  animation: node-spin 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.node-ring-reverse {
  animation-direction: reverse;
}
@keyframes node-spin {
  to { transform: rotate(360deg); }
}
.hex-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #111417;
  border: 1.5px solid #1e2330;
  overflow: hidden;
  transition: border-color 0.35s ease,
              box-shadow 0.35s ease,
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (hover: hover) and (pointer: fine) {
  .hex-node:hover .hex-inner {
    border-color: #1a56db;
    box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.12), 0 16px 40px rgba(26, 86, 219, 0.22);
    transform: scale(1.1);
  }
}
.hex-front {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .hex-node:hover .hex-front {
    opacity: 0;
    transform: scale(0.75);
  }
}
.hex-icon {
  font-size: 20px;
  color: #1a56db;
  line-height: 1;
}
.hex-title {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.35;
}
.hex-back {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 18px;
  text-align: center;
  background: rgba(26, 86, 219, 0.08);
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
@media (hover: hover) and (pointer: fine) {
  .hex-node:hover .hex-back {
    opacity: 1;
    transform: scale(1);
  }
}
.hex-back-title {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #1a56db;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.hex-desc {
  font-size: 9.5px;
  color: #9ca3af;
  line-height: 1.6;
}
.hex-center-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s ease 0.2s;
}
.hex-center-logo.is-visible {
  opacity: 1;
}
.pulse-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(26, 86, 219, 0.25);
  animation: hex-pulse 2.5s ease-out infinite;
  pointer-events: none;
}
.pulse-ring-2 {
  animation-delay: 1.25s;
}
@keyframes hex-pulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}
.hex-center-body {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #111417;
  border: 2px solid #1a56db;
  box-shadow: 0 0 0 8px rgba(26, 86, 219, 0.07), 0 0 40px rgba(26, 86, 219, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hex-logo-img {
  width: 65%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
@media (max-width: 991px) {
  .principles-section {
    padding: 80px 30px;
  }
  .principles-heading {
    font-size: 34px;
  }
  .hex-node {
    width: 118px;
    height: 118px;
  }
  .hex-center-logo {
    width: 130px;
    height: 130px;
  }
  .hex-title  { font-size: 9px; }
  .hex-desc   { font-size: 8.5px; }
}
@media (max-width: 640px) {
  .principles-section {
    padding: 60px 16px;
  }
  .principles-heading {
    font-size: 24px;
    letter-spacing: -0.8px;
  }
  .principles-subheading {
    font-size: 13px;
  }
  .hex-node {
    width: 86px;
    height: 86px;
  }
  .hex-center-logo {
    width: 96px;
    height: 96px;
  }
  .hex-icon   { font-size: 14px; }
  .hex-title  { font-size: 7px; }
  .hex-desc   { font-size: 7px; }
  .hex-back-title { font-size: 7px; }
  .node-ring  { inset: -5px; }
  .pulse-ring { inset: -10px; }
  .hex-connectors { display: none; }
}
#hexLightningCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}
.hex-connectors line {
  transition: stroke 0.1s ease, opacity 0.1s ease;
}
@keyframes hex-vibrate {
  0%   { transform: translate(-50%, -50%) translateX(0px);    }
  10%  { transform: translate(-50%, -50%) translateX(-4px) translateY(2px);  }
  20%  { transform: translate(-50%, -50%) translateX(4px)  translateY(-2px); }
  30%  { transform: translate(-50%, -50%) translateX(-3px) translateY(3px);  }
  40%  { transform: translate(-50%, -50%) translateX(3px)  translateY(-3px); }
  50%  { transform: translate(-50%, -50%) translateX(-2px) translateY(1px);  }
  60%  { transform: translate(-50%, -50%) translateX(2px)  translateY(-1px); }
  70%  { transform: translate(-50%, -50%) translateX(-1px) translateY(2px);  }
  80%  { transform: translate(-50%, -50%) translateX(1px)  translateY(-1px); }
  100% { transform: translate(-50%, -50%) translateX(0px);    }
}
.hex-node.is-vibrating {
  animation: hex-vibrate 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}
@keyframes hex-ring-flash {
  0%   { box-shadow: 0 0 0 0px rgba(96, 165, 250, 0),   0 0 0 0px rgba(26, 86, 219, 0); }
  20%  { box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.7), 0 0 0 12px rgba(26, 86, 219, 0.4); }
  60%  { box-shadow: 0 0 0 10px rgba(96, 165, 250, 0.3), 0 0 0 20px rgba(26, 86, 219, 0.15); }
  100% { box-shadow: 0 0 0 14px rgba(96, 165, 250, 0), 0 0 0 28px rgba(26, 86, 219, 0); }
}
.hex-node.is-vibrating .hex-inner {
  border-color: #60a5fa !important;
  animation: hex-ring-flash 0.5s ease-out forwards;
}
.hex-node.electric-active .hex-front {
  opacity: 0;
  transform: scale(0.75);
}
.hex-node.electric-active .hex-back {
  opacity: 1;
  transform: scale(1);
}
.hex-node.electric-active .hex-inner {
  border-color: #1a56db;
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.12), 0 16px 40px rgba(26, 86, 219, 0.22);
  transform: scale(1.1);
}
.hex-node.mobile-expanded .hex-front {
  opacity: 0;
  transform: scale(0.75);
}
.hex-node.mobile-expanded .hex-back {
  opacity: 1;
  transform: scale(1);
}
.hex-node.mobile-expanded .hex-inner {
  border-color: #1a56db;
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.12), 0 16px 40px rgba(26, 86, 219, 0.22);
}
.team-section {
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 80px;
  overflow: hidden;
}
.team-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.team-image-col {
  position: relative;
}
.team-image-card {
  position: relative;
  background: #eef2ff;
  border-radius: 32px;
  padding: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.team-img-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.team-img-circle-1 {
  width: 280px;
  height: 280px;
  background: rgba(26, 86, 219, 0.06);
  top: -60px;
  left: -60px;
}
.team-img-circle-2 {
  width: 180px;
  height: 180px;
  background: rgba(26, 86, 219, 0.05);
  bottom: -40px;
  right: -30px;
}
.team-img-dots {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(26,86,219,0.25) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  pointer-events: none;
}
.team-illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  object-fit: contain;
}
.team-content-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  width: fit-content;
  margin-bottom: 14px;
}
.team-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a56db;
  flex-shrink: 0;
}
.team-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #111111;
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-heading-blue {
  color: #1a56db;
}
.team-heading-rule {
  width: 48px;
  height: 4px;
  background: #1a56db;
  border-radius: 2px;
  margin-bottom: 16px;
}
.team-desc {
  font-size: 13px;
  color: #555555;
  line-height: 1.65;
  margin-bottom: 24px;
  text-align: justify;
}
.team-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
  margin-bottom: 28px;
}
.team-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.team-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef2ff;
  border: 1px solid #dde5fb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-feature-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 5px;
}
.team-feature-text p {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.65;
}
.team-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a56db;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 8px;
  width: fit-content;
  transition: background 0.3s ease, transform 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .team-cta-btn:hover {
    background: #1446b8;
    transform: translateY(-2px);
  }
}
@media (max-width: 1100px) {
  .team-container {
    gap: 50px;
  }
  .team-heading {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .team-section {
    padding: 80px 40px;
  }
  .team-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .team-image-card {
    max-width: 560px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .team-section {
    padding: 60px 24px;
  }
  .team-heading {
    font-size: 32px;
    letter-spacing: -1px;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }
  .team-features-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .team-cta-btn {
    width: 100%;
    text-align: center;
  }
  .team-image-card {
    min-height: 320px;
    padding: 24px;
  }
}
.approach-section {
  position: relative;
  background: #f5f7ff;
  overflow: hidden;
}
.approach-pin-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 30px;
  position: relative;
  overflow: hidden;
}
.approach-header {
  text-align: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.approach-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #d0d9f5;
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #1a1a2e;
  background: #fff;
  margin-bottom: 14px;
}
.approach-label-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #1a56db;
  display: inline-block;
}
.approach-heading {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 60px);
  color: #0d0d1a;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.approach-heading-blue {
  color: #1a56db;
}
.approach-heading-rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #1a56db, #06b6d4);
  border-radius: 999px;
  margin: 0 auto 14px;
}
.approach-subtext {
  font-size: clamp(14px, 1.4vw, 17px);
  color: #4a4a6a;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}
.approach-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 16px;
}
.chevron-svg {
  width: 26px;
  height: 14px;
  opacity: 0;
  animation: chevronDrop 1.6s ease-in-out infinite;
}
.chev-1 { animation-delay: 0s; }
.chev-2 { animation-delay: 0.22s; }
.chev-3 { animation-delay: 0.44s; }
@keyframes chevronDrop {
  0%   { opacity: 0; transform: translateY(-6px); }
  30%  { opacity: 1; transform: translateY(0); }
  60%  { opacity: 0.5; transform: translateY(5px); }
  100% { opacity: 0; transform: translateY(10px); }
}
.approach-cards-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
  width: 100%;
  max-width: 1300px;
  position: relative;
  z-index: 2;
}
.ap-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 20px 0;
  width: 220px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(26,86,219,0.07), 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
}
.ap-card-center {
  min-height: 275px;
  padding-top: 26px;
}
.ap-card-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #f0f4ff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.ap-icon-center {
  background: #e8fafd;
}
.ap-card-icon {
  width: 26px; height: 26px;
}
.ap-card-number {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a56db;
  margin-bottom: 6px;
  line-height: 1;
}
.ap-num-center { color: #06b6d4; }
.ap-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0d0d1a;
  margin-bottom: 10px;
}
.ap-card-rule {
  width: 36px; height: 2.5px;
  background: #1a56db;
  border-radius: 999px;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.ap-rule-center { background: #06b6d4; }
.ap-card-desc {
  font-size: 13px;
  color: #55556a;
  line-height: 1.65;
  flex: 1;
  text-align: justify;
}
.ap-card-bottom-bar {
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #1a56db, #06b6d4);
  margin-top: 24px;
  border-radius: 0 0 0 0;
  flex-shrink: 0;
}
.approach-slider-track {
  display: contents;
}
.approach-slider-arrows {
  display: none;
}
.approach-arrow-btn {
  display: none;
}
.principles-slider-track {
  display: contents;
}
.principles-slider-arrows {
  display: none;
}
.principles-arrow-btn {
  display: none;
}
@media (max-width: 1100px) {
  .approach-cards-row { gap: 12px; }
  .ap-card { width: 190px; padding: 26px 18px 0; }
}
@media (max-width: 880px) {
  .approach-cards-row {
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
  }
  .ap-card {
    width: calc(45% - 8px);
    min-height: auto;
  }
  .ap-card-center { min-height: auto; }
}
@media (max-width: 767px) {
  .approach-chevrons { display: none; }
  .approach-cards-row {
    overflow: hidden;
    flex-wrap: nowrap;
  }
  .approach-slider-track {
    display: flex;
    gap: 0;
    width: 100%;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .ap-card {
    flex: 0 0 100%;
    width: 100%;
    min-height: auto;
    margin: 0;
  }
  .ap-card-center { min-height: auto; }
  .approach-slider-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 3;
  }
  .approach-arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111111;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .approach-arrow-btn:active {
    background: #1a56db;
    border-color: #1a56db;
    color: #ffffff;
  }
  .approach-arrow-btn:focus {
    outline: none;
  }
  .approach-arrow-btn:disabled {
    opacity: 0.35;
    cursor: default;
}
  .hex-stage {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
  }
  .principles-slider-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
  }
  .hex-node,
  .hex-center-logo {
    flex: 0 0 100%;
    width: 100% !important;
    height: auto !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
  }
  .hex-node .hex-inner {
    position: relative !important;
    inset: auto !important;
    width: 260px !important;
    height: 260px !important;
    border-radius: 50% !important;
    flex-shrink: 0;
  }
  .hex-center-logo .hex-center-body {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .hex-node .node-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    width: auto !important;
    height: auto !important;
  }
  .hex-connectors { display: none; }
  #hexLightningCanvas { display: none !important; }
  .hex-front { padding: 40px; }
  .hex-icon { font-size: 32px; }
  .hex-title { font-size: 15px; }
  .hex-back-title { font-size: 14px; }
  .hex-desc { font-size: 13px; }
  .hex-back { padding: 36px; }
  .hex-center-logo .pulse-ring { inset: -12px; }
  .principles-slider-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
  }
  .principles-arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111111;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .principles-arrow-btn:active {
    background: #1a56db;
    border-color: #1a56db;
    color: #ffffff;
  }
  .principles-arrow-btn:focus {
    outline: none;
  }
}
@media (max-width: 520px) {
  .approach-pin-wrap { padding: 60px 20px 50px; }
  .approach-heading { letter-spacing: -0.5px; }
  .ap-card { width: 100%; }
}
.team-section {
  border-bottom: none;
}
.approach-section {
  border-top: none;
}
.services-heading,
.client-section-heading,
.tech-main-heading,
.about-frame-title,
.principles-heading,
.team-heading,
.approach-heading,
.contact-main-title,
#psIntroBlock .ps-intro-heading {
  word-break: keep-all;
  overflow-wrap: normal;
}
.services-heading .char,
.client-section-heading .char,
.tech-main-heading .char,
.about-frame-title .char,
.principles-heading .char,
.team-heading .char,
.approach-heading .char,
.contact-main-title .char,
#psIntroBlock .ps-intro-heading .char {
  display: inline !important;
  white-space: normal !important;
}
.services-heading .word,
.client-section-heading .word,
.tech-main-heading .word,
.about-frame-title .word,
.principles-heading .word,
.team-heading .word,
.approach-heading .word,
.contact-main-title .word,
#psIntroBlock .ps-intro-heading .word {
  display: inline !important;
  white-space: nowrap !important;
}
.contact-section {
  background: #f5f7ff;
  padding: 80px 0 0;
}
.contact-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-left-header {
  margin-bottom: 36px;
}
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  background: #ffffff;
  margin-bottom: 18px;
  visibility: hidden;
}
.contact-main-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  color: #111111;
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-title-blue {
  color: #1a56db;
}
.contact-intro-text {
  font-size: 14.5px;
  color: #555555;
  line-height: 1.75;
  max-width: 480px;
}
.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  visibility: hidden;
}
.contact-form-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.contact-form-rule {
  width: 32px;
  height: 3px;
  background: #1a56db;
  border-radius: 2px;
  margin-bottom: 28px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cf-field {
  position: relative;
  display: flex;
  align-items: center;
}
.cf-full {
  width: 100%;
}
.cf-input {
  width: 100%;
  height: 52px;
  padding: 0 44px 0 18px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  color: #111111;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}
.cf-input::placeholder {
  color: #9ca3af;
}
.cf-input:focus {
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26,86,219,0.08);
  background: #ffffff;
}
.cf-select {
  cursor: pointer;
  color: #9ca3af;
}
.cf-select:valid,
.cf-select option:not([disabled]) {
  color: #111111;
}
.cf-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.cf-chevron {
  pointer-events: none;
}
.cf-textarea {
  height: 200px;
  padding: 14px 18px;
  resize: vertical;
  line-height: 1.65;
}
.cf-submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.cf-submit-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a56db;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 15px 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.35s ease, transform 0.2s ease;
  white-space: nowrap;
}
.cf-submit-btn::before,
.cf-submit-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transition: transform 0.35s ease;
}
.cf-submit-btn::before {
  clip-path: polygon(0% 0%, 55% 0%, 45% 100%, 0% 100%);
  transform: translateX(-100%);
}
.cf-submit-btn::after {
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 45% 100%);
  transform: translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .cf-submit-btn:hover {
    color: #1a56db;
    transform: translateY(-2px);
  }
  .cf-submit-btn:hover::before,
  .cf-submit-btn:hover::after {
    transform: translateX(0);
  }
}
.cf-privacy {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cf-privacy-check {
  width: 22px;
  height: 22px;
  border: 1.5px solid #1a56db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cf-privacy-text {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.55;
}
.cf-error-msg {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #ef4444;
  font-weight: 500;
  padding: 0 4px;
  margin-top: 6px;
  animation: errorFadeIn 0.25s ease;
}
.cf-error-placeholder::placeholder {
  color: #ef4444;
  font-weight: 500;
  font-size: 13px;
}
@keyframes errorFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.contact-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 20px;
}
.trust-badge {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
  visibility: hidden;
}
.trust-badge:last-child {
  border-right: none;
}
.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #eef2ff;
  border-radius: 50%;
  margin: 0 auto 10px;
}
.trust-label {
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}
.trust-sub {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 20px;
}
.ci-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s ease;
  visibility: hidden;
}
.ci-card:last-child {
  border-bottom: none;
}
@media (hover: hover) and (pointer: fine) {
  .ci-card:hover {
    background: #f9fafb;
  }
}
.ci-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #1a56db;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-text {
  flex: 1;
}
.ci-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 2px;
}
.ci-value {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.55;
}
.ci-arrow {
  color: #1a56db;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-left: auto;
}
.contact-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  height: 240px;
  visibility: hidden;
  pointer-events: auto;
}
.contact-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: auto;
}
.contact-bottom-bar {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 28px 80px;
  visibility: hidden;
}
.contact-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cbb-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 220px;
}
.cbb-headset-icon {
  width: 56px;
  height: 56px;
  background: #1a56db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cbb-title {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 3px;
}
.cbb-sub {
  font-size: 13px;
  color: #6b7280;
}
.cbb-divider {
  width: 1px;
  height: 48px;
  background: #e5e7eb;
  flex-shrink: 0;
}
.cbb-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 180px;
}
.cbb-phone-number {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 2px;
}
.cbb-phone-hours {
  font-size: 12px;
  color: #6b7280;
}
.cbb-chat-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #1a56db;
  border-radius: 8px;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a56db;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.35s ease, transform 0.2s ease, border-color 0.35s ease;
  flex-shrink: 0;
}
.cbb-chat-btn::before,
.cbb-chat-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a56db;
  z-index: -1;
  transition: transform 0.35s ease;
}
.cbb-chat-btn::before {
  clip-path: polygon(0% 0%, 55% 0%, 45% 100%, 0% 100%);
  transform: translateX(-100%);
}
.cbb-chat-btn::after {
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 45% 100%);
  transform: translateX(100%);
}
@media (hover: hover) and (pointer: fine) {
  .cbb-chat-btn:hover {
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
  }
  .cbb-chat-btn:hover::before,
  .cbb-chat-btn:hover::after {
    transform: translateX(0);
  }
}
@media (hover: none) and (pointer: coarse) {
  .cbb-chat-btn.cbb-tapped {
    color: #ffffff;
    border-color: transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
  }
  .cbb-chat-btn.cbb-tapped::before,
  .cbb-chat-btn.cbb-tapped::after {
    transform: translateX(0);
    transition: transform 0.35s ease;
  }
}
@media (max-width: 1100px) {
  .contact-wrapper {
    gap: 40px;
    padding: 0 40px 60px;
  }
  .contact-bottom-bar {
    padding: 28px 40px;
  }
}
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-trust-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding: 60px 0 0;
  }
  .contact-wrapper {
    padding: 0 24px 50px;
    gap: 36px;
  }
  .contact-form-card {
    padding: 28px 20px;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
  .contact-trust-row {
    grid-template-columns: 1fr;
  }
  .trust-badge {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2px 16px;
    padding: 16px 20px;
    text-align: left;
  }
  .trust-badge:last-child {
    border-bottom: none;
  }
  .trust-icon {
    grid-row: 1 / 3;
    align-self: center;
    margin: 0;
    flex-shrink: 0;
  }
  .trust-label {
    grid-column: 2;
    text-align: left;
  }
  .trust-sub {
    grid-column: 2;
    text-align: left;
  }
  .cf-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .cf-submit-btn {
    width: 100%;
    justify-content: center;
  }
  .contact-bottom-bar {
    padding: 28px 24px;
  }
  .contact-bottom-inner {
    gap: 24px;
  }
  .cbb-divider {
    display: none;
  }
  .cbb-left,
  .cbb-phone {
    width: 100%;
    flex: none;
  }
  .cbb-chat-btn {
    width: 100%;
    justify-content: center;
  }
  .contact-map-wrapper {
    height: 200px;
  }
}
.fcw-wrapper {
  position: fixed;
  bottom: calc(32px + var(--fcw-overlap, 0px));
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
.fcw-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.fcw-btn {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(20px) scale(0.7);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease,
              box-shadow 0.3s ease;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .fcw-btn:hover {
    transform: translateY(0) scale(1.12) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
}
.fcw-whatsapp { background: #25d366; }
.fcw-call     { background: #1a56db; }
.fcw-message  { background: #0ea5e9; }
.fcw-tooltip {
  position: absolute;
  right: 62px;
  background: #111111;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.fcw-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #111111;
}
@media (hover: hover) and (pointer: fine) {
  .fcw-btn:hover .fcw-tooltip {
    opacity: 1;
  }
}
.fcw-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1a56db;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(26, 86, 219, 0.45);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .fcw-toggle:hover {
    background: #1446b8;
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(26, 86, 219, 0.55);
  }
}
.fcw-icon-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fcw-icon-chat {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fcw-toggle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(26, 86, 219, 0.4);
  animation: fcw-pulse 2s ease-out infinite;
}
@keyframes fcw-pulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.fcw-open .fcw-actions {
  pointer-events: auto;
}
.fcw-open .fcw-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fcw-open .fcw-whatsapp { transition-delay: 0.05s; }
.fcw-open .fcw-call     { transition-delay: 0.1s;  }
.fcw-open .fcw-message  { transition-delay: 0.15s; }
.fcw-open .fcw-icon-chat {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}
.fcw-open .fcw-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.fcw-open .fcw-toggle {
  background: #ef4444;
  box-shadow: 0 6px 24px rgba(239, 68, 68, 0.4);
}
.fcw-open .fcw-toggle::before {
  border-color: rgba(239, 68, 68, 0.4);
}
@media (max-width: 767px) {
  .fcw-wrapper {
    bottom: calc(20px + var(--fcw-overlap, 0px));
    right: 20px;
  }
  .fcw-toggle {
    width: 52px;
    height: 52px;
  }
  .fcw-btn {
    width: 46px;
    height: 46px;
  }
  .fcw-tooltip {
    display: none;
  }
}
.ps-section {
  position: relative;
  background: #ffffff;
}
.ps-scroll-spacer {
  display: none; 
}
.ps-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}
.ps-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  transition: background 800ms ease;
}
.ps-badge {
  position: absolute;
  top: 32px;
  left: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  background: #ffffff;
  z-index: 10;
  letter-spacing: 0.5px;
}
.ps-badge-num {
  font-weight: 800;
  color: #1a56db;
  font-size: 13px;
  transition: color 400ms ease;
}
.ps-layout {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 72px 48px 16px 48px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  transition: none;
}
.ps-layout-flipped .ps-text-side {
  order: 2;
}
.ps-layout-flipped .ps-image-side {
  order: 1;
}
.ps-text-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 48px;
}
.ps-layout-flipped .ps-text-side {
  padding-right: 0;
  padding-left: 48px;
}
.ps-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}
.ps-title-line1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 800;
  color: #111111;
  line-height: 1.05;
  display: block;
  will-change: transform, opacity;
}
.ps-title-line2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 800;
  color: #1a56db;
  line-height: 1.05;
  display: block;
  will-change: transform, opacity;
}
.ps-rule {
  width: 48px;
  height: 4px;
  background: #1a56db;
  border-radius: 2px;
  flex-shrink: 0;
}
.ps-tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #374151;
  text-transform: uppercase;
}
.ps-tagline-blue {
  color: #1a56db;
}
.ps-body {
  font-size: 13.5px;
  color: #555555;
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  gap: 10px;
  will-change: opacity;
}
.ps-body p {
  margin: 0;
  text-align: justify;
}
.ps-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.ps-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  will-change: transform, opacity;
}
.ps-feat-icon {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
}
.ps-feat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ps-feat-text strong {
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  line-height: 1.35;
}
.ps-feat-text span {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
}
.ps-image-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-image-frame {
  position: relative;
  width: 100%;
  max-width: 620px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e5e7eb;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.ps-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: transform, opacity;
}
.ps-img-active {
  opacity: 1;
}
.ps-float-card {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  will-change: transform, opacity;
  z-index: 3;
}
.ps-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ps-float-text {
  flex: 1;
}
.ps-float-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
  line-height: 1.3;
}
.ps-float-text p {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
}
.ps-image-frame::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, rgba(26,86,219,0.2) 1.5px, transparent 1.5px);
  background-size: 8px 8px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}
.ps-progress-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px 24px 48px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.ps-progress-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.ps-progress-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #9ca3af;
}
.ps-progress-counter {
  display: flex;
  align-items: baseline;
  gap: 5px;
  overflow: hidden;
  height: 26px;
}
.ps-counter-current {
  display: block;
  overflow: hidden;
  height: 26px;
  line-height: 26px;
}
.ps-counter-digit {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #1a56db;
  line-height: 26px;
  will-change: transform, opacity;
}
.ps-counter-of {
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
}
.ps-progress-track-wrap {
  flex: 1;
  position: relative;
}
.ps-progress-track {
  position: relative;
  height: 3px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: visible;
}
.ps-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #1a56db;
  border-radius: 2px;
  width: 0%;
  transition: width 200ms linear;
}
.ps-progress-dots {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.ps-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1.5px #d1d5db;
  cursor: pointer;
  pointer-events: auto;
  transition: background 300ms ease, box-shadow 300ms ease, transform 300ms ease;
  flex-shrink: 0;
}
.ps-dot-active {
  background: #1a56db;
  box-shadow: 0 0 0 3px rgba(26,86,219,0.2);
  transform: scale(1.3);
}
.ps-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a56db;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .ps-nav-btn:hover {
    background: #1446b8;
    transform: translateY(-2px);
  }
}
.ps-nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 1100px) {
  .ps-layout {
    padding: 64px 32px 16px 32px;
    gap: 0;
  }
  .ps-text-side {
    padding-right: 28px;
  }
  .ps-layout-flipped .ps-text-side {
    padding-left: 28px;
  }
  .ps-progress-bar {
    padding: 0 32px 20px 32px;
  }
}
@media (max-width: 600px) {
  .ps-title-line1,
  .ps-title-line2 {
    font-size: 32px;
  }
  .ps-features {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .ps-feat {
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
  }
  .ps-float-card {
    padding: 12px 14px;
  }
  .ps-float-text strong {
    font-size: 12px;
  }
  .ps-float-text p {
    font-size: 11px;
  }
  .ps-nav-btn {
    font-size: 10px;
    padding: 10px 16px;
  }
  .ps-counter-digit {
    font-size: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ps-img,
  .ps-title-line1,
  .ps-title-line2,
  .ps-tagline,
  .ps-body,
  .ps-feat,
  .ps-float-card,
  .ps-counter-digit,
  .ps-progress-fill,
  .ps-glow {
    transition: none !important;
    animation: none !important;
  }
}
.ps-sticky {
  height: var(--ps-vh, 100vh);
  min-height: 0;
  overflow: hidden;
}
.ps-badge {
  top: 14px;
  left: 40px;
  padding: 4px 14px;
  font-size: 11px;
}
.ps-layout {
  padding: 58px 48px 0 48px;
  gap: 0;
  align-items: center;
}
.ps-text-side {
  gap: 8px;
}
.ps-title-line1,
.ps-title-line2 {
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.0;
}
.ps-rule {
  margin-top: 2px;
}
.ps-body {
  font-size: 12.5px;
  line-height: 1.6;
  gap: 6px;
}
.ps-features {
  gap: 7px;
  margin-top: 2px;
}
.ps-feat {
  padding: 8px 10px;
  gap: 8px;
  border-radius: 10px;
}
.ps-feat-icon {
  font-size: 16px;
}
.ps-feat-text strong {
  font-size: 11px;
}
.ps-feat-text span {
  font-size: 10px;
}
.ps-image-frame {
  aspect-ratio: unset;
  height: clamp(260px, 46vh, 380px);
  max-width: 100%;
}
.ps-float-card {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: calc(100% - 24px);
  transform: none;
  padding: 10px 14px;
  gap: 10px;
  border-radius: 12px;
}
.ps-float-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.ps-float-icon svg {
  width: 22px;
  height: 22px;
}
.ps-float-text strong {
  font-size: 12px;
  margin-bottom: 2px;
}
.ps-float-text p {
  font-size: 11px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ps-progress-bar {
  padding: 8px 48px 14px 48px;
}
.ps-nav-btn {
  padding: 10px 20px;
  font-size: 10.5px;
}
.ps-nav-arrow {
  width: 26px;
  height: 26px;
}
.ps-image-frame::after {
  bottom: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  opacity: 0.4;
}
@media (max-width: 1100px) {
  .ps-layout {
    padding: 52px 28px 0 28px;
  }
  .ps-progress-bar {
    padding: 8px 28px 14px 28px;
  }
  .ps-badge {
    left: 28px;
  }
}
@media (max-width: 600px) {
  .ps-title-line1,
  .ps-title-line2 {
    font-size: 28px;
  }
  .ps-image-frame {
    height: 200px;
  }
  .ps-float-card {
    padding: 8px 10px;
    gap: 8px;
  }
  .ps-float-text strong {
    font-size: 11px;
  }
  .ps-float-text p {
    font-size: 10px;
  }
}
.ps-image-side {
  justify-content: flex-end; 
}
.ps-image-frame {
  width: 85%;           
  max-width: 520px;
  height: clamp(300px, 52vh, 420px);  
  margin: 0 auto;
}
.ps-badge {
  top: 20px;
}
.ps-layout {
  padding-top: 72px; 
}
.ps-layout-flipped .ps-image-side {
  justify-content: flex-start;
}
.ps-text-side {
  padding-top: 0;
}
@media (max-width: 1100px) {
  .ps-image-frame {
    width: 90%;
    height: clamp(260px, 44vh, 360px);
  }
  .ps-layout {
    padding-top: 72px;
  }
}
.ps-badge {
  position: static;
  top: auto;
  left: auto;
  width: fit-content;
  margin-bottom: 4px;
}
@media (max-width: 390px) {
  .ps-layout { padding: 0 14px; }
  .ps-text-side { margin-bottom: 8px; }
  .ps-badge { padding: 3px 10px; font-size: 10px; margin-bottom: 7px; }
  .ps-title-line1,
  .ps-title-line2 { font-size: 22px; line-height: 1.05; }
  .ps-title { margin-bottom: 5px; }
  .ps-rule { height: 3px; width: 28px; margin-bottom: 6px; }
  .ps-tagline { font-size: 9px; letter-spacing: 0.4px; margin-bottom: 7px; }
  .ps-body { font-size: 10.5px; line-height: 1.45; gap: 4px; margin-bottom: 8px; }
  .ps-features { grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 0; }
  .ps-feat { padding: 5px 7px; gap: 5px; border-radius: 8px; }
  .ps-feat-icon { font-size: 12px; }
  .ps-feat-text strong { font-size: 9.5px; line-height: 1.2; }
  .ps-feat-text span { font-size: 8.5px; line-height: 1.3; }
  .ps-image-frame { height: 120px; }
  .ps-float-card {
    padding: 5px 8px;
    gap: 6px;
    border-radius: 0 0 10px 10px;
  }
  .ps-float-icon { width: 24px; height: 24px; }
  .ps-float-icon svg { width: 14px; height: 14px; }
  .ps-float-text strong { font-size: 9.5px; line-height: 1.2; margin-bottom: 1px; }
  .ps-float-text p { font-size: 9px; line-height: 1.3; }
  .ps-progress-bar { padding: 5px 14px 8px 14px; gap: 8px; }
  .ps-progress-label { font-size: 8.5px; }
  .ps-progress-counter { height: 18px; }
  .ps-counter-current { height: 18px; }
  .ps-counter-digit { font-size: 14px; line-height: 18px; }
  .ps-counter-of { font-size: 9px; }
  .ps-dot { width: 7px; height: 7px; }
  .ps-nav-btn { padding: 5px 10px; font-size: 9px; letter-spacing: 0.4px; flex-shrink: 0; }
  .ps-nav-arrow { width: 18px; height: 18px; }
}
@media (min-width: 391px) and (max-width: 480px) {
  .ps-layout { padding: 0 18px; }
  .ps-text-side { margin-bottom: 12px; }
  .ps-badge { padding: 5px 14px; font-size: 11.5px; margin-bottom: 10px; }
  .ps-title-line1,
  .ps-title-line2 { font-size: 30px; line-height: 1.05; }
  .ps-title { margin-bottom: 8px; }
  .ps-rule { height: 4px; width: 36px; margin-bottom: 9px; }
  .ps-tagline { font-size: 11px; letter-spacing: 0.6px; margin-bottom: 10px; }
  .ps-body { font-size: 13px; line-height: 1.6; gap: 6px; margin-bottom: 12px; }
  .ps-features { grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 0; }
  .ps-feat { padding: 9px 11px; gap: 8px; border-radius: 10px; }
  .ps-feat-icon { font-size: 16px; }
  .ps-feat-text strong { font-size: 12px; line-height: 1.3; }
  .ps-feat-text span { font-size: 10.5px; line-height: 1.4; }
  .ps-image-frame { height: 185px; }
  .ps-float-card {
    padding: 9px 14px;
    gap: 10px;
    border-radius: 0 0 12px 12px;
  }
  .ps-float-icon { width: 34px; height: 34px; }
  .ps-float-icon svg { width: 20px; height: 20px; }
  .ps-float-text strong { font-size: 12px; margin-bottom: 2px; }
  .ps-float-text p { font-size: 11px; line-height: 1.45; }
  .ps-progress-bar { padding: 8px 18px 12px 18px; gap: 10px; }
  .ps-progress-label { font-size: 10px; }
  .ps-progress-counter { height: 22px; }
  .ps-counter-current { height: 22px; }
  .ps-counter-digit { font-size: 18px; line-height: 22px; }
  .ps-counter-of { font-size: 11px; }
  .ps-dot { width: 10px; height: 10px; }
  .ps-nav-btn { padding: 8px 16px; font-size: 11px; letter-spacing: 0.8px; flex-shrink: 0; }
  .ps-nav-arrow { width: 24px; height: 24px; }
}
@media (min-width: 391px) and (max-width: 480px) and (min-height: 800px) {
  .ps-image-frame { height: 200px; }
  .ps-text-side { margin-bottom: 14px; }
  .ps-body { gap: 7px; margin-bottom: 14px; }
  .ps-features { gap: 8px; }
  .ps-feat { padding: 10px 12px; }
}
@media (min-width: 391px) and (max-width: 480px) and (min-height: 880px) {
  .ps-image-frame { height: 215px; }
}
@media (min-width: 391px) and (max-width: 480px) {
  .ps-badge { margin-bottom: 6px; }
  .ps-title { margin-bottom: 4px; }
  .ps-title-line1,
  .ps-title-line2 { font-size: 26px; line-height: 1.0; }
  .ps-rule { margin-bottom: 5px; }
  .ps-tagline { margin-bottom: 6px; font-size: 10px; }
  .ps-body { font-size: 11.5px; line-height: 1.5; gap: 4px; margin-bottom: 8px; }
  .ps-features { gap: 5px; }
  .ps-feat { padding: 7px 9px; gap: 6px; }
  .ps-feat-text strong { font-size: 11px; }
  .ps-feat-text span { font-size: 9.5px; }
  .ps-image-frame { height: 160px; }
  .ps-float-card {
    padding: 7px 11px;
    gap: 8px;
  }
  .ps-float-icon { width: 28px; height: 28px; }
  .ps-float-icon svg { width: 16px; height: 16px; }
  .ps-float-text strong { font-size: 10.5px; margin-bottom: 1px; }
  .ps-float-text p { font-size: 9.5px; line-height: 1.4; }
  .ps-progress-bar { padding: 6px 18px 10px 18px; }
}
@media (min-width: 391px) and (max-width: 480px) and (min-height: 800px) {
  .ps-image-frame { height: 175px; }
  .ps-body { font-size: 12px; }
  .ps-feat-text strong { font-size: 11.5px; }
}
@media (min-width: 391px) and (max-width: 480px) and (min-height: 880px) {
  .ps-image-frame { height: 190px; }
}
.ps-progress-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px 24px 48px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}
.ps-progress-track-wrap {
  flex: 1;
  position: relative;
  overflow: visible;
  margin-right: 8px;
}
.ps-progress-track {
  position: relative;
  height: 3px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: visible;
}
.ps-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #1a56db;
  border-radius: 2px;
  width: 0%;
  transition: width 200ms linear;
}
.ps-progress-dots {
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(100% - 2px);
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.ps-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1.5px #d1d5db;
  cursor: pointer;
  pointer-events: auto;
  transition: background 300ms ease, box-shadow 300ms ease, transform 300ms ease;
  flex-shrink: 0;
}
.ps-dot-active {
  background: #1a56db;
  box-shadow: 0 0 0 3px rgba(26,86,219,0.2);
  transform: scale(1.3);
}
@media (max-width: 390px) {
  .ps-progress-bar {
    padding: 5px 14px 8px 14px;
    gap: 8px;
  }
  .ps-progress-track-wrap {
    margin-right: 5px;
  }
  .ps-dot {
    width: 7px;
    height: 7px;
  }
 }
#bttControl {
  position: fixed;
  right: 60px;
  bottom: calc(120px + var(--fcw-overlap, 0px));
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, visibility 0.4s ease-out, bottom 0.35s ease;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
#bttControl:focus-visible {
  outline: 2px solid #0b5fa5;
  outline-offset: 6px;
  border-radius: 4px;
}
#bttControl.btt-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  #bttControl.btt-visible:hover {
    transform: translateY(0) translateX(-4px);
  }
  #bttControl.btt-visible:hover .btt-text {
    color: #083b73;
  }
}
#bttControl.btt-fcw-open {
  bottom: calc(300px + var(--fcw-overlap, 0px));
}
.btt-text {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #0b5fa5;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  transition: color 0.25s ease;
  line-height: 1.2;
  user-select: none;
}
.btt-line-wrap {
  width: 4px;
  height: 0;
  border-radius: 2px;
  background: #0b5fa5;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.btt-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #083b73;
  border-radius: inherit;
  transform-origin: top center;
  transform: scaleY(0);
  will-change: transform;
}
@media (max-width: 1024px) {
  #bttControl { right: 24px; bottom: calc(100px + var(--fcw-overlap, 0px)); gap: 1px; }
  #bttControl.btt-fcw-open { bottom: calc(280px + var(--fcw-overlap, 0px)); }
  .btt-text { font-size: 12px; letter-spacing: 2.5px; }
}
@media (max-width: 767px) {
  #bttControl { right: 20px; bottom: calc(88px + var(--fcw-overlap, 0px)); gap: 1px; }
  #bttControl.btt-fcw-open { bottom: calc(250px + var(--fcw-overlap, 0px)); }
  .btt-text { font-size: 10px; letter-spacing: 2px; }
}
.site-preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0b5fa5 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 999999 !important;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s cubic-bezier(0.25,1,0.5,1), visibility 0.4s ease;
  perspective: 1000px;
}
.site-preloader-overlay.loader-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.loader-wrapper-master {
  position: relative;
  width: 165px;
  height: 165px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}
.loader-wrapper {
  position: absolute;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  animation: global-spin 5s infinite linear;
}
.site-preloader-overlay .circle {
  position: absolute;
  border-radius: 50%;
  border: 3px dashed rgba(255,255,255,0.9) !important;
  transform-style: preserve-3d;
  box-sizing: border-box;
}
.loader-wrapper .circle {
  width: 100%;
  height: 100%;
}
.r-z { transform: rotateY(0deg); }
.r-y { transform: rotateY(90deg); }
.r-x { transform: rotateX(90deg); }
.r-4-outer,
.r-5-outer { width: 130px; height: 130px; }
.r-4-outer { animation: spin-outer-horizontal 3.8s infinite linear; }
.r-5-outer { animation: spin-outer-vertical 2.7s infinite linear; }
.r-6-outer,
.r-7-outer { width: 165px; height: 165px; }
.r-6-outer { animation: rotate-flat-clockwise 4s infinite linear; }
.r-7-outer { animation: rotate-flat-counter 3.2s infinite linear; }
.site-preloader-overlay .logo {
  position: absolute;
  width: 65px;
  height: auto;
  user-select: none;
  transform: translateZ(2px);
  filter: brightness(0) invert(1) !important;
}
.logo-placeholder {
  position: absolute;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  user-select: none;
  transform: translateZ(2px);
  letter-spacing: -1px;
}
@keyframes global-spin {
  0% { transform: rotateX(45deg) rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateX(45deg) rotateY(360deg) rotateZ(360deg); }
}
@keyframes spin-outer-horizontal {
  0% { transform: rotateX(15deg) rotateY(40deg); }
  100% { transform: rotateX(15deg) rotateY(400deg); }
}
@keyframes spin-outer-vertical {
  0% { transform: rotateY(-30deg) rotateX(85deg); }
  100% { transform: rotateY(-30deg) rotateX(445deg); }
}
@keyframes rotate-flat-clockwise {
  0% { transform: rotateX(45deg) rotateZ(0deg); }
  100% { transform: rotateX(45deg) rotateZ(360deg); }
}
@keyframes rotate-flat-counter {
  0% { transform: rotateY(45deg) rotateZ(360deg); }
  100% { transform: rotateY(45deg) rotateZ(0deg); }
}
@media (max-width: 900px) {
  .ps-sticky {
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    height: var(--ps-vh, 100vh) !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    padding-top: 72px !important;
    background: #ffffff;
  }
  .ps-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .ps-carousel-wrapper {
    position: relative !important;
    flex: 1 !important;
    min-height: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    z-index: 2;
  }
  #psLayout {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 600% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: transform;
    max-width: none !important;
  }
  .ps-slide {
    width: calc(100% / 6) !important;
    height: 100% !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-rows: 58% 42% !important;
    grid-template-columns: 1fr !important;
    flex-direction: unset !important;
    padding: 10px 18px 0 !important;
    overflow: hidden !important;
  }
  #psTextSide,
  #psImageSide {
    display: none !important;
  }
  .ps-slide-text {
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    min-height: 0 !important;
  }
  .ps-slide .ps-badge {
    position: static !important;
    width: fit-content;
    margin-bottom: 2px;
    flex-shrink: 0;
    padding: 4px 12px;
    font-size: 11px;
  }
  .ps-slide .ps-title-line1,
  .ps-slide .ps-title-line2 {
    font-size: clamp(22px, 5.5vw, 32px) !important;
    line-height: 1.05 !important;
  }
  .ps-slide .ps-body {
    font-size: 11.5px;
    line-height: 1.5;
    gap: 4px;
  }
  .ps-slide .ps-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-top: 4px;
  }
  .ps-slide .ps-feat {
    padding: 7px 9px;
    gap: 6px;
    border-radius: 10px;
  }
  .ps-slide .ps-feat-icon { font-size: 14px; }
  .ps-slide .ps-feat-text strong { font-size: 10.5px; }
  .ps-slide .ps-feat-text span { font-size: 9.5px; }
  .ps-slide-image {
    flex: unset !important;
    min-height: unset !important;
    margin-top: 6px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    height: 100% !important;
  }
  .ps-slide .ps-image-frame {
    flex: 1 1 0 !important;
    height: 0 !important;
    min-height: unset !important;
    max-height: none !important;
    width: 100% !important;
    aspect-ratio: unset !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    position: relative !important;
  }
  .ps-slide .ps-float-card {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    transform: none !important;
    border-radius: 0 0 12px 12px !important;
    padding: 7px 11px !important;
    gap: 8px !important;
    z-index: 10;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.10);
  }
  .ps-slide .ps-float-icon { width: 28px; height: 28px; }
  .ps-slide .ps-float-icon svg { width: 16px; height: 16px; }
  .ps-slide .ps-float-text strong { font-size: 10.5px; }
  .ps-slide .ps-float-text p {
    font-size: 9.5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .ps-progress-bar {
    flex-shrink: 0 !important;
    padding: 7px 18px 11px 18px !important;
    gap: 10px !important;
    z-index: 10;
  }
  .ps-dot { width: 8px; height: 8px; }
}
@media (max-width: 390px) {
  .ps-slide {
    grid-template-rows: 62% 38% !important;
    padding: 6px 13px 0 !important;
  }
}
@media (min-width: 391px) and (max-width: 480px) {
  .ps-slide {
    grid-template-rows: 55% 45% !important;
  }
}
@media (min-width: 481px) and (max-width: 900px) {
  .ps-slide {
    grid-template-rows: 50% 50% !important;
  }
}
@media (max-width: 390px) {
  .ps-slide { padding: 8px 14px 0 14px !important; }
  .ps-slide .ps-title-line1,
  .ps-slide .ps-title-line2 { font-size: 20px !important; }
  .ps-slide .ps-body { font-size: 10.5px; }
  .ps-slide .ps-image-frame { height: 115px !important; }
  .ps-progress-bar { padding: 5px 14px 8px 14px !important; }
  .ps-dot { width: 7px !important; height: 7px !important; }
}
@media (max-width: 390px) {
  .ps-slide {
    padding: 6px 14px 0 14px !important;
    gap: 0 !important;
  }
  .ps-slide-text {
    gap: 3px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
  }
  .ps-slide .ps-badge {
    font-size: 9.5px !important;
    padding: 3px 9px !important;
    margin-bottom: 2px !important;
  }
  .ps-slide .ps-title-line1,
  .ps-slide .ps-title-line2 {
    font-size: 19px !important;
    line-height: 1.0 !important;
  }
  .ps-slide .ps-title {
    margin-bottom: 2px !important;
  }
  .ps-slide .ps-rule {
    height: 2px !important;
    width: 24px !important;
    margin-bottom: 2px !important;
  }
  .ps-slide .ps-tagline {
    font-size: 8px !important;
    letter-spacing: 0.2px !important;
    margin-bottom: 2px !important;
  }
  .ps-slide .ps-body {
    font-size: 9.5px !important;
    line-height: 1.35 !important;
    gap: 0 !important;
    margin-bottom: 3px !important;
  }
  .ps-slide .ps-features {
    grid-template-columns: 1fr 1fr !important;
    gap: 3px !important;
    margin-top: 0 !important;
  }
  .ps-slide .ps-feat {
    padding: 4px 5px !important;
    gap: 4px !important;
    border-radius: 7px !important;
    align-items: center !important;
  }
  .ps-slide .ps-feat-icon {
    font-size: 11px !important;
    line-height: 1 !important;
  }
  .ps-slide .ps-feat-text strong {
    font-size: 8.5px !important;
    line-height: 1.15 !important;
  }
  .ps-slide .ps-feat-text span {
    display: none !important;
  }
  .ps-slide-image {
    flex: 1 1 0 !important;
    min-height: 0 !important;
    margin-top: 5px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }
  .ps-slide .ps-image-frame {
    flex: 1 1 0 !important;
    height: 0 !important;
    min-height: 90px !important;
    max-height: 160px !important;   
    width: 100% !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    position: relative !important;
  }
  .ps-slide .ps-float-card {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    transform: none !important;
    border-radius: 0 0 10px 10px !important;
    padding: 5px 8px !important;
    gap: 6px !important;
    z-index: 10 !important;
    background: #ffffff !important;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.10) !important;
  }
  .ps-slide .ps-float-icon {
    width: 22px !important;
    height: 22px !important;
    flex-shrink: 0 !important;
  }
  .ps-slide .ps-float-icon svg {
    width: 13px !important;
    height: 13px !important;
  }
  .ps-slide .ps-float-text strong {
    font-size: 9px !important;
    line-height: 1.2 !important;
    margin-bottom: 1px !important;
    display: block !important;
  }
  .ps-slide .ps-float-text p {
    font-size: 8px !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .ps-progress-bar {
    padding: 4px 14px 6px 14px !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
  }
  .ps-progress-label { font-size: 8px !important; }
  .ps-progress-counter { height: 16px !important; }
  .ps-counter-current { height: 16px !important; }
  .ps-counter-digit { font-size: 13px !important; line-height: 16px !important; }
  .ps-counter-of { font-size: 8.5px !important; }
  .ps-dot { width: 6px !important; height: 6px !important; }
}
@media (max-width: 390px) {
  .ps-slide .ps-body p:nth-child(n+2) {
    display: block !important;
  }
  .ps-slide .ps-feat-text span {
    display: block !important;
    font-size: 8px !important;
    line-height: 1.3 !important;
  }
  .ps-slide {
    padding: 5px 12px 0 12px !important;
  }
  .ps-slide-text {
    gap: 2px !important;
  }
  .ps-slide .ps-badge {
    font-size: 9px !important;
    padding: 2px 8px !important;
    margin-bottom: 1px !important;
  }
  .ps-slide .ps-title-line1,
  .ps-slide .ps-title-line2 {
    font-size: 17px !important;
    line-height: 1.0 !important;
  }
  .ps-slide .ps-title {
    margin-bottom: 1px !important;
  }
  .ps-slide .ps-rule {
    height: 2px !important;
    width: 22px !important;
    margin-bottom: 2px !important;
  }
  .ps-slide .ps-tagline {
    font-size: 7.5px !important;
    letter-spacing: 0.2px !important;
    margin-bottom: 2px !important;
  }
  .ps-slide .ps-body {
    font-size: 8.5px !important;
    line-height: 1.3 !important;
    gap: 2px !important;
    margin-bottom: 3px !important;
  }
  .ps-slide .ps-features {
    grid-template-columns: 1fr 1fr !important;
    gap: 3px !important;
    margin-top: 2px !important;
  }
  .ps-slide .ps-feat {
    padding: 4px 5px !important;
    gap: 4px !important;
    border-radius: 7px !important;
  }
  .ps-slide .ps-feat-icon {
    font-size: 11px !important;
  }
  .ps-slide .ps-feat-text strong {
    font-size: 8.5px !important;
    line-height: 1.15 !important;
  }
  .ps-slide-image {
    flex: 1 1 0 !important;
    min-height: 0 !important;
  }
}
@media (min-width: 391px) and (max-width: 480px) {
  .ps-slide {
    height: 100% !important;
    justify-content: flex-start !important;
  }
  .ps-slide-text {
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
  }
  .ps-slide-image {
    flex: 1 1 0 !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    margin-top: 8px !important;
  }
  .ps-slide .ps-image-frame {
    flex: 1 1 0 !important;
    height: 0 !important;
    min-height: 80px !important;
    max-height: none !important;
    width: 100% !important;
  }
}
@media (max-width: 390px) {
  .ps-slide .ps-body {
    font-size: 10px !important;
    line-height: 1.45 !important;
  }
  .ps-slide .ps-feat-text strong {
    font-size: 9.5px !important;
  }
  .ps-slide .ps-feat-text span {
    font-size: 8.5px !important;
    display: block !important;
  }
  .ps-slide .ps-tagline {
    font-size: 8.5px !important;
  }
  .ps-slide .ps-title-line1,
  .ps-slide .ps-title-line2 {
    font-size: 20px !important;
  }
  .ps-slide .ps-image-frame {
    max-height: none !important;   
    min-height: 80px !important;
    flex: 1 1 0 !important;
    height: 0 !important;
  }
  .ps-slide-image {
    flex: 1 1 0 !important;
    min-height: 0 !important;
  }
}
@media (min-width: 391px) and (max-width: 480px) {
  .ps-slide .ps-body {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
  }
  .ps-slide .ps-feat-text strong {
    font-size: 11px !important;
  }
  .ps-slide .ps-feat-text span {
    font-size: 9.5px !important;
  }
  .ps-slide .ps-tagline {
    font-size: 10.5px !important;
  }
  .ps-slide .ps-title-line1,
  .ps-slide .ps-title-line2 {
    font-size: 28px !important;
  }
  .ps-slide .ps-image-frame {
    max-height: none !important;
    min-height: 100px !important;
    flex: 1 1 0 !important;
    height: 0 !important;
  }
  .ps-slide-image {
    flex: 1 1 0 !important;
    min-height: 0 !important;
  }
}
@media (min-width: 391px) and (max-width: 480px) {
  .ps-slide {
    height: 100% !important;
    justify-content: flex-start !important;
  }
  .ps-slide-text {
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
  }
  .ps-slide-image {
    flex: 1 1 0 !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    margin-top: 8px !important;
  }
  .ps-slide .ps-image-frame {
    flex: 1 1 0 !important;
    height: 0 !important;
    min-height: 80px !important;
    max-height: none !important;
    width: 100% !important;
  }
}
@media (min-width: 391px) and (max-width: 480px) {
  .ps-slide .ps-float-card {
    padding: 10px 14px !important;
    gap: 10px !important;
  }
  .ps-slide .ps-float-icon {
    width: 32px !important;
    height: 32px !important;
    flex-shrink: 0 !important;
  }
  .ps-slide .ps-float-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  .ps-slide .ps-float-text strong {
    font-size: 12px !important;
    line-height: 1.3 !important;
    margin-bottom: 3px !important;
  }
  .ps-slide .ps-float-text p {
    font-size: 11px !important;
    line-height: 1.5 !important;
    -webkit-line-clamp: 2 !important;
  }
}
@media (hover: none) and (pointer: coarse) {
  .hero-cta.hero-cta-tapped {
    color: #1a56db;
    transform: translateY(-2px);
  }
  .hero-cta.hero-cta-tapped::before,
  .hero-cta.hero-cta-tapped::after {
    transform: translateX(0);
  }
  .cta-brush-link.cta-brush-link-tapped {
    opacity: 0.85;
    transform: scale(1.05);
  }
  .cta-brush-link.cta-brush-link-tapped .cta-arrow {
    transform: translate(5px, -5px);
  }
  .social-icon.social-icon-tapped {
    background: #1a56db;
    color: #ffffff;
    border-color: #1a56db;
  }
  .footer-links a.footer-link-tapped {
    color: #1a56db;
    gap: 12px;
  }
  .footer-links a.footer-link-tapped::before {
    opacity: 1;
  }
  .contact-link.contact-link-tapped {
    color: #1a56db;
  }
  .contact-link.contact-link-tapped .contact-info-text {
    color: #1a56db;
  }
  .fcw-btn.fcw-btn-tapped {
    transform: translateY(0) scale(1.12) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
  .fcw-btn.fcw-btn-tapped .fcw-tooltip {
    opacity: 1;
  }
  #bttControl.btt-tapped {
    transform: translateY(0) translateX(-4px);
  }
  #bttControl.btt-tapped .btt-text {
    color: #083b73;
  }
  .cf-submit-btn.cf-submit-btn-tapped {
    color: #1a56db;
    transform: translateY(-2px);
  }
  .cf-submit-btn.cf-submit-btn-tapped::before,
  .cf-submit-btn.cf-submit-btn-tapped::after {
    transform: translateX(0);
  }
  .nav-item a.nav-link-tapped {
    color: #1a56db;
  }
  .newsletter-btn.newsletter-btn-tapped {
    background: #1446b8;
    transform: translateY(-1px);
  }
  .team-cta-btn.team-cta-btn-tapped {
    background: #1446b8;
    transform: translateY(-2px);
  }
}
@media (max-width: 900px) {
  .ps-section {
    position: relative;
  }
  .ps-sticky {
    width: 100%;
    height: var(--ps-vh, 100vh);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    padding-top: 72px;
    box-sizing: border-box;
  }
  .ps-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .ps-carousel-wrapper {
    position: relative;
    flex: 1;
    min-height: 0;
    width: 100%;
    overflow: hidden;
    z-index: 2;
  }
  #psLayout {
    position: absolute !important;
    top: 0; left: 0;
    width: 700% !important;
    height: 100%;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: transform;
  }
  .ps-slide {
    width: calc(100% / 7) !important;
    height: 100% !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 10px 18px 0 !important;
    overflow: hidden !important;
  }
  #psTextSide, #psImageSide { display: none !important; }
  .ps-slide-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
  }
  .ps-slide .ps-badge {
    position: static !important;
    width: fit-content;
    margin-bottom: 3px;
    padding: 4px 12px;
    font-size: 11px;
  }
  .ps-slide .ps-title-line1,
  .ps-slide .ps-title-line2 {
    font-size: clamp(20px, 5.5vw, 30px) !important;
    line-height: 1.05 !important;
  }
  .ps-slide .ps-rule { margin: 3px 0; }
  .ps-slide .ps-tagline {
    font-size: 10px;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }
  .ps-slide .ps-body {
    font-size: 11.5px;
    line-height: 1.5;
    gap: 3px;
  }
  .ps-slide .ps-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-top: 5px;
  }
  .ps-slide .ps-feat {
    padding: 7px 9px;
    gap: 6px;
    border-radius: 10px;
  }
  .ps-slide .ps-feat-icon { font-size: 14px; }
  .ps-slide .ps-feat-text strong { font-size: 10.5px; }
  .ps-slide .ps-feat-text span { font-size: 9.5px; }
  .ps-slide-image {
    flex: 1 1 0;
    min-height: 0;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
  }
  .ps-slide .ps-image-frame {
    flex: 1 1 0 !important;
    height: 0 !important;
    min-height: 90px !important;
    max-height: none !important;
    width: 100% !important;
    aspect-ratio: unset !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    position: relative !important;
  }
  .ps-slide .ps-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
  }
  .ps-slide .ps-float-card {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    transform: none !important;
    border-radius: 0 0 12px 12px !important;
    padding: 8px 12px !important;
    gap: 8px !important;
    z-index: 10;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.10);
  }
  .ps-slide .ps-float-icon { width: 28px; height: 28px; flex-shrink: 0; }
  .ps-slide .ps-float-icon svg { width: 16px; height: 16px; }
  .ps-slide .ps-float-text strong { font-size: 10.5px; }
  .ps-slide .ps-float-text p {
    font-size: 9.5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .ps-progress-bar {
    flex-shrink: 0 !important;
    padding: 7px 18px 12px !important;
    gap: 10px !important;
    z-index: 10;
  }
  .ps-dot { width: 8px; height: 8px; }
  @media (max-width: 390px) {
    .ps-slide { padding: 6px 13px 0 !important; }
    .ps-slide .ps-title-line1,
    .ps-slide .ps-title-line2 { font-size: 18px !important; }
    .ps-slide .ps-body { font-size: 10px !important; }
    .ps-slide .ps-feat-text strong { font-size: 9.5px !important; }
    .ps-slide .ps-feat-text span { font-size: 8.5px !important; }
    .ps-progress-bar { padding: 5px 13px 9px !important; }
    .ps-dot { width: 6px !important; height: 6px !important; }
  }
  @media (min-width: 391px) and (max-width: 480px) {
    .ps-slide .ps-title-line1,
    .ps-slide .ps-title-line2 { font-size: 24px !important; }
    .ps-slide .ps-body { font-size: 12px !important; }
    .ps-slide .ps-float-card { padding: 10px 14px !important; }
    .ps-slide .ps-float-text strong { font-size: 12px !important; }
    .ps-slide .ps-float-text p { font-size: 11px !important; }
  }
}
#psIntroBlock    { display: block; }
#psSelectorLabel { display: none; }
#psSliderSection { display: none !important; }
#psCardsSection  { display: none !important; }
#psIntroBlock {
  background: #ffffff;
  padding: 60px 24px 50px;
  text-align: center;
}
#psIntroBlock .ps-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 24px;
}
#psIntroBlock .ps-intro-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 36px;
  color: #111111;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 16px;
}
#psIntroBlock .ps-intro-heading-blue {
  color: #1a56db;
}
#psIntroBlock .ps-intro-rule {
  width: 48px;
  height: 3px;
  background: #1a56db;
  border-radius: 2px;
  margin: 0 auto 20px;
}
#psIntroBlock .ps-intro-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: center;
}
#psIntroBlock .ps-intro-chips {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
#psIntroBlock .ps-intro-chip {
  background: #f0f4ff;
  border: 1px solid #dde5fb;
  border-radius: 50px;
  padding: 6px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1a56db;
}
@media (max-width: 900px) {
  #psSticky         { display: none !important; }
  #productsSection  { min-height: 0 !important; height: auto !important; }
  #psIntroBlock    { display: block; }
  #psSelectorLabel { display: flex; }
  #psSliderSection { display: block !important; }
  #psCardsSection  { display: block !important; }
  #psIntroBlock {
    background: #ffffff;
    padding: 60px 24px 40px;
    text-align: center;
  }
  .ps-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(-20px);
  }
  .ps-intro-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 28px;
    color: #111111;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0 0 16px;
  }
  .ps-intro-heading-blue {
    color: #1a56db;
  }
  .ps-intro-rule {
    width: 48px;
    height: 3px;
    background: #1a56db;
    border-radius: 2px;
    margin: 0 auto 20px;
    transform: scaleX(0);
    transform-origin: center;
  }
  .ps-intro-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 24px;
    text-align: justify;
    opacity: 0;
  }
  .ps-intro-chips {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    opacity: 0;
  }
  .ps-intro-chip {
    background: #f0f4ff;
    border: 1px solid #dde5fb;
    border-radius: 50px;
    padding: 6px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1a56db;
  }
  #psSelectorLabel {
    background: #f5f7ff;
    padding: 16px 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .ps-selector-heading-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .ps-selector-pulse {
    width: 8px;
    height: 8px;
    background: #1a56db;
    border-radius: 50%;
    animation: ps-pulse 1.8s ease-in-out infinite;
  }
  @keyframes ps-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.7); }
  }
  .ps-selector-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #111111;
  }
  .ps-selector-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
    margin: 0;
  }
  #psSliderSection {
    background: #0d0d0d;
    height: 72vw;
    max-height: 540px;
    position: relative;
    overflow: hidden;
  }
  .ps-slider-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
  }
  .ps-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
  }
  .ps-slide-wrapper {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
  }
  .ps-slide-wrapper.ps-slide-selected {
    border-bottom: 2px solid #1a56db;
  }
  .ps-s-slide {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .ps-s-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
  }
  .ps-s-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 44%);
    pointer-events: none;
  }
  .ps-s-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.85);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    pointer-events: none;
  }
  .ps-s-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px 20px;
    pointer-events: none;
  }
  .ps-s-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.25;
    color: #fff;
    margin: 0;
  }
  .ps-s-arrow {
    margin-top: 8px;
    opacity: 0.7;
  }
  .ps-s-arrow svg {
    animation: ps-arrow-bounce 1.4s ease-in-out infinite;
  }
  @keyframes ps-arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
  }
  .ps-slide-viewing-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #1a56db;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 50px;
    display: none;
    z-index: 10;
    pointer-events: none;
  }
  .ps-slide-wrapper.ps-slide-selected .ps-slide-viewing-badge {
    display: block;
  }
  .ps-slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
  }
  .ps-s-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }
  .ps-s-dot-active {
    background: #fff;
    transform: scale(1.25);
  }
  #psCardsSection {
    background: #fff;
    padding: 0 20px 40px;
  }
  #psCardsHeading {
    background: #f5f7ff;
    padding: 32px 24px 20px;
    margin-bottom: 24px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(-20px);
  }
  #psCardsHeading .ps-cards-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 16px;
  }
  #psCardsHeading .ps-cards-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 22px;
    color: #111111;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
    line-height: 1.15;
  }
  #psCardsHeading .ps-cards-rule {
    width: 36px;
    height: 3px;
    background: #1a56db;
    border-radius: 2px;
    margin-bottom: 12px;
  }
  #psCardsHeading .ps-cards-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 450;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
  }
  .ps-cards-container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .ps-product-card {
    display: none;
  }
  .ps-product-card.ps-card-active {
    display: block;
    animation: psCardReveal 0.4s cubic-bezier(0.34, 1.1, 0.64, 1) forwards;
  }
  @keyframes psCardReveal {
    0%   { opacity: 0; transform: translateY(16px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  .ps-c-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    overflow: hidden;
    scroll-margin-top: 16px;
  }
  .ps-c-image {
    width: 100%;
    height: 52vw;
    max-height: 360px;
    overflow: hidden;
  }
  .ps-c-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
  }
  .ps-c-body {
    padding: 24px 20px 28px;
  }
  .ps-c-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #737373;
    margin-bottom: 12px;
  }
  .ps-c-badge-num {
    color: #1a1a1a;
  }
  .ps-c-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0;
  }
  .ps-c-title-blue {
    color: #0057ff;
    margin-top: 2px;
  }
  .ps-c-rule {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin: 14px 0 12px;
  }
  .ps-c-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0057ff;
    margin: 0;
  }
  .ps-c-divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin: 12px 0;
  }
  .ps-c-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0 0 12px;
    text-align: justify;
  }
  .ps-c-text p:last-child {
    margin-bottom: 0;
  }
  .ps-c-feats-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #737373;
    margin-bottom: 16px;
  }
  .ps-c-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
  }
  .ps-c-feat {
    display: flex;
    flex-direction: column;
  }
  .ps-c-feat-icon {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 8px;
  }
  .ps-c-feat-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #1a1a1a;
    margin-bottom: 3px;
  }
  .ps-c-feat-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.55;
    color: #737373;
  }
  .ps-back-to-slider {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 13px;
    background: transparent;
    border: 1.5px solid #1a56db;
    border-radius: 10px;
    color: #1a56db;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    transition: background 0.25s ease, color 0.25s ease;
  }
  .ps-back-to-slider:active {
    background: #1a56db;
    color: #ffffff;
  }
  @media (max-width: 390px) {
    #psSliderSection { height: 80vw; max-height: none; }
    .ps-c-feats { grid-template-columns: 1fr; }
  }
  @media (min-width: 391px) and (max-width: 480px) {
    #psSliderSection { height: 74vw; max-height: none; }
  }
  @media (min-width: 481px) and (max-width: 900px) {
    #psSliderSection { height: 63vw; max-height: 540px; }
  }
}
.clients-carousel-window {
  width: 100%;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.clients-carousel-track {
  display: flex;
  flex-direction: row;
  will-change: transform;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.clients-carousel-track .client-logo-box {
  flex: 0 0 25%;
  min-width: 0;
  border-right: 1px solid #e5e7eb;
  border-radius: 0;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #ffffff;
  opacity: 1;
  transform: none;
  transition: background 0.3s ease;
}
.clients-carousel-track .client-logo-box:last-child {
  border-right: none;
}
@media (max-width: 1024px) {
  .clients-carousel-track .client-logo-box {
    flex: 0 0 33.333%;
  }
}
@media (max-width: 767px) {
  .clients-carousel-track .client-logo-box {
    flex: 0 0 50%;
    height: 120px;
  }
}
.clients-carousel-track .client-logo {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}
.cf-required::placeholder {
  color: #9ca3af;
}
.cf-star {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  color: #ef4444;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}
.cf-star-textarea {
  top: 16px;
  transform: none;
}
.tech-slide-card:has(.tech-tile-icon-flutter) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(84,197,255,0.22) 0%, rgba(255,255,255,0.06) 65%);
  border-color: rgba(84,197,255,0.28);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(84,197,255,0.22), 0 0 50px rgba(84,197,255,0.10);
}
.tech-slide-card:has(.tech-tile-icon-python) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(255,214,0,0.18) 0%, rgba(55,118,171,0.14) 55%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(55,118,171,0.28);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,214,0,0.18);
}
.tech-slide-card:has(.tech-tile-icon-embedded) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(0,200,180,0.20) 0%, rgba(255,255,255,0.06) 65%);
  border-color: rgba(0,200,180,0.26);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(0,200,180,0.20), 0 0 44px rgba(0,200,180,0.08);
}
.tech-slide-card:has(.tech-tile-icon-iot) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(0,188,255,0.22) 0%, rgba(255,255,255,0.06) 65%);
  border-color: rgba(0,188,255,0.26);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(0,188,255,0.20), 0 0 44px rgba(0,188,255,0.08);
}
.tech-slide-card:has(.tech-tile-icon-java) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(240,80,30,0.22) 0%, rgba(255,140,0,0.12) 55%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(240,80,30,0.26);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,120,30,0.20), 0 0 44px rgba(240,80,30,0.08);
}
.tech-slide-card:has(.tech-tile-icon-android) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(60,218,68,0.22) 0%, rgba(255,255,255,0.06) 65%);
  border-color: rgba(60,218,68,0.26);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(60,218,68,0.20), 0 0 44px rgba(60,218,68,0.08);
}
.tech-slide-card:has(.tech-tile-icon-reactnative) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(97,218,251,0.24) 0%, rgba(255,255,255,0.06) 65%);
  border-color: rgba(97,218,251,0.26);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(97,218,251,0.20), 0 0 44px rgba(97,218,251,0.08);
}
.tech-slide-card:has(.tech-tile-icon-php) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(119,123,180,0.28) 0%, rgba(90,80,160,0.14) 55%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(119,123,180,0.28);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(119,123,180,0.22), 0 0 44px rgba(119,123,180,0.10);
}
.tech-slide-card:has(.tech-tile-icon-solidity) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(180,180,200,0.22) 0%, rgba(100,100,140,0.12) 55%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(160,160,200,0.26);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(200,200,220,0.20);
}
.tech-slide-card:has(.tech-tile-icon-springboot) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(109,196,62,0.22) 0%, rgba(255,255,255,0.06) 65%);
  border-color: rgba(109,196,62,0.26);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(109,196,62,0.20), 0 0 44px rgba(109,196,62,0.08);
}
.tech-slide-card:has(.tech-tile-icon-claude) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(212,100,70,0.26) 0%, rgba(180,70,50,0.14) 55%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(212,100,70,0.28);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(212,100,70,0.20), 0 0 44px rgba(212,100,70,0.08);
}
.tech-slide-card:has(.tech-tile-icon-opencode) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 65%);
  border-color: rgba(255,255,255,0.20);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.25);
}
.tech-slide-card:has(.tech-tile-icon-claudecode) .tech-slide-content::before {
  background: url('assets/images/claudecode_tile.webp') center/cover no-repeat;
  border-color: transparent;
  box-shadow: none;
}
.tech-slide-card:has(.tech-tile-icon-gemini) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(138,180,248,0.24) 0%, rgba(180,120,240,0.14) 55%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(138,180,248,0.26);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(138,180,248,0.20), 0 0 44px rgba(138,180,248,0.08);
}
.tech-slide-card:has(.tech-tile-icon-antigravity) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(160,100,255,0.26) 0%, rgba(100,50,200,0.14) 55%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(160,100,255,0.26);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(160,100,255,0.20), 0 0 44px rgba(160,100,255,0.08);
}
.tech-slide-card:has(.tech-tile-icon-copilot) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(0,120,212,0.26) 0%, rgba(0,80,180,0.14) 55%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(0,120,212,0.26);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(0,120,212,0.20), 0 0 44px rgba(0,120,212,0.08);
}
.tech-slide-card:has(.tech-tile-icon-notebooklm) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(255,255,255,0.18) 0%, rgba(60,180,100,0.10) 55%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(255,255,255,0.20);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.28);
}
.tech-slide-card:has(.tech-tile-icon-ros) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(80,120,200,0.24) 0%, rgba(40,80,160,0.14) 55%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(80,140,220,0.26);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(80,140,220,0.20), 0 0 44px rgba(80,120,200,0.08);
}
.tech-slide-card:has(.tech-tile-icon-vlsi) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(26,86,219,0.32) 0%, rgba(60,120,255,0.18) 55%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(60,120,255,0.30);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(60,120,255,0.22), 0 0 56px rgba(26,86,219,0.14);
}
.tech-slide-card:has(.tech-tile-icon-fpga) .tech-slide-content::before {
  background: radial-gradient(ellipse at 50% 55%, rgba(100,80,220,0.28) 0%, rgba(60,100,200,0.16) 55%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(100,100,240,0.28);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(100,100,240,0.20), 0 0 50px rgba(100,80,220,0.10);
}
.tech-slide-card:has(.tech-tile-icon-flutter) .tech-icon-placeholder {
  background: rgba(84, 197, 255, 0.13) !important;
  border-color: rgba(84, 197, 255, 0.30) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(84,197,255,0.25), 0 0 60px rgba(84,197,255,0.14) !important;
}
.tech-slide-card:has(.tech-tile-icon-python) .tech-icon-placeholder {
  background: rgba(55, 118, 171, 0.16) !important;
  border-color: rgba(255, 214, 0, 0.28) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,214,0,0.20), 0 0 60px rgba(55,118,171,0.14) !important;
}
.tech-slide-card:has(.tech-tile-icon-embedded) .tech-icon-placeholder {
  background: rgba(0, 200, 180, 0.12) !important;
  border-color: rgba(0, 200, 180, 0.28) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(0,200,180,0.22), 0 0 60px rgba(0,200,180,0.12) !important;
}
.tech-slide-card:has(.tech-tile-icon-iot) .tech-icon-placeholder {
  background: rgba(0, 188, 255, 0.13) !important;
  border-color: rgba(0, 188, 255, 0.28) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(0,188,255,0.22), 0 0 60px rgba(0,188,255,0.13) !important;
}
.tech-slide-card:has(.tech-tile-icon-java) .tech-icon-placeholder {
  background: rgba(240, 80, 30, 0.14) !important;
  border-color: rgba(240, 80, 30, 0.28) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,120,30,0.22), 0 0 60px rgba(240,80,30,0.13) !important;
}
.tech-slide-card:has(.tech-tile-icon-android) .tech-icon-placeholder {
  background: rgba(60, 218, 68, 0.12) !important;
  border-color: rgba(60, 218, 68, 0.28) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(60,218,68,0.22), 0 0 60px rgba(60,218,68,0.12) !important;
}
.tech-slide-card:has(.tech-tile-icon-reactnative) .tech-icon-placeholder {
  background: rgba(97, 218, 251, 0.13) !important;
  border-color: rgba(97, 218, 251, 0.28) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(97,218,251,0.22), 0 0 60px rgba(97,218,251,0.12) !important;
}
.tech-slide-card:has(.tech-tile-icon-php) .tech-icon-placeholder {
  background: rgba(119, 123, 180, 0.18) !important;
  border-color: rgba(119, 123, 180, 0.30) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(119,123,180,0.24), 0 0 60px rgba(119,123,180,0.13) !important;
}
.tech-slide-card:has(.tech-tile-icon-solidity) .tech-icon-placeholder {
  background: rgba(160, 160, 200, 0.14) !important;
  border-color: rgba(180, 180, 220, 0.28) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(200,200,220,0.22) !important;
}
.tech-slide-card:has(.tech-tile-icon-springboot) .tech-icon-placeholder {
  background: rgba(109, 196, 62, 0.13) !important;
  border-color: rgba(109, 196, 62, 0.28) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(109,196,62,0.22), 0 0 60px rgba(109,196,62,0.12) !important;
}
.tech-slide-card:has(.tech-tile-icon-claude) .tech-icon-placeholder {
  background: rgba(212, 100, 70, 0.16) !important;
  border-color: rgba(212, 100, 70, 0.30) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(212,100,70,0.22), 0 0 60px rgba(212,100,70,0.13) !important;
}
.tech-slide-card:has(.tech-tile-icon-opencode) .tech-icon-placeholder {
  background: rgba(255, 255, 255, 0.11) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.28) !important;
}
.tech-slide-card:has(.tech-tile-icon-claudecode) .tech-icon-placeholder {
  position: absolute !important;
  top: 12px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: calc(100% - 24px) !important;
  height: 62% !important;
  border-radius: 18px !important;
  background: url('assets/images/claudecode_tile.webp') center/cover no-repeat !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  display: block !important;
  align-items: unset !important;
  justify-content: unset !important;
  flex-shrink: unset !important;
  padding: 0 !important;
  z-index: 2 !important;
}
.tech-slide-card:has(.tech-tile-icon-gemini) .tech-icon-placeholder {
  background: rgba(138, 180, 248, 0.14) !important;
  border-color: rgba(138, 180, 248, 0.28) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(138,180,248,0.22), 0 0 60px rgba(180,120,240,0.12) !important;
}
.tech-slide-card:has(.tech-tile-icon-antigravity) .tech-icon-placeholder {
  background: rgba(160, 100, 255, 0.16) !important;
  border-color: rgba(160, 100, 255, 0.28) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(160,100,255,0.22), 0 0 60px rgba(160,100,255,0.13) !important;
}
.tech-slide-card:has(.tech-tile-icon-copilot) .tech-icon-placeholder {
  background: rgba(0, 120, 212, 0.16) !important;
  border-color: rgba(0, 120, 212, 0.28) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(0,120,212,0.22), 0 0 60px rgba(0,120,212,0.14) !important;
}
.tech-slide-card:has(.tech-tile-icon-notebooklm) .tech-icon-placeholder {
  background: rgba(60, 180, 100, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.28), 0 0 50px rgba(60,180,100,0.10) !important;
}
.tech-slide-card:has(.tech-tile-icon-ros) .tech-icon-placeholder {
  background: rgba(80, 120, 200, 0.15) !important;
  border-color: rgba(80, 140, 220, 0.28) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(80,140,220,0.22), 0 0 60px rgba(80,120,200,0.13) !important;
}
.tech-slide-card:has(.tech-tile-icon-vlsi) .tech-icon-placeholder {
  background: rgba(26, 86, 219, 0.20) !important;
  border-color: rgba(60, 120, 255, 0.32) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(60,120,255,0.24), 0 0 70px rgba(26,86,219,0.18) !important;
}
.tech-slide-card:has(.tech-tile-icon-fpga) .tech-icon-placeholder {
  background: rgba(100, 80, 220, 0.18) !important;
  border-color: rgba(100, 100, 240, 0.30) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(100,100,240,0.22), 0 0 65px rgba(100,80,220,0.15) !important;
}
.tech-tile-icon {
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.12)) brightness(1.10);
  z-index: 3 !important;
}
.tech-tile-icon-flutter     { filter: drop-shadow(0 0 18px rgba(84,197,255,0.40))   brightness(1.15); }
.tech-tile-icon-python      { filter: drop-shadow(0 0 18px rgba(255,214,0,0.30))    brightness(1.18); }
.tech-tile-icon-embedded    { filter: drop-shadow(0 0 18px rgba(0,200,180,0.40))    brightness(1.18); }
.tech-tile-icon-iot         { filter: drop-shadow(0 0 18px rgba(0,188,255,0.40))    brightness(1.15); }
.tech-tile-icon-java        { filter: drop-shadow(0 0 20px rgba(240,80,30,0.42))    brightness(1.18); }
.tech-tile-icon-android     { filter: drop-shadow(0 0 18px rgba(60,218,68,0.42))    brightness(1.15); }
.tech-tile-icon-reactnative { filter: drop-shadow(0 0 18px rgba(97,218,251,0.40))   brightness(1.15); }
.tech-tile-icon-php         { filter: drop-shadow(0 0 18px rgba(119,123,180,0.42))  brightness(1.18); }
.tech-tile-icon-solidity    { filter: drop-shadow(0 0 16px rgba(180,180,200,0.38))  brightness(1.20) contrast(1.08); }
.tech-tile-icon-springboot  { filter: drop-shadow(0 0 18px rgba(109,196,62,0.42))   brightness(1.18); }
.tech-tile-icon-claude      { filter: drop-shadow(0 0 20px rgba(212,100,70,0.42))   brightness(1.15); }
.tech-tile-icon-opencode    { filter: drop-shadow(0 0 16px rgba(255,255,255,0.28))  brightness(1.30) contrast(1.10); }
.tech-tile-icon-claudecode  { filter: drop-shadow(0 0 20px rgba(255,140,30,0.45))   brightness(1.15); }
.tech-tile-icon-gemini      { filter: drop-shadow(0 0 18px rgba(138,180,248,0.38))  brightness(1.12); }
.tech-tile-icon-antigravity { filter: drop-shadow(0 0 20px rgba(160,100,255,0.42))  brightness(1.18); }
.tech-tile-icon-copilot     { filter: drop-shadow(0 0 20px rgba(0,120,212,0.45))    brightness(1.22); }
.tech-tile-icon-notebooklm  { filter: drop-shadow(0 0 16px rgba(255,255,255,0.28))  brightness(1.28) contrast(1.12); }
.tech-tile-icon-ros         { filter: drop-shadow(0 0 18px rgba(80,120,200,0.42))   brightness(1.18); }
.tech-tile-icon-vlsi        { filter: drop-shadow(0 0 24px rgba(26,86,219,0.50))    brightness(1.22) contrast(1.08); }
.tech-tile-icon-fpga        { filter: drop-shadow(0 0 22px rgba(100,80,220,0.50))   brightness(1.20) contrast(1.08); }
@media (hover: hover) and (pointer: fine) {
  .tech-slide-card:hover .tech-tile-icon {
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(0.85) !important;
    filter: none !important;
  }
}
.tech-slide-card.mobile-expanded .tech-tile-icon {
  opacity: 0 !important;
  transform: translate(-50%, -50%) scale(0.85) !important;
  filter: none !important;
}
.card-hover-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  transform: translateY(-40px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.42, 0, 0.58, 1) 0.15s,
              opacity 0.55s ease 0.15s;
  flex-shrink: 0;
}
.card-hover-number {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a56db;
  line-height: 1;
  margin-bottom: 8px;
}
.card-hover-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.card-hover-rule {
  width: 32px;
  height: 3px;
  background: #1a56db;
  border-radius: 2px;
  margin-top: 10px;
  margin-bottom: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease 0.35s;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover .card-hover-header {
    display: none;
  }
  .service-card:hover .card-hover-overlay {
    transform: translateY(0);
    transition-delay: 0s;
  }
  .service-card:hover .card-full-desc {
    transform: translateY(0);
    opacity: 1;
  }
}
.service-card.mobile-touch-active .card-hover-header {
  display: none;
}
.service-card.mobile-touch-active .card-hover-overlay {
  transform: translateY(0);
}
.service-card.mobile-touch-active .card-full-desc {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 480px) {
  .management-right-stats {
    width: 100%;
    overflow: hidden;
  }
  .stat-blue-box,
  .stat-white-box {
    width: 100%;
    box-sizing: border-box;
    padding: 28px 24px;
    overflow: hidden;
  }
  .stat-header {
    gap: 8px;
    flex-wrap: wrap;
    overflow: hidden;
  }
  .stat-number {
    font-size: 32px;
    white-space: normal;
    word-break: break-word;
  }
  .stat-desc,
  .stat-desc-dark {
    font-size: 13px;
    word-break: break-word;
  }
}
@media (max-width: 767px) {
  .service-card {
    height: 360px !important;
    min-height: 360px !important;
  }
  .card-full-desc {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 20px 22px !important;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    letter-spacing: -0.05px !important;
    text-align: justify !important;
    text-justify: inter-word !important;
    box-sizing: border-box !important;
  }
  .card-full-desc::-webkit-scrollbar {
    display: none !important;
  }
}