* {
  font-family: "Poppins", sans-serif;
}

button {
  cursor: pointer;
}

h1,
h2,
h3 {
  margin: 0;
}

hr {
  color: #666666;
}

input,
textarea {
  border-radius: 7px;
  border: none;
  padding-left: 10px;
  height: 50px;
  resize: none;
  margin: 5px;
  font-size: 14px;
}

textarea {
  padding-top: 10px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

*::selection {
  background-color: #044888;
  color: #fff;
}

.user-select-none {
  user-select: none;
}

.no-wrap {
  white-space: nowrap;
}

@keyframes shine {
  to {
    background-position: left;
  }
}
@keyframes kubrik-float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    filter: drop-shadow(0 0 0px rgba(1, 167, 155, 0));
  }
  25% {
    transform: translateY(-18px) translateX(10px) rotate(6deg);
    filter: drop-shadow(0 0 18px rgba(29, 160, 203, 0.18));
  }
  55% {
    transform: translateY(-32px) translateX(5px) rotate(12deg);
    filter: drop-shadow(0 0 28px rgba(1, 167, 155, 0.22));
  }
  80% {
    transform: translateY(-20px) translateX(-8px) rotate(7deg);
    filter: drop-shadow(0 0 20px rgba(29, 160, 203, 0.16));
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    filter: drop-shadow(0 0 0px rgba(1, 167, 155, 0));
  }
}
@keyframes spaceship {
  0% {
    transform: translateY(0) translateX(0) rotate(-3deg);
    filter: drop-shadow(0 4px 10px rgba(29, 160, 203, 0.35));
  }
  20% {
    transform: translateY(-14px) translateX(7px) rotate(4deg);
    filter: drop-shadow(0 6px 22px rgba(29, 160, 203, 0.75));
  }
  45% {
    transform: translateY(-26px) translateX(3px) rotate(9deg);
    filter: drop-shadow(0 8px 28px rgba(1, 167, 155, 0.6));
  }
  70% {
    transform: translateY(-18px) translateX(-5px) rotate(2deg);
    filter: drop-shadow(0 6px 24px rgba(29, 160, 203, 0.85));
  }
  100% {
    transform: translateY(0) translateX(0) rotate(-3deg);
    filter: drop-shadow(0 4px 10px rgba(29, 160, 203, 0.35));
  }
}
@keyframes spaceship-inverted {
  0%, 100% {
    -webkit-transform: translateY(-20px) scaleX(-1);
    transform: translateY(0) scaleX(-1);
  }
  50% {
    -webkit-transform: translateY(-20px) scaleX(-1);
    transform: translateY(-20px) scaleX(-1);
  }
}
@keyframes bump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes meteorite {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 10px;
    transform: rotate(-20deg);
  }
  100% {
    bottom: 0;
  }
}
@keyframes comet {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes glowPulse {
  0%, 100% {
    transform: scale(0.88);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}
.will-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.will-reveal.reveal-left {
  transform: translateX(-28px);
}
.will-reveal.reveal-right {
  transform: translateX(28px);
}
.will-reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background-color: #d8d8d8;
}

::-webkit-scrollbar-thumb {
  background-color: #696969;
  border-radius: 40px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #2e2e2e;
}

body {
  margin: 0;
  color: #000;
  background: white;
  overflow-x: hidden;
}
body h2 {
  font-weight: 600;
  font-size: 23px;
}
body h1 {
  font-size: 49px;
}
body h3 {
  font-weight: 600;
  font-size: 23px;
}
body .color-gradient-digital {
  font-weight: bold;
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0) 40%, rgba(255, 255, 255, 0.3333333333), rgba(0, 0, 0, 0) 60%) right/300% 100%, linear-gradient(45deg, #01a79b, #00509c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #000;
  animation: shine 4s infinite;
  z-index: 1 !important;
  position: relative;
  filter: drop-shadow(2px 4px 6px white);
}
body .kubriklogo {
  width: 282px;
  height: 74px;
}
body .button-primary {
  background: #fff;
  border: none;
  font-weight: 500;
  font-size: 18px;
  border-radius: 5px;
  width: 100px;
}
body .button-primary:hover {
  background: #cfdeec;
  color: #00509c;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
body .button-secondary {
  border: none;
  font-weight: 600;
  font-size: 17px;
  background: linear-gradient(90deg, #01a79b 0%, #1da0cb 100%);
  color: #fff;
  border-radius: 7px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  transition: all 200ms ease-in;
}
body .button-secondary:hover {
  box-shadow: 0px 2px 18px 0px rgba(63, 63, 63, 0.2509803922);
  transition: box-shadow 200ms ease-in-out;
}
body #header {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
body #header.header--scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}
body #header.header--scrolled .nav-links button {
  color: #010101 !important;
  background: transparent !important;
}
body #header.header--scrolled .nav-links button:hover {
  background: rgba(1, 167, 155, 0.06) !important;
  color: #01a79b !important;
}
body #header.header--scrolled .checkHamburguerMenu span {
  background: #3d3d3d !important;
}
body #header.header--light-links:not(.header--scrolled) .nav-links button {
  color: rgba(255, 255, 255, 0.82);
}
body #header.header--light-links:not(.header--scrolled) .nav-links button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
body #header.header--light-links:not(.header--scrolled) .checkHamburguerMenu span {
  background: rgba(255, 255, 255, 0.8);
}
body #header.header--light-links:not(.header--scrolled) .contactButtonContainer .button-secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}
body #header.header--light-links:not(.header--scrolled) .contactButtonContainer .button-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}
body #header .logoContainer {
  cursor: pointer;
  display: flex;
  align-items: center;
}
body #header .kubriklogo {
  width: 148px;
  height: auto;
}
body #header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 0;
}
body #header .nav-small,
body #header .smallLogoContainer,
body #header .menu-small-nav {
  display: none;
}
body #header .nav-container,
body #header .nav-small {
  transition: all 200ms ease-in;
}
body #header .nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
body #header .lang-switcher-container {
  display: flex;
  align-items: center;
}
body #header .lang-switcher-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  color: inherit;
  outline: none;
  transition: border-color 150ms, background 150ms;
}
body #header .lang-switcher-select:hover {
  border-color: #01a79b;
  background: rgba(1, 167, 155, 0.06);
}
body #header .lang-switcher-select option {
  color: #000;
  background: #fff;
}
body #header.header--scrolled .lang-switcher-select, body #header:not(.header--light-links) .lang-switcher-select {
  color: #010101;
  border-color: rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.6);
}
body #header.header--light-links:not(.header--scrolled) .lang-switcher-select {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.22);
}
body #header.header--light-links:not(.header--scrolled) .lang-switcher-select:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 854px) {
  body #header .lang-switcher-container {
    display: none;
  }
}
body #header .nav-links button {
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: #010101;
  padding: 8px 14px;
  border-radius: 6px;
  width: auto;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
body #header .nav-links button:hover {
  color: #01a79b;
  background: rgba(1, 167, 155, 0.06);
}
body #header .nav-links a,
body #header .menu-small-nav a {
  color: inherit;
  text-decoration: none;
}
body #header .nav-links button a {
  position: relative;
  display: inline-block;
}
body #header .nav-links button a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #01a79b;
  border-radius: 2px;
  transition: width 200ms ease;
}
body #header .nav-links button:hover a::after {
  width: 100%;
}
body #header .nav-small {
  display: none;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 0 20px;
  width: 100%;
}
body #header .menu-small-nav {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: 100dvw;
  background: linear-gradient(160deg, #1a1d3a 0%, #0d2240 100%);
  z-index: -10;
  padding: 80px 0 40px;
  box-sizing: border-box;
}
body #header .menu-small-nav button {
  background: transparent;
  border: none;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  padding: 12px 36px;
  border-radius: 8px;
  font-family: inherit;
  width: auto;
  scale: 1;
  transition: color 0.2s, background 0.2s;
}
body #header .menu-small-nav button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  scale: 1;
}
body #header .menu-small-nav .button-secondary {
  background: linear-gradient(90deg, #01a79b, #1da0cb) !important;
  color: #fff !important;
  padding: 12px 32px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  margin-top: 16px;
}
body #header .menu-small-nav .button-secondary a {
  color: #fff !important;
}
body #header .menu-small-nav .button-secondary:hover {
  box-shadow: 0 4px 20px rgba(1, 167, 155, 0.4);
}
body #header .smallLogoContainer {
  z-index: 10000;
}
body #header .checkHamburguerMenu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 5px 0;
  cursor: pointer;
  z-index: 10000;
}
body #header .checkHamburguerMenu span {
  display: block;
  background: #3d3d3d;
  border-radius: 2px;
  height: 2px;
  transition: 280ms cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
body #header .checkHamburguerMenu span:nth-of-type(1) {
  width: 60%;
}
body #header .checkHamburguerMenu span:nth-of-type(2) {
  width: 100%;
}
body #header .checkHamburguerMenu span:nth-of-type(3) {
  width: 75%;
}
body #header .checkHamburguerMenu input[type=checkbox] {
  display: none;
}
body #header .checkHamburguerMenu input[type=checkbox]:checked ~ span:nth-of-type(1) {
  width: 100%;
  transform: translateY(7px) rotate(45deg);
}
body #header .checkHamburguerMenu input[type=checkbox]:checked ~ span:nth-of-type(2) {
  opacity: 0;
  transform: scaleX(0);
}
body #header .checkHamburguerMenu input[type=checkbox]:checked ~ span:nth-of-type(3) {
  width: 100%;
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1074px) {
  body #header .logoContainer {
    display: none;
  }
  body #header .smallLogoContainer {
    display: flex;
  }
  body #header .smallLogoContainer img {
    width: 38px;
    height: auto;
    cursor: pointer;
  }
}
@media (max-width: 854px) {
  body #header .contactButtonContainer {
    display: none;
  }
}
@media (max-width: 674px) {
  body #header .nav-container {
    display: none;
  }
  body #header .nav-small {
    display: flex;
  }
}
body #hero {
  display: flex;
  width: 100%;
  background: radial-gradient(ellipse 65% 80% at 80% 50%, rgba(29, 160, 203, 0.08) 0%, transparent 65%), radial-gradient(ellipse 40% 50% at 5% 90%, rgba(1, 167, 155, 0.07) 0%, transparent 60%), #f6f6f6;
}
body #hero .spaceship {
  position: absolute;
  right: 20px;
  bottom: 10px;
  animation: spaceship 10s infinite ease-in-out;
}
body #hero .hero-text {
  display: flex;
  align-items: center;
  color: #333333;
}
body #hero .hero-container {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 200px;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 60px;
  min-height: 100dvh;
}
body #hero .spaceship-img {
  width: 140px;
}
body #hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(1, 167, 155, 0.09);
  border: 1px solid rgba(1, 167, 155, 0.28);
  color: #01a79b;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
body #hero .eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #01a79b;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
body #hero .hero-title {
  font-size: 64px;
  margin: 0;
  font-weight: 500;
  color: black;
  line-height: 1.1;
}
body #hero .title-dash {
  color: #542d8a;
}
body #hero .hero-subtitle {
  font-weight: 700;
}
body #hero .subtitle-color {
  color: #00509c;
}
body #hero .hero-paragraph {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 480px;
}
body #hero .hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
body #hero .hero-link {
  color: #00509c;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: gap 150ms ease;
}
body #hero .hero-link:hover {
  text-decoration: underline;
}
body #hero .hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
body #hero .hero-stat .stat-number {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #212245;
  line-height: 1;
}
body #hero .hero-stat .stat-label {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 4px;
  white-space: nowrap;
}
body #hero .hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 1654px) {
  body #hero .hero-image img {
    width: 500px;
    height: 500px;
  }
  body #hero .hero-container {
    padding: 100px 80px;
  }
}
@media (max-width: 1254px) {
  body #hero .hero-container {
    padding: 100px 60px;
    gap: 40px;
  }
  body #hero .hero-title {
    font-size: 52px;
  }
  body #hero .hero-image img {
    width: 420px;
    height: 420px;
  }
  body #hero .spaceship-img {
    display: none;
  }
}
@media (max-width: 1074px) {
  body #hero .hero-image img {
    width: 340px;
    height: 340px;
  }
  body #hero .hero-title {
    font-size: 46px;
  }
}
@media (max-width: 854px) {
  body #hero .hero-container {
    flex-direction: column-reverse;
    padding: 100px 48px 60px;
    gap: 32px;
    min-height: unset;
    padding-top: 120px;
  }
  body #hero .hero-image img {
    width: 280px;
    height: 280px;
  }
  body #hero .hero-text {
    width: 100%;
  }
  body #hero .hero-paragraph {
    max-width: 100%;
  }
  body #hero .spaceship {
    display: none;
  }
}
@media (max-width: 544px) {
  body #hero .hero-container {
    padding: 100px 28px 48px;
  }
  body #hero .hero-title {
    font-size: 40px;
  }
  body #hero .hero-stats {
    gap: 24px;
  }
  body #hero .hero-image img {
    width: 240px;
    height: 240px;
  }
}
@media (max-width: 384px) {
  body #hero .hero-title {
    font-size: 34px;
  }
  body #hero .hero-paragraph {
    font-size: 14px;
  }
}
body #about {
  background: #fff;
  position: relative;
}
body #about .meteorite {
  position: absolute;
  bottom: 0;
  opacity: 0.4;
  left: 20px;
  animation: meteorite 10s infinite ease-in-out;
}
body #about .meteorite img {
  position: relative;
  top: 90px;
  left: 18px;
}
body #about .about-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 100px;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}
body #about .about-eyebrow {
  color: #00509c;
  margin-bottom: 12px;
}
body #about .about-text {
  width: 70%;
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin-top: 16px;
}
body #about .about-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 52px;
  padding-top: 48px;
  border-top: 1px solid #efefef;
  width: 100%;
}
body #about .about-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 28px;
  background: #f6f6f6;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  cursor: default;
  min-width: 130px;
}
body #about .about-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(1, 167, 155, 0.14);
  border-color: rgba(1, 167, 155, 0.25);
}
body #about .about-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #01a79b, #1da0cb);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(1, 167, 155, 0.3);
}
body #about .about-feature-icon svg {
  stroke: #fff;
}
body #about .about-feature-label {
  font-size: 13px;
  font-weight: 600;
  color: #212245;
  white-space: nowrap;
}
body #about .about-cta {
  margin-top: 36px;
  color: #00509c;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
body #about .about-cta:hover {
  text-decoration: underline;
}
@media (max-width: 1200px) {
  body #about .about-container {
    padding: 80px;
  }
}
@media (max-width: 854px) {
  body #about .about-container {
    padding: 60px 40px;
  }
  body #about .about-container h1 {
    font-size: 40px;
  }
  body #about .about-text {
    width: 90%;
  }
}
@media (max-width: 694px) {
  body #about .about-container {
    padding: 48px 24px;
  }
  body #about .about-container h1 {
    font-size: 34px;
  }
  body #about .meteorite {
    display: none;
  }
  body #about .about-features {
    gap: 12px;
  }
  body #about .about-feature {
    padding: 18px 20px;
    min-width: 110px;
  }
}
@media (max-width: 384px) {
  body #about .about-container h1 {
    font-size: 30px;
  }
  body #about .about-text {
    font-size: 14px;
    width: 100%;
  }
}
body .highlight {
  color: #00509c;
}
body #services {
  background: linear-gradient(0deg, #f6f6f6 80%, white 100%);
}
body #services .services-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 100px;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}
body #services .services-text {
  width: 80%;
}
body #services .services-cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  gap: 24px;
}
body #services .service-card {
  width: 100%;
}
body #services .service-content {
  text-align: left;
}
body #services .service-card {
  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.1098039216);
  padding: 50px 40px;
  width: 40%;
  margin: 1%;
  display: flex;
  align-items: center;
  gap: 40px;
  border-radius: 20px;
  cursor: pointer;
  background: #fff;
  transition: all 100ms ease-in-out;
}
body #services .service-card .services-title {
  font-size: 23px;
  font-weight: 600;
  color: #212245;
}
body #services .service-card .services-description {
  font-size: 15px;
  color: #333333;
  margin-top: 10px;
}
body #services .service-card .service-image {
  width: 50px;
  transition: scale 100ms ease-in-out;
}
body #services .service-card:hover {
  background: linear-gradient(90deg, #01a79b 0%, #1da0cb 100%);
  animation: bump 0.3s ease-in-out;
}
body #services .service-card:hover .services-title {
  color: #fff;
}
body #services .service-card:hover .services-description {
  color: rgb(238, 238, 238);
}
body #services .service-card:hover .service-image {
  filter: brightness(0) invert(1);
  scale: 1.14;
}
@media (max-width: 1364px) {
  body #services .service-card {
    width: 100%;
  }
}
@media (max-width: 1254px) {
  body #services .services-container {
    padding: 50px 100px;
  }
}
@media (max-width: 954px) {
  body #services .services-container h1 {
    font-size: 40px;
  }
  body #services .services-cards {
    gap: 16px;
  }
  body #services .service-card {
    padding: 28px;
  }
}
@media (max-width: 794px) {
  body #services .services-container {
    padding: 24px;
    margin-top: 54px;
  }
  body #services .services-container h1 {
    font-size: 36px;
  }
  body #services .service-card {
    flex-direction: column;
    gap: 20px;
    padding: 35px;
  }
}
body #whyus {
  position: relative;
  margin-top: 40px;
}
body #whyus .whyus-container {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 10px;
  justify-content: center;
  position: relative;
  gap: 40px;
}
body #whyus .card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  border-left: 4px solid #01a79b;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
body #whyus .card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 22px rgba(1, 167, 155, 0.15);
}
body #whyus .card .card-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #01a79b, #1da0cb);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(1, 167, 155, 0.28);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
body #whyus .card .card-icon svg {
  stroke: #fff;
}
body #whyus .card:hover .card-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(1, 167, 155, 0.38);
}
body #whyus .card .card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #212245;
  margin: 0 0 5px 0;
}
body #whyus .card .card-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}
body #whyus .us-text {
  display: flex;
  align-items: center;
  width: 50%;
}
body #whyus .comet {
  animation: comet 10s infinite ease-in-out;
  right: -20px;
  top: -104px;
  position: absolute;
  transform: scaleX(-1) rotate(10deg) !important;
  z-index: -10000;
}
@media (max-width: 1284px) {
  body #whyus .whyus-container {
    padding: 60px 10px;
    gap: 30px;
  }
  body #whyus .whyus-container h1 {
    font-size: 40px;
  }
  body #whyus .us-image img {
    width: 550px;
    height: 550px;
  }
}
@media (max-width: 1184px) {
  body #whyus .whyus-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  body #whyus .us-text {
    width: 80%;
  }
}
@media (max-width: 894px) {
  body #whyus .whyus-container {
    padding: 75px 0px;
    gap: 20px;
  }
  body #whyus .ourproduct-container {
    flex-direction: row-reverse;
  }
  body #whyus .us-image img {
    width: 350px;
    height: 350px;
  }
  body #whyus .us-text h1 {
    font-size: 40px;
  }
}
@media (max-width: 764px) {
  body #whyus .whyus-container {
    flex-direction: column;
    align-items: center;
    padding: 50px 0px;
  }
  body #whyus .us-text {
    width: 80%;
  }
  body #whyus .comet {
    display: none;
  }
}
body #stepper {
  background: #f6f6f6;
}
body #stepper .stepper-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 100px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
body #stepper .stepper-label {
  color: #00509c;
  margin-bottom: 8px;
}
body #stepper .stepper-subtitle {
  color: #666;
  font-size: 15px;
  max-width: 520px;
  margin-top: 12px;
  line-height: 1.6;
}
body #stepper .steps {
  display: flex;
  margin-top: 56px;
  width: 100%;
  position: relative;
}
body #stepper .steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 16.6666666667%;
  width: 66.6666666667%;
  height: 2px;
  background: linear-gradient(90deg, #01a79b, #1da0cb);
  z-index: 0;
}
body #stepper .step-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 40px;
  position: relative;
  z-index: 1;
}
body #stepper .step-card:hover .step-number {
  transform: scale(1.12);
  box-shadow: 0 6px 22px rgba(1, 167, 155, 0.4);
}
body #stepper .step-card:hover h2 {
  color: #01a79b;
}
body #stepper .step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #01a79b, #1da0cb);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(1, 167, 155, 0.35);
  border: 3px solid #f6f6f6;
  transition: transform 250ms ease, box-shadow 250ms ease;
  position: relative;
  z-index: 2;
}
body #stepper .step-icon-tile {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #01a79b, #1da0cb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 14px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(1, 167, 155, 0.3);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
body #stepper .step-icon-tile svg {
  stroke: #fff;
}
body #stepper .step-card:hover .step-icon-tile {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px rgba(1, 167, 155, 0.4);
}
body #stepper h2 {
  font-weight: 700;
  color: #212245;
  margin-bottom: 12px;
  font-size: 20px;
  transition: color 200ms ease;
}
body #stepper .stepper-text {
  text-align: center;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  body #stepper .stepper-container {
    padding: 60px 40px;
  }
  body #stepper .steps {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  body #stepper .steps::before {
    top: 27px;
    left: 27px;
    width: 2px;
    height: calc(100% - 54px);
    background: linear-gradient(180deg, #01a79b, #1da0cb);
  }
  body #stepper .step-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 0 0 36px 0;
    text-align: left;
  }
  body #stepper .step-number {
    flex-shrink: 0;
  }
  body #stepper .step-icon-tile {
    display: none;
  }
  body #stepper h2 {
    margin-top: 10px;
    text-align: left;
  }
  body #stepper .stepper-text {
    text-align: left;
    max-width: 100%;
  }
}
@media (max-width: 724px) {
  body #stepper .stepper-container {
    padding: 50px 24px;
  }
  body #stepper .stepper-container h1 {
    font-size: 36px;
  }
}
body #ourproduct {
  background: linear-gradient(135deg, #1a1d3a 0%, #0d2240 100%);
  position: relative;
  overflow: hidden;
}
body #ourproduct::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 160, 203, 0.12) 0%, transparent 65%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
body #ourproduct .solutions-header {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px 0;
}
body #ourproduct .solutions-header h1 {
  font-size: 46px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
body #ourproduct .solutions-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #01a79b;
  margin-bottom: 14px;
}
body #ourproduct .solutions-subtitle {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto;
}
body #ourproduct .product-divider {
  width: 88%;
  max-width: 1400px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
body #ourproduct .product-container {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 60px;
}
body #ourproduct .product-container--reverse {
  flex-direction: row-reverse;
}
body #ourproduct .kserp-section {
  width: 100%;
  background: linear-gradient(160deg, #eef4fb 0%, #e6eff9 100%);
}
body #ourproduct .kserp-section h1 {
  color: #12152e;
}
body #ourproduct .kserp-section .product-eyebrow {
  background: rgba(1, 167, 155, 0.08);
  border-color: rgba(1, 167, 155, 0.28);
  color: #01a79b;
}
body #ourproduct .kserp-section .product-description {
  color: #556070;
}
body #ourproduct .kserp-section .product-feature {
  color: #374155;
}
body #ourproduct .kserp-section .feature-check {
  background: rgba(1, 167, 155, 0.1);
  border-color: rgba(1, 167, 155, 0.35);
}
body #ourproduct .kserp-section .kserp-brand-card {
  background: linear-gradient(145deg, #1a1d3a 0%, #0d2240 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(10, 18, 60, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.04);
}
body #ourproduct .kserp-brand-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 52px 44px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}
body #ourproduct .kserp-brand-logo {
  font-size: 68px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 14px;
}
body #ourproduct .kserp-ks {
  background: linear-gradient(90deg, #01a79b, #1da0cb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body #ourproduct .kserp-dash {
  color: rgba(255, 255, 255, 0.3);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.3);
}
body #ourproduct .kserp-erp {
  color: rgba(255, 255, 255, 0.92);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92);
}
body #ourproduct .kserp-brand-tag {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 36px;
}
body #ourproduct .kserp-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
body #ourproduct .kserp-modules span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
body #ourproduct .us-text {
  display: flex;
  align-items: center;
  width: 50%;
  flex-shrink: 0;
}
body #ourproduct .product-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
body #ourproduct .product-eyebrow .eyebrow-dot {
  background: #01a79b;
}
body #ourproduct h1 {
  font-size: 46px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
body #ourproduct .product-highlight {
  background: linear-gradient(90deg, #01a79b, #1da0cb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body #ourproduct .product-description {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
body #ourproduct .product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
body #ourproduct .product-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}
body #ourproduct .feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(1, 167, 155, 0.2);
  border: 1px solid rgba(1, 167, 155, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body #ourproduct .feature-check svg {
  stroke: #01a79b;
}
body #ourproduct .product-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
body #ourproduct .product-link {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 150ms ease;
}
body #ourproduct .product-link:hover {
  color: #fff;
  text-decoration: underline;
}
body #ourproduct .us-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
body #ourproduct .us-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
@media (max-width: 1100px) {
  body #ourproduct .solutions-header {
    padding: 60px 48px 0;
  }
  body #ourproduct .solutions-header h1 {
    font-size: 36px;
  }
  body #ourproduct .product-container,
  body #ourproduct .product-container--reverse {
    flex-direction: column;
    padding: 60px 48px;
    gap: 48px;
  }
  body #ourproduct .us-text {
    width: 100%;
  }
  body #ourproduct h1 {
    font-size: 38px;
  }
  body #ourproduct .us-image img {
    max-width: 100%;
  }
}
@media (max-width: 724px) {
  body #ourproduct .solutions-header {
    padding: 48px 24px 0;
  }
  body #ourproduct .solutions-header h1 {
    font-size: 28px;
  }
  body #ourproduct .product-container,
  body #ourproduct .product-container--reverse {
    padding: 48px 24px;
  }
  body #ourproduct h1 {
    font-size: 32px;
  }
}
body #testimonials {
  background: #f8f9fc;
}
body #testimonials .testimonials-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
body #testimonials .testimonials-label {
  color: #00509c;
  margin-bottom: 8px;
}
body #testimonials .testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  width: 100%;
  align-items: start;
}
body #testimonials .testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border: 1px solid #ebebeb;
  transition: transform 200ms ease, box-shadow 200ms ease;
  text-align: left;
  position: relative;
}
body #testimonials .testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.11);
}
body #testimonials .testimonial:hover .testimonial-logo {
  filter: grayscale(0);
  opacity: 1;
}
body #testimonials .quote-mark {
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 0.6;
  color: #01a79b;
  margin-bottom: 20px;
  opacity: 0.7;
}
body #testimonials .testimonial-quote {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
  flex: 1;
  margin: 0 0 20px 0;
}
body #testimonials .testimonial-stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
body #testimonials .testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #f0f0f0;
}
body #testimonials .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
body #testimonials .author-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #eee;
}
body #testimonials .author-name {
  font-weight: 700;
  font-size: 13px;
  color: #212245;
  margin: 0;
  padding: 0;
}
body #testimonials .author-company {
  font-size: 12px;
  color: #888;
  margin: 2px 0 0 0;
  padding: 0;
}
body #testimonials .testimonial-logo {
  height: 28px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 200ms ease, opacity 200ms ease;
  flex-shrink: 0;
}
@media (max-width: 1100px) {
  body #testimonials .testimonials {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 724px) {
  body #testimonials .testimonials-container {
    padding: 60px 24px;
  }
  body #testimonials .testimonials-container h1 {
    font-size: 36px;
  }
}
body #locations {
  background: #fff;
}
body #locations .locations-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px;
  max-width: 1400px;
  margin: 0 auto;
}
body #locations h2 {
  color: #00509c;
}
body #locations h1 {
  margin-bottom: 40px;
}
body #locations .location-cards {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
body #locations .location-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f6f6f6;
  border-radius: 12px;
  padding: 14px 22px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1019607843);
  min-width: 155px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}
body #locations .location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 24px 0px rgba(1, 167, 155, 0.18);
  border-color: rgba(1, 167, 155, 0.35);
}
body #locations .location-card.active {
  border-color: #01a79b;
  box-shadow: 0px 6px 20px 0px rgba(1, 167, 155, 0.25);
  background: #fff;
}
body #locations .location-flag {
  font-size: 26px;
  line-height: 1;
}
body #locations .location-city {
  font-weight: 600;
  font-size: 14px;
  color: #212245;
  text-align: left;
}
body #locations .location-country {
  font-size: 12px;
  color: #777;
  text-align: left;
}
body #locations #locations-map {
  width: 100%;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.0941176471);
  border: 1px solid #e8e8e8;
}
@media (max-width: 1024px) {
  body #locations .locations-container {
    padding: 60px 40px;
  }
}
@media (max-width: 724px) {
  body #locations .locations-container {
    padding: 40px 20px;
  }
  body #locations h1 {
    font-size: 36px;
  }
  body #locations #locations-map {
    height: 300px;
  }
}
body .map-marker {
  width: 46px;
  height: 46px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .map-marker-flag {
  font-size: 24px;
  line-height: 1;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  transition: transform 150ms ease;
}
body .map-marker:hover .map-marker-flag {
  transform: scale(1.15);
}
body .map-marker-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 167, 155, 0.3) 0%, rgba(29, 160, 203, 0) 70%);
  animation: map-pulse 2.4s ease-out infinite;
}
@keyframes map-pulse {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
body .map-popup-wrapper .leaflet-popup-content-wrapper {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 0;
  border: none;
}
body .map-popup-wrapper .leaflet-popup-content {
  margin: 0;
}
body .map-popup-wrapper .leaflet-popup-tip {
  background: #fff;
}
body .map-popup {
  padding: 10px 18px;
  text-align: center;
  min-width: 110px;
}
body .map-popup-city {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #212245;
}
body .map-popup-country {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}
body #contactus {
  background: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.038) 1px, transparent 0) 0 0/28px 28px, linear-gradient(135deg, #1a1d3a 0%, #0d2240 60%, #0a1628 100%);
  color: #fff;
}
body #contactus .contact-container {
  display: flex;
  align-items: center;
  gap: 72px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 100px 100px;
}
body #contactus .contact-left {
  flex: 0 0 380px;
}
body #contactus .contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}
body #contactus .contact-left h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
body #contactus .contact-sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 36px;
}
body #contactus .contact-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
body #contactus .contact-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}
body #contactus .contact-trust-item svg {
  flex-shrink: 0;
  color: #01a79b;
}
body #contactus .contact-right {
  flex: 1;
}
body #contactus .contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
body #contactus .contact-form-card h3 {
  color: #111827;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
}
body #contactus .contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}
body #contactus .contact-doble-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
body #contactus .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
body #contactus .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.2px;
}
body #contactus .contact-input {
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  color: #111827;
  background: #f9fafb;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
body #contactus .contact-input:focus {
  border-color: #01a79b;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(1, 167, 155, 0.12);
}
body #contactus .contact-input::placeholder {
  color: #9ca3af;
}
body #contactus .contact-textarea {
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  color: #111827;
  background: #f9fafb;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  outline: none;
  width: 100%;
  height: 140px;
  resize: vertical;
  box-sizing: border-box;
  font-family: inherit;
}
body #contactus .contact-textarea:focus {
  border-color: #01a79b;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(1, 167, 155, 0.12);
}
body #contactus .contact-textarea::placeholder {
  color: #9ca3af;
}
body #contactus .contact-button {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
body #contactus #letsTalkSuccess,
body #contactus #letsTalkError {
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
  color: #374151;
}
body #contactus #letsTalkError {
  color: #dc2626;
}
@media (max-width: 1024px) {
  body #contactus .contact-container {
    flex-direction: column;
    gap: 48px;
    padding: 72px 48px;
  }
  body #contactus .contact-left {
    flex: none;
    width: 100%;
  }
  body #contactus .contact-right {
    width: 100%;
  }
}
@media (max-width: 640px) {
  body #contactus .contact-container {
    padding: 60px 24px;
  }
  body #contactus .contact-left h1 {
    font-size: 2rem;
  }
  body #contactus .contact-form-card {
    padding: 28px 24px;
  }
  body #contactus .contact-doble-form {
    grid-template-columns: 1fr;
  }
}

#footer {
  width: 100%;
  padding: 72px 0 0;
  background: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.038) 1px, transparent 0) 0 0/28px 28px, linear-gradient(160deg, #212245 0%, #1a1d3a 55%, #0d1830 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#footer::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(1, 167, 155, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
#footer h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 18px;
}
#footer .column-section a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 4px;
  transition: color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  width: fit-content;
}
#footer .column-section a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 220ms ease;
}
#footer .column-section a:hover {
  color: #fff;
}
#footer .column-section a:hover::after {
  width: 100%;
}
#footer .column-section p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin: 0 0 8px !important;
  padding: 0 !important;
  cursor: default;
  white-space: nowrap;
}
#footer .content-container {
  max-width: 1400px;
  width: 88%;
  margin: 0 auto;
}
#footer .flex-container {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  margin-bottom: 56px;
}
#footer .footer-brand {
  flex: 0 0 200px;
}
#footer .kubriklogo {
  width: 130px;
  height: auto;
  margin-bottom: 16px;
  opacity: 0.88;
}
#footer .footer-tagline {
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
  line-height: 1.65;
  margin: 0 0 20px !important;
  white-space: normal !important;
}
#footer .footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 6px 14px;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}
#footer .footer-social-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  transform: scale(1.04);
}
#footer .column-section {
  flex: 1;
}
#footer hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 0;
}
#footer .rightsreserved {
  padding: 20px 0 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.4px;
}
#footer .kubrikdecoration {
  position: absolute;
  bottom: -20px;
  left: -40px;
  width: 420px;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  animation: kubrik-float 22s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
  will-change: transform, filter;
}
#footer .alienship {
  position: absolute;
  right: 48px;
  bottom: 48px;
  width: 72px;
  opacity: 0.45;
  animation: spaceship 8s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
  will-change: transform, filter;
}
@media (max-width: 1024px) {
  #footer {
    padding: 56px 0 0;
  }
  #footer .flex-container {
    gap: 40px;
  }
  #footer .footer-brand {
    flex: 0 0 160px;
  }
}
@media (max-width: 724px) {
  #footer {
    padding: 48px 0 0;
  }
  #footer .flex-container {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
  }
  #footer .footer-brand {
    flex: none;
  }
  #footer .content-container {
    width: 88%;
  }
  #footer .alienship {
    display: none;
  }
}

.service-page {
  min-height: 100vh;
}
.service-page .svc-hero {
  background: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.055) 1px, transparent 0) 0 0/30px 30px, linear-gradient(135deg, #1a1d3a 0%, #0d2240 60%, #0a1628 100%);
  padding: 155px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-page .svc-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(1, 167, 155, 0.18) 0%, transparent 68%);
  pointer-events: none;
}
.service-page .svc-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(29, 160, 203, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.service-page .svc-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.service-page .back-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 36px;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}
.service-page .back-link:hover {
  color: rgba(255, 255, 255, 0.9);
}
.service-page .svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.service-page .svc-eyebrow .eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #01a79b;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
.service-page .svc-icon-tile {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #01a79b, #1da0cb);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  position: relative;
  box-shadow: 0 0 0 12px rgba(1, 167, 155, 0.1), 0 0 0 24px rgba(1, 167, 155, 0.05), 0 16px 40px rgba(1, 167, 155, 0.45);
}
.service-page .svc-icon-tile img {
  width: 52px;
  filter: brightness(0) invert(1);
}
.service-page h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.4px;
  line-height: 1.1;
}
.service-page .service-page-description {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.78;
  max-width: 600px;
  margin: 0 auto 40px;
}
.service-page .svc-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #01a79b, #1da0cb);
  border-radius: 2px;
  margin: 0 auto 36px;
}
.service-page .svc-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.service-page .svc-contact-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.service-page .svc-contact-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.service-page .svc-body {
  background: #fff;
  position: relative;
}
.service-page .svc-body::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 52px;
  background: #fff;
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
}
.service-page .svc-body-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 40px;
}
.service-page .service-benefits {
  margin-bottom: 56px;
}
.service-page .service-benefits h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #01a79b;
  margin-bottom: 20px;
}
.service-page .service-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-page .service-benefits ul li {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 20px 20px 20px 28px;
  position: relative;
  font-size: 14px;
  color: #333333;
  line-height: 1.65;
  border: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.service-page .service-benefits ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  background: linear-gradient(180deg, #01a79b, #1da0cb);
  border-radius: 2px;
}
.service-page .service-benefits ul li:hover {
  border-color: rgba(1, 167, 155, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.service-page .service-benefits ul li strong {
  color: #212245;
  font-weight: 600;
}
.service-page .svc-process {
  margin-bottom: 56px;
}
.service-page .svc-process h2 {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 32px;
}
.service-page .svc-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .service-page .svc-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .service-page .svc-process-steps {
    grid-template-columns: 1fr;
  }
}
.service-page .svc-process-step {
  background: #f8f9fc;
  border-radius: 16px;
  padding: 28px 24px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #01a79b, #1da0cb) 1;
  border-image-slice: 1;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  position: relative;
  overflow: hidden;
}
.service-page .svc-process-step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #01a79b, #1da0cb);
  border-radius: 3px 3px 0 0;
}
.service-page .svc-process-step .step-num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #01a79b, #1da0cb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
}
.service-page .svc-process-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.service-page .svc-process-step p {
  font-size: 13px;
  line-height: 1.65;
  color: #6b7280;
  margin: 0;
}
.service-page .service-outcomes {
  background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.service-page .service-outcomes::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #01a79b, #1da0cb);
}
.service-page .service-outcomes h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #01a79b;
  margin-bottom: 10px;
}
.service-page .service-outcomes p {
  color: #212245;
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}
.service-page .service-cta {
  background: linear-gradient(135deg, #212245 0%, #00509c 100%);
  border-radius: 20px;
  padding: 56px;
  text-align: center;
  color: #fff;
}
.service-page .service-cta h2 {
  margin-bottom: 28px;
  font-size: 28px;
  color: #fff;
}
.service-page .service-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.service-page .service-cta-buttons .button-primary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  width: auto;
  padding: 10px 24px;
}
.service-page .service-cta-buttons .button-primary a {
  color: #fff;
  text-decoration: none;
}
.service-page .service-cta-buttons .button-primary:hover {
  background: rgba(255, 255, 255, 0.25);
}
@media (max-width: 768px) {
  .service-page .svc-hero {
    padding: 120px 0 80px;
  }
  .service-page .svc-hero-inner, .service-page .svc-body-inner {
    padding: 0 20px;
  }
  .service-page .svc-body-inner {
    padding-top: 64px;
    padding-bottom: 48px;
  }
  .service-page h1 {
    font-size: 1.85rem;
  }
  .service-page .svc-icon-tile {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }
  .service-page .svc-icon-tile img {
    width: 42px;
  }
  .service-page .service-benefits ul {
    grid-template-columns: 1fr;
  }
  .service-page .service-cta {
    padding: 36px 24px;
  }
  .service-page .service-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .service-page .svc-ctas {
    flex-direction: column;
    align-items: center;
  }
}

.service-learn-more {
  display: inline-block;
  margin-top: 14px;
  color: #00509c;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 150ms ease, transform 150ms ease;
}
.service-learn-more:hover {
  transform: translateX(5px);
}

.service-card:hover .service-learn-more {
  color: #fff;
}

.product-page-body {
  background: #fff;
}

.tlog-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.tlog-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #01a79b;
  margin-bottom: 12px;
}

.tlog-section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #212245;
  margin: 0 0 12px;
  line-height: 1.2;
}

.tlog-section-sub {
  color: #333333;
  font-size: 16px;
  margin: 0 0 48px;
  max-width: 560px;
}

.tlog-hero {
  background: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.055) 1px, transparent 0) 0 0/30px 30px, linear-gradient(135deg, #1a1d3a 0%, #0d2240 60%, #0a1628 100%);
  padding: 155px 0 100px;
  position: relative;
  overflow: hidden;
}
.tlog-hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(1, 167, 155, 0.2) 0%, transparent 68%);
  pointer-events: none;
}
.tlog-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(29, 160, 203, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.tlog-hero .tlog-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.tlog-back-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 36px;
  transition: color 0.2s;
}
.tlog-back-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.tlog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.tlog-eyebrow .eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #01a79b;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

.tlog-hero-heading {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -1px;
}

.tlog-brand {
  background: linear-gradient(90deg, #01a79b, #1da0cb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tlog-hero-sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 40px;
}

.tlog-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.tlog-ghost-btn {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.tlog-ghost-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.tlog-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding-top: 48px;
  position: relative;
}
.tlog-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.tlog-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.tlog-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tlog-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
}

.tlog-stat-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.tlog-showcase {
  padding: 120px 0 100px;
  background: #f5f7fa;
  position: relative;
}
.tlog-showcase::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 52px;
  background: #f5f7fa;
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
}

.tlog-browser {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.tlog-browser-bar {
  background: #e8eaed;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tlog-browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.tlog-browser-dot.red {
  background: #ff5f57;
}
.tlog-browser-dot.yellow {
  background: #febc2e;
}
.tlog-browser-dot.green {
  background: #28c840;
}

.tlog-browser-url {
  margin-left: 12px;
  background: #fff;
  border-radius: 6px;
  font-size: 12px;
  color: #666;
  padding: 4px 14px;
  flex: 1;
  max-width: 360px;
  text-align: center;
}

.tlog-browser-screen {
  background: #fff;
}
.tlog-browser-screen img {
  width: 100%;
  display: block;
}

.kserp-showcase {
  background: #1a1d3a;
}
.kserp-showcase::before {
  background: #1a1d3a;
}
.kserp-showcase .tlog-section-heading {
  color: #fff;
}
.kserp-showcase .tlog-section-sub {
  color: rgba(255, 255, 255, 0.5);
}
.kserp-showcase .kserp-brand-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 52px 44px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}
.kserp-showcase .kserp-brand-logo {
  font-size: 68px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 14px;
}
.kserp-showcase .kserp-ks {
  background: linear-gradient(90deg, #01a79b, #1da0cb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.kserp-showcase .kserp-dash {
  color: rgba(255, 255, 255, 0.3);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.3);
}
.kserp-showcase .kserp-erp {
  color: rgba(255, 255, 255, 0.92);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92);
}
.kserp-showcase .kserp-brand-tag {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 36px;
}
.kserp-showcase .kserp-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.kserp-showcase .kserp-modules span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.kserp-showcase-card {
  display: flex;
  justify-content: center;
}

.tlog-capabilities {
  padding: 100px 0;
  background: #fff;
}

.tlog-caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tlog-cap-card {
  background: #f8f9fc;
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}
.tlog-cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(1, 167, 155, 0.15);
}
.tlog-cap-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #212245;
  margin: 16px 0 8px;
}
.tlog-cap-card p {
  font-size: 14px;
  color: #333333;
  line-height: 1.65;
  margin: 0;
}

.tlog-cap-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #01a79b, #1da0cb);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(1, 167, 155, 0.35);
}

.kserp-verticals {
  padding: 100px 0;
  background: #fff;
}

.kserp-verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.kserp-vertical-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8f9fc;
  border: 1px solid #eef0f5;
  border-radius: 16px;
  padding: 24px 22px 20px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}
.kserp-vertical-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  border-color: rgba(1, 167, 155, 0.25);
}
.kserp-vertical-card:hover .kserp-vertical-card-header h3 a {
  color: #01a79b;
}
.kserp-vertical-card p {
  font-size: 13px;
  color: #333333;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.kserp-vertical-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}
.kserp-vertical-card-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: #212245;
  margin: 0;
  line-height: 1.3;
}
.kserp-vertical-card-header h3 a {
  color: inherit;
  text-decoration: none;
}
.kserp-vertical-card-header h3 a:hover {
  color: #01a79b;
}

.kserp-vertical-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #01a79b, #1da0cb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(1, 167, 155, 0.28);
}

.kserp-vertical-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.kserp-vertical-modules span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #01a79b;
  background: rgba(1, 167, 155, 0.08);
  border: 1px solid rgba(1, 167, 155, 0.18);
  border-radius: 20px;
  padding: 3px 9px;
}

@media (max-width: 900px) {
  .kserp-verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .kserp-verticals-grid {
    grid-template-columns: 1fr;
  }
}
.tlog-personas {
  padding: 100px 0;
  background: #f5f7fa;
}

.tlog-persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tlog-persona-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}
.tlog-persona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  border-color: rgba(1, 167, 155, 0.12);
}
.tlog-persona-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #212245;
  margin: 0 0 6px;
}
.tlog-persona-card p {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}

.tlog-persona-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #01a79b, #1da0cb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(1, 167, 155, 0.3);
}

.kserp-cta-section .kserp-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.kserp-cta-section .kserp-cta-eyebrow .eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #01a79b;
  flex-shrink: 0;
}
.kserp-cta-section .kserp-cta-bullets {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 0 44px;
}
.kserp-cta-section .kserp-cta-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.5;
}
.kserp-cta-section .kserp-cta-bullet svg {
  flex-shrink: 0;
  color: #01a79b;
}
.kserp-cta-section .kserp-cta-footnote {
  margin: 28px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}
.kserp-cta-section .kserp-cta-footnote a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.kserp-cta-section .kserp-cta-footnote a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.tlog-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1d3a 0%, #0d2240 100%);
  text-align: center;
}

.tlog-cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.tlog-cta-inner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin: 0 0 40px;
}

.tlog-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.tlog-contact-btn a {
  color: #212245 !important;
}

@media (max-width: 900px) {
  .tlog-caps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .tlog-hero {
    padding: 120px 0 72px;
  }
  .tlog-hero-heading {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
  }
  .tlog-hero-sub {
    font-size: 16px;
  }
  .tlog-hero-inner,
  .tlog-section-inner {
    padding: 0 20px;
  }
  .tlog-stats {
    gap: 16px 0;
  }
  .tlog-stat {
    padding: 0 20px;
  }
  .tlog-stat-divider {
    display: none;
  }
  .tlog-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .tlog-caps-grid {
    grid-template-columns: 1fr;
  }
  .tlog-persona-grid {
    grid-template-columns: 1fr;
  }
  .tlog-persona-card {
    flex-direction: column;
  }
  .tlog-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .tlog-hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .tlog-showcase,
  .tlog-capabilities,
  .tlog-personas,
  .tlog-cta-section {
    padding: 60px 0;
  }
}
#letsTalkSpinner, #letsTalkSuccess, #letsTalkError {
  display: none;
  justify-content: center;
  text-align: center;
}

#letsTalkError {
  color: red;
}

.lds-ring,
.lds-ring div {
  box-sizing: border-box;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  margin: 5px;
  border: 5px solid currentColor;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.vcard-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2a3a 50%, #0d2240 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  font-family: "Poppins", sans-serif;
}

.vcard-main {
  width: 100%;
  display: flex;
  justify-content: center;
}

.vcard-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px 40px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.vcard-lang {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 4px;
}

.vcard-lang-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 3px 7px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.vcard-lang-btn:hover {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.3);
}
.vcard-lang-btn.active {
  color: #01a79b;
  border-color: #01a79b;
  background: rgba(1, 167, 155, 0.12);
}

.vcard-photo-wrap {
  display: inline-block;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #01a79b, #1da0cb);
  margin-bottom: 20px;
}

.vcard-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  border: 3px solid #0d1b2a;
}

.vcard-name {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.vcard-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 14px;
  letter-spacing: 0.5px;
}

.vcard-company {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.vcard-company-logo {
  height: 16px;
  width: auto;
}

.vcard-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 24px 0;
}

.vcard-bio {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  text-align: left;
}

.vcard-locations {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.vcard-locations span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 3px 10px;
}

.vcard-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vcard-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.vcard-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.vcard-link.vcard-link--primary {
  background: linear-gradient(90deg, #01a79b, #1da0cb);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
}
.vcard-link.vcard-link--primary:hover {
  box-shadow: 0 4px 20px rgba(1, 167, 155, 0.45);
  background: linear-gradient(90deg, #01a79b, #1da0cb);
}
.vcard-link.vcard-link--save {
  border-color: rgba(1, 167, 155, 0.4);
  color: #01a79b;
  background: rgba(1, 167, 155, 0.07);
  font-weight: 600;
}
.vcard-link.vcard-link--save:hover {
  background: rgba(1, 167, 155, 0.14);
  border-color: #01a79b;
  color: #01daca;
}

.vcard-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
}

.vcard-footer-link {
  display: inline-block;
  opacity: 0.35;
  transition: opacity 0.2s;
}
.vcard-footer-link:hover {
  opacity: 0.6;
}

.vcard-footer-logo {
  height: 18px;
  width: auto;
}

@media (max-width: 480px) {
  .vcard-card {
    padding: 36px 24px 28px;
  }
  .vcard-name {
    font-size: 22px;
  }
}
