:root {
  --shell-primary: #0ba34e;
  --shell-primary-deep: #087a3b;
  --shell-accent: #f16136;
  --shell-accent-deep: #cc4a23;
  --shell-deep: #0f3f2d;
  --shell-soft: #f4fbf7;
  --shell-border: rgba(11, 163, 78, 0.16);
  --shell-shadow: 0 18px 40px rgba(15, 63, 45, 0.12);
  --shell-header-height: 92px;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  padding-top: var(--shell-header-height);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

#site-header,
#site-footer,
#site-breadcrumb {
  position: relative;
  z-index: 2;
}

#site-header {
  z-index: 2500;
}

#site-breadcrumb {
  z-index: 20;
}

#site-header .navbar,
#site-header .navbar * {
  box-sizing: border-box;
}

#site-header .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--shell-header-height);
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(239, 247, 250, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 163, 78, 0.12);
  transition: background 0.28s ease, box-shadow 0.28s ease, min-height 0.28s ease;
  z-index: 2500;
}

#site-header .navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(15, 63, 45, 0.12);
}

#site-header .navbar-desktop {
  justify-content: flex-start;
}

#site-header .navbar-mobile {
  display: none;
}

#site-header .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
}

#site-header .logo img {
  width: auto;
  height: 72px;
  max-width: 190px;
  object-fit: contain;
}

#site-header .nav-links,
#site-header .dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

#site-header .navbar-desktop .nav-links {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.5vw, 30px);
}

#site-header .nav-links > li {
  position: relative;
}

#site-header .nav-links > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: #244b39;
  text-decoration: none;
  font-family: "Montserrat", "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: clamp(0.82rem, 0.9vw, 0.96rem);
  line-height: 1.2;
  padding: 8px 0;
  position: relative;
  transition: color 0.25s ease;
}

#site-header .nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--shell-accent), var(--shell-primary));
  transition: transform 0.25s ease;
}

#site-header .nav-links > li > a:hover,
#site-header .nav-links > li > a:focus-visible,
#site-header .nav-links > li > a[style*="#ff7b00"] {
  color: var(--shell-accent) !important;
}

#site-header .nav-links > li > a:hover::after,
#site-header .nav-links > li > a:focus-visible::after,
#site-header .nav-links > li > a[style*="#ff7b00"]::after {
  transform: scaleX(1);
}

#site-header .nav-links > li.dropdown {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

#site-header .nav-links > li.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

#site-header .dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  display: block;
  min-width: min(360px, 88vw);
  max-width: 420px;
  max-height: 70vh;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid rgba(11, 163, 78, 0.14);
  border-radius: 18px;
  box-shadow: 0 22px 46px rgba(15, 63, 45, 0.18);
  padding: 10px 0;
  z-index: 2600;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

#site-header .dropdown:hover > .dropdown-menu,
#site-header .dropdown:focus-within > .dropdown-menu,
#site-header .dropdown.is-open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

#site-header .dropdown-menu li {
  width: 100%;
}

#site-header .dropdown-menu a {
  display: block;
  width: 100%;
  padding: 12px 18px;
  color: #2f3f36;
  font-family: "Poppins", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.45;
  white-space: normal;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

#site-header .dropdown-menu a:hover,
#site-header .dropdown-menu a:focus-visible {
  background: rgba(11, 163, 78, 0.08);
  color: var(--shell-accent);
}

#site-header .menu-toggle,
#site-header .overlay {
  display: none;
}

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

.shell-primary-heading {
  color: #214e39 !important;
  text-wrap: balance;
  white-space: normal !important;
  line-height: 1.12 !important;
}

.shell-breadcrumb-host {
  position: relative;
}

.shell-breadcrumb-slot {
  display: block !important;
  width: 100%;
}

.shell-breadcrumb-slot--hero {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 0 24px;
}

.shell-breadcrumb {
  background: transparent;
  border: 0;
}

.shell-breadcrumb__inner {
  width: fit-content;
  max-width: min(100%, 1320px);
  margin: 0;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(15, 63, 45, 0.12);
  color: #496153;
  font-family: "Poppins", sans-serif;
  font-size: 0.84rem;
  line-height: 1.35;
}

.shell-breadcrumb a,
.shell-breadcrumb span {
  color: inherit;
  text-decoration: none;
}

.shell-breadcrumb a:hover,
.shell-breadcrumb a:focus-visible {
  color: var(--shell-accent);
}

.shell-breadcrumb [aria-current="page"] {
  color: #214e39;
  font-weight: 700;
}

.shell-breadcrumb__sep {
  color: rgba(36, 75, 57, 0.5);
  font-size: 0.9em;
}

.shell-scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--shell-primary), #0878ba);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(8, 120, 186, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1300;
}

.shell-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.shell-floating-contact {
  position: fixed;
  right: 18px;
  bottom: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1250;
}

.shell-floating-contact__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 10px 6px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 51, 38, 0.08);
  box-shadow: 0 10px 18px rgba(15, 63, 45, 0.12);
  color: #254735;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration: none;
}

.shell-floating-contact__btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 63, 45, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  font-size: 22px;
}

.shell-floating-contact__btn:hover,
.shell-floating-contact__btn:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 26px rgba(15, 63, 45, 0.28);
  filter: saturate(1.06);
}

.shell-floating-contact__btn--info {
  background: linear-gradient(135deg, #f16136, #ff4d1a);
}

.shell-floating-contact__btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #12a150);
}

.shell-floating-contact__btn--call {
  background: linear-gradient(135deg, #0ba34e, #0878ba);
}

body > section:not(#hero-slider-section):not(#loader),
body > main,
body > article {
  scroll-margin-top: calc(var(--shell-header-height) + 20px);
}

.shell-catalog #services {
  margin-top: 0 !important;
  padding: clamp(64px, 7vw, 96px) clamp(20px, 4vw, 40px) !important;
  position: relative;
  overflow: hidden;
  color: #264235;
  background:
    radial-gradient(circle at top left, rgba(11, 163, 78, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0, 207, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #f6fcff 0%, #edf8f1 52%, #f9fcff 100%) !important;
}

.shell-catalog #services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='rgba(11,163,78,0.10)' stroke-width='1.2'%3E%3Cpath d='M20 80c16-34 42-52 78-52 14 0 28 2 42 7-12 30-40 47-83 50-12 1-24 0-37-5z'/%3E%3Cpath d='M52 110c8-15 24-26 48-31'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.65;
  pointer-events: none;
}

.shell-catalog .watermark-bg {
  display: none;
}

.catalog-shell {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
}

.catalog-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.catalog-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11, 163, 78, 0.1);
  color: var(--shell-primary-deep);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.catalog-heading h1 {
  margin: 0 0 16px;
  color: #374b95;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.1;
  text-shadow: 0 10px 22px rgba(55, 75, 149, 0.12);
}

.catalog-heading p {
  margin: 0 auto;
  color: #4a5c52;
  font-size: 1.08rem;
  line-height: 1.8;
}

.shell-catalog .product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 26px;
  align-items: start;
}

.shell-catalog .product-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
  min-height: 0;
  padding: 24px 26px 26px;
  border-radius: 22px;
  border: 1px solid rgba(11, 163, 78, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(21, 56, 40, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.shell-catalog .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(21, 56, 40, 0.14);
  border-color: rgba(241, 97, 54, 0.22);
}

.shell-catalog .product-card h3 {
  margin: 0 0 10px;
  color: #f16136;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.12rem, 1.28vw, 1.55rem);
  line-height: 1.14;
}

.shell-catalog .product-card p {
  margin: 0 0 14px;
  color: #425447;
  font-size: 0.98rem;
  line-height: 1.58;
}

.shell-catalog .product-card a {
  margin-top: 4px;
  text-decoration: none;
}

.shell-catalog .product-card__link,
.shell-catalog .product-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  margin-top: 4px;
  padding: 10px 20px;
  border: 0;
  border-radius: 10px;
  background: #405482;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  box-shadow: 0 14px 24px rgba(55, 75, 149, 0.18);
}

.shell-catalog .product-card__link:hover,
.shell-catalog .product-card button:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

.shell-about #about-hero {
  position: relative;
  min-height: clamp(380px, 54vh, 560px);
  padding: clamp(56px, 7vw, 88px) 20px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.shell-about #about-hero > .shell-breadcrumb-slot--hero {
  top: 8px;
}

.shell-about #about-hero .about-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: none;
  transform: none;
}

.shell-about #about-hero .about-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 34, 24, 0.84), rgba(10, 34, 24, 0.54) 48%, rgba(10, 34, 24, 0.36)),
    linear-gradient(180deg, rgba(6, 28, 19, 0.1), rgba(6, 28, 19, 0.34));
}

.shell-about .about-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-right: clamp(0px, 5vw, 68px);
  color: #fff;
}

.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #d8fff0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.shell-about .about-hero-content h1 {
  margin: 0 0 18px;
  max-width: none;
  width: fit-content;
  color: #fff !important;
  font-size: clamp(2.2rem, 3.6vw, 3.85rem);
  font-weight: 700;
  line-height: 1.04;
  white-space: nowrap !important;
  text-shadow: 0 10px 28px rgba(4, 18, 12, 0.34);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.shell-about .about-hero-content p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.06rem;
  line-height: 1.85;
}

.shell-about .about-hero-content a {
  color: #cffff0;
}

.shell-about #about-us {
  padding: clamp(58px, 7vw, 94px) 20px !important;
  color: #2f4036;
  background:
    radial-gradient(circle at top right, rgba(0, 207, 255, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(108, 192, 74, 0.16), transparent 32%),
    linear-gradient(135deg, #eef7ff 0%, #f8fcf8 100%) !important;
}

.about-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section__heading {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.about-section__heading h2 {
  margin: 0 0 16px;
  color: #374b95;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.about-section__heading p {
  margin: 0 auto;
  color: #435348;
  font-size: 1.08rem;
  line-height: 1.85;
}

.about-link {
  color: #f16136;
  font-weight: 700;
  text-decoration: none;
}

.about-highlight {
  color: #405482;
  font-weight: 700;
}

.about-signoff {
  display: inline-block;
  margin-top: 14px;
  color: #1c2a5b;
  font-style: italic;
  font-weight: 600;
}

.mission-vision-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 0 0 42px;
  padding: 0;
}

.mission-card,
.vision-card,
.about-feature-card,
.certification-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 163, 78, 0.1);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(26, 58, 43, 0.08);
}

.mission-card,
.vision-card {
  padding: 30px 28px;
  border-left: 6px solid #6cc04a;
}

.mission-card h3,
.vision-card h3,
.about-feature-card h3,
.certification-card h3 {
  margin: 0 0 14px;
  color: #374b95;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.18;
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.7rem;
}

.mission-card p,
.vision-card p,
.about-feature-card p,
.certification-card p {
  margin: 0;
  color: #435348;
  font-size: 1rem;
  line-height: 1.8;
}

.about-feature-grid,
.certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: start;
}

.about-feature-grid {
  margin-bottom: 42px;
}

.about-feature-card,
.certification-card {
  padding: 22px 22px;
}

.about-feature-card {
  min-height: 240px;
  color: #fff;
}

.about-feature-card--green {
  background: linear-gradient(135deg, #76c943, #8ad13f);
  border-color: rgba(118, 201, 67, 0.42);
}

.about-feature-card--blue {
  background: linear-gradient(135deg, #1fb5eb, #108fd2);
  border-color: rgba(31, 181, 235, 0.42);
}

.about-feature-card h3 {
  color: #fff;
  font-size: clamp(1.75rem, 2.2vw, 2.45rem);
  margin-bottom: 12px;
}

.about-feature-card p {
  color: rgba(255, 255, 255, 0.97);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.6;
}

.industry-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px 18px;
}

.industry-list li {
  color: #435348;
  line-height: 1.65;
}

.shell-about .shell-breadcrumb__inner {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  max-width: min(1180px, calc(100% - 40px));
}

.shell-about .shell-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.shell-about .shell-breadcrumb [aria-current="page"] {
  color: #fff;
}

.shell-about .shell-breadcrumb__sep {
  color: rgba(255, 255, 255, 0.4);
}

.certification-card figure {
  margin: 0;
  display: grid;
  gap: 16px;
}

.certification-card img {
  width: 100%;
  height: clamp(220px, 23vw, 340px);
  object-fit: cover;
  padding: 0;
  background: transparent;
  border-radius: 16px;
}

.certification-card figcaption {
  margin-top: 14px;
  color: #425447;
  line-height: 1.7;
}

.shell-detail > section:first-of-type {
  margin-top: 0 !important;
  padding-top: clamp(64px, 7vw, 94px) !important;
  padding-bottom: clamp(56px, 7vw, 88px) !important;
}

.shell-detail .shell-split-layout {
  width: min(1200px, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.shell-detail .shell-split-layout__copy h1,
.shell-detail .shell-split-layout__copy h2,
.shell-detail .shell-split-layout__copy h3 {
  white-space: normal !important;
  text-wrap: balance;
  line-height: 1.14 !important;
}

.shell-detail .shell-split-layout__copy p,
.shell-detail .shell-split-layout__copy li {
  color: #425447 !important;
  line-height: 1.8 !important;
}

.shell-stp-detail #stp-all {
  background: linear-gradient(135deg, #f2fbff 0%, #f8fcf8 100%) !important;
}

.shell-stp-detail .stp-container {
  max-width: 1200px;
  gap: clamp(24px, 3vw, 42px) !important;
  align-items: start !important;
}

.shell-stp-detail #stp-all > .stp-container {
  display: block !important;
  max-width: none !important;
  margin: 0 !important;
}

.shell-stp-detail .stp-container > .stp-container {
  margin-bottom: clamp(36px, 5vw, 58px) !important;
}

.shell-stp-detail .stp-intro-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr) !important;
  width: min(1200px, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-items: start !important;
  gap: 32px !important;
}

.shell-stp-detail .stp-intro-grid .stp-content,
.shell-stp-detail .stp-intro-grid .stp-image {
  min-width: 0 !important;
}

.shell-stp-detail .stp-image-grid {
  display: grid !important;
  gap: 18px !important;
}

.shell-stp-detail .stp-content h1 {
  white-space: nowrap !important;
  text-wrap: nowrap;
  line-height: 1.08 !important;
  max-width: none;
  font-size: clamp(2rem, 2.7vw, 2.55rem) !important;
}

.shell-stp-detail .stp-intro-grid .stp-image img {
  width: 100% !important;
  max-width: none !important;
  height: clamp(280px, 32vw, 410px) !important;
  object-fit: cover !important;
  border-radius: 24px !important;
  margin: 0 !important;
}

.shell-stp-detail .tech-text h2 {
  white-space: normal !important;
  text-wrap: balance;
  line-height: 1.08 !important;
  max-width: none;
  font-size: clamp(2rem, 3vw, 3rem) !important;
}

.shell-stp-detail .stp-content p,
.shell-stp-detail .stp-content li,
.shell-stp-detail .tech-text p,
.shell-stp-detail .tech-text li {
  color: #425447 !important;
  font-size: 1rem;
  line-height: 1.82 !important;
}

.shell-stp-detail .stp-content h3,
.shell-stp-detail .tech-text h4 {
  margin-top: 18px;
  margin-bottom: 10px;
  color: #132f24 !important;
  line-height: 1.3;
}

.shell-stp-detail .stp-technologies {
  width: min(1200px, 100%);
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: clamp(44px, 6vw, 72px) !important;
}

.shell-stp-detail .tech-box {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr) !important;
  gap: clamp(24px, 3vw, 48px) !important;
  align-items: start !important;
  margin-bottom: clamp(44px, 6vw, 70px) !important;
}

.shell-stp-detail .tech-text {
  min-width: 0 !important;
  order: 1;
}

.shell-stp-detail .tech-img {
  min-width: 0 !important;
  order: 2;
  text-align: center !important;
  align-self: start;
}

.shell-stp-detail .tech-box.reverse .tech-img {
  order: 1;
}

.shell-stp-detail .tech-box.reverse .tech-text {
  order: 2;
}

.shell-stp-detail .tech-img img {
  max-width: min(100%, 470px) !important;
  margin-inline: auto;
}

.shell-stp-detail .tech-img p {
  max-width: 470px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

@media (max-width: 1480px) and (min-width: 769px) {
  .shell-floating-contact__label {
    display: none;
  }
}

.site-footer {
  background: linear-gradient(135deg, #e8fdf3, #f7fff9, #d6fdea);
  color: #333;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.site-footer__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(7, 214, 122, 0.12), transparent 60%),
    radial-gradient(circle at bottom right, rgba(11, 163, 78, 0.12), transparent 60%);
  z-index: 0;
}

.site-footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(350px, 1.05fr) minmax(340px, 1.15fr);
  gap: 48px;
  padding: 44px 20px 26px;
  position: relative;
  z-index: 1;
  align-items: start;
}

.site-footer__brand,
.site-footer__links,
.site-footer__contact {
  min-width: 0;
}

.site-footer__brand {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer__brand img {
  width: min(220px, 100%);
  margin-bottom: 0;
}

.site-footer__brand p,
.site-footer__contact p {
  color: #425447;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 14px;
}

.site-footer__title {
  color: var(--shell-accent);
  font-size: 24px;
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0.4px;
  margin: 0 0 16px;
}

.site-footer__brochure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 38px;
  padding: 9px 15px;
  margin-bottom: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--shell-primary), #0aa9a7);
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(11, 163, 78, 0.18);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer__links--products .site-footer__list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 12px;
}

.site-footer__links--services .site-footer__list {
  grid-template-columns: 1fr;
}

.site-footer__links--services {
  padding-left: clamp(12px, 1.7vw, 28px);
}

.site-footer__list--products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 12px;
}

.site-footer__list li {
  min-width: 0;
}

.site-footer__list a,
.site-footer__contact a,
.site-footer__brand a,
.site-footer__bottom a {
  color: #26533b;
  line-height: 1.55;
  text-decoration: none;
}

.site-footer__list a {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 500;
}

.site-footer__list a::before {
  content: "\203A";
  flex: 0 0 auto;
  color: #214e39;
  font-size: 1.5rem;
  line-height: 1;
  margin-top: -1px;
}

.site-footer__list a:hover,
.site-footer__contact a:hover,
.site-footer__brochure:hover,
.site-footer__bottom a:hover {
  color: var(--shell-accent);
}

.site-footer__social-wrap {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.site-footer__social-label {
  color: #214e39;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}

.site-footer__socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #32503f;
  background: rgba(255, 255, 255, 0.78);
  font-size: 24px;
  transition: transform 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 18px rgba(11, 163, 78, 0.12);
}

.site-footer__socials a:hover {
  color: var(--shell-accent);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 24px rgba(241, 97, 54, 0.16);
}

.site-footer__contact {
  display: grid;
  gap: 18px;
  margin-top: 0;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(11, 163, 78, 0.1);
  box-shadow: 0 14px 30px rgba(15, 63, 45, 0.06);
}

.site-footer__info-block {
  padding: 16px 16px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(11, 163, 78, 0.1);
  box-shadow: none;
}

.site-footer__info-block strong {
  display: inline-block;
  margin-bottom: 8px;
  color: #214e39;
  font-size: 1rem;
}

.site-footer__info-block p {
  margin: 0;
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 16px 20px;
  background: linear-gradient(90deg, #6cc04a, #00cfff, #3a8e3d);
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer__bottom small {
  display: block;
  font-size: 13px;
  color: #f4fffb;
}

.site-footer__bottom a {
  color: #fff;
}

.shell-split-layout {
  align-items: flex-start !important;
  gap: clamp(22px, 3vw, 40px) !important;
}

.shell-split-layout__copy {
  flex: 1.2 1 420px !important;
  min-width: min(100%, 360px) !important;
}

.shell-split-layout__media {
  flex: 0.88 1 300px !important;
  min-width: min(100%, 280px) !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: flex-start;
}

.shell-split-layout__media img {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.shell-split-layout__media--stacked {
  gap: 8px;
}

.shell-quote-slot {
  width: 100%;
  text-align: center !important;
  margin: 28px 0 18px !important;
}

.quote-btn,
.shell-quote-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 320px);
  text-align: center;
  line-height: 1.35;
  box-shadow: 0 14px 30px rgba(0, 128, 187, 0.18);
}

@media (max-width: 1180px) {
  #site-header .navbar-desktop .nav-links {
    gap: 12px;
  }

  #site-header .nav-links > li > a {
    font-size: 0.75rem;
    letter-spacing: 0.6px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  }

  .site-footer__links--services {
    grid-column: 1 / -1;
    padding-left: 0;
  }

  .site-footer__list--products,
  .site-footer__links--services .site-footer__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shell-catalog .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shell-stp-detail .stp-intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr) !important;
  }

  .shell-stp-detail .tech-box {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.88fr) !important;
  }
}

@media (max-width: 980px) {
  .shell-catalog .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --shell-header-height: 78px;
  }

  body {
    padding-top: var(--shell-header-height);
  }

  #site-header .navbar {
    min-height: var(--shell-header-height);
    padding: 8px 14px;
    gap: 10px;
  }

  #site-header .navbar-desktop {
    display: none;
  }

  #site-header .navbar-mobile {
    display: flex;
    justify-content: space-between;
  }

  #site-header .logo img {
    height: 60px;
    max-width: 150px;
  }

  #site-header .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(11, 163, 78, 0.1);
    color: #204735;
    font-size: 22px;
    cursor: pointer;
  }

  #site-header .navbar-mobile .nav-links {
    position: fixed;
    top: 0;
    left: -302px;
    width: 286px;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 86px 14px 26px;
    background: rgba(248, 252, 250, 0.98);
    box-shadow: 18px 0 34px rgba(15, 63, 45, 0.18);
    transition: left 0.25s ease;
    z-index: 2550;
  }

  #site-header .navbar-mobile .nav-links.active {
    left: 0;
  }

  #site-header .navbar-mobile .nav-links > li {
    width: 100%;
  }

  #site-header .navbar-mobile .nav-links > li.dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  #site-header .navbar-mobile .nav-links > li.dropdown::after {
    display: none;
  }

  #site-header .navbar-mobile .nav-links > li > a {
    width: 100%;
    justify-content: space-between;
    color: #244b39;
    text-align: left;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(11, 163, 78, 0.08);
  }

  #site-header .navbar-mobile .nav-links > li > a::after {
    display: none;
  }

  #site-header .navbar-mobile .dropdown-menu {
    position: static;
    display: none;
    min-width: 100%;
    max-width: 100%;
    max-height: none;
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    box-shadow: none;
    background: rgba(11, 163, 78, 0.05);
    padding: 6px 0;
    margin: 6px 0 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  #site-header .navbar-mobile .dropdown-menu.show {
    display: block;
  }

  #site-header .navbar-mobile .dropdown-menu a {
    padding: 10px 14px 10px 18px;
    font-size: 0.95rem;
  }

  #site-header .arrow {
    font-size: 12px;
    transition: transform 0.25s ease;
  }

  #site-header .arrow.rotate {
    transform: rotate(180deg);
  }

  #site-header .overlay {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(10, 18, 13, 0.45);
    z-index: 2540;
  }

  #site-header .overlay.show {
    display: block;
  }

  .shell-primary-heading {
    white-space: normal !important;
    font-size: clamp(1.55rem, 6vw, 2.2rem) !important;
    line-height: 1.2 !important;
  }

  .shell-breadcrumb-slot--hero {
    top: 12px;
    padding: 0 14px;
  }

  .shell-breadcrumb__inner {
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .catalog-heading {
    margin-bottom: 30px;
  }

  .catalog-heading p,
  .about-section__heading p,
  .shell-about .about-hero-content p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .shell-about .about-hero-content h1 {
    width: auto;
    white-space: normal !important;
  }

  .shell-floating-contact {
    right: 14px;
    bottom: 72px;
    gap: 10px;
  }

  .shell-floating-contact__label {
    min-height: 110px;
    font-size: 0.82rem;
  }

  .shell-floating-contact__btn {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .shell-quote-slot {
    margin: 22px 0 14px !important;
  }

  .quote-btn,
  .shell-quote-btn {
    width: min(100%, 100%);
    min-width: 0;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 26px;
    padding: 42px 16px 28px;
  }

  .site-footer__links--services {
    padding-left: 0;
  }

  .site-footer__list--products,
  .site-footer__links--services .site-footer__list,
  .about-feature-grid,
  .certification-grid,
  .shell-stp-detail .stp-intro-grid {
    grid-template-columns: 1fr;
  }

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

  .shell-about #about-hero {
    min-height: auto;
    align-items: center;
  }

  .shell-about #about-hero > .shell-breadcrumb-slot--hero {
    top: 10px;
  }

  .shell-about .about-hero-content {
    padding-right: 0;
  }

  .mission-card,
  .vision-card,
  .about-feature-card,
  .certification-card {
    padding: 22px 20px;
  }

  .about-feature-card {
    min-height: auto;
  }

  .shell-stp-detail .stp-content h1 {
    white-space: normal !important;
    text-wrap: balance;
  }

  .shell-stp-detail .tech-box {
    grid-template-columns: 1fr !important;
  }

  .shell-stp-detail .tech-img,
  .shell-stp-detail .tech-box.reverse .tech-img,
  .shell-stp-detail .tech-box.reverse .tech-text {
    order: initial;
  }
}
