/*
_lib.less

UI adjustments for menu
*/
@font-face {
  font-family: lato-black;
  src: url(fonts/Lato/Lato-Black.woff2);
}
/* roboto-mono-regular - latin */
@font-face {
  font-display: swap;
  font-family: roboto-mono;
  font-style: normal;
  font-weight: 400;
  src: url('fonts/Roboto/roboto-mono-v31-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: lato-bold;
  src: url(fonts/Lato/Lato-Bold.woff2);
}
@font-face {
  font-family: lato-medium;
  src: url(fonts/Lato/Lato-Medium.woff2);
}
@font-face {
  font-family: lato-regular;
  src: url(fonts/Lato/Lato-Regular.woff2);
}
.header {
  font-family: lato-bold !important;
  font-size: 18px;
}
.ui.header {
  font-family: lato-bold !important;
}
p {
  font-family: lato-regular !important;
  font-size: 16px;
}
.description {
  font-family: lato-regular !important;
  font-size: 15px;
}
#desktop-menu .item {
  padding: 1.5rem;
  font-weight: bold;
}
#mobile-menu {
  display: none;
}
.float {
  position: fixed;
  bottom: 40px;
  right: 40px;
}
.vertical-align {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}
.my-float {
  margin-top: 22px;
}
.ui.container.footer {
  padding-bottom: 0rem;
}
.copyright-section > strong {
  color: grey;
  fontSize: 1rem;
}
.privacy-section {
  color: grey;
  border-bottom: 1px solid grey;
}
.privacy-section:hover {
  color: lightgrey;
  border-bottom: 1px solid lightgrey;
}
@media only screen and (max-width: 768px) {
  #desktop-menu {
    display: none;
  }
  p {
    font-size: 15px;
  }
  .description {
    font-family: lato-regular !important;
    font-size: 15px;
  }
  #mobile-menu {
    display: -webkit-flex;
    padding: 0.5rem;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'lato-regular', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn:focus-visible {
  outline: 2px solid #0D7377;
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'lato-regular', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0A5C5F, #14919B);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(13, 115, 119, 0.3);
}
.btn-primary:focus-visible {
  outline: 2px solid #0D7377;
  outline-offset: 2px;
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #085e62, #17a5ad);
  transform: translateY(-3px);
  color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(13, 115, 119, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'lato-regular', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #0D7377;
  border: 2px solid #0D7377;
}
.btn-secondary:focus-visible {
  outline: 2px solid #0D7377;
  outline-offset: 2px;
}
.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-secondary:hover:not(:disabled) {
  background: #0D7377;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn-secondary-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'lato-regular', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.btn-secondary-alt:focus-visible {
  outline: 2px solid #0D7377;
  outline-offset: 2px;
}
.btn-secondary-alt:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-secondary-alt:hover:not(:disabled) {
  background: #FFFFFF;
  color: #0D7377;
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'lato-regular', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #4A6366;
}
.btn-ghost:focus-visible {
  outline: 2px solid #0D7377;
  outline-offset: 2px;
}
.btn-ghost:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-ghost:hover:not(:disabled) {
  background: #EDF2F2;
}
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'lato-regular', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FF6B6B, #ff8787);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}
.btn-accent:focus-visible {
  outline: 2px solid #0D7377;
  outline-offset: 2px;
}
.btn-accent:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-accent:hover:not(:disabled) {
  background: linear-gradient(135deg, #ff8787, #ffa0a0);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  border-radius: 9999px;
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.125rem;
  border-radius: 9999px;
}
.card {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
}
.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.card:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.08), rgba(20, 145, 155, 0.04));
  color: #0D7377;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.card h3 {
  margin-bottom: 0.5rem;
}
.card p {
  color: #677D80;
  font-size: 0.95rem;
}
.card-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
  pointer-events: none;
}
.card-shimmer:hover::after {
  animation: cardShimmer 0.8s ease forwards;
}
@keyframes cardShimmer {
  0% {
    transform: translateX(-100%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) translateY(0);
    opacity: 0;
  }
}
.card-elevated {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.card-elevated:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.card-elevated:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.card-interactive {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
  cursor: pointer;
}
.card-interactive:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.card-interactive:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.card--parallax {
  perspective: 1200px;
}
.card--parallax:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 30px 60px rgba(13, 115, 119, 0.12);
}
.card-header {
  margin-bottom: 1rem;
}
.card-title {
  font-family: 'lato-bold', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 1.3rem;
  color: #4A6366;
  margin: 0;
}
.card-description {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1rem;
  color: #677D80;
  margin: 0.5rem 0 0;
}
.card-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #D9E2E3;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-family: 'lato-regular', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  line-height: 1;
}
.badge-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-family: 'lato-regular', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  line-height: 1;
  background: rgba(13, 115, 119, 0.1);
  color: #0A5C5F;
}
.badge-accent {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-family: 'lato-regular', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  line-height: 1;
  background: rgba(255, 107, 107, 0.1);
  color: #E55555;
}
.badge-neutral {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-family: 'lato-regular', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  line-height: 1;
  background: #EDF2F2;
  color: #4A6366;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 2.5rem;
  width: auto;
}
.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
}
.nav-link {
  font-family: 'lato-regular', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #677D80;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover {
  color: #0D7377;
  background: rgba(13, 115, 119, 0.05);
}
.nav-link.active {
  color: #0D7377;
  font-weight: 600;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  min-width: 180px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  list-style: none;
  z-index: 100;
}
@media (min-width: 1024px) {
  .nav-dropdown-menu {
    display: none;
  }
}
.nav-dropdown-menu li a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: #4A6366;
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.nav-dropdown-menu li a:hover {
  background: #F5F8F8;
  color: #0D7377;
}
@media (min-width: 1024px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    display: block;
  }
}
.nav-cta {
  display: none;
}
@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: #0D7377;
    color: #FFFFFF !important;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-cta a {
    color: #FFFFFF !important;
  }
  .nav-cta:hover {
    background: #0A5C5F;
    color: #FFFFFF !important;
    transform: translateY(-1px);
  }
  .nav-cta:hover a {
    color: #FFFFFF !important;
  }
}
.nav-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1024px) {
  .nav-mobile-btn {
    display: none;
  }
}
.nav-mobile-btn:hover {
  background: #EDF2F2;
}
.hamburger {
  width: 1.5rem;
  height: 2px;
  background: #4A6366;
  position: relative;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  left: 0;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger::before {
  top: -6px;
}
.hamburger::after {
  bottom: -6px;
}
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  transition: right 250ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 50;
  overflow-y: auto;
}
.mobile-sidebar.open {
  right: 0;
}
.mobile-sidebar > div:first-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.mobile-sidebar > div:first-child #mobile-close-btn > .hamburger .close-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #1A1A2E;
  right: 4%;
}
.mobile-sidebar > div:first-child #mobile-close-btn > .hamburger .close-line-1 {
  transform: rotate(45deg);
}
.mobile-sidebar > div:first-child #mobile-close-btn > .hamburger .close-line-2 {
  transform: rotate(-45deg);
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 40;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-stack {
  display: flex;
  flex-direction: column;
}
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: calc(72px + 6rem) 0 6rem;
  overflow: hidden;
  /* Soft gradient fade at hero bottom to blend blob into next section */
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #FFFFFF;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to bottom, transparent 0%, #FFFFFF 100%);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: calc(72px + 3rem) 0 3rem;
  }
}
.hero-home {
  min-height: 85vh;
}
.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
  text-align: left;
}
.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #677D80;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-title {
  font-family: 'lato-bold', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #4A6366;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
.hero-subtitle {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.3rem;
  color: #677D80;
  max-width: 600px;
  margin: 0 0 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.product-mark {
  margin-bottom: 1.5rem;
}
.product-mark .product-mark-badge {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.product-mark .product-mark-wordmark {
  font-family: 'lato-bold', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: #4A6366;
  line-height: 1.2;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-dark {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: calc(72px + 6rem) 0 6rem;
  overflow: hidden;
  /* Soft gradient fade at hero bottom to blend blob into next section */
  background: #1F3032;
}
.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #FFFFFF;
}
.hero-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to bottom, transparent 0%, #FFFFFF 100%);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero-dark {
    min-height: auto;
    padding: calc(72px + 3rem) 0 3rem;
  }
}
.hero-dark .hero-title {
  color: #FFFFFF;
}
.hero-dark .hero-subtitle {
  color: #C2CECE;
}
.hero-pill-wrapper {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.1), rgba(255, 107, 107, 0.1));
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.hero-pill-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 47px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  color: #0A5C5F;
  font-weight: 600;
}
.hero-pill-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B6B, #ff9f9f);
  box-shadow: 0 0 12px rgba(255, 107, 107, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}
.gradient-text {
  background: linear-gradient(135deg, #0A5C5F 0%, #14919B 50%, #16a4af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blob-wrapper {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}
.blob-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
/*
 * Golden Ratio (φ ≈ 1.618) Blob Positioning
 *
 * Green blob (600px) anchors the upper-right composition.
 * Coral blob (400px) is placed at the golden-section point (≈61.8 %)
 * down the green blob’s vertical span so the two overlap and the
 * coral blob sits closer to the CTA buttons.
 *
 * Green blob top edge: -60 px
 * Golden section: -60 + (600 × 0.618) ≈ 311 px
 * Coral blob is set to top: 260 px so its upper mass overlaps the
 * lower-right quadrant of the green blob.
 */
.blob-tea {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -40px;
  top: -60px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.25), rgba(20, 145, 155, 0.12));
  animation: blobMorph1 25s ease-in-out infinite, blobBreathe1 8s ease-in-out infinite;
  will-change: transform, border-radius;
}
@media (max-width: 767px) {
  .blob-tea {
    width: 350px;
    height: 350px;
    right: -40px;
    top: -40px;
  }
}
.blob-accent {
  position: absolute;
  width: 400px;
  height: 400px;
  right: 280px;
  top: 260px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 142, 142, 0.1));
  animation: blobMorph2 20s ease-in-out infinite, blobBreathe2 6s ease-in-out infinite;
  will-change: transform, border-radius;
}
@media (max-width: 767px) {
  .blob-accent {
    width: 250px;
    height: 250px;
    right: 120px;
    top: 160px;
  }
}
.blob-third {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 120px;
  left: -60px;
  border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.45), rgba(251, 146, 36, 0.25));
  animation: blobMorph3 18s ease-in-out infinite, blobBreathe3 7s ease-in-out infinite;
  will-change: transform, border-radius;
}
@media (max-width: 767px) {
  .blob-third {
    width: 200px;
    height: 200px;
    left: -30px;
    top: 80px;
  }
}
@keyframes blobMorph1 {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
    transform: translate(30px, -50px) rotate(120deg);
  }
  66% {
    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
    transform: translate(-20px, 30px) rotate(240deg);
  }
}
@keyframes blobMorph2 {
  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(0, 0);
  }
  50% {
    border-radius: 60% 40% 30% 70% / 60% 40% 70% 30%;
    transform: translate(-40px, 30px);
  }
}
@keyframes blobMorph3 {
  0%,
  100% {
    border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  20% {
    border-radius: 70% 30% 50% 50% / 50% 40% 60% 50%;
    transform: translate(60px, -40px) rotate(90deg) scale(1.08);
  }
  40% {
    border-radius: 30% 70% 60% 40% / 60% 50% 40% 60%;
    transform: translate(20px, 50px) rotate(180deg) scale(0.92);
  }
  60% {
    border-radius: 60% 40% 40% 60% / 30% 70% 50% 50%;
    transform: translate(-50px, 20px) rotate(270deg) scale(1.05);
  }
  80% {
    border-radius: 40% 60% 70% 30% / 50% 50% 30% 70%;
    transform: translate(-30px, -35px) rotate(320deg) scale(0.95);
  }
}
@keyframes blobBreathe1 {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
@keyframes blobBreathe2 {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes blobBreathe3 {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.hero-blob-single {
  position: absolute;
  width: 40vh;
  height: 40vh;
  max-width: 500px;
  max-height: 500px;
  left: 8%;
  top: 30vh;
  transform: translate(-50%, -50%);
  border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
  pointer-events: none;
  z-index: -2;
  will-change: transform, border-radius;
}
@media (max-width: 767px) {
  .hero-blob-single {
    width: 35vh;
    height: 35vh;
    max-width: 260px;
    max-height: 260px;
    left: 8%;
    top: 25vh;
    transform: translate(-50%, -50%);
  }
}
.hero-blob-single.blob-green {
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.45), rgba(20, 145, 155, 0.25));
  animation: blobMorphInterior 18s ease-in-out infinite, blobBreatheInterior 7s ease-in-out infinite;
}
.hero-blob-single.blob-coral {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.45), rgba(255, 142, 142, 0.25));
  animation: blobMorphInteriorAlt 20s ease-in-out infinite, blobBreatheInterior 7s ease-in-out infinite;
}
.hero-blob-single.blob-amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.45), rgba(251, 146, 36, 0.25));
  animation: blobMorphInterior 18s ease-in-out infinite, blobBreatheInterior 7s ease-in-out infinite;
}
@keyframes blobMorphInterior {
  0%,
  100% {
    border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  20% {
    border-radius: 70% 30% 50% 50% / 50% 40% 60% 50%;
    transform: translate(calc(-50% + 40px), calc(-50% - 30px)) rotate(90deg) scale(1.08);
  }
  40% {
    border-radius: 30% 70% 60% 40% / 60% 50% 40% 60%;
    transform: translate(calc(-50% + 10px), calc(-50% + 40px)) rotate(180deg) scale(0.92);
  }
  60% {
    border-radius: 60% 40% 40% 60% / 30% 70% 50% 50%;
    transform: translate(calc(-50% - 30px), calc(-50% + 10px)) rotate(270deg) scale(1.05);
  }
  80% {
    border-radius: 40% 60% 70% 30% / 50% 50% 30% 70%;
    transform: translate(calc(-50% - 20px), calc(-50% - 25px)) rotate(320deg) scale(0.95);
  }
}
@keyframes blobMorphInteriorAlt {
  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  25% {
    border-radius: 60% 40% 30% 70% / 60% 40% 70% 30%;
    transform: translate(calc(-50% - 30px), calc(-50% + 20px)) rotate(100deg) scale(1.06);
  }
  50% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    transform: translate(calc(-50% + 20px), calc(-50% - 10px)) rotate(200deg) scale(0.94);
  }
  75% {
    border-radius: 70% 30% 60% 40% / 40% 60% 40% 60%;
    transform: translate(calc(-50% + 10px), calc(-50% + 30px)) rotate(300deg) scale(1.03);
  }
}
@keyframes blobBreatheInterior {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "healthcare" "church-mgmt" "events" "managed-services" "retail" "software";
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr 1.5fr;
    grid-template-areas: "healthcare church-mgmt" "events managed-services" "events retail" "software software";
  }
}
@media (min-width: 1024px) {
  .solutions-grid {
    grid-template-columns: 1fr 0.75fr 0.75fr;
    grid-template-areas: "healthcare church-mgmt church-mgmt" "events managed-services managed-services" "events retail software";
  }
}
.solution-card {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.solution-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.solution-card:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.solution-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
  pointer-events: none;
}
.solution-card:hover::after {
  animation: cardShimmer 0.8s ease forwards;
}
.solution-card.events {
  grid-area: events;
}
.solution-card.church-mgmt {
  grid-area: church-mgmt;
}
.solution-card.healthcare {
  grid-area: healthcare;
}
.solution-card.managed-services {
  grid-area: managed-services;
}
.solution-card.retail {
  grid-area: retail;
}
.solution-card.software {
  grid-area: software;
}
.solution-card.healthcare,
.solution-card.church-mgmt {
  justify-content: center;
  min-height: 300px;
}
.solution-card.healthcare .solution-icon,
.solution-card.church-mgmt .solution-icon,
.solution-card.events .solution-icon {
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  border-radius: 1rem;
}
.solution-card.healthcare .solution-title,
.solution-card.church-mgmt .solution-title,
.solution-card.events .solution-title {
  font-size: 1.3rem;
}
.solution-card.healthcare .solution-description,
.solution-card.church-mgmt .solution-description,
.solution-card.events .solution-description {
  font-size: 1.125rem;
  line-height: 1.625;
}
.solution-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 115, 119, 0.1);
  border-radius: 0.75rem;
  color: #0D7377;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.solution-card:hover .solution-icon {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
}
.solution-title {
  font-family: 'lato-bold', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 1.125rem;
  color: #4A6366;
  margin: 0 0 0.5rem;
}
.solution-description {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 0.9rem;
  color: #677D80;
  margin: 0;
}
@media (max-width: 767px) {
  .solutions-grid {
    gap: 0.5rem;
  }
  .solution-card,
  .solution-card.healthcare,
  .solution-card.church-mgmt {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "icon title" "icon desc";
    column-gap: 1rem;
    row-gap: 0.25rem;
    padding: 1rem;
    min-height: 0;
  }
  .solution-icon,
  .solution-card.healthcare .solution-icon,
  .solution-card.church-mgmt .solution-icon,
  .solution-card.events .solution-icon {
    grid-area: icon;
    align-self: center;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
    margin-bottom: 0;
  }
  .solution-title,
  .solution-card.healthcare .solution-title,
  .solution-card.church-mgmt .solution-title,
  .solution-card.events .solution-title {
    grid-area: title;
    font-size: 1rem;
    margin: 0;
  }
  .solution-description,
  .solution-card.healthcare .solution-description,
  .solution-card.church-mgmt .solution-description,
  .solution-card.events .solution-description {
    grid-area: desc;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.service-hub-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.service-hub-visual {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 1;
  margin: 0 auto 3rem;
  padding: 2.5rem 1rem;
  box-sizing: border-box;
}
.service-hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9rem;
  height: 9rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #0A5C5F, #0D7377);
  box-shadow: 0 12px 30px rgba(13, 115, 119, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 2;
  text-align: center;
}
.service-hub-center-mark {
  font-family: 'lato-bold', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  font-size: 1.5rem;
}
.service-hub-spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38%;
  height: 0;
  border-top: 2px dashed #D9E2E3;
  transform-origin: 0 0;
  z-index: 0;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), border-top-width 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.service-hub-spoke-0 {
  transform: rotate(-90deg);
}
.service-hub-spoke-1 {
  transform: rotate(-18deg);
}
.service-hub-spoke-2 {
  transform: rotate(54deg);
}
.service-hub-spoke-3 {
  transform: rotate(126deg);
}
.service-hub-spoke-4 {
  transform: rotate(198deg);
}
.service-hub-node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background-color: #F5F8F8;
  border-radius: 0.75rem;
  padding: 1rem;
  width: 13.5rem;
  text-align: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .service-hub-node {
    border: 1px solid #D9E2E3;
  }
  .service-hub-node:hover {
    transform: translate(-50%, -50%) translateY(-6px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
}
.service-hub-node-0 {
  top: 10%;
  left: 50%;
}
.service-hub-node-1 {
  top: 43%;
  left: 91%;
}
.service-hub-node-2 {
  top: 90%;
  left: 74%;
}
.service-hub-node-3 {
  top: 90%;
  left: 26%;
}
.service-hub-node-4 {
  top: 43%;
  left: 9%;
}
.service-hub-node-dot {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: #FFFFFF;
  border: 2px solid #D9E2E3;
  color: #0D7377;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.service-hub-node-title {
  font-family: 'lato-bold', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 1rem;
  color: #677D80;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.service-hub-node:hover .service-hub-node-dot {
  border-color: #14919B;
  background: rgba(13, 115, 119, 0.08);
  transform: scale(1.06);
}
.service-hub-panels {
  position: relative;
}
.service-hub-panel {
  display: none;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 3rem;
  max-width: 640px;
  margin: 0 auto;
}
.service-hub-panel-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(13, 115, 119, 0.1);
  color: #0D7377;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-hub-panel-title {
  font-family: 'lato-bold', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 1.125rem;
  color: #4A6366;
  margin: 0 0 0.5rem;
}
.service-hub-panel-description {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1rem;
  color: #677D80;
  margin: 0;
}
#service-hub-0:checked ~ .service-hub-visual .service-hub-node-0 {
  border-color: #0D7377;
}
#service-hub-0:checked ~ .service-hub-visual .service-hub-node-0 .service-hub-node-dot {
  background: #0D7377;
  border-color: #0D7377;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.25);
}
#service-hub-0:checked ~ .service-hub-visual .service-hub-node-0 .service-hub-node-title {
  color: #0D7377;
}
#service-hub-0:checked ~ .service-hub-visual .service-hub-spoke-0 {
  border-top-style: solid;
  border-top-width: 3px;
  border-top-color: #0D7377;
}
#service-hub-0:checked ~ .service-hub-panels .service-hub-panel-0 {
  display: flex;
}
#service-hub-1:checked ~ .service-hub-visual .service-hub-node-1 {
  border-color: #0D7377;
}
#service-hub-1:checked ~ .service-hub-visual .service-hub-node-1 .service-hub-node-dot {
  background: #0D7377;
  border-color: #0D7377;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.25);
}
#service-hub-1:checked ~ .service-hub-visual .service-hub-node-1 .service-hub-node-title {
  color: #0D7377;
}
#service-hub-1:checked ~ .service-hub-visual .service-hub-spoke-1 {
  border-top-style: solid;
  border-top-width: 3px;
  border-top-color: #0D7377;
}
#service-hub-1:checked ~ .service-hub-panels .service-hub-panel-1 {
  display: flex;
}
#service-hub-2:checked ~ .service-hub-visual .service-hub-node-2 {
  border-color: #0D7377;
}
#service-hub-2:checked ~ .service-hub-visual .service-hub-node-2 .service-hub-node-dot {
  background: #0D7377;
  border-color: #0D7377;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.25);
}
#service-hub-2:checked ~ .service-hub-visual .service-hub-node-2 .service-hub-node-title {
  color: #0D7377;
}
#service-hub-2:checked ~ .service-hub-visual .service-hub-spoke-2 {
  border-top-style: solid;
  border-top-width: 3px;
  border-top-color: #0D7377;
}
#service-hub-2:checked ~ .service-hub-panels .service-hub-panel-2 {
  display: flex;
}
#service-hub-3:checked ~ .service-hub-visual .service-hub-node-3 {
  border-color: #0D7377;
}
#service-hub-3:checked ~ .service-hub-visual .service-hub-node-3 .service-hub-node-dot {
  background: #0D7377;
  border-color: #0D7377;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.25);
}
#service-hub-3:checked ~ .service-hub-visual .service-hub-node-3 .service-hub-node-title {
  color: #0D7377;
}
#service-hub-3:checked ~ .service-hub-visual .service-hub-spoke-3 {
  border-top-style: solid;
  border-top-width: 3px;
  border-top-color: #0D7377;
}
#service-hub-3:checked ~ .service-hub-panels .service-hub-panel-3 {
  display: flex;
}
#service-hub-4:checked ~ .service-hub-visual .service-hub-node-4 {
  border-color: #0D7377;
}
#service-hub-4:checked ~ .service-hub-visual .service-hub-node-4 .service-hub-node-dot {
  background: #0D7377;
  border-color: #0D7377;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.25);
}
#service-hub-4:checked ~ .service-hub-visual .service-hub-node-4 .service-hub-node-title {
  color: #0D7377;
}
#service-hub-4:checked ~ .service-hub-visual .service-hub-spoke-4 {
  border-top-style: solid;
  border-top-width: 3px;
  border-top-color: #0D7377;
}
#service-hub-4:checked ~ .service-hub-panels .service-hub-panel-4 {
  display: flex;
}
@media (max-width: 767px) {
  .service-hub-visual {
    aspect-ratio: auto;
    max-width: none;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0;
    margin-bottom: 2rem;
  }
  .service-hub-center,
  .service-hub-spoke {
    display: none;
  }
  .service-hub-node {
    flex-direction: column;
    justify-content: flex-start;
    background: transparent;
    width: 100%;
    text-align: center;
    position: static;
    transform: none;
    padding: 0;
    gap: 8px;
  }
  .service-hub-node-dot {
    width: 2.5rem;
    height: 2.5rem;
  }
  .service-hub-node-dot .icon {
    font-size: 0.8em;
  }
  .service-hub-node-title {
    font-size: 0.7rem;
  }
  .service-hub-panel {
    padding: 1.5rem;
  }
}
.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  margin: -1.5px;
  background: linear-gradient(135deg, rgba(13, 115, 119, 0), rgba(13, 115, 119, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}
.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(13, 115, 119, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}
.testimonial-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 0 30px rgba(13, 115, 119, 0.06);
  border-color: rgba(13, 115, 119, 0.2);
}
.testimonial-card:hover::before {
  opacity: 1;
}
.testimonial-card blockquote {
  font-size: clamp(1.1rem, 3.7vw, 1.25rem);
  line-height: 1.7;
  color: #4A6366;
  margin: 0 0 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: #677D80;
  display: block;
  position: relative;
  z-index: 1;
}
.testimonial-card cite strong {
  color: #4A6366;
  display: block;
  margin-bottom: 2px;
}
.testimonial {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
  background: #F5F8F8;
  border-left: 4px solid #0D7377;
}
.testimonial:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.testimonial:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.testimonial::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
  pointer-events: none;
}
.testimonial:hover::after {
  animation: cardShimmer 0.8s ease forwards;
}
.testimonial:hover {
  border: 0 solid transparent;
}
.testimonial-quote {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: clamp(1.1rem, 3.7vw, 1.25rem);
  font-style: italic;
  color: #4A6366;
  margin: 0 0 1rem;
  line-height: 1.625;
}
.testimonial-quote::before {
  content: '\201C';
}
.testimonial-quote::after {
  content: '\201D';
}
.testimonial-author {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0D7377;
  margin: 0;
}
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.testimonial-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
@media (max-width: 767px) {
  .testimonial-carousel-wrapper {
    fcoverflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .testimonial-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }
}
.testimonial-carousel-wrapper:hover .testimonial-carousel {
  animation-play-state: paused;
}
.testimonial-carousel {
  display: flex;
  animation: marqueeScroll 65s linear infinite;
  width: max-content;
}
.testimonial-carousel::-webkit-scrollbar {
  display: none;
}
.testimonial-carousel.testimonial-carousel--reverse {
  animation-direction: reverse;
}
.testimonial-carousel.testimonial-carousel--fast {
  animation-duration: 60s;
}
@media (max-width: 767px) {
  .testimonial-carousel {
    animation: none;
    width: 100%;
  }
}
.testimonial-group {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  flex: 1;
}
@media (min-width: 768px) {
  .testimonial-group {
    margin-right: 1.5rem;
  }
}
@media (max-width: 767px) {
  .testimonial-group[aria-hidden] {
    display: none;
  }
}
.testimonial-slide {
  display: flex;
  width: clamp(270px, 40vw, 500px);
}
@media (max-width: 767px) {
  .testimonial-slide {
    width: 85vw;
    scroll-snap-align: center;
  }
}
.testimonial-quote-card {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
  width: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-quote-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.testimonial-quote-card:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.testimonial-quote-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
  pointer-events: none;
}
.testimonial-quote-card:hover::after {
  animation: cardShimmer 0.8s ease forwards;
}
.testimonial-quote-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1), 0 0 14px rgba(13, 115, 119, 0.1);
}
.testimonial-quote-mark {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 6rem;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  color: #0D7377;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.testimonial-quote-text {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  flex: 1;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.625;
  color: #4A6366;
  margin: 2rem 0 0.25rem;
  position: relative;
  z-index: 1;
}
.testimonial-quote-author {
  display: flex;
  flex-direction: column;
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  gap: 4px;
  padding-left: 1rem;
  border-left: 3px solid #0D7377;
  position: relative;
  z-index: 1;
}
.testimonial-quote-name {
  font-size: clamp(0.9rem, 3vw, 1rem);
  font-weight: 600;
  color: #4A6366;
}
.testimonial-quote-role {
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  color: #677D80;
}
.product-card {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
  cursor: pointer;
  perspective: 1200px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.product-card:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.product-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 30px 60px rgba(13, 115, 119, 0.12);
}
.product-card:hover .product-card-arrow {
  transform: translateX(4px);
}
.product-card-name {
  font-family: 'lato-bold', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 1.3rem;
  margin: 0 0 0.25rem;
}
.product-card-name.sojourner-product {
  color: #E77109;
}
.product-card-name.nexus-product {
  color: #0A5C5F;
}
.product-card-name.engage-product {
  color: #B45309;
}
.product-card-name.arkisto-product {
  color: #6D28D9;
}
.product-card-name.nex-queue-product {
  color: #1D4ED8;
}
.product-card-tagline {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 0.9rem;
  color: #0D7377;
  font-weight: 500;
  margin: 0 0 1rem;
}
.product-card-description {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 0.9rem;
  color: #677D80;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-arrow {
  margin-top: 1rem;
  color: #0D7377;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-band {
  background: linear-gradient(135deg, #0A5C5F, #0D7377, #14919B);
  color: #FFFFFF;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band-title {
  font-family: 'lato-bold', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: #FFFFFF;
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
}
.cta-band-description {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}
.cta-band-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.section {
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }
}
.section-alt {
  background: #F5F8F8;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header img {
  margin: 14px auto;
}
.section-header.featured-project {
  margin-bottom: 2rem;
}
.section-title {
  font-family: 'lato-bold', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: #4A6366;
  margin: 0 0 0.5rem;
}
.section-subtitle {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.125rem;
  color: #677D80;
  max-width: 600px;
  margin: 0 auto;
}
.footer {
  background: #1F3032;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-heading {
  font-family: 'lato-bold', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-link {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-link:hover {
  color: #FFFFFF;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a:hover {
  color: #FFFFFF;
}
.footer-copyright {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #2E4547;
  color: #C2CECE;
  text-decoration: none;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social-link:hover {
  background: #0D7377;
  color: #FFFFFF;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-brand img {
  height: 2rem;
  width: auto;
}
.footer-tagline {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0.5rem 0 0;
}
.logo-marquee-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logo-marquee-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.logo-marquee-wrapper:hover .logo-marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logo-marquee-item {
  flex-shrink: 0;
  border-radius: 0.75rem;
  width: 132px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 16px;
}
@media (min-width: 768px) {
  .logo-marquee-item {
    width: 150px;
    height: 72px;
  }
}
@media (min-width: 1024px) {
  .logo-marquee-item {
    width: 200px;
    height: 104px;
  }
}
.logo-marquee-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.logo-marquee-item:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.logo-marquee-item:hover img {
  filter: grayscale(0%) opacity(1);
}
.logo-marquee {
  overflow: hidden;
  padding: 2rem 0;
}
.section-label {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background: rgba(13, 115, 119, 0.06);
  font-family: 'lato-regular', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0D7377;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.tech-stack-category {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 0.75rem;
  padding: 2rem;
}
.tech-stack-category .tech-stack-title {
  font-size: 1.125rem;
  color: #4A6366;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #D9E2E3;
}
.tech-stack-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tech-item h3 {
  font-size: 1rem;
  margin: 0 0 2px;
  color: #4A6366;
}
.tech-item p {
  font-size: 0.85rem;
  color: #677D80;
  margin: 0;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}
.bento-card {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
}
.bento-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.bento-card:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.bento-card:nth-child(3) {
  grid-column: span 2;
}
@media (max-width: 767px) {
  .bento-card:nth-child(3) {
    grid-column: span 1;
  }
}
.bento-card:nth-child(4) {
  grid-column: span 2;
}
@media (max-width: 767px) {
  .bento-card:nth-child(4) {
    grid-column: span 1;
  }
}
.bento-card-header {
  border-left: 4px solid;
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.bento-card-header h3 {
  font-size: 1.3rem;
  margin: 0;
  color: #4A6366;
}
.bento-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bento-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #677D80;
}
.bento-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.standards-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.standard-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  color: #4A6366;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.standard-badge:hover {
  background: #0D7377;
  color: #FFFFFF;
  border-color: #0D7377;
}
.practice-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.practice-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  background: #F5F8F8;
  color: #4A6366;
  font-family: 'lato-regular', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid #D9E2E3;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.practice-pill:hover {
  background: #0D7377;
  color: #FFFFFF;
  border-color: #0D7377;
}
.practice-accordion {
  display: flex;
  flex-direction: column;
  border: 1px solid #EDF2F2;
  border-radius: 0.75rem;
  overflow: hidden;
}
.practice-accordion-item {
  border-bottom: 1px solid #EDF2F2;
  background: #FFFFFF;
  transition: background 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.practice-accordion-item:last-child {
  border-bottom: none;
}
.practice-accordion-item:hover {
  background: #F5F8F8;
}
.practice-accordion-item[open] {
  background: #F5F8F8;
}
.practice-accordion-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  list-style: none;
}
.practice-accordion-summary::-webkit-details-marker {
  display: none;
}
.practice-accordion-title {
  font-size: 1rem;
  font-weight: 500;
  color: #4A6366;
  margin: 0;
}
.practice-accordion-icon {
  flex-shrink: 0;
  color: #0D7377;
  font-size: 0.8rem;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.practice-accordion-item[open] .practice-accordion-icon {
  transform: rotate(180deg);
}
.practice-accordion-body {
  padding: 0 1.5rem 1.5rem;
  animation: accordionReveal 400ms cubic-bezier(0, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .practice-accordion-body {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.practice-accordion-body p {
  margin: 0;
  font-size: 0.9rem;
  color: #677D80;
  line-height: 1.625;
}
@keyframes accordionReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.built-card {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
  display: block;
}
.built-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.built-card:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.built-card h3 {
  font-size: 1rem;
  color: #4A6366;
  margin: 0 0 0.25rem;
}
.built-card p {
  font-size: 0.85rem;
  color: #677D80;
  margin: 0 0 0.5rem;
  line-height: 1.625;
}
.built-card:hover .built-link {
  color: #0A5C5F;
}
.built-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0D7377;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.built-subheader {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #677D80;
  margin: 0 0 1rem;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.video-item {
  text-align: center;
}
.video-item iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  border: none;
}
.video-item p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #677D80;
}
.benefit-card {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
}
.benefit-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.benefit-card:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.benefit-card h3 {
  font-size: 1.125rem;
  color: #4A6366;
  margin: 0 0 0.5rem;
}
.benefit-card p {
  font-size: 0.9rem;
  color: #677D80;
  margin: 0;
  line-height: 1.625;
}
.benefit-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 115, 119, 0.1);
  border-radius: 0.75rem;
  color: #0D7377;
  font-size: 1.25rem;
}
.culture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .culture-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.culture-content.second::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #EDF2F2, #EDF2F2, transparent);
}
.culture-content h3 {
  font-size: 1.3rem;
  color: #4A6366;
  margin: 0 0 1rem;
}
.culture-content p {
  font-size: 1rem;
  color: #677D80;
  margin: 0 0 1rem;
  line-height: 1.625;
}
.culture-content p:last-child {
  margin-bottom: 0;
}
.culture-images {
  display: grid;
  gap: 0.5rem;
}
.culture-image {
  border-radius: 0.75rem;
  overflow: hidden;
}
.culture-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0.75rem;
}
.checklist {
  max-width: 600px;
  margin: 0 auto;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #EDF2F2;
}
.checklist-item:last-child {
  border-bottom: none;
}
.checklist-item i {
  color: #0D7377;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.checklist-item span {
  font-size: 1rem;
  color: #4A6366;
}
.checklist-item.checklist-item--detailed {
  align-items: flex-start;
}
.checklist-item.checklist-item--detailed i {
  margin-top: 3px;
}
.checklist-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: #4A6366;
  margin: 0 0 0.25rem;
}
.checklist-item--detailed p {
  font-size: 0.9rem;
  color: #677D80;
  line-height: 1.625;
  margin: 0 0 0.25rem;
}
.checklist-item--detailed p:last-child {
  margin-bottom: 0;
}
.flagship-section {
  padding: 4rem;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.flagship-section h3 {
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
}
.flagship-section .product-tagline {
  font-weight: 500;
  font-size: 1rem;
  margin: 0 0 1.5rem;
}
.flagship-section p {
  font-size: 1rem;
  color: #677D80;
  margin: 0 0 1.5rem;
  flex: 1;
}
@media (min-width: 768px) {
  .flagship-section {
    flex-direction: row;
    align-items: center;
  }
}
.flagship-media {
  flex: 0 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.flagship-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 400ms cubic-bezier(0, 0, 0.2, 1), box-shadow 400ms cubic-bezier(0, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .flagship-media {
    flex: 0 0 42%;
  }
}
.flagship-section:hover .flagship-media img {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.flagship-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.flagship-category {
  align-self: flex-start;
  padding: 0.3rem 0.875rem;
  border-radius: 50px;
  background: #F5F8F8;
  color: #677D80;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .flagship-section--image-right .flagship-media {
    order: 2;
  }
  .flagship-section--image-right .flagship-content {
    order: 1;
  }
}
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.feature-pill {
  padding: 0.375rem 0.875rem;
  background: #F5F8F8;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #677D80;
}
.flagship-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}
.flagship-actions .btn-secondary {
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
}
.nexus-section h3 {
  color: #0A5C5F;
}
.nexus-section .product-tagline {
  color: #0D7377;
}
.nexus-section .feature-pill {
  background: rgba(13, 115, 119, 0.08);
  color: #0A5C5F;
}
.nexus-section .flagship-category {
  background: rgba(13, 115, 119, 0.1);
  color: #0A5C5F;
}
.sojourner-section h3 {
  color: #E77109;
}
.sojourner-section .product-tagline {
  color: #E77109;
}
.sojourner-section .feature-pill {
  background: rgba(231, 113, 9, 0.1);
  color: #E77109;
}
.sojourner-section .flagship-category {
  background: rgba(231, 113, 9, 0.12);
  color: #E77109;
}
@media (max-width: 767px) {
  .flagship-section {
    min-height: auto;
    padding: 3rem;
  }
  .flagship-actions {
    flex-direction: column;
  }
  .flagship-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.problem-grid h2 {
  margin-bottom: 1.5rem;
}
.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.problem-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #EDF2F2;
}
.problem-list li:last-child {
  border-bottom: none;
}
.problem-list li h4 {
  font-size: clamp(1.05rem, 3.5vw, 1.2rem);
  color: #4A6366;
  margin: 0 0 0.25rem;
}
.problem-list li p {
  font-size: clamp(0.95rem, 3.2vw, 1.05rem);
  color: #677D80;
  margin: 0;
}
.problem-icon {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 2px;
}
.problem-placeholder {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.problem-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}
.feature-card {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.feature-card:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.feature-card .feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 115, 119, 0.1);
  border-radius: 9999px;
  font-size: 1.5rem;
}
.feature-card h3 {
  font-size: clamp(1.05rem, 3.5vw, 1.2rem);
  color: #4A6366;
  margin: 0 0 0.5rem;
}
.feature-card p {
  font-size: clamp(0.95rem, 3.2vw, 1.05rem);
  color: #677D80;
  margin: 0;
  line-height: 1.625;
}
.journey {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .journey {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .journey {
    grid-template-columns: repeat(4, 1fr);
  }
}
.journey-step {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
}
.journey-step:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.journey-step:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.journey-step h3 {
  font-size: clamp(1.05rem, 3.5vw, 1.2rem);
  color: #4A6366;
  margin: 0 0 0.5rem;
}
.journey-step p {
  font-size: clamp(0.95rem, 3.2vw, 1.05rem);
  color: #677D80;
  margin: 0;
  line-height: 1.625;
}
.journey-step-number {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D7377;
  color: #FFFFFF;
  border-radius: 9999px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.module-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .module-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.module-card {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
}
.module-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.module-card:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.module-card h3 {
  font-size: clamp(1.05rem, 3.5vw, 1.2rem);
  color: #4A6366;
  margin: 0 0 1rem;
}
.module-card ul {
  margin: 0;
  padding-left: 1.5rem;
  color: #677D80;
  font-size: clamp(0.95rem, 3.2vw, 1.05rem);
  line-height: 1.625;
}
.module-card ul li {
  margin-bottom: 0.25rem;
}
.showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.showcase:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .showcase {
    grid-template-columns: 1fr 1fr;
  }
}
.showcase-media {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.showcase-media img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .showcase--reverse .showcase-media {
    order: 2;
  }
  .showcase--reverse .showcase-content {
    order: 1;
  }
}
.integration-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.integration-pill {
  padding: 0.5rem 1.5rem;
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 9999px;
  font-size: clamp(0.95rem, 3.2vw, 1.05rem);
  font-weight: 600;
  color: #4A6366;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.trust-card {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
}
.trust-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.trust-card:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.trust-card h3 {
  font-size: clamp(1.05rem, 3.5vw, 1.2rem);
  color: #4A6366;
  margin: 0 0 0.5rem;
}
.trust-card p {
  font-size: clamp(0.95rem, 3.2vw, 1.05rem);
  color: #677D80;
  margin: 0;
  line-height: 1.625;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #D9E2E3;
}
@media (max-width: 767px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}
.hero-stat {
  text-align: left;
}
@media (max-width: 767px) {
  .hero-stat {
    flex: 1 1 calc(50% - 2rem / 2);
    min-width: 0;
  }
}
.hero-stat-value {
  font-family: 'lato-bold', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #4A6366;
  margin-bottom: 0.25rem;
}
@media (max-width: 767px) {
  .hero-stat-value {
    font-size: clamp(0.9rem, 3.8vw, 1.0625rem);
    line-height: 1.375;
  }
}
.hero-stat-label {
  font-size: 0.9rem;
  color: #677D80;
}
@media (max-width: 767px) {
  .hero-stat-label {
    font-size: clamp(0.75rem, 3vw, 0.85rem);
  }
}
.hero-dark .hero-stats {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.hero-dark .hero-stat-value {
  color: #FFFFFF;
}
.hero-dark .hero-stat-label {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.breadcrumb a:hover {
  color: #FFFFFF;
}
.breadcrumb span:last-child {
  color: #FFFFFF;
  font-weight: 500;
}
.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
}
.related-products {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.related-product-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 0.75rem;
  border: 1px solid #D9E2E3;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.related-product-item:hover {
  border-color: #0D7377;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.related-product-item h4 {
  font-size: clamp(1.05rem, 3.5vw, 1.2rem);
  margin: 0 0 0.25rem;
}
.related-product-item p {
  font-size: clamp(0.95rem, 3.2vw, 1.05rem);
  color: #677D80;
  margin: 0;
}
@media (max-width: 767px) {
  .related-product-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.related-product-logo {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 115, 119, 0.1);
  color: #0D7377;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'lato-bold', sans-serif;
  border-radius: 0.75rem;
}
.related-product-info {
  flex: 1;
}
.related-product-action {
  margin-left: auto;
}
@media (max-width: 767px) {
  .related-product-action {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
.integration-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.integration-logo {
  text-align: center;
}
.integration-logo img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.integration-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.integration-placeholder {
  text-align: center;
}
.integration-placeholder h2 {
  margin-bottom: 1rem;
}
.coming-soon-placeholder {
  text-align: center;
  padding: 3rem;
  background: #FFFFFF;
  border: 2px dashed #D9E2E3;
  border-radius: 0.75rem;
}
.coming-soon-text {
  color: #94A8AB;
  font-size: clamp(0.95rem, 3.2vw, 1.05rem);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 7fr 3fr;
  }
}
.philosophy-grid h2 {
  margin-bottom: 1rem;
}
.philosophy-grid p {
  font-size: 1.05rem;
  color: #677D80;
  line-height: 1.625;
  margin: 0 0 1rem;
}
.philosophy-grid p:last-child {
  margin-bottom: 0;
}
.philosophy-image {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #0D7377;
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.1), rgba(20, 145, 155, 0.05));
  border-radius: 0.75rem;
  height: 320px;
}
.terminal-card {
  background: #0a0e0a;
  border-radius: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(74, 222, 128, 0.08);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.terminal-card--compact {
  height: auto;
  max-height: 320px;
}
.terminal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0px, rgba(0, 0, 0, 0.15) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
  z-index: 2;
}
.terminal-titlebar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(74, 222, 128, 0.1);
  flex-shrink: 0;
}
.terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.terminal-dot--red {
  background: #ff5f56;
}
.terminal-dot--yellow {
  background: #ffbd2e;
}
.terminal-dot--green {
  background: #27c93f;
}
.terminal-title {
  margin-left: 0.5rem;
  font-family: roboto-mono, monospace;
  font-size: 0.65rem;
  color: rgba(74, 222, 128, 0.6);
}
.terminal-body {
  flex: 1;
  padding: 0.6rem 0.8rem;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.terminal-pre {
  margin: 0;
  font-family: roboto-mono, monospace;
  white-space: pre;
  text-shadow: 0 0 2px #4ade80, 0 0 8px rgba(74, 222, 128, 0.25);
}
@media (prefers-reduced-motion: reduce) {
  .terminal-pre {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.terminal-banner {
  color: #4ade80;
  font-size: 0.4rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  animation: terminalBoot 0.6s cubic-bezier(0, 0, 0.2, 1) forwards;
  opacity: 0;
}
.terminal-banner .tok-bright {
  color: #5ef591;
  text-shadow: 0 0 3px #4ade80, 0 0 12px rgba(74, 222, 128, 0.35);
}
.terminal-banner .tok-dim {
  color: rgba(74, 222, 128, 0.55);
  text-shadow: 0 0 1px rgba(74, 222, 128, 0.3);
}
.terminal-code {
  color: rgba(74, 222, 128, 0.8);
  font-size: 0.6rem;
  line-height: 1.3;
  margin-bottom: 0.35rem;
}
.terminal-code .tok-key {
  color: #5ef591;
  font-weight: 600;
}
.terminal-code .tok-type {
  color: #a5e8b8;
}
.terminal-line {
  display: block;
  opacity: 0;
  animation: terminalTypeIn 0.3s ease-out forwards;
  min-height: 1.3em;
}
@media (prefers-reduced-motion: reduce) {
  .terminal-line {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@keyframes terminalTypeIn {
  0% {
    opacity: 0;
    transform: translateY(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.terminal-startup {
  color: rgba(74, 222, 128, 0.75);
  font-size: 0.62rem;
  line-height: 1.3;
  opacity: 0;
  animation: terminalFadeIn 0.8s cubic-bezier(0, 0, 0.2, 1) forwards;
  animation-delay: 2.6s;
}
.terminal-prompt {
  color: #5ef591;
}
.terminal-cursor {
  display: inline-block;
  width: 0.4rem;
  height: 0.8rem;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.5);
  vertical-align: text-bottom;
  margin-left: 0.15rem;
  animation: terminalBreathe 2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .terminal-cursor {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@keyframes terminalBoot {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes terminalFadeIn {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes terminalBreathe {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.5);
  }
  50% {
    opacity: 0.15;
    box-shadow: 0 0 2px rgba(74, 222, 128, 0.15);
  }
}
@media (max-width: 767px) {
  .terminal-banner {
    font-size: 0.3rem;
  }
  .terminal-code {
    font-size: 0.48rem;
  }
  .terminal-startup {
    font-size: 0.5rem;
  }
  .terminal-boot-lines {
    font-size: 0.48rem;
  }
}
.terminal-boot-lines {
  color: rgba(74, 222, 128, 0.75);
  font-size: 0.62rem;
  line-height: 1.65;
  animation: terminalFadeIn 0.6s cubic-bezier(0, 0, 0.2, 1) forwards;
  opacity: 0;
}
.terminal-boot-lines .tok-dim {
  color: rgba(74, 222, 128, 0.5);
}
.terminal-boot-lines .tok-method {
  color: #5ef591;
  font-weight: 600;
  text-shadow: 0 0 3px rgba(94, 245, 145, 0.4);
}
.terminal-boot-lines .tok-path {
  color: #a5e8b8;
}
.terminal-boot-lines .tok-ok {
  color: rgba(74, 222, 128, 0.55);
}
.terminal-boot-lines .tok-success {
  color: #5ef591;
  font-weight: 700;
  text-shadow: 0 0 4px #4ade80, 0 0 12px rgba(74, 222, 128, 0.35);
}
.philosophy-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.philosophy-visual svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}
.bridge-structure,
.bridge-car {
  fill: url(#bridgeGradient);
}
.bridge-structure {
  opacity: 0;
  animation: bridgeFadeIn 600ms cubic-bezier(0, 0, 0.2, 1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .bridge-structure {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.bridge-cable {
  fill: none;
  stroke: url(#bridgeGradient);
  stroke-width: 3px;
  stroke-linecap: round;
  animation: bridgeDraw 1.4s cubic-bezier(0, 0, 0.2, 1) forwards, bridgeSway 4s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
  .bridge-cable {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.bridge-cable--left {
  --dash: 400px;
  stroke-dasharray: 400px;
  animation-delay: 0.2s, 1.6s;
}
.bridge-cable--center {
  --dash: 600px;
  stroke-dasharray: 600px;
  animation-delay: 0.5s, 1.9s;
}
.bridge-cable--right {
  --dash: 400px;
  stroke-dasharray: 400px;
  animation-delay: 0.8s, 2.2s;
}
.bridge-hangers {
  fill: none;
  stroke: url(#bridgeGradient);
  stroke-width: 1px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: bridgeHangerGrow 0.5s cubic-bezier(0, 0, 0.2, 1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .bridge-hangers {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.bridge-hangers--left {
  animation-delay: 1.2s;
}
.bridge-hangers--center {
  animation-delay: 1.5s;
}
.bridge-hangers--right {
  animation-delay: 1.8s;
}
.bridge-light {
  fill: url(#bridgeGradient);
  opacity: 0;
  animation: bridgeLightOn 0.6s cubic-bezier(0, 0, 0.2, 1) 2.4s forwards, bridgeLightPulse 2.4s ease-in-out 3s infinite;
}
@media (prefers-reduced-motion: reduce) {
  .bridge-light {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.bridge-car {
  animation: bridgeCarCross 9s linear 2.6s infinite backwards;
}
@media (prefers-reduced-motion: reduce) {
  .bridge-car {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@keyframes bridgeFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bridgeDraw {
  from {
    stroke-dashoffset: var(--dash);
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes bridgeSway {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(2px);
  }
}
@keyframes bridgeHangerGrow {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes bridgeLightOn {
  to {
    opacity: 0.9;
  }
}
@keyframes bridgeLightPulse {
  0%,
  100% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.45;
  }
}
@keyframes bridgeCarCross {
  from {
    transform: translateX(-60px);
  }
  to {
    transform: translateX(700px);
  }
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.story-grid p {
  color: #677D80;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.story-image {
  border-radius: 0.75rem;
  overflow: hidden;
  height: 360px;
}
@media (max-width: 767px) {
  .story-image {
    height: auto;
  }
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jigsaw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0;
  height: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
}
.jigsaw-grid.careers-grid {
  grid-template-areas: "team10 team11 team12" "team13 team14 team15";
  grid-template-rows: repeat(2, 1fr);
}
.jigsaw-grid.careers-grid .team12 {
  grid-area: team12;
}
.jigsaw-grid.careers-grid .team10 {
  grid-area: team10;
}
.jigsaw-grid.careers-grid .team11 {
  grid-area: team11;
}
.jigsaw-grid.careers-grid .team13 {
  grid-area: team13;
}
.jigsaw-grid.careers-grid .team14 {
  grid-area: team14;
}
.jigsaw-grid.careers-grid .team15 {
  grid-area: team15;
}
.jigsaw-grid.careers-grid .team16 {
  grid-area: team16;
}
@media (max-width: 767px) {
  .jigsaw-grid.careers-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "team10 team11" "team12 team13" "team14 team15";
    grid-template-rows: none;
  }
}
.jigsaw-tile {
  opacity: 0;
  animation: jigsawAssemble 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform: var(--jigsaw-from, scale(0.8));
  position: relative;
  transition: opacity 0.4s cubic-bezier(0, 0, 0.2, 1), filter 0.4s cubic-bezier(0, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .jigsaw-tile {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 767px) {
  .jigsaw-tile {
    aspect-ratio: 1 / 1;
  }
}
.jigsaw-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0, 0, 0.2, 1);
}
.jigsaw-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 2px;
  pointer-events: none;
  transition: border-color 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.jigsaw-tile:hover {
  z-index: 10;
}
.jigsaw-tile:hover img {
  transform: scale(1.08);
}
.jigsaw-grid:hover .jigsaw-tile {
  opacity: 0.7;
  filter: saturate(0.6);
}
.jigsaw-grid:hover .jigsaw-tile:hover {
  opacity: 1;
  filter: saturate(1);
}
.jigsaw-tile:nth-child(1) {
  animation: jigsawAssemble 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, jigsawBreathe 6s ease-in-out 1.5s infinite;
}
.jigsaw-tile:nth-child(2) {
  animation: jigsawAssemble 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, jigsawBreathe 6s ease-in-out 2s infinite;
}
.jigsaw-tile:nth-child(3) {
  animation: jigsawAssemble 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, jigsawBreathe 6s ease-in-out 1.8s infinite;
}
.jigsaw-tile:nth-child(4) {
  animation: jigsawAssemble 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, jigsawBreathe 6s ease-in-out 2.2s infinite;
}
.jigsaw-tile:nth-child(5) {
  animation: jigsawAssemble 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, jigsawBreathe 6s ease-in-out 1.6s infinite;
}
.jigsaw-tile:nth-child(6) {
  animation: jigsawAssemble 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, jigsawBreathe 6s ease-in-out 2.4s infinite;
}
.jigsaw-tile:nth-child(7) {
  animation: jigsawAssemble 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, jigsawBreathe 6s ease-in-out 1.7s infinite;
}
.jigsaw-tile:nth-child(8) {
  animation: jigsawAssemble 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, jigsawBreathe 6s ease-in-out 2.1s infinite;
}
.jigsaw-tile:nth-child(9) {
  animation: jigsawAssemble 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, jigsawBreathe 6s ease-in-out 1.9s infinite;
}
@keyframes jigsawAssemble {
  0% {
    opacity: 0;
    transform: var(--jigsaw-from, scale(0.8));
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}
@keyframes jigsawBreathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.015);
  }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A6366;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D9E2E3;
  border-radius: 0.5rem;
  font-family: 'lato-regular', sans-serif;
  font-size: 1rem;
  color: #4A6366;
  background: #FFFFFF;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #0D7377;
  box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: #94A8AB;
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-info-card {
  background: #F5F8F8;
  border-radius: 0.75rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contact-info-card {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .contact-info-card {
    padding: 2rem;
  }
}
.contact-info-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media (min-width: 768px) {
  .contact-info-details {
    flex: 1;
  }
}
.contact-info-map {
  width: 100%;
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.contact-info-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
@media (min-width: 768px) {
  .contact-info-map {
    height: auto;
    flex: 2;
  }
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-info-item:last-child {
  margin-bottom: 0;
}
.contact-info-item h4 {
  font-size: 0.9rem;
  color: #4A6366;
  margin: 0 0 0.25rem;
}
.contact-info-item p {
  font-size: 0.9rem;
  color: #677D80;
  margin: 0;
  line-height: 1.625;
}
.contact-info-item a {
  color: #0D7377;
}
.contact-info-item a:hover {
  text-decoration: underline;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 0.5rem;
  background: rgba(13, 115, 119, 0.1);
  color: #0D7377;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-item .feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 115, 119, 0.1);
  color: #0D7377;
  border-radius: 9999px;
  font-size: 1.125rem;
  margin-top: 2px;
}
.feature-item h3 {
  font-size: 1.125rem;
  color: #4A6366;
  margin: 0 0 0.25rem;
}
.feature-item p {
  font-size: 0.9rem;
  color: #677D80;
  margin: 0;
  line-height: 1.625;
}
.use-case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .use-case-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.use-case-card {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
}
.use-case-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.use-case-card:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.use-case-card h3 {
  font-size: 1.125rem;
  color: #4A6366;
  margin: 0 0 0.5rem;
}
.use-case-card p {
  font-size: 0.9rem;
  color: #677D80;
  margin: 0;
  line-height: 1.625;
}
.use-case-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 115, 119, 0.1);
  color: #0D7377;
  border-radius: 0.75rem;
  font-size: 1.25rem;
}
.content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.content-section {
  margin-bottom: 3rem;
}
.content-section:last-child {
  margin-bottom: 0;
}
.content-section h3 {
  font-size: 1.3rem;
  color: #4A6366;
  margin: 0 0 1rem;
}
.content-section p {
  font-size: 1rem;
  color: #677D80;
  line-height: 1.625;
  margin: 0 0 1rem;
}
.content-section ul,
.content-section ol {
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}
.content-section ul li,
.content-section ol li {
  font-size: 1rem;
  color: #677D80;
  line-height: 1.625;
  margin-bottom: 0.5rem;
}
.last-updated {
  font-size: 0.9rem;
  color: #94A8AB;
  font-style: italic;
}
.testimonials-featured-section {
  background: #F5F8F8;
  position: relative;
}
.testimonials-featured-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0D7377, #14919B, transparent);
}
.testimonials-featured-header {
  text-align: center;
  margin-bottom: 3rem;
}
.why-grid {
  margin-bottom: 3rem;
}
.why-card {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
  padding: 1.5rem;
}
.why-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(13, 115, 119, 0.08);
  border-color: transparent;
  z-index: 1;
}
.why-card:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.15);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.12), rgba(20, 145, 155, 0.08));
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
  pointer-events: none;
}
.why-card:hover::after {
  animation: cardShimmer 0.8s ease forwards;
}
.why-card-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  cursor: pointer;
  list-style: none;
}
.why-card-summary::-webkit-details-marker {
  display: none;
}
.why-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 115, 119, 0.1);
  border-radius: 0.75rem;
  color: #0D7377;
  font-size: 1.25rem;
}
.why-card-title {
  font-family: 'lato-bold', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 1rem;
  color: #4A6366;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.why-card-chevron {
  font-size: 0.7rem;
  color: #677D80;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.why-card[open] .why-card-chevron {
  transform: rotate(180deg);
}
.why-card-description {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  text-align: center;
  color: #677D80;
  line-height: 1.625;
  animation: accordionReveal 400ms cubic-bezier(0, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .why-card-description {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.testimonials-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 4px 24px rgba(13, 115, 119, 0.06);
}
@media (max-width: 767px) {
  .testimonials-featured-grid {
    grid-template-columns: 1fr;
  }
}
.testimonial-featured {
  padding: 4rem;
  position: relative;
}
.testimonial-featured::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  left: 3rem;
  font-size: 9rem;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  color: #0D7377;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}
.testimonial-featured:first-child {
  border-right: 1px solid #EDF2F2;
}
@media (max-width: 767px) {
  .testimonial-featured:first-child {
    border-right: none;
    border-bottom: 1px solid #EDF2F2;
  }
}
@media (max-width: 767px) {
  .testimonial-featured {
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .testimonial-featured {
    padding: 4rem 3rem 4rem 4rem;
  }
}
.testimonial-featured-text {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-style: italic;
  line-height: 1.8;
  font-weight: 500;
  color: #4A6366;
  margin: 3rem 0 3rem;
  position: relative;
  z-index: 1;
}
.testimonial-featured-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 1rem;
  border-left: 3px solid #0D7377;
  position: relative;
  z-index: 1;
}
.testimonial-featured-name {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #4A6366;
}
.testimonial-featured-role {
  display: block;
  font-size: 0.9rem;
  color: #677D80;
}
.testimonials-featured-cta {
  text-align: center;
  margin-top: 3rem;
}
.belief-quote {
  font-size: clamp(2rem, calc(0.2rem + 6vw), 3rem);
  margin-bottom: 1rem;
}
.value-card {
  background: #FFFFFF;
  border: 1px solid #D9E2E3;
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}
.value-card > div:first-child {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .value-card > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  border-color: rgba(13, 115, 119, 0.25);
}
.value-card::before,
.value-card::after {
  pointer-events: none;
}
.value-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 115, 119, 0.08);
  color: #0D7377;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.value-card:hover .value-card-icon {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 115, 119, 0.18);
  background: rgba(13, 115, 119, 0.14);
}
.value-card-title {
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  color: #4A6366;
  position: relative;
  z-index: 1;
}
.value-card-description {
  font-size: 0.9rem;
  color: #677D80;
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.value-card--innovation::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  aspect-ratio: 1;
  background: conic-gradient(from 0deg, rgba(20, 145, 155, 0.1) 0deg, rgba(255, 107, 107, 0.14) 90deg, rgba(245, 158, 11, 0.1) 180deg, rgba(124, 58, 237, 0.08) 270deg, rgba(20, 145, 155, 0.1) 360deg);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}
.value-card--innovation:hover::before {
  opacity: 1;
  animation: valueInnovationSpin 10s linear infinite;
}
@keyframes valueInnovationSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.value-card--velocity::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0px, transparent 30px, rgba(13, 115, 119, 0.08) 30px, rgba(13, 115, 119, 0.08) 31px, transparent 31px, transparent 55px, rgba(13, 115, 119, 0.05) 55px, rgba(13, 115, 119, 0.05) 56px, transparent 56px, transparent 72px, rgba(13, 115, 119, 0.12) 72px, rgba(13, 115, 119, 0.12) 74px);
  transform: translateX(-100%);
  z-index: 0;
}
.value-card--velocity:hover::before {
  animation: valueVelocitySweep 0.55s linear infinite;
}
@keyframes valueVelocitySweep {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.value-card--quality::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -3px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #14919B 25%, #0D7377 50%, #14919B 75%, transparent 100%);
  box-shadow: 0 0 12px 3px rgba(13, 115, 119, 0.3);
  z-index: 1;
  opacity: 0;
}
.value-card--quality:hover::before {
  animation: valueQualityScan 2s ease-in-out infinite;
}
@keyframes valueQualityScan {
  0%,
  5% {
    top: -3px;
    opacity: 0;
  }
  10% {
    top: -3px;
    opacity: 1;
  }
  88% {
    top: calc(100% + 3px);
    opacity: 1;
  }
  100% {
    top: calc(100% + 3px);
    opacity: 0;
  }
}
.value-card--customer-centric::before,
.value-card--customer-centric::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border: 1.5px solid rgba(13, 115, 119, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 0;
}
.value-card--customer-centric:hover::before {
  animation: valueSonarRing 2.2s ease-out infinite;
}
.value-card--customer-centric:hover::after {
  animation: valueSonarRing 2.2s ease-out 0.85s infinite;
}
@keyframes valueSonarRing {
  0% {
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}
.scroll-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 30;
  padding: 0;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.container-sm {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.container-md {
  width: 100%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.container-lg {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.container-xl {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid-4 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.mt-sm {
  margin-top: 0.5rem;
}
.mt-xl {
  margin-top: 2rem;
}
.mt-2xl {
  margin-top: 3rem;
}
.mt-3xl {
  margin-top: 4rem;
}
.mb-sm {
  margin-bottom: 0.5rem;
}
.mb-md {
  margin-bottom: 1rem;
}
.mb-xl {
  margin-bottom: 2rem;
}
.mb-2xl {
  margin-bottom: 3rem;
}
.mb-3xl {
  margin-bottom: 4rem;
}
.ml-sm {
  margin-left: 0.5rem;
}
.ml-md {
  margin-left: 1rem;
}
.hidden {
  display: none;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}
.tablet-up-only {
  display: none;
}
@media (min-width: 768px) {
  .tablet-up-only {
    display: block;
  }
}
.desktop-only {
  display: none;
}
@media (min-width: 1024px) {
  .desktop-only {
    display: block;
  }
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-content {
  flex: 1;
}
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-header.scrolled {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
:root {
  --color-primary: #0D7377;
  --color-primary-light: #14919B;
  --color-primary-dark: #0A5C5F;
  --color-accent: #FF6B6B;
  --color-light: #F5F8F8;
  --color-mid: #94A8AB;
  --color-border: #D9E2E3;
  --color-white: #FFFFFF;
  --color-text: #4A6366;
  --color-text-secondary: #677D80;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1rem;
  color: #4A6366;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'lato-bold', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #4A6366;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}
h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}
h4 {
  font-size: 1.3rem;
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
}
p {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1rem;
  color: #677D80;
  line-height: 1.625;
}
a {
  color: #0D7377;
  text-decoration: none;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #0A5C5F;
}
strong {
  font-weight: 600;
}
small {
  font-size: 0.9rem;
}
code {
  font-family: 'lato-regular', monospace;
  font-size: 0.875em;
  background: #EDF2F2;
  padding: 0.125em 0.375em;
  border-radius: 0.25rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  padding-left: 1.5rem;
}
li {
  margin-bottom: 0.25rem;
}
input,
textarea,
select {
  font-family: 'lato-regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1rem;
  color: #4A6366;
  background: #FFFFFF;
  border: 1px solid #C2CECE;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #0D7377;
  box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.2);
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #94A8AB;
}
input:disabled,
textarea:disabled,
select:disabled {
  background: #EDF2F2;
  cursor: not-allowed;
}
textarea {
  resize: vertical;
  min-height: 120px;
}
label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A6366;
  margin-bottom: 0.25rem;
}
:focus-visible {
  outline: 2px solid #0D7377;
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 70;
  padding: 0.5rem 1rem;
  background: #0D7377;
  color: #FFFFFF;
  border-radius: 0.5rem;
  clip: auto;
  width: auto;
  height: auto;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
::selection {
  background: rgba(13, 115, 119, 0.2);
  color: #4A6366;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #EDF2F2;
}
::-webkit-scrollbar-thumb {
  background: #C2CECE;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A8AB;
}
[data-reveal] {
  transition: opacity 400ms cubic-bezier(0, 0, 0.2, 1), transform 400ms cubic-bezier(0, 0, 0.2, 1);
}
[data-reveal]:not(.revealed) {
  opacity: 0;
  transform: translateY(20px);
}
[data-reveal].revealed > *:nth-child(1) {
  transition-delay: 0ms;
}
[data-reveal].revealed > *:nth-child(2) {
  transition-delay: 80ms;
}
[data-reveal].revealed > *:nth-child(3) {
  transition-delay: 160ms;
}
[data-reveal].revealed > *:nth-child(4) {
  transition-delay: 240ms;
}
[data-reveal].revealed > *:nth-child(5) {
  transition-delay: 320ms;
}
[data-reveal].revealed > *:nth-child(6) {
  transition-delay: 400ms;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'lato-regular', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  color: #0D7377;
}
.btn-white:focus-visible {
  outline: 2px solid #0D7377;
  outline-offset: 2px;
}
.btn-white:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-white:hover:not(:disabled) {
  background: #F5F8F8;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
