:root {
  --white: white;
  --black: #0b0b0b;
  /* Blue */
  --blue-100: #fdfeff;
  --blue-150: #f5f8fc;
  --blue-200: #f6f8fb;
  --blue-250: #e9f7ff;
  --blue-300: #b0cbff;
  --blue-400: #066fd1;
  --blue-500: #002F6C;
  /* Blue-variant */
  --new-blue: #0054a6;
  --dark-blue: #002F6C;
  /* Orange */
  --orange: #ff6a00;
  --orange-dark: #ea6200;
  /* Gray */
  --gray-200: #f2f2f2;
  --gray-300: #e0e0e0;
  --gray-400: #e2e4e8;
  --gray-500: #8997ab;
  --gray-600: #636363;
  --gray-650: #3e3e59;
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #333;
  font-family: "Nunito Sans", sans-serif;
  overflow-x: hidden;
  line-height: 1.4;
  background: #fbfbfb;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1 {
  color: var(--black);
  text-align: left;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
}

h2 {
  color: var(--black);
  text-align: left;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--black);
  font-size: 14px;
  line-height: 20px;
}

li {
  list-style: none;
}

p {
  font-size: 20px;
  line-height: 28px;
  color: var(--gray-650);
  line-height: 1.5;
}

.d-none {
  display: none !important;
}

.margin-center {
  margin: 0 auto;
}


.primary-btn {
  border: 1px solid #0b0b0b;
  background-color: #0b0b0b;
  color: var(--white);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 600;
  transition: all 300ms;
}

.primary-btn:hover {
  background-color: #2a2a2a;
  border-color: #2a2a2a;
  transform: translateY(2px);
}

.secondary-btn {
  border: 1px solid #0b0b0b;
  background-color: var(--blue-100);
  color: var(--black);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(11, 11, 11, 0.08);
  transition: all 300ms;
}

.secondary-btn:hover {
  background-color: var(--blue-100);
  border-color: #0b0b0b;
  color: var(--black);
  transform: translateY(2px);
  box-shadow: 0 6px 14px rgba(11, 11, 11, 0.18);
}

a.primary-btn,
a.secondary-btn {
  display: inline-block;
}

.book-demo-btn {
  position: relative;
  overflow: visible;
}

.book-demo-btn::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: -4px;
  right: -4px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 0;
}

.book-demo-btn::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: -4px;
  right: -4px;
  background: url("/assets/images/rec.svg") center/contain no-repeat;
  animation: rec-fade 1.8s ease-in-out infinite;
  z-index: 1;
}

@keyframes rec-fade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }

  100% {
    opacity: 1;
  }
}

.none {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */

header {
  border-bottom: 1px solid #ececec;
  position: sticky;
  z-index: 5;
  width: 100%;
  top: 0;
  transition: border-color 0.35s ease;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(251, 251, 251, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.35s ease;
  z-index: -1;
}

header .container {
  position: relative;
  padding: 2px 0;
}

header .navbar {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 6px 24px;
}

header .navbar .logo {
  display: flex;
}

header .navbar .nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
}

header .navbar img {
  width: 80px;
}

header .navbar ul {
  display: flex;
  align-items: center;
  gap: 14px;
}

header .navbar ul li {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}

header .navbar ul li a {
  color: var(--black);
  letter-spacing: 0.25px;
  margin-left: 0;
  margin-right: 0;
  padding: 8px 4px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
}

header .navbar ul li a:last-of-type {
  margin-right: 0;
}

header .navbar ul li a:hover {
  color: var(--new-blue);
}

header .navbar ul li a.active-nav {
  color: #3e3e59;
  background: #efeff0;
  border-radius: 6px;
  padding: 8px 10px;
}

header .navbar ul li a.primary-btn {
  color: var(--white);
  padding: 7px 22px;
}

header .navbar ul li a.primary-btn:hover {
  background-color: #2a2a2a;
  border-color: #2a2a2a;
  transform: translateY(2px);
}


header .navbar ul li a.primary-btn.active-nav {
  background-color: #0b0b0b;
  color: #fff;
  border-radius: 8px;
  padding: 7px 22px;
}

header .navbar ul li a.primary-btn.active-nav:hover {
  background-color: #2a2a2a;
  border-color: #2a2a2a;
  transform: translateY(2px);
}

header .navbar ul li a.secondary-btn {
  padding: 7px 18px;
}

header .navbar ul li a.secondary-btn:hover {
  background-color: var(--blue-100);
  border-color: #0b0b0b;
  color: var(--black);
  transform: translateY(2px);
  box-shadow: 0 6px 14px rgba(11, 11, 11, 0.18);
}

header .navbar ul li a.secondary-btn.active-nav {
  background-color: var(--blue-100);
  color: var(--black);
  border: 1px solid #0b0b0b;
  border-radius: 8px;
  padding: 7px 18px;
}


/* Mega menu (Features dropdown) */

.nav-item-has-menu {
  position: relative;
}

.nav-dropdown-caret {
  width: 10px;
  height: 7px;
  margin-left: 6px;
  vertical-align: middle;
  color: var(--gray-500);
  transition: transform 0.25s ease, color 0.25s ease;
}

.nav-item-has-menu:hover .nav-dropdown-caret,
.nav-item-has-menu.is-open .nav-dropdown-caret,
.nav-dropdown-trigger:focus .nav-dropdown-caret {
  color: var(--new-blue);
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 18px;
  width: min(760px, 94vw);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
  z-index: 20;
}

.nav-item-has-menu:hover .mega-menu,
.nav-item-has-menu:focus-within .mega-menu,
.nav-item-has-menu.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu-panel {
  display: flex;
  align-items: stretch;
  gap: 4px;
  background: #fff;
  border: 1px solid #cfd2d8;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(6, 15, 34, 0.14);
  padding: 18px;
  transform: translateY(8px);
  transition: transform 0.2s ease;
}

.nav-item-has-menu:hover .mega-menu-panel,
.nav-item-has-menu:focus-within .mega-menu-panel,
.nav-item-has-menu.is-open .mega-menu-panel {
  transform: translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  transition: background-color 0.2s ease;
}

.mega-menu-item:hover {
  background-color: var(--blue-150);
}

.mega-menu-item-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f1f1f1;
  color: #5f6470;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mega-menu-item-icon svg {
  width: 20px;
  height: 20px;
}

.mega-menu-item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mega-menu-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
}

.mega-menu-item-tagline {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.35;
}

.mega-menu-cta {
  align-self: flex-start;
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #00305e 0%, #0054a6 50%, #0f6fff 100%);
  border-radius: 14px;
  padding: 18px;
}

.mega-menu-cta-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.mega-menu-cta-underline {
  display: block;
  width: 90px;
  margin: -2px 0 4px;
  filter: drop-shadow(0 0 6px rgba(255, 106, 0, 0.5));
}

.mega-menu-cta-underline svg {
  display: block;
  width: 100%;
  height: auto;
}

.mega-menu-cta-text {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.mega-menu-cta .mega-menu-cta-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.mega-menu-cta .mega-menu-cta-btn:hover {
  background: var(--orange-dark);
  color: #fff;
}

.mega-menu-cta-btn svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* Mobile Menu */

.nav-mob {
  display: none;
  position: relative;
  z-index: 3;
}

.mob-hidden-box {
  z-index: 3;
  position: absolute;
  display: none;
  top: calc(100% - 8px);
  left: 0;
  width: 100%;
}

.hidden-box {
  display: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

.toogle-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.toogle-menu .line {
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background-color: #111;
  transition: all 0.3s ease;
}

/* Active state animations */
.toogle-menu.active .line.top {
  animation: topToX 0.6s forwards;
}

.toogle-menu.active .line.middle {
  animation: middleFade 0.6s forwards;
}

.toogle-menu.active .line.bottom {
  animation: bottomToX 0.6s forwards;
}

/* Reverse animations */
.toogle-menu:not(.active) .line.top {
  animation: topToNormal 0.6s forwards;
}

.toogle-menu:not(.active) .line.middle {
  animation: middleShow 0.6s forwards;
}

.toogle-menu:not(.active) .line.bottom {
  animation: bottomToNormal 0.6s forwards;
}

/* Keyframes for "to X" */
@keyframes topToX {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(7px);
    opacity: 0.5;
  }

  100% {
    transform: translateY(8px) rotate(45deg);
    opacity: 1;
  }
}

@keyframes bottomToX {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-7px);
    opacity: 0.5;
  }

  100% {
    transform: translateY(-8px) rotate(-45deg);
    opacity: 1;
  }
}

/* Keyframes for middle line fade */
@keyframes middleFade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
  }
}

/* Reverse animations (back to normal) */
@keyframes topToNormal {
  0% {
    transform: translateY(7px) rotate(45deg);
  }

  50% {
    transform: translateY(7px);
    opacity: 0.5;
  }

  100% {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
}

@keyframes bottomToNormal {
  0% {
    transform: translateY(-7px) rotate(-45deg);
  }

  50% {
    transform: translateY(-7px);
    opacity: 0.5;
  }

  100% {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
}

@keyframes middleShow {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

/* ******************** */
/* ****** CONTACT ****** */
/* ******************** */

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;

  margin: 0 auto 96px;
}

.contact-form-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  background-color: var(--blue-100);
  border-radius: 20px;
  box-shadow: 2px 0 4px #066fd114, -2px -2px 4px #066fd114, 0 2px 4px #066fd114;
}

/* intl-tel-input: prevent iOS Safari zoom on country search focus (needs font-size >= 16px) */
.iti .iti__search-input,
.iti input.iti__search-input,
.iti [id$="__search-input"] {
  font-size: 16px !important;
}

#formsuccess {
  background: #eaf7ff;
  width: 100%;
  padding: 20px;
  color: #3e3e59;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  display: none;
}



/* ******************** */
/* ****** FOOTER ****** */
/* ******************** */

footer {
  background-color: var(--new-blue);
  color: var(--white);
}

.footer-container {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr 1fr;
  padding: 48px 0 0;
  margin: 0 auto 40px;
  gap: 24px;
  /* max-width: 90%; */
  width: 100%;
}

/* Company-Logo */

.footer-container .company-logo p {
  color: var(--blue-300);
  font-size: 16px;
  line-height: 1.4;
}

.footer-container .company-logo .heading {
  position: relative;
  margin-bottom: 14px;
  width: fit-content;
}

.footer-container .company-logo .heading a img {
  max-width: 96px;
}

/* Company Details */

.footer-container .company-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  gap: 6px;
}

.footer-container .company-details ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  gap: 6px;
}

.footer-container .company-details a {
  font-size: 16px;
  line-height: 1.55;
  color: var(--blue-300);
  transition: ease 0.5s;
}

.footer-container .company-details a:hover {
  color: var(--white);
}

.footer-container .company-details .heading {
  position: relative;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.footer-container .company-logo .heading::after,
.footer-container .company-details .heading::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -4px;
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 30px;
}

.footer-container .company-details p {
  position: relative;
  color: var(--blue-300);
  font-size: 16px;
  line-height: 1.3;
  padding-left: 30px;
  transition: ease 0.5s;
}

.footer-container .company-details p::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  top: 3px;
  left: -2px;
  background-repeat: no-repeat;
}

.footer-container .company-details .mail:hover {
  color: var(--white);
}

.footer-container .company-details .mail::before {
  background-image: url(../images/icons/mail.svg);
}

.footer-container .company-details .location::before {
  background-image: url(../images/icons/location.svg);
}

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
}

.copyrights {
  padding-bottom: 20px;
  color: var(--blue-300);
  font-size: 18px;
  line-height: 1.35;
  text-align: center;
}

/* ************************ */
/* ****** ANIMATIONS ****** */
/* ************************ */

/* TOP ANIMATION */

.fade-in-top,
.fade-in-top.show,
.fade-in-bottom,
.fade-in-bottom.show {
  opacity: 1;
  transform: none;
  animation: none;
  will-change: auto;
}

/* BOTTOM ANIMATION */

/* AUTO SCROLL */

.scroll-parent {
  position: relative;
  height: inherit;
  width: 100vw;
  overflow-x: hidden;
}

.scroll-primary {
  width: inherit;
  position: absolute;
  left: 0%;
  top: 22%;
  /* animation: primary 20s linear infinite; */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
#iti-0__search-input{
    height: 50px;
    padding-left: 30px;
    padding-right: 28px;
}
/* @keyframes primary {
  from {
    left: 0%;
  }

  to {
    left: -100%;
  }
} */

/* ***************************** */
/* ******* MEDIA QUERIES ******* */
/* ***************************** */

/* ******* LAPTOP ******* */

@media (max-width: 1440px) {
  .container {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }

  /* FAQ */
  .faq-container .faq-content {
    max-width: 1080px;
  }

  .faq-content .heading h2 {
    font-size: 42px;
  }

  .faq .faq-display p {
    font-size: 18px;
  }

  .faq .faq-inner {
    font-size: 17px;
  }

  .primary-btn,
  .secondary-btn {
    font-size: 16px;
    line-height: 1.15;
  }

  /* Header */

  header .navbar {
    padding: 12px 20px;
    right: 0;
  }

  header .navbar img {
    width: 95px;
  }

  header .navbar ul li a {
    font-size: 16px !important;
    line-height: 1.55;
  }

  header .navbar ul li a.secondary-btn,
  header .navbar ul li a.primary-btn {
    line-height: 1.15;
  }

  /* FOOTER */

  .footer-container {
    padding: 48px 0 0;
    margin: 0 auto 60px;
  }

  .footer-container .company-logo .heading a img {
    max-width: 100px;
  }

  .footer-container .company-details .heading {
    font-size: 16px;
  }

  .footer-container .company-logo p {
    font-size: 16px;
  }

  .footer-container .company-details a {
    font-size: 16px;
  }

  .footer-container .company-details p {
    font-size: 16px;
  }

  .copyrights {
    font-size: 16px;
    padding-bottom: 16px;
  }
}

/* ******* MINI_LAPTOP ******* */

@media (max-width: 1200px) {
  /* FAQ */
  .faq-content .heading h2 {
    font-size: 35px;
  }

  .faq-content .heading p {
    font-size: 19px;
  }

  .faq .faq-display p {
    font-size: 17px;
  }

  .faq .faq-inner {
    font-size: 17px;
  }

  /* FOOTER */

  .footer-container .company-logo p {
    font-size: 16px;
  }

  .footer-container .company-details .heading {
    font-size: 16px;
  }
}

/* ******* LAPTOP_DESKTOP_VIEW ******* */

@media (max-width: 1024px) {
  /* Header */
  header .navbar ul li a {
    font-size: 16px;
  }

  header .navbar ul li a {
    font-size: 16px;
  }
}

/* ******* TABLETS_LARGE ******* */

@media (max-width: 990px) {
  /* FAQ */
  .faq-content .heading h2 {
    font-size: 32px;
  }

  /* HEADER */

  header.container {
    margin: 0 auto;
  }

  header .container {
    padding: 0 16px;
  }

  header .container.menu-open {
    padding-bottom: 0;
  }

  header .navbar {
    padding: 10px 20px;
  }

  header .navbar ul {
    display: none;
  }

  /* MOBILE */

  .nav-mob {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .mob-hidden-box {
    display: block;
    position: fixed;
    inset: 0;
    width: auto;
    z-index: 4;
    pointer-events: none;
  }

  .hidden-box {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-color: #fff;
    padding: 80px 24px 32px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }

  .hidden-box.slide-in-top {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mob-hidden-box ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid #eceef1;
  }

  .mob-hidden-box ul > li {
    border-bottom: 1px solid #eceef1;
  }

  .mob-hidden-box ul li a.nav-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 2px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--black);
  }

  .hidden-box-actions {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    width: 100%;
    margin-top: 28px;
  }

  .hidden-box-actions .nav-items {
    flex: none;
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 16px;
    border-radius: 999px;
  }

  /* Mega menu accordion (mobile) */

  .mob-nav-item-has-menu {
    width: 100%;
  }

  .mob-nav-menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
  }

  .mob-nav-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--black);
    cursor: pointer;
    flex-shrink: 0;
  }

  .mob-nav-menu-toggle svg {
    width: 11px;
    height: 8px;
    transition: transform 0.25s ease, color 0.25s ease;
  }

  .mob-nav-menu-toggle.is-open {
    color: var(--new-blue);
  }

  .mob-nav-menu-toggle.is-open svg {
    transform: rotate(180deg);
  }

  .mob-mega-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.35s ease;
  }

  .mob-mega-menu.is-open {
    max-height: 420px;
    opacity: 1;
    margin: 0 0 16px;
  }

  .mob-mega-menu-link {
    display: block !important;
    padding: 12px 2px 12px 16px !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    color: var(--gray-650) !important;
    border-bottom: 1px solid #f1f2f5;
  }

  /* CONTACT FORM */

  .contact-container {
    gap: 20px;
  }

  .contact-form-box {
    padding: 28px 20px;
  }
}

/* ******* TABLETS ******* */

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }

  /* FAQ */
  .faq-content .heading p {
    font-size: 18px;
  }

  .faq .faq-display p {
    font-size: 17px;
  }

  .primary-btn,
  .secondary-btn {
    line-height: 1.15;
  }

  /* Header */
  /* header .navbar {
    padding: 16px 1px;
  } */


  /* CONTACT FORM */

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 28px 16px;
  }

  #formsuccess {
    font-size: 16px;
    line-height: 24px;
  }

  /* FOOTER */

  .footer-container {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
    column-gap: 20px;
    padding-top: 36px;
    margin-bottom: 28px;
  }

  .footer-container .company-logo {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    margin: 0;
  }

  .footer-container .company-details .heading {
    font-size: 15px;
  }

  .footer-container .company-logo p {
    font-size: 14.5px;
  }

  .footer-container .company-logo .heading {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 12px;
  }

  .footer-container .company-details {
    width: 100%;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-container .company-details ul {
    width: 100%;
    text-align: left;
    gap: 10px;
  }

  .footer-container .company-details--product {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-container .company-details--links {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-container .company-details--contact {
    grid-column: 1 / -1;
    grid-row: 3;
    width: auto;
    max-width: none;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .footer-container .company-details--contact .socials {
    margin-top: 4px;
  }

  .footer-container .company-details a {
    display: inline-block;
    padding: 4px 0;
    font-size: 14.5px;
  }

  .footer-container .company-details p {
    padding-left: 30px;
    text-align: left;
  }
  .footer-container .company-details p::before {
    top: 3px;
    left: -2px;
  }
  .footer-container .company-details .mail,
  .footer-container .company-details .location {
    font-size: 14.5px;
    line-height: 1.3;
  }

  .footer-container .company-logo .heading::after,
  .footer-container .company-details .heading::after {
    left: 0;
    right: auto;
    bottom: -4px;
    width: 30px;
    height: 3px;
    transform: none;
  }

  .copyrights {
    font-size: 17px;
  }
}

/* ******* MOBILE ******* */

@media (max-width: 480px) {
  /* FAQ */
  .faq-content .heading h2 {
    font-size: 28px;
    width: 100%;
  }

  .faq .faq-display p {
    font-size: 17px;
  }

  .faq .faq-display .toogle-box {
    width: 16px;
    height: 16px;
  }

  .faq .faq-display .toogle-box .line {
    width: 16px;
  }

  .faq .faq-inner {
    font-size: 16px;
  }

  header .container {
    padding: 0 12px;
  }

  header .container.menu-open {
    padding-bottom: 0;
  }

  header .navbar {
    padding: 10px 16px;
  }

  header .navbar ul li a {
    font-size: 16px !important;
  }

  /* FOOTER */

  /* footer {
    padding-bottom: 90px;
  } */

  .footer-container {
    margin: 0 auto 40px;
  }

  .footer-container .company-logo p {
    font-size: 16px;
  }

  .footer-container .heading {
    font-size: 16px;
  }

  .footer-container .company-details a {
    font-size: 16px;
  }

  .footer-container .company-details .mail,
  .footer-container .company-details .location {
    font-size: 16px;
    line-height: 21px;
  }

  .copyrights {
    font-size: 16px;
    line-height: 22px;
  }
}

/* Shared end-of-page CTA (blog articles, features pages) */

.end-cta {
  max-width: 1080px;
  margin: 0 auto;
  background: linear-gradient(160deg, #00305e 0%, #0054a6 50%, #0f6fff 100%);
  border-radius: 24px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.end-cta-content {
  max-width: 560px;
}

.end-cta-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.end-cta-underline {
  display: block;
  width: 110px;
  margin: -4px 0 2px;
  filter: drop-shadow(0 0 6px rgba(255, 106, 0, 0.5));
}

.end-cta-underline svg {
  display: block;
  width: 100%;
  height: auto;
}

.end-cta-text {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 10px;
}

.end-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cta-btn-primary,
.cta-btn-secondary {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  padding: 14px 26px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.cta-btn-primary {
  background: #ff6a00;
  color: #fff;
}

.cta-btn-primary:hover {
  background: #ea6200;
}

@media (max-width: 767px) {
  .end-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .end-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .end-cta-actions .cta-btn-primary,
  .end-cta-actions .cta-btn-secondary {
    display: block;
    text-align: center;
  }
}

.end-cta-section {
  padding: 72px 0;
}

/* FAQ (shared: homepage, pricing) */

.faq-container {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .faq-container {
    margin-bottom: 20px;
  }

  .end-cta-section {
    padding-top: 12px;
  }

  .end-cta-section .end-cta {
    margin-top: 16px;
  }
}

.faq-container .faq-content {
  max-width: 960px;
  margin: 0 auto;
}

.faq-container .faq-content .heading {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 48px;
}

.faq-content .heading h2 {
  font-size: 47px;
  text-align: center;
  width: 100%;
  margin: 0 auto 16px;
}

.faq-content .heading p {
  color: var(--black);
  font-size: 22px;
}

@media (max-width: 767px) {
  .faq-content .heading h2 {
    font-size: 28px;
    width: 100%;
  }
}

.faq-box {
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  background-color: var(--white);
  overflow: hidden;
}

.faq-box .faq {
  padding: 14px 22px;
  border-bottom: 1px solid var(--gray-300);
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.faq-box .faq:last-child {
  border-bottom: none;
}

.faq-box .faq:hover {
  background-color: transparent;
}

.faq-box .faq.show {
  background-color: transparent;
}

.faq .faq-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 26px;
}

.faq .faq-display p {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--black);
  margin: 0;
  align-self: center;
}

.faq .faq-display .toogle-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  align-self: center;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid var(--black);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.faq.show .faq-display .toogle-box {
  background-color: var(--black);
  border-color: var(--black);
}

.faq .faq-display .toogle-box .line {
  background-color: var(--black);
  height: 2px;
  width: 12px;
  border-radius: 2px;
  transition: background-color 0.25s ease;
}

.faq.show .faq-display .toogle-box .line {
  background-color: var(--white);
}

.toogle-box .line.plus {
  position: absolute;
  transform: rotate(90deg);
}

.faq .faq-display .plus {
  transition: transform 0.35s ease;
}

.faq .faq-display .plus.rotated {
  transform: rotate(0deg) !important;
}

.faq .faq-inner {
  transition: max-height 400ms ease, opacity 300ms ease, margin-top 400ms ease;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--gray-650);
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  padding-right: 48px;
  border-top: 0 solid var(--gray-300);
}

.faq .faq-inner p {
  margin-bottom: 12px;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.faq .faq-inner p:last-child {
  margin-bottom: 0;
}

.faq .faq-inner.open {
  margin-top: 16px;
  padding-top: 16px;
  border-top-width: 1px;
}

/* Floating CTA bubble */

.cta-bubble {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  width: auto;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cta-bubble--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cta-bubble--hidden {
  display: none !important;
}

.cta-bubble-text {
  display: block;
  width: auto;
  background: #fff;
  color: #4b5262;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  padding: 18px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
  transition: box-shadow 0.2s ease;
}

.cta-bubble-text-short {
  display: none;
}

.cta-bubble-text:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.22);
}

.cta-bubble-avatar {
  position: relative;
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}

.cta-bubble-link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-bubble-link:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
}

.cta-bubble-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-bubble-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.cta-bubble-close svg {
  width: 9px;
  height: 9px;
}

.cta-bubble:hover .cta-bubble-close {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 640px) {
  .cta-bubble {
    right: 16px;
    bottom: calc(16px + var(--cookie-consent-offset, 0px));
    width: auto;
    transition: opacity 0.35s ease, transform 0.35s ease, bottom 0.25s ease;
  }

  .cta-bubble-text {
    width: auto;
    white-space: nowrap;
    font-size: 14px;
    padding: 10px 16px;
  }

  .cta-bubble-text-full {
    display: none;
  }

  .cta-bubble-text-short {
    display: block;
  }

  .cta-bubble-avatar {
    width: 64px;
    height: 64px;
  }
}
