


:root {
  
  --white-color:                  #ffffff;
  --primary-color:                #0f4da2;
  --primary-dark:                 #062347;
  --primary-light:                #1f6fed;
  --secondary-color:              #f7a731;
  --secondary-dark:               #df7f1f;
  --section-bg-color:             #f5f7fb;
  --custom-btn-bg-color:          #f7a731;
  --custom-btn-bg-hover-color:    #df7f1f;
  --dark-color:                   #111828;
  --p-color:                      #4a5468;
  --link-hover-color:             #1f6fed;

  
  --body-font-family:             'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --heading-font-family:          'Space Grotesk', 'Inter', system-ui, sans-serif;

  --h1-font-size:                 52px;
  --h2-font-size:                 42px;
  --h3-font-size:                 32px;
  --h4-font-size:                 26px;
  --h5-font-size:                 22px;
  --h6-font-size:                 18px;
  --p-font-size:                  16px;
  --menu-font-size:               14px;
  --btn-font-size:                15px;
  --copyright-font-size:          14px;

  
  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          12px;

  
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
  --font-weight-extrabold:        800;
}


@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  line-height: 1.6;
}


h2, h3, h4, h5, h6 {
  color: var(--dark-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font-family);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-extrabold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--secondary-color);
  font-size: var(--h6-font-size);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: var(--font-weight-bold);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  margin-bottom: 1rem;
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b, strong {
  font-weight: var(--font-weight-bold);
}

::selection {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 3px;
  border-radius: var(--border-radius-small);
}


.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1280px) {
  .wrapper {
    padding: 0;
  }
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section--light {
  background: var(--section-bg-color);
}

.section__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--heading-font-family);
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.lede {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--p-color);
  font-weight: var(--font-weight-normal);
}


.site-breadcrumbs {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 77, 162, 0.08);
}

.site-breadcrumbs .container {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.site-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--p-color);
  font-size: 0.9rem;
}

.site-breadcrumbs__item:not(:last-child)::after {
  content: '/';
  color: rgba(74, 84, 104, 0.45);
}

.site-breadcrumbs a {
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
}

.site-breadcrumbs a:hover {
  color: var(--primary-light);
}

.site-breadcrumbs__current {
  color: var(--dark-color);
  font-weight: var(--font-weight-semibold);
}

@media (max-width: 767px) {
  .site-breadcrumbs .container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .site-breadcrumbs__list,
  .site-breadcrumbs__item {
    gap: 0.45rem;
  }

  .site-breadcrumbs__item {
    font-size: 0.82rem;
  }
}


.navbar {
  background: transparent;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3000;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: all 0.3s ease;
}

.navbar.sticky-navbar {
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.navbar-brand-tagline {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--p-color);
  opacity: 0.9;
}

.navbar-brand-logo {
  width: 100px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.navbar-brand-text {
  font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
}

.navbar-brand-icon {
  display: inline-block;
  background: var(--secondary-color);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 1.25rem;
  color: var(--white-color);
  position: relative;
}

.navbar-brand-icon::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border: 2px solid var(--white-color);
  border-radius: 50%;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  list-style: none;
}

.nav-link {
  font-family: var(--heading-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark-color);
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius-small);
  transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(15, 77, 162, 0.08);
  color: var(--primary-color);
}

.nav-link.nav-icon {
  padding: 0.75rem 0.9rem;
  color: #ffffff;
}

.nav-link.nav-icon i {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar .nav-link.nav-icon,
.navbar .nav-link.nav-icon i,
.navbar .nav-link.nav-icon i::before {
  color: var(--dark-color) !important;
}

.account-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 150px;
  white-space: nowrap;
}

.account-nav-link.is-signed-in {
  padding-inline: 0.65rem;
}

.account-nav-text {
  display: none;
  max-width: 74px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8rem;
}

.account-nav-link.is-signed-in .account-nav-text {
  display: inline-block;
}

.account-nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--custom-btn-bg-color);
  color: #111827;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
}

.basket-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.basket-nav-count {
  position: absolute;
  top: 0.2rem;
  right: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--custom-btn-bg-color);
  color: #111827;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

@media (max-width: 1199px) {
  .account-nav-text {
    display: none !important;
  }
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  background: transparent;
  flex: 0 0 auto;
  position: relative;
  z-index: 3002;
}

.navbar-toggler-icon {
  width: 28px;
  height: 2px;
  background: var(--dark-color);
  display: block;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--dark-color);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}


@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar .dropdown-menu {
    margin-top: 0;
  }
.navbar .dropdown-menu {
  border-radius: 14px;
  padding: 0.5rem;
  border: 1px solid rgba(15, 77, 162, 0.12);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.navbar .dropdown-item {
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
}

.navbar .dropdown-item:hover {
  background: rgba(15, 77, 162, 0.06);
}
}


.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--heading-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 14px 32px;
  display: inline-block;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(223, 127, 31, 0.3);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-bg-white:hover {
  background: var(--white-color);
  color: var(--primary-color);
}


.btn--primary {
  background: linear-gradient(135deg, #0f4da2, #1f6fed);
  box-shadow: 0 10px 30px rgba(15, 77, 162, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(15, 77, 162, 0.4);
}


.btn--secondary {
  background: var(--white-color);
  color: var(--primary-color);
  border-color: rgba(15, 77, 162, 0.2);
}

.btn--secondary:hover {
  background: var(--section-bg-color);
  border-color: var(--primary-color);
  color: var(--primary-color);
}


.link {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  color: var(--white-color);
  font-weight: var(--font-weight-semibold);
}

.link::before,
.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link::before {
  content: '';
}

.link--kale::before {
  height: 10px;
  top: 100%;
  opacity: 0;
}

.link--kale:hover::before {
  opacity: 1;
  animation: lineUp 0.3s ease forwards;
}

@keyframes lineUp {
  0% {
    transform-origin: 50% 100%;
    transform: scale3d(1, 0.045, 1);
  }
  50% {
    transform-origin: 50% 100%;
    transform: scale3d(1, 1, 1);
  }
  51% {
    transform-origin: 50% 0%;
    transform: scale3d(1, 1, 1);
  }
  100% {
    transform-origin: 50% 0%;
    transform: scale3d(1, 0.045, 1);
  }
}

.link--kale::after {
  content: '';
  transition: opacity 0.3s;
  opacity: 0;
  transition-delay: 0s;
}

.link--kale:hover::after {
  opacity: 1;
  transition-delay: 0.3s;
}


.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  transition: all 0.3s;
}

.link-arrow::after {
  content: '→';
  font-size: 1.25rem;
  transition: transform 0.3s;
}

.link-arrow:hover {
  color: var(--primary-light);
  gap: 0.75rem;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}


.hero-section {
  background: linear-gradient(135deg, #062347 0%, #0f4da2 50%, #1f6fed 100%);
  min-height: 600px;
  position: relative;
  overflow: hidden;
  padding-top: 180px;
  padding-bottom: 100px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(249, 115, 22, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(37, 99, 235, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(249, 115, 22, 0.15) 0px, transparent 50%);
  opacity: 0.6;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -30px); }
}

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

.hero-section h6 {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.hero-section h1 {
  color: var(--white-color);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

.smoothscroll {
  scroll-behavior: smooth;
}


.avatar-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.avatar-image {
  border: 4px solid var(--white-color);
  border-radius: 100px;
  width: 60px;
  height: 60px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.avatar-image-left {
  position: relative;
  left: -10px;
}

.avatar-image-left + .avatar-image-left {
  left: -20px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left {
  left: -30px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left + .avatar-image-left {
  left: -40px;
}

.reviews-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white-color);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.reviews-group strong {
  font-size: var(--h3-font-size);
  color: var(--dark-color);
  margin-right: 0.5rem;
}

.reviews-group i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.reviews-group small {
  margin-left: 0.5rem;
  color: var(--p-color);
}




.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--border-radius-large);
  background: rgba(247, 167, 49, 0.1);
  color: var(--secondary-dark);
  border: 1px solid rgba(247, 167, 49, 0.3);
  transition: all 0.3s;
}

.pill:hover {
  background: rgba(247, 167, 49, 0.2);
  border-color: var(--secondary-color);
  cursor: pointer;
}

.pill--chip {
  cursor: pointer;
}

.pill--dark {
  background: rgba(5, 12, 25, 0.55);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white-color);
}

.pill--dark:hover {
  background: rgba(5, 12, 25, 0.75);
  border-color: rgba(255, 255, 255, 0.3);
}




.category-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid--available {
    grid-template-columns: repeat(3, minmax(0, 420px));
  }
}

.category-card {
  position: relative;
  background: var(--white-color);
  border: 1px solid rgba(15, 77, 162, 0.1);
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.category-card--product {
  display: block;
  color: inherit;
  text-decoration: none;
}

.category-card--product:hover,
.category-card--product:focus {
  color: inherit;
  text-decoration: none;
}

.category-card__image {
  display: block;
  width: calc(100% + 4rem);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: -2rem -2rem 1.5rem;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(15, 77, 162, 0.12);
  border-color: var(--secondary-color);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card__tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white-color);
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  border-radius: var(--border-radius-small);
  margin-bottom: 1rem;
}

.category-card h3 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.category-card p {
  margin-bottom: 1.5rem;
  color: var(--p-color);
}

.category-card .plain-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.category-card .plain-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--p-color);
}

.category-card .plain-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(247, 167, 49, 0.1);
  color: var(--secondary-dark);
  border-radius: 50%;
  font-weight: var(--font-weight-bold);
  font-size: 0.875rem;
  flex-shrink: 0;
}


.sector-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .sector-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sector-card {
  background: var(--white-color);
  border: 1px solid rgba(15, 77, 162, 0.1);
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.sector-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 15px 40px rgba(15, 77, 162, 0.1);
  transform: translateY(-4px);
}

.sector-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white-color);
  border-radius: var(--border-radius-medium);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  font-family: var(--heading-font-family);
}

.sector-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.sector-card p {
  font-size: 0.875rem;
  margin-bottom: 0;
}


.feature-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--white-color);
  border: 1px solid rgba(15, 77, 162, 0.1);
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 15px 40px rgba(15, 77, 162, 0.1);
  transform: translateY(-4px);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}


.stats-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--white-color);
  border: 2px solid rgba(15, 77, 162, 0.1);
  border-radius: var(--border-radius-medium);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 15px 40px rgba(247, 167, 49, 0.15);
  transform: translateY(-4px);
}

.stat-card__value {
  font-size: 3.5rem;
  font-weight: var(--font-weight-extrabold);
  font-family: var(--heading-font-family);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.stat-card__label {
  font-size: 1rem;
  color: var(--p-color);
  font-weight: var(--font-weight-medium);
}


.hero__panel {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  box-shadow: 0 30px 70px rgba(15, 36, 69, 0.15);
  border: 1px solid rgba(15, 77, 162, 0.08);
  transition: all 0.3s;
}

.hero__panel:hover {
  box-shadow: 0 40px 90px rgba(15, 36, 69, 0.2);
  transform: translateY(-4px);
}

.hero__panel h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.hero__panel p {
  margin-bottom: 1.5rem;
  color: var(--p-color);
  font-size: 0.9375rem;
}


.finder-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 0.2rem;
  border-radius: var(--border-radius-small);
  border: 1px solid rgba(15, 77, 162, 0.1);
  margin-bottom: 0.75rem;
  transition: all 0.3s;
  color: var(--dark-color);
  cursor: pointer;
}

.finder-link:last-of-type {
  margin-bottom: 0;
}

.finder-link strong {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  display: block;
  margin-bottom: 0.25rem;
}

.finder-link__meta {
  font-size: 0.8125rem;
  color: var(--p-color);
}

.finder-link:hover {
  border-color: var(--primary-light);
  background: rgba(31, 111, 237, 0.04);
  transform: translateX(4px);
}

.finder-link:hover strong {
  color: var(--primary-color);
}

.finder-link span:last-child {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s;
}

.finder-link:hover span:last-child {
  transform: translateX(4px);
}


.highlight {
  display: grid;
  gap: 3rem;
  padding: 3rem;
  background: var(--white-color);
  border: 2px solid rgba(15, 77, 162, 0.1);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 15px 40px rgba(15, 77, 162, 0.08);
}

@media (min-width: 768px) {
  .highlight {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.highlight h2 {
  margin-bottom: 1rem;
}

.highlight p {
  margin-bottom: 1.5rem;
}

.cta-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--white-color);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 350px;
}

.cta-card h3 {
  color: var(--white-color);
  margin-bottom: 1rem;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.cta-card a {
  color: var(--white-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-card a:hover {
  text-decoration-thickness: 2px;
}



.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

label {
  display: block;
  font-weight: var(--font-weight-semibold);
  font-size: 0.9375rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: var(--dark-color);
  background: var(--white-color);
  border: 2px solid rgba(15, 77, 162, 0.15);
  border-radius: var(--border-radius-small);
  transition: all 0.3s;
  font-family: var(--body-font-family);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(15, 77, 162, 0.1);
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%234a5468' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5em;
  padding-right: 3rem;
}

small.muted {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--p-color);
}


.mode-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.25rem;
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  margin-bottom: 1.5rem;
}

.mode-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem;
  background: transparent;
  border: none;
  border-radius: var(--border-radius-small);
  font-family: var(--heading-font-family);
  font-weight: var(--font-weight-semibold);
  color: var(--p-color);
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.mode-btn:hover {
  background: var(--white-color);
  color: var(--dark-color);
}

.mode-btn.active {
  background: var(--white-color);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(15, 77, 162, 0.1);
}

.mode-btn span {
  font-size: 0.9375rem;
}

.mode-btn small {
  font-size: 0.75rem;
  font-weight: var(--font-weight-normal);
  opacity: 0.7;
}

.input-mode {
  display: none;
}

.input-mode.active {
  display: block;
}


.result-container {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
}

.result-container.active {
  opacity: 1;
  transform: translateY(0);
}

.result-box {
  background: var(--white-color);
  border: 2px solid rgba(15, 77, 162, 0.1);
  border-radius: var(--border-radius-medium);
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(15, 77, 162, 0.08);
  position: relative;
  overflow: hidden;
}

.result-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.result-success::before {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.result-box h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 77, 162, 0.1);
}

.product-details {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 640px) {
  .product-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .product-details {
    grid-template-columns: repeat(3, 1fr);
  }
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--section-bg-color);
  border: 1px solid rgba(15, 77, 162, 0.1);
  border-radius: var(--border-radius-small);
}

.detail-item strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--p-color);
  font-weight: var(--font-weight-semibold);
}

.detail-item span {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  font-family: var(--heading-font-family);
  color: var(--dark-color);
}

.detail-item .price {
  color: var(--secondary-dark);
  font-size: 1.5rem;
}


.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
  border-radius: var(--border-radius-large);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stock-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.stock-in {
  background: #d1fae5;
  color: #065f46;
}

.stock-in::before {
  background: #10b981;
}

.stock-low {
  background: #fef3c7;
  color: #92400e;
}

.stock-low::before {
  background: #f59e0b;
}

.stock-out {
  background: #fee2e2;
  color: #991b1b;
}

.stock-out::before {
  background: #ef4444;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
  color: var(--primary-color);
  background: rgba(15, 77, 162, 0.05);
  border: 2px dashed var(--primary-light);
  border-radius: var(--border-radius-medium);
}

.loading::before {
  content: '';
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  border: 3px solid rgba(15, 77, 162, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


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

.site-footer {
  margin-top: 70px;
  background: linear-gradient(180deg, #030712 0%, #050b18 100%);
  color: #d7e0f5;
}

.home-page .site-footer {
  margin-top: 16px;
}

.footer-cta {
  padding: 45px 0 55px;
  background: linear-gradient(135deg, #031029 0%, #0f4da2 60%, #1f6fed 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta__grid {
  max-width: 720px;
  margin: 0 auto;
}

.footer-cta__card {
  background: rgba(1, 5, 16, 0.55);
  border-radius: 20px;
  padding: 1.75rem 2rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 35px rgba(3, 13, 32, 0.25);
}

.footer-cta__head {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-cta__head h2 {
  color: var(--white-color);
  margin-bottom: 0;
  font-size: 1.8rem;
}

.footer-form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.footer-form .form-control {
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 8, 20, 0.35);
  color: var(--white-color);
}

.footer-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-form .input-group-text {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
}

.footer-form__note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-form__note a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.footer-form__consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 0.86rem;
  line-height: 1.45;
}

.footer-form__consent input {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: 0.18rem;
  accent-color: var(--secondary-color);
}

.footer-form__consent span {
  color: #ffffff;
}

.footer-form__consent a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
}

.footer-form__alert {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  border-radius: var(--border-radius-small);
  padding: 0.75rem 1rem;
  color: var(--white-color);
}

.footer-form__alert:empty {
  display: none;
}

.footer-form__alert--success {
  background: rgba(46, 245, 175, 0.2);
  border: 1px solid rgba(46, 245, 175, 0.4);
  color: #bdf7df;
}

.footer-form__alert--error {
  background: rgba(255, 99, 132, 0.18);
  border: 1px solid rgba(255, 99, 132, 0.4);
  color: #ffd1d7;
}

.footer-main {
  padding: 70px 0 30px;
}

.footer-main__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin-bottom: 0;
  color: rgba(215, 224, 245, 0.85);
}

.footer-brand__address,
.footer-brand__hours {
  margin-bottom: 1rem;
  color: rgba(215, 224, 245, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-brand__address {
  font-style: normal;
}

.footer-brand__address strong,
.footer-brand__hours strong {
  color: #ffffff;
}

.footer-brand__hours {
  display: grid;
  gap: 0.2rem;
}

.footer-brand__hours span {
  display: block;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(247, 167, 49, 0.75);
  background: rgba(247, 167, 49, 0.16);
  color: var(--secondary-color);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links__title {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-links__button {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links__button:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 30px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(215, 224, 245, 0.7);
  font-size: 0.9rem;
}

.social-icon-link:hover {
  background: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright-text {
  font-size: var(--copyright-font-size);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}


.ebook-download-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
  padding: 3rem;
  position: relative;
  z-index: 2;
}

.ebook-download-form h2 {
  margin-bottom: 0.5rem;
}

.ebook-download-form-body {
  margin-top: 2rem;
}

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group .form-control {
  padding-right: 3rem;
}

.input-group-text {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--p-color);
  font-size: 1.25rem;
  z-index: 3;
}


.trust__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 3rem;
  align-items: center;
  justify-items: center;
  margin-top: 3rem;
}

.trust__logos img {
  max-width: 140px;
  height: auto;
  opacity: 0.6;
  filter: grayscale(0.8);
  transition: all 0.3s;
}

.trust__logos img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.05);
}


@media screen and (max-width: 991px) {
  :root {
    --h1-font-size: 42px;
    --h2-font-size: 36px;
    --h3-font-size: 28px;
    --h4-font-size: 24px;
    --h5-font-size: 20px;
    --h6-font-size: 16px;
  }

  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .navbar {
    background: rgba(6, 35, 71, 0.92);
    backdrop-filter: blur(8px);
  }

  .navbar.sticky-navbar {
    background: rgba(6, 35, 71, 0.96);
  }

  .navbar-brand,
  .navbar-brand span,
  .navbar-brand-tagline {
    color: #ffffff !important;
  }

  .navbar-brand {
    flex: 1 1 auto;
    max-width: calc(100% - 54px);
  }

  .navbar-brand-logo {
    width: 76px;
    height: 42px;
  }

  .navbar-brand-text {
    font-size: 1rem;
  }

  .navbar-brand-tagline {
    display: none;
  }

  .navbar-toggler {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    background: #ffffff;
  }

  .navbar-collapse {
    flex: 0 0 100%;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(6, 35, 71, 0.98);
    border-radius: var(--border-radius-small);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 48px rgba(6, 35, 71, 0.18);
    position: relative;
    z-index: 3001;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    color: #ffffff !important;
    width: 100%;
  }

  .navbar .nav-link.nav-icon,
  .navbar .nav-link.nav-icon i,
  .navbar .nav-link.nav-icon i::before {
    color: #ffffff !important;
  }

  .navbar .nav-link.nav-icon {
    width: auto;
    min-width: 44px;
    align-self: flex-start;
    position: relative;
  }

  .basket-nav-count {
    top: 0.15rem;
    right: 0.2rem;
  }

  .account-nav-link {
    width: auto;
    max-width: 100%;
    align-self: flex-start;
  }

  .account-nav-link.is-signed-in .account-nav-text {
    display: inline-block !important;
    max-width: 150px;
  }

  .navbar .dropdown-menu {
    position: static;
    width: 100%;
    border: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.35rem;
    margin: 0.2rem 0 0.65rem;
  }

  .navbar .dropdown-item {
    color: #ffffff;
  }

  .navbar .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
  }

  .hero-section {
    padding-top: 140px;
    padding-bottom: 60px;
    min-height: 500px;
  }

  .cta-card {
    min-width: auto;
  }

  .highlight {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

@media screen and (max-width: 640px) {
  :root {
    --h1-font-size: 36px;
    --h2-font-size: 28px;
    --h3-font-size: 24px;
    --h4-font-size: 20px;
  }

  .wrapper {
    padding: 0 1rem;
  }

  .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-section {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .category-card,
  .sector-card,
  .feature-card {
    padding: 1.5rem;
  }

  .category-card__image {
    width: calc(100% + 3rem);
    margin: -1.5rem -1.5rem 1.5rem;
  }

  .result-box {
    padding: 1.5rem;
  }

  .product-details {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
  }

  .actions .custom-btn {
    width: 100%;
  }

  .ebook-download-form {
    padding: 2rem 1.5rem;
  }

  .highlight {
    padding: 1.5rem;
  }
}


.text-center {
  text-align: center;
}

.muted {
  color: var(--p-color);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


@media print {
  .navbar,
  .site-footer,
  .custom-btn,
  .actions {
    display: none;
  }

  body {
    background: white;
  }

  .section-padding {
    padding: 1rem 0;
  }
}






.hero-section.hero-landing {
  background-image: url("/images/hero-seals.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  
  padding-top: 110px;
  padding-bottom: 70px; 

  
  overflow: visible;

  
  --cutaway-left: calc(60% - 50px);
  --cutaway-stop: 30%;
}


.hero-section.hero-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 35, 71, 0.88) 0%, rgba(15, 77, 162, 0.78) 45%, rgba(31, 111, 237, 0.45) 100%),
    radial-gradient(at 20% 10%, rgba(247, 167, 49, 0.20) 0px, transparent 55%);
  z-index: 0;
}


.hero-section.hero-landing::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: var(--cutaway-left);

  
  width: auto;
  height: auto;
  filter: none;
  border-radius: 0;
  animation: none;
  transform: none;

  background: #fff;

  
  clip-path: polygon(100% var(--cutaway-stop), 100% 100%, 0 100%);

  
  z-index: 4;
  pointer-events: none;
}


.hero-landing__content {
  position: relative;
  z-index: 5;
}

.hero-section.hero-landing h6,
.hero-section.hero-landing h1,
.hero-section.hero-landing .lede {
  color: var(--white-color);
}


.hero-finder-card {
  position: relative;
  z-index: 6;

  
  transform: translateY(80px);

  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.18);

  
  max-width: 1000px;
  
  
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  
  overflow: hidden; 
  border-radius: var(--border-radius-medium);
}


.hero-landing .hero__panel:hover {
  transform: translateY(80px);
}


.hero-bottom-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 95px;
  display: flex;
  align-items: center;

  background: transparent;
  z-index: 3; 
}

.hero-bottom-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondary-color);
  z-index: -1;
}

.hero-bottom-strip__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-bottom-strip__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  color: rgba(6, 35, 71, 0.95);
  position: relative;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


.hero-bottom-strip__item:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-bottom-strip__item:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-bottom-strip__item:nth-child(3) {
  animation-delay: 0.6s;
}


.hero-bottom-strip__item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}


.hero-bottom-strip__item::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}


.hero-bottom-strip__item:nth-child(1)::before {
  content: "⚡";
  animation: pulseIcon 2s ease-in-out infinite;
}

.hero-bottom-strip__item:nth-child(2)::before {
  content: "🤝";
  animation: pulseIcon 2s ease-in-out 0.3s infinite;
}

.hero-bottom-strip__item:nth-child(3)::before {
  content: "💡";
  animation: pulseIcon 2s ease-in-out 0.6s infinite;
}

.hero-bottom-strip__item:hover::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.15) 100%);
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}


.hero-bottom-strip__item-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-bottom-strip__item strong {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 1rem;
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bottom-strip__item:hover strong {
  transform: translateX(2px);
}

.hero-bottom-strip__item span {
  font-size: 0.875rem;
  opacity: 0.85;
  display: block;
  transition: opacity 0.3s ease;
}

.hero-bottom-strip__item:hover span {
  opacity: 1;
}


@keyframes slideUpFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}




.featured-section{
  position: relative;
  padding: 0;
  background: transparent;
  z-index: 2;
  margin-top: 100px;
  margin-bottom: 80px;
  width: 100%; 
}


.featured-section .container {
  background: #eae9e9;
  border-radius: 0; 
  padding: 60px 80px; 
  box-shadow: none; 
  max-width: 100%; 
}

.featured-section h3 {
  text-align: center;
  margin-bottom: 3.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #021547;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.3;
}


.featured-section .avatar-group{
  max-width: 1400px; 
  margin: 0 auto;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  justify-items: center;
  align-items: start;
}


.reviews-group{
  text-align: center;
  padding: 0;
  background: none;
  border: none;
  width: 100%;
  min-height: 180px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.reviews-group strong{
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-color);
  margin-bottom: 1.25rem; 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: -0.03em;
}


.reviews-group small{
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #262626;
  line-height: 1.4;
  opacity: 0.85;
  max-width: 220px; 
}


@media (max-width: 991px){
  .featured-section{
    margin-top: 60px;
    margin-bottom: 60px;
  }
  
  .featured-section .container {
    padding: 50px 40px;
    border-radius: 0;
  }
  
  .featured-section h3 {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }

  .featured-section .avatar-group{
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
    max-width: 900px;
  }
  
  .reviews-group {
    min-height: 160px;
  }

  .reviews-group strong {
    font-size: 3.5rem;
  }
  
  .reviews-group small {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px){
  .featured-section{
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  .featured-section .container {
    padding: 40px 24px;
    border-radius: 0;
  }
  
  .featured-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .featured-section .avatar-group{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .reviews-group {
    min-height: 120px;
  }
  
  .reviews-group strong {
    font-size: 3rem;
    margin-bottom: 0.75rem;
  }
}



@media (min-width: 992px) {
  .navbar:not(.sticky-navbar) {
    background: rgba(6, 35, 71, 0.65) !important;
    backdrop-filter: blur(8px);
  }

  .navbar:not(.sticky-navbar) .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .navbar:not(.sticky-navbar) .nav-link:hover,
  .navbar:not(.sticky-navbar) .nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12);
  }

  .navbar:not(.sticky-navbar) .navbar-brand,
  .navbar:not(.sticky-navbar) .navbar-brand strong,
  .navbar:not(.sticky-navbar) .navbar-brand span,
  .navbar:not(.sticky-navbar) .navbar-brand-tagline {
    color: #ffffff !important;
  }

  .navbar:not(.sticky-navbar) .nav-link.nav-icon,
  .navbar:not(.sticky-navbar) .nav-link.nav-icon i,
  .navbar:not(.sticky-navbar) .nav-link.nav-icon i::before {
    color: #ffffff !important;
  }

  .navbar:not(.sticky-navbar) .navbar-toggler-icon,
  .navbar:not(.sticky-navbar) .navbar-toggler-icon::before,
  .navbar:not(.sticky-navbar) .navbar-toggler-icon::after {
    background: #ffffff;
  }
}


.site-gutter {
  padding-left: clamp(16px, 4vw, 72px) !important;
  padding-right: clamp(16px, 4vw, 72px) !important;
}

.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}


@media (max-width: 991px) {
  .hero-section.hero-landing {
    padding-top: 140px;
    padding-bottom: 110px;
  }

  .hero-section.hero-landing::after {
    display: none; 
  }

  .hero-finder-card {
    transform: translateY(24px);
  }

  .hero-landing .hero__panel:hover {
    transform: translateY(24px);
  }

  .hero-bottom-strip {
    height: 105px;
  }

  .featured-section {
    margin-top: 20px;
  }
}


.finder-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
  min-height: 450px; 
}

.finder-slider__track {
  display: flex;
   transition: transform 650ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.finder-slide {
  flex: 0 0 100%;
   opacity: 0.85;
  transition: opacity 450ms ease;
}

.finder-slide[aria-hidden="false"] {
  opacity: 1;
}


.finder-slider__controls {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  z-index: 10;
}


.finder-slider__btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 0;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}


.finder-slider__btn::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  display: block;
}

.finder-slider__btn[data-prev]::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.finder-slider__btn[data-next]::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

.finder-slider__btn:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.finder-slider__btn:active {
  transform: scale(0.95);
}


.finder-slider__dots {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.finder-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: all 0.3s ease;
}

.finder-slider__dot:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.finder-slider__dot[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  width: 12px;
  height: 12px;
}


@media (prefers-reduced-motion: reduce) {
  .finder-slider__track {
    transition: none;
  }
}

.mobile-home {
  display: none;
}

@media (max-width: 767px) {
  .home-page > main > .hero-section,
  .home-page > main > .section-padding,
  .home-page > main > .vulclast-section,
  .home-page > main > .solution-sectors,
  .home-page > main > .reviews-ticker-section {
    display: none !important;
  }

  .mobile-home {
    display: block;
    background: #ffffff;
    overflow: hidden;
  }

  .mobile-home__inner {
    width: min(100% - 32px, 520px);
    margin: 0 auto;
  }

  .mobile-home__eyebrow {
    margin: 0 0 0.65rem;
    color: var(--secondary-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .mobile-home h1,
  .mobile-home h2 {
    letter-spacing: 0;
  }

  .mobile-home-hero {
    position: relative;
    min-height: 560px;
    padding: 112px 0 2.5rem;
    color: #ffffff;
    background: #062347;
    isolation: isolate;
  }

  .mobile-home-hero__media {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(6, 35, 71, 0.78) 0%, rgba(6, 35, 71, 0.92) 58%, #062347 100%),
      url("/images/hero-seals.jpg") center / cover no-repeat;
    z-index: -1;
  }

  .mobile-home-hero h1 {
    max-width: 15ch;
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 1.02;
    font-weight: 800;
  }

  .mobile-home-hero p:not(.mobile-home__eyebrow) {
    max-width: 34rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.58;
  }

  .mobile-home__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-top: 1.4rem;
  }

  .mobile-home__actions .custom-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .mobile-home-section {
    padding: 2.75rem 0;
  }

  .mobile-home-section--muted {
    background: var(--section-bg-color);
  }

  .mobile-home-section--dark {
    background:
      linear-gradient(135deg, rgba(6, 35, 71, 0.98), rgba(15, 77, 162, 0.96)),
      var(--primary-color);
    color: #ffffff;
  }

  .mobile-home-section__intro {
    margin-bottom: 1.25rem;
  }

  .mobile-home-section h2,
  .mobile-vulclast h2 {
    margin: 0;
    color: var(--dark-color);
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.12;
    font-weight: 800;
  }

  .mobile-home-section--dark h2,
  .mobile-home-section--dark .mobile-home__eyebrow {
    color: #ffffff;
  }

  .mobile-product-list {
    display: grid;
    gap: 0.85rem;
  }

  .mobile-product-card {
    display: grid;
    grid-template-columns: 94px 1fr;
    gap: 0.9rem;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid rgba(15, 77, 162, 0.12);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 77, 162, 0.08);
    color: var(--dark-color);
  }

  .mobile-product-card img {
    width: 94px;
    height: 78px;
    border-radius: 12px;
    object-fit: cover;
  }

  .mobile-product-card strong,
  .mobile-product-card small {
    display: block;
  }

  .mobile-product-card strong {
    margin-bottom: 0.2rem;
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 800;
  }

  .mobile-product-card small {
    color: var(--p-color);
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .mobile-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .mobile-stat-grid .stat-card {
    min-height: 116px;
    padding: 1rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 77, 162, 0.08);
    box-shadow: 0 12px 28px rgba(15, 77, 162, 0.08);
  }

  .mobile-stat-grid .stat-card__value {
    display: block;
    color: var(--primary-color);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1;
  }

  .mobile-stat-grid .stat-card__label {
    display: block;
    margin-top: 0.55rem;
    color: var(--p-color);
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .mobile-vulclast {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 240, 252, 0.95)),
      url("/images/products/orings.jpg") center / cover no-repeat;
  }

  .mobile-vulclast p:not(.mobile-home__eyebrow) {
    margin: 0.85rem 0 1.25rem;
    color: var(--p-color);
    font-size: 1rem;
    line-height: 1.55;
  }

  .mobile-vulclast-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.35rem;
  }

  .mobile-vulclast-grid .vulclast-step {
    min-height: 210px;
    padding: 1rem 0.75rem;
    border-radius: 16px;
    opacity: 1;
    transform: none;
    box-shadow: 0 14px 30px rgba(15, 77, 162, 0.12);
  }

  .mobile-vulclast-grid .vulclast-step__number {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
  }

  .mobile-vulclast-grid .vulclast-step__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 0.75rem;
  }

  .mobile-vulclast-grid .vulclast-step h3 {
    margin-bottom: 0.35rem;
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .mobile-vulclast-grid .vulclast-step p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .mobile-vulclast .custom-btn {
    width: 100%;
    justify-content: center;
  }

  .mobile-sector-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .mobile-sector-grid .solution-card {
    height: auto;
    min-height: 104px;
    padding: 0.8rem;
    border-radius: 14px;
  }

  .mobile-sector-grid .solution-card::before {
    animation: mobile-card-shine 9.6s ease-in-out infinite;
    opacity: 1;
  }

  .mobile-sector-grid .solution-card:nth-child(1)::before { animation-delay: 0s; }
  .mobile-sector-grid .solution-card:nth-child(2)::before { animation-delay: 1.2s; }
  .mobile-sector-grid .solution-card:nth-child(3)::before { animation-delay: 2.4s; }
  .mobile-sector-grid .solution-card:nth-child(4)::before { animation-delay: 3.6s; }
  .mobile-sector-grid .solution-card:nth-child(5)::before { animation-delay: 4.8s; }
  .mobile-sector-grid .solution-card:nth-child(6)::before { animation-delay: 6s; }
  .mobile-sector-grid .solution-card:nth-child(7)::before { animation-delay: 7.2s; }
  .mobile-sector-grid .solution-card:nth-child(8)::before { animation-delay: 8.4s; }

  .mobile-sector-grid .solution-card__label {
    font-size: 0.84rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .mobile-accreditation-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .mobile-accreditation-list .membership-card {
    width: auto;
    min-height: 178px;
    padding: 0.85rem;
    gap: 0.7rem;
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(15, 77, 162, 0.08);
  }

  .mobile-accreditation-list .membership-card__logo {
    width: 100%;
    height: 70px;
    border-radius: 12px;
    padding: 0.55rem;
  }

  .mobile-accreditation-list .membership-card__title {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .mobile-accreditation-list .membership-card__meta {
    font-size: 0.73rem;
    line-height: 1.3;
  }

  .mobile-reviews-section {
    padding: 2.75rem 0 3.25rem;
    background: linear-gradient(135deg, #031029 0%, #0f4da2 62%, #1f6fed 100%);
  }

  .mobile-reviews {
    width: min(100% - 32px, 520px);
    margin: 0 auto;
    padding: 0;
    color: #ffffff;
  }

  .mobile-reviews .reviews-ticker__intro {
    display: block;
    margin-bottom: 1.15rem;
  }

  .mobile-reviews .reviews-ticker__intro h2 {
    max-width: 14ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    line-height: 1.12;
  }

  .mobile-reviews .reviews-ticker__viewport {
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px;
  }

  .mobile-reviews .reviews-ticker__track {
    gap: 0.85rem;
    animation-duration: 34s;
  }

  .mobile-reviews .review-pill {
    min-width: 235px;
    max-width: 235px;
    min-height: 178px;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 32px rgba(3, 10, 24, 0.28);
  }

  .mobile-reviews .pill-stars {
    margin-bottom: 0.55rem;
    font-size: 0.86rem;
  }

  .mobile-reviews .pill-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.65rem;
    color: #ffffff;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .mobile-reviews .pill-meta {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .mobile-reviews .reviews-placeholder {
    max-width: 280px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
  }

  @keyframes mobile-card-shine {
    0% {
      transform: translateX(-120%);
      opacity: 0;
    }
    7% {
      opacity: 1;
    }
    14% {
      transform: translateX(160%);
      opacity: 0;
    }
    100% {
      transform: translateX(160%);
      opacity: 0;
    }
  }

  @media (max-width: 380px) {
    .mobile-home__inner {
      width: min(100% - 24px, 520px);
    }

    .mobile-home-hero h1 {
      font-size: 2.15rem;
    }

    .mobile-product-card {
      grid-template-columns: 82px 1fr;
    }

    .mobile-product-card img {
      width: 82px;
      height: 72px;
    }

    .mobile-stat-grid,
    .mobile-vulclast-grid,
    .mobile-sector-grid,
    .mobile-accreditation-list {
      gap: 0.55rem;
    }
  }

  .home-page .section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .home-page .section__intro {
    margin-bottom: 1.8rem;
  }

  .home-page .section__intro h2,
  .home-page .solution-banner__intro h2,
  .home-page .membership-banner__intro h2 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
    line-height: 1.14;
  }

  .home-page .section__intro .lede,
  .home-page .solution-banner__intro .lede,
  .home-page .vulclast-header .lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .home-page .stats-grid {
    gap: 0.8rem;
  }

  .home-page .stat-card {
    padding: 1.15rem;
  }

  .home-page .stat-card__value {
    font-size: 2rem;
  }

  .home-page .vulclast-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .home-page .vulclast-header {
    margin-bottom: 1.8rem;
  }

  .home-page .vulclast-steps {
    gap: 0.9rem;
  }

  .home-page .vulclast-step {
    padding: 1rem;
  }

  .home-page .solution-banner {
    padding: 3rem 0;
  }

  .home-page .solution-banner__intro,
  .home-page .membership-banner__intro {
    margin-bottom: 1.8rem;
  }

  .home-page .solution-grid,
  .home-page .membership-grid {
    gap: 0.8rem;
  }

  .home-page .solution-card {
    height: auto;
    min-height: 82px;
    padding: 1rem;
    border-radius: 14px;
  }

  .home-page .membership-banner {
    padding: 1rem;
    border-radius: 18px;
  }

  .home-page .membership-card {
    min-height: 0;
    padding: 1rem;
    gap: 0.85rem;
    border-radius: 16px;
  }

  .home-page .membership-card__logo {
    width: 96px;
    height: 64px;
  }

  .home-page .reviews-ticker-section {
    padding: 2.5rem 0;
  }

  .home-page .reviews-ticker__intro {
    align-items: flex-start;
    margin-bottom: 1.4rem;
  }

  .home-page .reviews-ticker__intro h2 {
    font-size: 1.5rem;
  }
}


.cookie-settings-text {
  margin-top: 1rem;
  color: var(--p-color);
  font-size: 0.95rem;
}

.cookie-settings-link {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  text-decoration: underline;
  cursor: pointer;
}


.cy-floating-trigger {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--secondary-color);
  color: #111828;
  box-shadow: 0 15px 30px rgba(6, 13, 32, 0.25);
  cursor: pointer;
  z-index: 1450;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cy-floating-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(6, 13, 32, 0.35);
}

.cy-floating-trigger:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 3px;
}

body.cy-modal-open .cy-floating-trigger {
  opacity: 0;
  pointer-events: none;
}

.cy-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, calc(100% - 32px));
  background: #0b1220;
  color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(6, 13, 32, 0.45);
  padding: 1.75rem 2rem;
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.cy-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.cy-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cy-banner__text {
  flex: 1 1 320px;
}

.cy-banner__text h3 {
  margin-bottom: 0.35rem;
  color: #ffffff;
}

.cy-banner__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.cy-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cy-btn {
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-weight: var(--font-weight-semibold);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 0.95rem;
}

.cy-btn:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

.cy-btn--primary {
  background: var(--secondary-color);
  color: #111828;
  box-shadow: 0 12px 30px rgba(247, 167, 49, 0.4);
}

.cy-btn--primary:hover {
  transform: translateY(-1px);
}

.cy-btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.cy-btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cy-btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
}

.cy-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(6, 13, 32, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cy-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.cy-modal__panel {
  background: #ffffff;
  border-radius: 24px;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cy-modal__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(6, 13, 32, 0.2);
}

.cy-modal__overlay {
  position: absolute;
  inset: 0;
}

.cy-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  border: none;
  background: rgba(15, 77, 162, 0.12);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
}

.cy-modal__intro {
  margin-bottom: 1rem;
  color: var(--p-color);
}

.cy-modal__panel > .cy-eyebrow {
  margin-left: 1.5rem;
  margin-top: 1.5rem;
}

.cy-modal__panel > h3 {
  margin: 0 1.5rem 0.75rem;
}

.cy-modal__panel > p {
  margin: 0 1.5rem 1rem;
}

.cy-option-list {
  list-style: none;
  margin: 0;
  padding: 0 1.5rem;
  overflow-y: auto;
}

.cy-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(15, 77, 162, 0.12);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  gap: 1rem;
}

.cy-option__info h4 {
  margin: 0 0 0.35rem;
}

.cy-option__info p {
  margin: 0;
  color: var(--p-color);
  font-size: 0.95rem;
}

.cy-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(15, 77, 162, 0.1);
  color: var(--primary-color);
  border-radius: 999px;
  padding: 0.15rem 0.65rem;
  margin-left: 0.5rem;
}

.cy-badge--optional {
  background: rgba(247, 167, 49, 0.15);
  color: var(--secondary-color);
}

.cy-toggle {
  position: relative;
  width: 50px;
  height: 28px;
  flex-shrink: 0;
}

.cy-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cy-toggle__track {
  position: absolute;
  inset: 0;
  background: rgba(15, 77, 162, 0.25);
  border-radius: 999px;
  transition: background 0.25s ease;
}

.cy-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease;
}

.cy-toggle input:checked + .cy-toggle__track {
  background: var(--primary-color);
}

.cy-toggle input:checked + .cy-toggle__track .cy-toggle__thumb {
  transform: translateX(22px);
}

.cy-toggle input:disabled + .cy-toggle__track {
  background: rgba(15, 77, 162, 0.45);
  opacity: 0.7;
}

.cy-modal__actions {
  margin: 1rem 1.5rem 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cy-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
  color: var(--secondary-color);
  font-weight: var(--font-weight-semibold);
}

body.cy-modal-open {
  overflow: hidden;
}

.solution-sectors {
  position: relative;
  padding-top: 16px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 16px;
}

.solution-banner {
  position: relative;
  width: 100%;
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(13, 110, 253, 0.25), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(247, 167, 49, 0.35), transparent 55%),
    linear-gradient(135deg, #051937 0%, #0f4da2 45%, #1f6fed 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: var(--white-color);
}

.solution-banner .container {
  position: relative;
  z-index: 1;
}

.solution-banner::before,
.solution-banner::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
}

.solution-banner::before {
  top: -80px;
  right: -40px;
  background: rgba(247, 167, 49, 0.6);
}

.solution-banner::after {
  bottom: -120px;
  left: -40px;
  background: rgba(13, 110, 253, 0.5);
}

.solution-banner__intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.solution-banner__intro h2 {
  color: var(--white-color);
}

.solution-banner__intro .lede {
  color: rgba(255, 255, 255, 0.85);
}

.solution-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.solution-card {
  --card-accent: var(--secondary-color);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(6, 20, 45, 0.92), rgba(13, 57, 126, 0.75));
  color: var(--white-color);
  font-weight: var(--font-weight-semibold);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  height: 130px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  cursor: default;
  box-shadow: 0 25px 45px rgba(3, 11, 32, 0.35);
  text-align: center;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2), transparent 70%);
  transform: translateX(-120%);
  opacity: 0;
}

.solution-card::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.solution-card__label {
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-wrap: balance;
  line-height: 1.4;
}

.solution-card:nth-child(3n+1) {
  --card-accent: #f7a731;
}

.solution-card:nth-child(3n+2) {
  --card-accent: #47c9ff;
}

.solution-card:nth-child(3n) {
  --card-accent: #9a7bff;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 55px rgba(3, 11, 32, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
  background: linear-gradient(145deg, rgba(9, 40, 86, 0.92), rgba(31, 111, 237, 0.8));
}

.solution-card:hover::before {
  animation: card-shimmer 0.8s forwards;
  opacity: 1;
}

@keyframes card-shimmer {
  to {
    transform: translateX(160%);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .solution-card {
    min-height: 80px;
    padding: 1rem 1.25rem;
  }

  .solution-card__label {
    font-size: 0.95rem;
  }
}


.membership-section {
  background: var(--section-bg-color);
  padding-top: 16px;
}

.membership-banner {
  background:
    radial-gradient(circle at 5% 15%, rgba(247, 167, 49, 0.15), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(31, 111, 237, 0.2), transparent 45%),
    #ffffff;
  border-radius: 32px;
  padding: clamp(2rem, 4vw, 3.75rem);
  border: 1px solid rgba(15, 77, 162, 0.06);
  box-shadow: 0 25px 60px rgba(15, 77, 162, 0.1);
}

.membership-banner__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.membership-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.membership-card {
  flex: 0 1 260px;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 77, 162, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 35px rgba(15, 77, 162, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 220px;
  color: inherit;
  text-decoration: none;
}

.membership-card:hover,
.membership-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(15, 77, 162, 0.35);
  box-shadow: 0 25px 40px rgba(15, 77, 162, 0.15);
  color: inherit;
  text-decoration: none;
}

.membership-card__logo {
  width: 120px;
  height: 80px;
  border-radius: 18px;
  background: rgba(10, 33, 74, 0.04);
  border: 1px solid rgba(15, 77, 162, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.membership-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(15, 77, 162, 0.15));
}

.membership-card__body {
  text-align: center;
}

.membership-card__title {
  margin-bottom: 0.2rem;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
}

.membership-card__meta {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--p-color);
}

@media (max-width: 575px) {
  .membership-card {
    min-height: 200px;
    width: 100%;
    flex-basis: 100%;
  }
}


.reviews-ticker-section {
  background: linear-gradient(135deg, #031029 0%, #0f4da2 60%, #1f6fed 100%);
  padding: 80px 0;
}

.reviews-ticker {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  color: var(--white-color);
}

.reviews-ticker__intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.reviews-ticker__intro h2 {
  color: var(--white-color);
}

.reviews-ticker__viewport {
  overflow: hidden;
  position: relative;
}

.reviews-ticker__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: reviews-marquee 45s linear infinite;
}

.review-pill {
  min-width: 320px;
  max-width: 360px;
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(3, 10, 24, 0.35);
}

.pill-stars {
  color: #ffda6a;
  margin-bottom: 0.75rem;
}

.pill-text {
  color: var(--white-color);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.pill-meta {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.reviews-placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin: 0;
}

@keyframes reviews-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 767px) {
  .reviews-ticker {
    padding: 0 1.25rem;
  }

  .review-pill {
    min-width: 260px;
  }
}

@media (max-width: 768px) {
  .cy-banner {
    padding: 1.5rem;
  }

  .cy-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cy-banner__actions {
    width: 100%;
    justify-content: stretch;
  }

  .cy-banner__actions .cy-btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .cy-floating-trigger {
    right: 1rem;
    bottom: 1rem;
  }

  .cy-option {
    flex-direction: column;
    align-items: flex-start;
  }

  .cy-toggle {
    align-self: flex-end;
  }
}

@media (max-width: 767.98px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .navbar .container,
  .navbar .container-fluid {
    min-width: 0;
  }

  .navbar-collapse {
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navbar .dropdown-item,
  .navbar .nav-link {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .custom-btn,
  .btn,
  button,
  input,
  select,
  textarea {
    max-width: 100%;
  }

  .mobile-home__inner,
  .mobile-reviews {
    width: min(100% - 28px, 520px);
  }

  .mobile-home-hero {
    min-height: auto;
    padding-top: 104px;
  }

  .mobile-product-card {
    min-width: 0;
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .mobile-product-card img {
    width: 88px;
    height: 74px;
  }

  .mobile-product-card span,
  .mobile-product-card strong,
  .mobile-product-card small {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .mobile-vulclast-grid .vulclast-step {
    min-width: 0;
    min-height: 196px;
  }

  .mobile-vulclast-grid .vulclast-step__icon img,
  .mobile-vulclast-grid .vulclast-step__icon object {
    max-width: 100%;
    height: auto;
  }

  .mobile-sector-grid .solution-card,
  .mobile-accreditation-list .membership-card {
    min-width: 0;
  }

  .mobile-accreditation-list .membership-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .footer-cta,
  .footer-main {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-cta__card {
    padding: 1.25rem;
    border-radius: 1rem;
  }

  .footer-form__grid,
  .footer-main__grid {
    grid-template-columns: 1fr;
  }

  .footer-form__consent {
    align-items: flex-start;
  }

  .footer-form__consent span {
    color: #ffffff;
  }

  .footer-form .custom-btn,
  .footer-form button[type="submit"] {
    width: 100%;
    justify-content: center;
  }

  .footer-brand img {
    max-width: min(220px, 100%);
    height: auto;
  }
}

@media (max-width: 380px) {
  .mobile-home__inner,
  .mobile-reviews {
    width: min(100% - 22px, 520px);
  }

  .mobile-home-section {
    padding: 2.25rem 0;
  }

  .mobile-product-card {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.65rem;
  }

  .mobile-product-card img {
    width: 78px;
    height: 68px;
  }

  .mobile-product-card strong {
    font-size: 0.94rem;
  }

  .mobile-product-card small {
    font-size: 0.78rem;
  }

  .mobile-vulclast-grid,
  .mobile-sector-grid,
  .mobile-accreditation-list {
    grid-template-columns: 1fr;
  }

  .mobile-stat-grid {
    grid-template-columns: 1fr;
  }
}
