@charset "UTF-8";
body {
  font-family: "Arial", sans-serif;
}

/* Sticky Header */
.navbar {
  background: linear-gradient(90deg, #004d40, #009688);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: "Arial", sans-serif;
  font-weight: 500;
  padding: 15px 0;
  /* Increased height */
  margin-bottom: 20px;
  /* Creates a gap between the navbar and hero section */
}

.navbar .navbar-brand img {
  width: 180px;
  /* Slightly larger logo */
}

.navbar-nav .nav-link {
  color: #fff;
  font-size: 1rem;
  /* Increased font size for readability */
  font-weight: 600;
  /* Bold menu items */
  padding: 10px 20px;
  /* Larger padding for spacing */
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:not(.language-nav-link):hover {
  color: #ffe082;
  /* Muted gold on hover */
  text-decoration: underline;
  /* Subtle underline for emphasis */
}

.navbar-nav .dropdown-menu {
  background: #004d40;
  border: none;
  border-radius: 8px;
}

.navbar-nav .dropdown-item {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 15px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
  background: #00796b;
  color: #ffe082;
}

.navbar-nav .nav-link.show {
  color: #ffe082;
}

.language-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.navbar-nav .language-switcher > .language-nav-link {
  color: #ffffff;
  text-decoration: none !important;
}

.navbar-nav .language-switcher > .language-nav-link:hover,
.navbar-nav .language-switcher > .language-nav-link:focus,
.navbar-nav .language-switcher > .language-nav-link.show {
  color: #ffe082;
  text-decoration: none !important;
}

.language-nav-link .material-symbols-outlined {
  font-size: 20px;
  line-height: 1;
}

.language-code {
  min-width: 2ch;
  font-size: 0.78rem;
  font-weight: 800;
}

.navbar-nav .language-menu {
  min-width: 150px;
  padding: 8px;
}

.navbar-nav .language-menu .dropdown-item {
  border-radius: 5px;
}

.navbar-nav .language-menu .dropdown-item.active,
.navbar-nav .language-menu .dropdown-item:active {
  background: #00796b;
  color: #ffe082;
}

.navbar .btn-dark {
  background: #ffe082;
  color: #004d40;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.navbar .btn-dark:hover {
  background: #ffcc00;
  transform: scale(1.1);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar .container {
    max-width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .navbar .navbar-brand img {
    width: 148px;
  }

  .navbar-nav .nav-link {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0.84rem;
  }

  .navbar .btn-dark {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.82rem;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .navbar .navbar-brand img {
    width: 160px;
  }

  .navbar-nav .nav-link {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.9rem;
  }

  .navbar .btn-dark {
    padding-right: 16px;
    padding-left: 16px;
    font-size: 0.88rem;
  }
}

.btn-request-demo {
  background-color: #ffe082;
  border-radius: 20px;
  padding: 10px 25px;
  text-transform: uppercase;
}

.btn-request-demo:hover {
  background-color: #ffcc00;
  color: #004d40;
  transform: scale(1.1);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #00796b 50%, #004d40 100%);
  color: #ffffff;
  padding: 120px 20px 140px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-section h1 .highlight {
  color: #ffe082;
}

.hero-section p {
  font-size: 1.3rem;
  margin-top: 15px;
  line-height: 1.5;
  color: #f1f1f1;
  max-width: 700px;
}

.hero-section p .highlight {
  color: #80cbc4;
  font-weight: 600;
}

/* Hero Section Carousel */
.carousel {
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  background: #ffffff;
  border: 3px solid #004d40;
}

.carousel-inner {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

/* Carousel Caption (Toast Style) */
.carousel-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px 25px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  width: 80%;
  max-width: 600px;
  line-height: 1.4;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Carousel Inner Images */
.carousel-inner img {
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
}

/* Carousel Navigation Buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  margin: 0 15px;
  z-index: 5;
}

.carousel-control-prev {
  left: -10px;
}

.carousel-control-next {
  right: -10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1) translateY(-50%);
}

.carousel-control-prev span,
.carousel-control-next span {
  font-family: "Material Symbols Outlined";
  font-size: 30px;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

.carousel-control-prev:hover span,
.carousel-control-next:hover span {
  color: #ffe082;
}

/* Hero Buttons */
.hero-buttons {
  margin-top: 25px;
}

.hero-buttons .btn-primary {
  background-color: #004d40;
  color: #ffffff;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 12px 25px;
  transition: all 0.3s ease-in-out;
}

.hero-buttons .btn-primary:hover {
  background-color: #024f42;
  color: #ffe082;
  transform: scale(1.05);
}

.hero-buttons .btn-outline-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: crimson;
  font-size: 1.1rem;
  padding: 12px 25px;
  font-weight: bold;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}

.hero-buttons .btn-outline-secondary:hover {
  background-color: #ffe082;
  color: #004d40;
  transform: scale(1.05);
}

/* Sleek Announcement */
.sleek-announcement {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.sleek-card {
  background: rgba(0, 60, 60, 0.7);
  border-radius: 15px;
  padding: 30px;
  width: 85%;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.sleek-card h3 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffe082;
  margin-bottom: 20px;
}

.sleek-card p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.7;
}

.sleek-card p .highlight {
  color: #80cbc4;
  font-weight: bold;
}

.btn-gradient {
  display: inline-block;
  background: linear-gradient(90deg, #009688, #00796b);
  color: #ffffff;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #00796b, #009688);
  transform: scale(1.1);
}

/* Bottom Curve */
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #ffffff;
  -webkit-clip-path: ellipse(80% 100% at 50% 100%);
          clip-path: ellipse(80% 100% at 50% 100%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px 100px;
    text-align: center;
  }
  .hero-section h1 {
    font-size: 2.2rem;
  }
  .hero-section p {
    font-size: 1.1rem;
  }
  .carousel-inner img {
    max-height: 300px;
  }
  .carousel-caption {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
  }
  .carousel-control-prev span,
  .carousel-control-next span {
    font-size: 24px;
  }
}

/* Product Carousel Hero */
.product-hero-section {
  position: relative;
  min-height: 680px;
  padding: 110px 0 76px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(0, 78, 67, 0.98), rgba(3, 38, 37, 0.99) 58%, rgba(3, 28, 32, 1)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 88px 88px;
  text-align: left;
}

.product-hero-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 224, 130, 0.62), transparent);
  content: "";
}

.product-hero-section .container {
  position: relative;
  z-index: 2;
}

.product-hero-carousel {
  width: 100%;
  max-width: none;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.product-hero-carousel .carousel-inner {
  min-height: var(--product-hero-stage-height, 500px);
  overflow: visible;
  border-radius: 0;
}

.product-hero-carousel .carousel-item {
  min-height: var(--product-hero-stage-height, 500px);
}

.product-hero-carousel .carousel-item.product-hero-height-probe {
  position: absolute !important;
  top: 0;
  left: 0;
  display: block !important;
  float: none;
  width: 100%;
  margin: 0;
  visibility: hidden !important;
  pointer-events: none;
  transform: none !important;
  transition: none !important;
}

.product-hero-slide {
  min-height: 500px;
  padding: 0 78px 44px;
}

.product-hero-section .hero-copy {
  max-width: 600px;
}

.product-hero-section .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  width: auto;
  margin: 0 0 16px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 224, 130, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffe082;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.product-hero-section .hero-title {
  max-width: 640px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(3.1rem, 5.2vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.product-hero-section .hero-lead {
  max-width: 520px;
  margin: 0;
  color: rgba(238, 250, 248, 0.82);
  font-size: clamp(1.03rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}

.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.095);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.platform-chip .material-symbols-outlined,
.platform-chip .bi {
  color: #ffe082;
  font-size: 20px;
  line-height: 1;
}

.product-hero-section .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.product-hero-section .hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0 !important;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.96rem;
  line-height: 1;
}

.product-hero-section .hero-buttons .btn-primary {
  background: #ffe082;
  color: #003f3a;
}

.product-hero-section .hero-buttons .btn-primary:hover {
  background: #ffffff;
  color: #004d40;
}

.product-hero-section .hero-buttons .btn-outline-secondary {
  border-color: rgba(255, 255, 255, 0.78);
  background: transparent;
  color: #ffffff;
}

.product-hero-section .hero-buttons .btn-outline-secondary:hover {
  background: #ffffff;
  color: #004d40;
}

.hero-visual {
  position: relative;
}

.product-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
}

.showcase-panel {
  position: relative;
  width: min(650px, 100%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(250, 255, 253, 0.98), rgba(236, 247, 244, 0.96));
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.3);
}

.showcase-panel-sleek,
.showcase-panel-mini {
  width: min(700px, 100%);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.showcase-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 2px 16px;
  color: #0c514a;
}

.showcase-meta span,
.showcase-meta strong {
  display: inline-flex;
  align-items: center;
}

.showcase-meta span {
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #edf8f6;
  color: #006b60;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
}

.showcase-meta strong {
  color: #123f3a;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: end;
}

.showcase-panel-sleek .showcase-meta,
.showcase-panel-mini .showcase-meta {
  position: relative;
  z-index: 1;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 18px 4px;
  text-align: start;
}

.showcase-panel-sleek .showcase-meta span,
.showcase-panel-mini .showcase-meta span {
  border: 1px solid rgba(255, 224, 130, 0.28);
  background: rgba(255, 255, 255, 0.09);
  color: #ffe082;
}

.showcase-panel-sleek .showcase-meta strong,
.showcase-panel-mini .showcase-meta strong {
  color: rgba(255, 255, 255, 0.88);
  text-align: end;
}

html[lang="fr"] .product-hero-section .hero-title,
html[lang="de"] .product-hero-section .hero-title,
html[lang="it"] .product-hero-section .hero-title,
html[lang="es"] .product-hero-section .hero-title,
html[lang="da"] .product-hero-section .hero-title {
  font-size: clamp(2.8rem, 4.65vw, 4.8rem);
  line-height: 1.04;
}

html[lang="ar"] body {
  font-family: Tahoma, Arial, sans-serif;
}

html[lang="ar"] .product-hero-section .hero-title {
  font-size: clamp(3rem, 4.9vw, 5rem);
  line-height: 1.16;
}

.showcase-media-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 77, 64, 0.09);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 249, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 44px rgba(0, 47, 43, 0.12);
}

.showcase-media-frame {
  padding: 16px;
}

.showcase-media-frame-sleek {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.product-hero-carousel .sleek-screen,
.product-hero-carousel .tenant-app-screen {
  display: block;
  max-width: 100%;
}

.product-hero-carousel .sleek-screen {
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.24));
  box-shadow: none;
}

.mini-store-media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-carousel .tenant-app-screen {
  width: 100%;
  height: auto;
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.24));
  box-shadow: none;
}

.product-hero-indicators {
  z-index: 8;
  bottom: 26px;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  pointer-events: auto;
}

.product-hero-indicators [data-bs-target] {
  width: 50px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.42);
  opacity: 1;
}

.product-hero-indicators .active {
  width: 70px;
  background-color: #ffe082;
}

.product-hero-carousel .carousel-control-prev,
.product-hero-carousel .carousel-control-next {
  z-index: 8;
  top: auto;
  bottom: 7px;
  width: 44px;
  height: 44px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(0, 40, 37, 0.68);
  transform: none;
}

.product-hero-carousel .carousel-control-prev {
  left: calc(50% - 150px);
}

.product-hero-carousel .carousel-control-next {
  right: calc(50% - 150px);
}

.product-hero-carousel .carousel-control-prev:hover,
.product-hero-carousel .carousel-control-next:hover {
  background: #ffe082;
  transform: translateY(-2px);
}

.product-hero-carousel .carousel-control-prev span,
.product-hero-carousel .carousel-control-next span {
  color: #ffffff;
  font-size: 28px;
}

.product-hero-carousel .carousel-control-prev:hover span,
.product-hero-carousel .carousel-control-next:hover span {
  color: #004d40;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .product-hero-slide {
    padding-right: 34px;
    padding-left: 34px;
  }

  .product-hero-section .hero-title {
    font-size: clamp(3.15rem, 5.3vw, 4rem);
  }

  .product-hero-section .hero-lead {
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .platform-strip {
    gap: 8px;
    margin: 24px 0 28px;
  }

  .platform-chip {
    padding-right: 11px;
    padding-left: 11px;
    font-size: 0.84rem;
  }
}

@media (max-width: 991px) {
  .product-hero-section {
    min-height: auto;
    padding: 112px 0;
    text-align: center;
  }

  .product-hero-slide {
    min-height: auto;
    padding: 0 22px 56px;
  }

  .product-hero-section .hero-title,
  .product-hero-section .hero-lead {
    max-width: none;
  }

  .platform-strip,
  .product-hero-section .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 4px;
  }

  .product-showcase {
    min-height: auto;
  }

  .showcase-panel-sleek,
  .showcase-panel-mini {
    width: min(680px, 100%);
  }
}

@media (max-width: 576px) {
  #zs-fl-tip,
  #zs-tip-close {
    display: none !important;
  }

  .product-hero-section {
    padding-top: 112px;
    padding-bottom: 92px;
  }

  .product-hero-slide {
    padding-right: 14px;
    padding-left: 14px;
  }

  .product-hero-section .hero-eyebrow {
    margin-bottom: 12px;
    padding: 7px 12px;
    font-size: 0.72rem;
  }

  .product-hero-section .hero-title {
    margin-bottom: 12px;
    font-size: 2.26rem;
    line-height: 1.1;
  }

  .product-hero-section .hero-lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .platform-strip {
    justify-content: center;
    gap: 8px;
    margin: 18px 0 22px;
  }

  .platform-chip {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .product-hero-section .hero-buttons {
    gap: 10px;
  }

  .product-hero-section .hero-buttons .btn {
    min-height: 46px;
    padding: 0 18px;
  }

  .showcase-panel {
    padding: 11px;
    border-radius: 20px;
  }

  .showcase-panel-sleek,
  .showcase-panel-mini {
    padding: 0;
    border-radius: 0;
  }

  .showcase-panel-sleek .showcase-meta,
  .showcase-panel-mini .showcase-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }

  .showcase-panel-sleek .showcase-meta strong,
  .showcase-panel-mini .showcase-meta strong {
    text-align: left;
  }

  .showcase-media-frame-sleek {
    padding: 0;
    border-radius: 0;
  }

  .product-hero-carousel .sleek-screen,
  .product-hero-carousel .tenant-app-screen {
    max-height: none;
    border-radius: 0;
  }

  .mini-store-media {
    display: flex;
  }

  .product-hero-carousel .tenant-app-screen {
    width: 100%;
    height: auto;
  }

  .product-hero-indicators {
    bottom: 25px;
    gap: 14px;
  }

  .product-hero-indicators [data-bs-target] {
    width: 44px;
  }

  .product-hero-indicators .active {
    width: 62px;
  }

  .product-hero-carousel .carousel-control-prev,
  .product-hero-carousel .carousel-control-next {
    display: flex;
    bottom: 6px;
    width: 42px;
    height: 42px;
  }

  .product-hero-carousel .carousel-control-prev {
    left: calc(50% - 138px);
  }

  .product-hero-carousel .carousel-control-next {
    right: calc(50% - 138px);
  }
}

@media (max-width: 390px) {
  .product-hero-indicators {
    gap: 10px;
    transform: translateX(-10px);
  }

  .product-hero-indicators [data-bs-target] {
    width: 34px;
  }

  .product-hero-indicators .active {
    width: 50px;
  }

  .product-hero-carousel .carousel-control-prev,
  .product-hero-carousel .carousel-control-next {
    bottom: 7px;
    width: 40px;
    height: 40px;
  }

  .product-hero-carousel .carousel-control-prev {
    left: calc(50% - 113px);
  }

  .product-hero-carousel .carousel-control-next {
    right: calc(50% - 93px);
  }
}

/* Features Section */
.features-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
  background-image: url(../images/background/storegister-bg.png);
  background-repeat: no-repeat;
}

.features-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
  /* Default color */
}

.features-section h2 span.highlight {
  color: #009688;
  /* Teal for emphasis */
}

.feature-card {
  background: white;
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  /* Ensures all cards are of the same height */
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
}

.feature-item {
  background: white;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  /* Ensures equal height for all cards */
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-image {
  width: auto;
  height: 150px;
  /* Fixed height to ensure uniformity */
  margin-bottom: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  /* Ensures aspect ratio is maintained */
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.feature-item {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-image {
  max-width: 100%;
  height: auto;
  width: 200px;
  /* Scaled width for consistent visibility */
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 0.95rem;
  color: #666;
}

/* Button Styles - Always Teal */
.btn-feature {
  display: inline-block;
  background-color: #009688;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
}

.btn-feature:hover {
  background-color: #00796b;
  /* Slightly darker teal on hover */
  color: #fff !important;
  /* Keep white text */
  transform: scale(1.05);
}

/* Responsive Layout Adjustments */
@media (max-width: 1280px) {
  .features-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .features-section .col-md-3 {
    flex: 0 0 45%;
    /* Two items per row */
    max-width: 45%;
    /* Ensure proper alignment */
    margin-bottom: 20px;
    /* Add spacing between rows */
  }
}
@media (max-width: 768px) {
  .features-section .col-md-3 {
    flex: 0 0 100%;
    /* Single item per row for mobile */
    max-width: 100%;
  }
}
/* Client Section */
.client-section {
  background: #f5f5f5;
  padding: 50px 0;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.client-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  /* Adds breathing room between title and logos */
  text-align: center;
  color: #333;
  /* Neutral dark gray tone */
}

.client-section h2 .highlight {
  color: #009688;
  /* Teal for emphasis */
  font-weight: bold;
}

.client-wrapper {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 10px auto;
  /* Adds consistent spacing around the wrapper */
}

.client-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.client-logo {
  max-height: 80px;
  max-width: 160px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%);
  -o-object-fit: contain;
     object-fit: contain;
}

.client-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Responsive Grid Adjustments */
@media (max-width: 1280px) {
  .client-section .row-cols-lg-6 > * {
    flex: 0 0 25%;
    /* 4 cards per row */
    max-width: 25%;
  }
}
@media (max-width: 992px) {
  .client-section .row-cols-lg-6 > * {
    flex: 0 0 33.33%;
    /* 3 cards per row */
    max-width: 33.33%;
  }
}
@media (max-width: 768px) {
  .client-section .row-cols-lg-6 > * {
    flex: 0 0 50%;
    /* 2 cards per row */
    max-width: 50%;
  }
}
@media (max-width: 576px) {
  .client-section .row-cols-lg-6 > * {
    flex: 0 0 100%;
    /* 1 card per row */
    max-width: 100%;
  }
}
/* Add vertical spacing between rows */
.client-section .row {
  gap: 20px;
  /* Adds consistent spacing between rows */
}

/* Key Features Section */
.key-features-section {
  position: relative;
  padding: 60px 20px;
  border-top: 1px solid #dfe9e7;
  border-bottom: 1px solid #dfe9e7;
  background-color: #f4f7f6;
  background-image:
    linear-gradient(rgba(24, 60, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 60, 56, 0.035) 1px, transparent 1px);
  background-position: center top;
  background-size: 56px 56px;
}

.key-features-section h2 {
  font-size: 2rem;
  /* Standard size for clear readability */
  font-weight: 700;
  /* Strong emphasis */
  margin-bottom: 30px;
  text-align: center;
  color: #333;
  /* Default dark gray */
}

.key-features-section h2 .highlight {
  color: #009688;
  /* Teal for emphasis */
  font-weight: bold;
  /* Extra emphasis on "Key Features" */
}

.key-features-section .key-feature-item {
  background: white;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  /* Ensure consistent card height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.key-features-section .key-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.key-features-section .feature-image {
  width: auto;
  height: 228px;
  /* Fixed height for images */
  margin-bottom: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.key-features-section .key-feature-item h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.key-features-section .key-feature-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
  /* Ensures proper spacing */
}

/* Responsive Layout Adjustments */
@media (max-width: 1280px) {
  .key-features-section .row-cols-md-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .key-features-section .row-cols-md-3 .col {
    flex: 0 0 45%;
    /* Two items per row */
    max-width: 45%;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .key-features-section .row-cols-md-3 .col {
    flex: 0 0 100%;
    /* Single item per row */
    max-width: 100%;
    margin-bottom: 20px;
  }
  .key-features-section .feature-image {
    height: 120px;
    /* Slightly smaller images for mobile */
  }
  .key-features-section h2 {
    font-size: 1.75rem;
    /* Adjust heading size for smaller screens */
  }
}

/* Homepage FAQ */
.home-faq-section {
  padding: 76px 20px;
  border-top: 1px solid #dfeae7;
  background: #f4f8f7;
}

.home-faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 68px;
  align-items: start;
}

.home-faq-eyebrow {
  margin: 0 0 10px;
  color: #00796f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-faq-intro h2 {
  max-width: 420px;
  margin: 0 0 18px;
  color: #183c38;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
}

.home-faq-intro > p:not(.home-faq-eyebrow) {
  max-width: 430px;
  margin-bottom: 24px;
  color: #526b67;
  font-size: 1rem;
  line-height: 1.7;
}

.home-faq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #006b60;
  font-weight: 800;
  text-decoration: none;
}

.home-faq-link:hover {
  color: #004d40;
}

.home-faq-link .material-symbols-outlined {
  font-size: 20px;
}

.home-faq-list {
  border-top: 1px solid #cddbd8;
}

.home-faq-item {
  border-bottom: 1px solid #cddbd8;
}

.home-faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 21px 0;
  color: #183c38;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.4;
  list-style: none;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary .material-symbols-outlined {
  color: #00796f;
  transition: transform 0.2s ease;
}

.home-faq-item[open] summary .material-symbols-outlined {
  transform: rotate(180deg);
}

.home-faq-item > p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 22px;
  padding-inline-end: 44px;
  color: #526b67;
  font-size: 0.96rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .home-faq-section {
    padding: 56px 18px;
  }

  .home-faq-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-faq-intro h2 {
    font-size: 1.9rem;
  }

  .home-faq-item summary {
    gap: 14px;
    padding: 18px 0;
    font-size: 1rem;
  }

  .home-faq-item > p {
    padding-inline-end: 34px;
  }
}

/* Evidence-led homepage sections */
.section-eyebrow {
  margin: 0 0 10px;
  color: #00796f;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-proof-section {
  border-bottom: 1px solid #dfe9e7;
  background: #ffffff;
}

.home-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.home-proof-item,
.home-proof-membership {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 132px;
  padding: 28px 18px;
  border-inline-start: 1px solid #e1ebe9;
  color: #183c38;
  text-decoration: none;
}

.home-proof-grid > :first-child {
  border-inline-start: 0;
}

.home-proof-membership:hover,
.home-proof-membership:focus-visible {
  background: #f4f8f7;
  color: #004d40;
}

.home-proof-icon {
  color: #c59010;
  font-size: 25px;
  line-height: 1;
}

.home-proof-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.home-proof-copy small {
  color: #70827f;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-proof-copy strong {
  color: #183c38;
  font-size: 0.98rem;
  line-height: 1.25;
}

.home-proof-copy > span {
  color: #617572;
  font-size: 0.78rem;
  line-height: 1.45;
}

.client-section {
  padding: 72px 20px;
  border-top: 0;
  border-bottom: 1px solid #e1ebe9;
  background: #f6f9f8;
  box-shadow: none;
}

.client-section h2 {
  max-width: 780px;
  margin: 0 auto 14px;
  color: #183c38;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.16;
}

.client-section-intro {
  max-width: 780px;
  margin: 0 auto 30px;
  color: #5b706c;
  font-size: 1rem;
  line-height: 1.7;
}

.client-section .client-logo-grid {
  gap: 0;
  align-items: stretch;
}

.client-wrapper {
  position: relative;
  height: 122px;
  margin: 10px 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid #d6e2df;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(18, 66, 60, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.client-wrapper:hover {
  border-color: #96bbb5;
  box-shadow: 0 14px 30px rgba(18, 66, 60, 0.13);
  transform: translateY(-3px);
}

.client-logo {
  width: min(82%, 220px);
  height: 78px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.25s ease;
}

.client-wrapper:hover .client-logo {
  transform: scale(1.025);
}

.home-enterprise-section {
  padding: 88px 20px 0;
  overflow: hidden;
  border-bottom: 1px solid #165b53;
  background: #004d46;
  color: #ffffff;
}

.home-enterprise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.home-enterprise-section .section-eyebrow {
  color: #f3ce66;
}

.home-enterprise-copy h2 {
  max-width: 620px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.14;
}

.home-enterprise-copy > p:not(.section-eyebrow) {
  max-width: 640px;
  margin: 0;
  color: #c7ddd9;
  font-size: 1.03rem;
  line-height: 1.75;
}

.home-enterprise-benefits {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.home-enterprise-benefits li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #c7ddd9;
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-enterprise-benefits li > .material-symbols-outlined {
  color: #f3ce66;
  font-size: 24px;
}

.home-enterprise-benefits strong {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 0.98rem;
}

.home-region-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: #f7fbfa;
  box-shadow: 0 22px 50px rgba(0, 30, 27, 0.26);
  color: #183c38;
}

.home-region-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
}

.home-region-heading > .material-symbols-outlined {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #e7f4f1;
  color: #00796f;
  font-size: 24px;
}

.home-region-heading p {
  margin: 0 0 5px;
  color: #00796f;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-region-heading h3 {
  margin: 0;
  color: #183c38;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.28;
}

.home-region-intro {
  margin: 20px 0 8px;
  color: #5b706c;
  font-size: 0.92rem;
  line-height: 1.65;
}

.home-region-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.home-region-list > div {
  min-width: 0;
  padding: 20px 0;
  padding-inline-end: 18px;
  border-top: 1px solid #d7e4e1;
}

.home-region-list > div:nth-child(even) {
  padding-inline-start: 18px;
  padding-inline-end: 0;
  border-inline-start: 1px solid #d7e4e1;
}

.home-region-list > .home-region-dedicated {
  grid-column: 1 / -1;
  padding-inline-end: 0;
  border-inline-start: 0;
}

.home-region-list dt {
  margin-bottom: 7px;
  color: #637773;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-region-list dd {
  margin: 0;
}

.home-region-list dd strong,
.home-region-list dd span {
  display: block;
}

.home-region-list dd strong {
  color: #183c38;
  font-size: 1.25rem;
  line-height: 1.25;
}

.home-region-list dd span {
  margin-top: 3px;
  color: #71837f;
  font-size: 0.76rem;
  line-height: 1.4;
}

.home-region-note {
  margin: 2px 0 0;
  color: #71837f;
  font-size: 0.76rem;
  line-height: 1.55;
}

.home-enterprise-evaluation {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 56px;
  padding: 27px 0 29px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home-enterprise-evaluation > .material-symbols-outlined {
  color: #f3ce66;
  font-size: 27px;
}

.home-enterprise-evaluation-copy {
  min-width: 0;
}

.home-enterprise-evaluation-copy strong,
.home-enterprise-evaluation-copy > span {
  display: block;
}

.home-enterprise-evaluation-copy strong {
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 0.98rem;
}

.home-enterprise-evaluation-copy > span {
  max-width: 760px;
  color: #c7ddd9;
  font-size: 0.85rem;
  line-height: 1.55;
}

.home-enterprise-evaluation .home-text-link {
  flex: 0 0 auto;
  color: #f3ce66;
  white-space: nowrap;
}

.home-enterprise-evaluation .home-text-link:hover,
.home-enterprise-evaluation .home-text-link:focus-visible {
  color: #ffffff;
}

.home-outcomes-section {
  padding: 88px 20px;
  background: #f3f7f6;
}

.home-section-heading {
  max-width: 800px;
  margin: 0 0 42px;
}

.home-section-heading h2 {
  margin: 0 0 16px;
  color: #183c38;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
}

.home-section-heading > p:not(.section-eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #526b67;
  font-size: 1.05rem;
  line-height: 1.75;
}

.home-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.home-outcome-item {
  position: relative;
  padding: 28px 0 0;
  border-top: 2px solid #bfd2cf;
}

.home-outcome-item::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 54px;
  height: 2px;
  background: #c59010;
  content: "";
}

.home-outcome-number {
  display: block;
  margin-bottom: 22px;
  color: #80918e;
  font-size: 0.72rem;
  font-weight: 800;
}

.home-outcome-item > .material-symbols-outlined {
  margin-bottom: 16px;
  color: #00796f;
  font-size: 30px;
}

.home-outcome-item h3 {
  margin: 0 0 12px;
  color: #183c38;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.3;
}

.home-outcome-item p {
  margin: 0;
  color: #5b706c;
  font-size: 0.93rem;
  line-height: 1.7;
}

.home-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #006b60;
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
}

.home-text-link:hover,
.home-text-link:focus-visible {
  color: #004d40;
  text-decoration: none;
}

.home-text-link .material-symbols-outlined {
  font-size: 19px;
}

.features-section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.features-section h2 {
  margin: 0 0 16px;
  color: #183c38;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.16;
}

.features-section-intro,
.key-features-intro {
  max-width: 800px;
  margin: 0 auto 38px;
  color: #5b706c;
  font-size: 1rem;
  line-height: 1.7;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(22, 67, 62, 0.06);
}

.feature-card:hover {
  box-shadow: 0 12px 28px rgba(22, 67, 62, 0.1);
  transform: translateY(-3px);
}

.feature-card img {
  border-radius: 6px;
}

.feature-card p {
  flex: 1;
  line-height: 1.65;
}

.key-features-section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.key-features-section h2 {
  margin: 0 0 16px;
  color: #183c38;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.16;
}

.key-features-section .key-feature-item {
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(22, 67, 62, 0.06);
}

.key-features-section .key-feature-item:hover {
  box-shadow: 0 12px 28px rgba(22, 67, 62, 0.1);
  transform: translateY(-3px);
}

.key-features-section .feature-image {
  height: 190px;
}

.key-features-cta {
  margin-top: 36px;
}

.home-ecosystem-section {
  padding: 88px 20px;
  border-top: 1px solid #e1ebe9;
  border-bottom: 1px solid #e1ebe9;
  background: #f6f9f8;
}

.home-ecosystem-heading {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.home-ecosystem-heading > p:not(.section-eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.home-integration-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.home-integration-logo {
  --logo-scale: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 122px;
  padding: 12px 18px;
  overflow: hidden;
  border: 1px solid #d6e2df;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(18, 66, 60, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-integration-logo:hover {
  border-color: #96bbb5;
  box-shadow: 0 14px 30px rgba(18, 66, 60, 0.13);
  transform: translateY(-3px);
}

.home-integration-logo img {
  width: min(78%, 190px);
  height: 88px;
  max-width: none;
  object-fit: contain;
  transform: scale(var(--logo-scale));
  transform-origin: center;
}

.home-integration-logo--stripe {
  --logo-scale: 1.5;
}

.home-integration-logo--gocardless {
  --logo-scale: 1.65;
}

.home-integration-logo--lyra,
.home-integration-logo--payplug,
.home-integration-logo--pti {
  --logo-scale: 1.08;
}

.home-integration-logo--noke,
.home-integration-logo--sage {
  --logo-scale: 1.38;
}

.home-integration-logo--xero {
  --logo-scale: 1.58;
}

.home-integration-note {
  max-width: 760px;
  margin: 24px auto 36px;
  color: #687c78;
  font-size: 0.82rem;
  line-height: 1.65;
  text-align: center;
}

.home-resource-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1040px;
  margin: 0 auto;
  border-top: 1px solid #cfdcd9;
  border-bottom: 1px solid #cfdcd9;
}

.home-resource-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 12px 18px;
  border-inline-start: 1px solid #cfdcd9;
  color: #183c38;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.home-resource-links a:first-child {
  border-inline-start: 0;
}

.home-resource-links a:hover,
.home-resource-links a:focus-visible {
  background: #f3f7f6;
  color: #006b60;
}

.home-resource-links .material-symbols-outlined {
  flex: 0 0 auto;
  color: #c59010;
  font-size: 22px;
}

@media (min-width: 992px) {
  .key-features-section .row-cols-md-3 .col {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    margin-bottom: 0;
  }
}

@media (max-width: 1199px) {
  .home-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-proof-item,
  .home-proof-membership {
    border-top: 1px solid #e1ebe9;
    border-inline-start: 0;
  }

  .home-outcomes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-enterprise-layout {
    gap: 44px;
  }
}

@media (max-width: 991px) {
  .home-enterprise-layout {
    grid-template-columns: 1fr;
  }

  .home-enterprise-copy h2,
  .home-enterprise-copy > p:not(.section-eyebrow) {
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  .client-section,
  .home-enterprise-section,
  .home-outcomes-section,
  .home-ecosystem-section,
  .features-section,
  .key-features-section {
    padding: 58px 18px;
  }

  .home-proof-grid,
  .home-outcomes-grid,
  .home-integration-logos,
  .home-resource-links {
    grid-template-columns: 1fr;
  }

  .home-proof-item,
  .home-proof-membership {
    min-height: 0;
    padding: 22px 4px;
  }

  .client-section h2,
  .home-enterprise-copy h2,
  .home-section-heading h2,
  .features-section h2,
  .key-features-section h2 {
    font-size: 1.9rem;
  }

  .home-section-heading {
    margin-bottom: 32px;
  }

  .home-enterprise-section {
    padding-bottom: 0;
  }

  .home-enterprise-layout {
    gap: 34px;
  }

  .home-region-panel {
    padding: 24px 20px;
  }

  .home-region-heading {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  .home-region-heading > .material-symbols-outlined {
    width: 36px;
    height: 36px;
    font-size: 21px;
  }

  .home-region-heading h3 {
    font-size: 1.25rem;
  }

  .home-region-list {
    grid-template-columns: 1fr;
  }

  .home-region-list > div,
  .home-region-list > div:nth-child(even) {
    padding: 16px 0;
    padding-inline-start: 0;
    padding-inline-end: 0;
    border-inline-start: 0;
  }

  .home-enterprise-evaluation {
    grid-template-columns: 30px minmax(0, 1fr);
    margin-top: 40px;
  }

  .home-enterprise-evaluation .home-text-link {
    grid-column: 2;
    white-space: normal;
  }

  .home-outcome-item {
    padding-top: 24px;
  }

  .home-section-actions {
    flex-direction: column;
    gap: 16px;
    margin-top: 34px;
  }

  .home-integration-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-wrapper,
  .home-integration-logo {
    height: 108px;
  }

  .client-logo {
    width: min(86%, 190px);
    height: 70px;
  }

  .home-integration-logos {
    gap: 12px;
  }

  .home-integration-logo {
    padding: 10px 12px;
  }

  .home-integration-logo img {
    width: min(80%, 160px);
    height: 76px;
  }

  .home-resource-links a,
  .home-resource-links a:first-child {
    min-height: 58px;
    border-top: 1px solid #cfdcd9;
    border-inline-start: 0;
  }

  .home-resource-links a:first-child {
    border-top: 0;
  }

  .key-features-section .feature-image {
    height: 150px;
  }
}

html[dir="rtl"] .home-outcome-item::before {
  right: 0;
  left: auto;
}

html[dir="rtl"] .home-text-link .material-symbols-outlined {
  transform: rotate(180deg);
}

/* Scroll reveal motion inspired by Samsung's restrained content assembly. */
html.motion-ready .motion-reveal {
  --motion-delay: 0ms;
  --motion-distance: 20px;
  --motion-duration: 600ms;
  opacity: 0;
  translate: 0 var(--motion-distance);
  transition:
    opacity 200ms linear var(--motion-delay),
    translate var(--motion-duration) cubic-bezier(0, 0.18, 0.07, 1) var(--motion-delay);
  will-change: opacity, translate;
}

html.motion-ready .motion-reveal--card {
  --motion-distance: clamp(38px, 6vh, 64px);
  --motion-duration: 680ms;
}

html.motion-ready .motion-reveal--compact {
  --motion-distance: 14px;
  --motion-duration: 520ms;
}

html.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  html.motion-ready .motion-reveal {
    opacity: 1 !important;
    translate: none !important;
    transition: none !important;
  }
}

/* Footer */
/* New Footer */
/* General Footer Styles */
footer {
  background-color: #1c1c1c;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 40px 20px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-subtitle {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
}

footer p, footer address {
  margin-bottom: 0.5rem;
}

footer a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease, transform 0.2s ease;
}

footer a:hover {
  color: #00bcd4;
  transform: scale(1.05);
}

/* Social Media Icons */
footer .bi {
  font-size: 1.25rem;
  color: #ccc;
  margin-inline-end: 10px;
  transition: color 0.3s ease, transform 0.2s ease;
}

footer .bi:hover {
  color: #00bcd4;
  transform: scale(1.2);
}

/* List Styles */
footer ul {
  list-style: none;
  padding-inline-start: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-inline-start: 15px;
}

footer ul li::before {
  content: "•";
  position: absolute;
  inset-inline-start: 0;
  color: #00bcd4;
}

html[dir="rtl"] .navbar-nav {
  padding-right: 0;
}

html[dir="rtl"] .dropdown-menu {
  text-align: right;
}

html[dir="rtl"] .language-code,
html[dir="rtl"] .showcase-meta span {
  direction: ltr;
  unicode-bidi: isolate;
}

html[dir="rtl"] .home-faq-link .material-symbols-outlined {
  transform: scaleX(-1);
}

html[dir="rtl"] footer address a {
  display: inline-block;
  direction: ltr;
  unicode-bidi: isolate;
}

/* Membership Section */
footer .membership-section {
  margin-top: 20px;
}

footer .membership-icons img {
  height: 50px;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom .small {
  margin: 0;
  color: #aeb9b7;
}

.footer-language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: #272d2c;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.footer-language-toggle:hover,
.footer-language-toggle:focus-visible,
.footer-language-toggle.show {
  border-color: #6bb8ae;
  background: #303937;
  color: #ffe082;
}

.footer-language-toggle:focus-visible {
  outline: 2px solid #ffe082;
  outline-offset: 3px;
}

.footer-language-toggle .material-symbols-outlined {
  font-size: 20px;
  line-height: 1;
}

.footer-language-menu {
  min-width: 190px;
  margin-bottom: 10px !important;
  padding: 8px !important;
  border: 1px solid #46514f !important;
  border-radius: 8px;
  background: #272d2c;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.footer-language-menu li {
  margin: 0;
  padding: 0;
}

.footer-language-menu li::before {
  content: none;
}

.footer-language-menu .dropdown-item {
  padding: 9px 11px;
  border-radius: 5px;
  color: #d9e0de;
  font-size: 0.84rem;
  font-weight: 600;
  transform: none;
}

.footer-language-menu .dropdown-item:hover,
.footer-language-menu .dropdown-item:focus {
  background: #35403e;
  color: #ffffff;
  transform: none;
}

.footer-language-menu .dropdown-item.active,
.footer-language-menu .dropdown-item:active {
  background: #006b60;
  color: #ffe082;
}

/* Responsive Design */
@media (max-width: 768px) {
  footer h5 {
    font-size: 0.9rem;
  }
  footer ul li {
    margin-bottom: 0.4rem;
  }
  footer .membership-icons img {
    height: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
/* Video Container Styling */
.video-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Consistent shadow with hero section */
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid #004d40;
}

/* Iframe Styling */
.video-container .custom-video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  aspect-ratio: 16/9; /* Maintain responsive aspect ratio */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .video-container {
    max-width: 100%;
  }
  .video-container .custom-video {
    aspect-ratio: 16/9;
  }
}
