:root {
  --blue-900: #072b57;
  --blue-800: #0a4388;
  --blue-700: #0d62bd;
  --blue-100: #eaf4ff;
  --green-600: #35a853;
  --green-100: #e9f8ee;
  --ink: #172033;
  --muted: #637083;
  --line: #dce5ef;
  --panel: #f7fafc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 43, 87, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(220, 229, 239, 0.8);
}

.top-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.86);
  background: var(--blue-900);
  font-size: 0.82rem;
  font-weight: 700;
}

.top-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.top-contact a,
.contact-cards a,
.footer-widget a,
.footer-widget span {
  position: relative;
}

.top-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-contact a::before {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--blue-900);
  border-radius: 50%;
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.top-contact a[href^="mailto:"]::before {
  content: "\2709";
}

.top-contact a[href^="tel:"]::before {
  content: "\260E";
}

.top-contact a:hover {
  color: var(--white);
}

.site-header {
  position: relative;
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 229, 239, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width:165px;
  
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-700), var(--green-600));
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(13, 98, 189, 0.2);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--blue-900);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: #34445a;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.primary-nav a.active {
  color: var(--blue-900);
}

.primary-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-900);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(7, 43, 87, 0.97), rgba(10, 67, 136, 0.9)),
    radial-gradient(circle at 82% 18%, rgba(53, 168, 83, 0.34), transparent 34%);
}

.hero::after {
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  content: "";
  border: 70px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.hero-slider {
  position: relative;
  min-height: 680px;
}

.homepage-hero .hero-slider {
  min-height: 720px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: 100%;
  padding: 84px clamp(18px, 5vw, 72px) 104px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(40px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9af0ad;
}

.hero h1,
.hero h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.45rem, 5vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h2 {
  font-size: clamp(2.35rem, 4.6vw, 4.9rem);
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-actions,
.slider-controls,
.product-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 34px;
  padding-bottom: 58px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--blue-700));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 370px;
}

.hero-visual-logo img,
.product-spotlight {
  width: min(100%, 620px);
  padding: clamp(18px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.product-spotlight {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.product-spotlight img {
  width: min(86%, 390px);
  max-height: 410px;
  object-fit: contain;
}

.product-spotlight span {
  color: var(--blue-900);
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-product-cluster {
  position: relative;
  z-index: 2;
  min-height: 480px;
}

.cluster-card {
  position: absolute;
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #eef7ff);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.cluster-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cluster-card span {
  color: var(--blue-900);
  font-weight: 900;
}

.cluster-main {
  right: 12%;
  bottom: 20px;
  width: min(78%, 420px);
  height: 390px;
}

.cluster-small {
  width: 190px;
  height: 190px;
}

.top-card {
  top: 10px;
  right: 0;
}

.bottom-card {
  bottom: 0;
  left: 0;
}

.hero-product-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  align-content: center;
  justify-items: center;
  min-height: 420px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #eaf4ff);
  box-shadow: var(--shadow);
}

.hero-product-panel img {
  max-height: 330px;
  object-fit: contain;
}

.hero-product-panel strong,
.hero-product-panel span {
  display: block;
  text-align: center;
}

.hero-product-panel strong {
  color: var(--blue-900);
  font-size: 1.3rem;
}

.hero-product-panel span {
  color: var(--muted);
}

.hero-product-panel-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-product-panel-split img {
  max-height: 310px;
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  right: clamp(18px, 5vw, 72px);
  left: auto;
  z-index: 3;
}

.slider-arrow,
.round-btn {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.slider-dots {
  display: flex;
  gap: 9px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.slider-dot.is-active {
  width: 28px;
  background: var(--white);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.home-proof-band {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #ffffff, #f4f9fd);
  box-shadow: 0 18px 50px rgba(7, 43, 87, 0.08);
}

.home-proof-band article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 128px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 244, 255, 0.85));
  box-shadow: 0 10px 28px rgba(7, 43, 87, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-proof-band article:hover {
  border-color: rgba(53, 168, 83, 0.38);
  box-shadow: 0 18px 38px rgba(7, 43, 87, 0.13);
  transform: translateY(-4px);
}

.home-proof-band span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--blue-700));
  font-weight: 900;
}

.home-proof-band strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.2rem;
}

.home-proof-band p {
  margin: 4px 0 0;
  color: var(--muted);
}

.trust-band div {
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--white);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  color: var(--blue-900);
  font-size: 1.05rem;
}

.trust-band span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: clamp(36px, 5vw, 64px) clamp(18px, 5vw, 72px);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 12vw, 26px) clamp(18px, 5vw, 72px);
  color: var(--white);
  
  background:
    linear-gradient(100deg, rgba(7, 43, 87, 0.98), rgba(13, 98, 189, 0.9)),
    radial-gradient(circle at 84% 20%, rgba(53, 168, 83, 0.32), transparent 32%);
}

.page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  content: "";
  border: 58px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.page-hero .eyebrow {
  color: #9af0ad;
}

.page-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.compact-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.support-panel h2,
.contact-copy h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr) minmax(260px, 0.55fr);
  gap: 22px;
  align-items: stretch;
}

.home-about-grid {
  align-items: stretch;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--blue-700);
  font-weight: 900;
}

.home-about-feature {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 58%, #f0f7ff 58%, #f0f7ff 100%);
}

.about-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  max-width: 1180px;
}

.about-copy-feature {
  padding: clamp(26px, 4vw, 38px);
}

.about-image-card {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 35%, rgba(53, 168, 83, 0.16), transparent 28%),
    linear-gradient(160deg, #ffffff, #e8f4ff);
  box-shadow: var(--shadow);
}

.about-image-card img {
  position: relative;
  z-index: 2;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 26px 28px rgba(7, 43, 87, 0.18));
}

.about-image-orbit {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 54px solid rgba(13, 98, 189, 0.09);
  border-radius: 50%;
}

.about-image-caption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 18px;
  color: var(--blue-900);
  border: 1px solid rgba(220, 229, 239, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.about-image-caption strong {
  font-size: 1.1rem;
}

.about-image-caption span {
  color: var(--muted);
}

.core-values-section {
  background: var(--panel);
}

.core-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.core-value-grid article {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(7, 43, 87, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.core-value-grid article::after {
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 120px;
  height: 120px;
  content: "";
  border: 26px solid rgba(53, 168, 83, 0.1);
  border-radius: 50%;
}

.core-value-grid article:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.core-value-grid span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 5px 10px;
  color: var(--green-600);
  border-radius: 999px;
  background: var(--green-100);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.core-value-grid h3 {
  margin: 22px 0 10px;
  color: var(--blue-900);
  font-size: 1.4rem;
  line-height: 1.16;
}

.core-value-grid p {
  margin: 0;
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.rich-copy h2 {
  margin: 0 0 20px;
  color: var(--blue-900);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.14;
}

.rich-copy p {
  margin: 0;
  color: var(--muted);
}

.rich-copy p + p {
  margin-top: 18px;
}

.highlight-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, var(--blue-100));
  box-shadow: var(--shadow);
}

.highlight-panel p {
  margin: 0;
  color: var(--blue-900);
  font-size: 1.1rem;
  font-weight: 900;
  text-align: center;
}

.history-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(19, 104, 185, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(48, 169, 83, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff, #f5fbff);
  box-shadow: var(--shadow);
}

.history-card::after {
  position: absolute;
  right: -54px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  content: "";
  border: 28px solid rgba(19, 104, 185, 0.07);
  border-radius: 50%;
}

.history-card h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: var(--blue-900);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.history-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.history-timeline article {
  position: relative;
  padding: 0 0 0 28px;
}

.history-timeline article::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 0 0 2px rgba(19, 104, 185, 0.16);
}

.history-timeline article::after {
  position: absolute;
  top: 24px;
  bottom: -16px;
  left: 8px;
  width: 1px;
  content: "";
  background: var(--line);
}

.history-timeline article:last-child::after {
  display: none;
}

.history-timeline span {
  display: block;
  color: var(--green-600);
  font-size: 0.8rem;
  font-weight: 900;
}

.history-timeline strong {
  display: block;
  margin: 2px 0 4px;
  color: var(--blue-900);
}

.history-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.mission-vision-section {
  background: var(--panel);
}

.mission-vision-grid,
.advantage-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
}

.mission-vision-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mission-vision-grid article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 43, 87, 0.08);
}

.mission-vision-grid article::after {
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 130px;
  height: 130px;
  content: "";
  border: 22px solid rgba(48, 169, 83, 0.08);
  border-radius: 50%;
}

.mission-vision-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--blue-700));
  font-weight: 900;
}

.mission-vision-grid h3,
.advantage-grid h3 {
  margin: 20px 0 10px;
  color: var(--blue-900);
}

.mission-vision-grid p,
.advantage-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.core-advantages-section {
  background: var(--white);
}

.advantage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.advantage-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(19, 104, 185, 0.08), transparent 34%),
    #f9fcff;
  box-shadow: 0 10px 26px rgba(7, 43, 87, 0.07);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.advantage-grid article:hover {
  box-shadow: 0 18px 40px rgba(7, 43, 87, 0.12);
  transform: translateY(-5px);
}

.advantage-grid span {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--blue-900);
  border: 8px solid var(--white);
  border-radius: 50%;
  background: #eaf6ff;
  box-shadow: 0 12px 24px rgba(7, 43, 87, 0.12);
  font-weight: 900;
}

.values-section {
  background: var(--panel);
}

.value-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.value-grid article,
.process-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(7, 43, 87, 0.06);
}

.value-grid article {
  position: relative;
  min-height: 340px;
  padding: 30px 24px 28px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 8%, rgba(44, 156, 155, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff, #f9fcff);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.value-grid article::after {
  position: absolute;
  inset: auto -40px -64px auto;
  width: 140px;
  height: 140px;
  content: "";
  border: 22px solid rgba(48, 169, 83, 0.08);
  border-radius: 50%;
}

.value-grid article:hover {
  border-color: rgba(44, 156, 155, 0.45);
  box-shadow: 0 18px 38px rgba(7, 43, 87, 0.12);
  transform: translateY(-5px);
}

.value-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 50%;
  background: #eef7ff;
  box-shadow:
    0 14px 28px rgba(7, 43, 87, 0.14),
    0 0 0 1px rgba(19, 104, 185, 0.12);
}

.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.24s ease;
}

.value-grid article:hover .value-icon img {
  transform: scale(1.16);
}

.value-grid h3,
.process-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--blue-900);
}

.value-grid p,
.process-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--blue-700));
  border-radius: 50%;
  font-weight: 900;
}

.about-copy,
.mission-card,
.application-grid article,
.product-card,
.inquiry-form,
.contact-cards a,
.contact-cards div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(7, 43, 87, 0.06);
}

.about-copy {
  padding: 30px;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
}

.about-copy p + p {
  margin-top: 18px;
}

.mission-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--blue-100);
}

.mission-card-alt {
  background: var(--green-100);
}

.mission-card span {
  color: var(--blue-900);
  font-weight: 900;
}

.mission-card p {
  margin: 28px 0 0;
  color: #3b4b60;
}

.products-section {
  overflow: hidden;
  background: var(--panel);
}

.product-toolbar {
  justify-content: flex-end;
  max-width: 1240px;
  margin: 0 auto 18px;
}

.round-btn {
  color: var(--blue-900);
  border-color: var(--line);
  background: var(--white);
}

.product-slider {
  display: grid;
  grid-auto-columns: minmax(280px, 1fr);
  grid-auto-flow: column;
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.premium-product-slider {
  grid-auto-columns: minmax(310px, 1fr);
}

.premium-product-card {
  position: relative;
  min-width: min(82vw, 360px);
  color: inherit;
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.premium-product-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  content: ">";
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--blue-700));
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.premium-product-card:hover {
  border-color: rgba(53, 168, 83, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.premium-product-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.premium-product-card .product-image {
  min-height: 300px;
}

.premium-product-card .product-image img {
  height: 255px;
}

.premium-product-card:hover .product-image {
  background:
    radial-gradient(circle at 50% 36%, rgba(53, 168, 83, 0.12), transparent 36%),
    linear-gradient(180deg, #ffffff, #e8f4ff);
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-card {
  display: grid;
  min-width: min(88vw, 380px);
  overflow: hidden;
  scroll-snap-align: start;
}

.product-image {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #edf6ff);
}

.product-image img {
  width: 84%;
  height: 230px;
  object-fit: contain;
  transition: transform 200ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-content {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.product-content span {
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-content h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 1.5rem;
  line-height: 1.18;
}

.product-content p {
  margin: 0;
  color: var(--muted);
}

.product-content a {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  color: var(--blue-700);
  font-weight: 900;
}

.product-content .product-detail-link {
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-600), var(--blue-700));
  box-shadow: 0 12px 24px rgba(7, 43, 87, 0.12);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.product-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-detail-card {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
}

.product-detail-card .product-image {
  min-height: 100%;
}

.product-detail-card .product-content h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: 1.65rem;
  line-height: 1.14;
}

.product-content ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.product-detail-hero {
  background:
    linear-gradient(100deg, rgba(7, 43, 87, 0.98), rgba(13, 98, 189, 0.92)),
    radial-gradient(circle at 82% 24%, rgba(53, 168, 83, 0.3), transparent 34%);
}

.product-detail-hero .detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.breadcrumb-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.detail-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.detail-hero-media {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 52% 44%, rgba(255, 255, 255, 0.8), transparent 44%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.detail-hero-media img {
  width: min(94%, 430px);
  max-height: 360px;
  object-fit: contain;
}

.detail-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.detail-stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(7, 43, 87, 0.07);
}

.detail-stat span {
  display: block;
  margin-bottom: 7px;
  color: var(--green-600);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-stat strong {
  color: var(--blue-900);
  font-size: 1.04rem;
}

.product-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.55fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.product-overview-copy {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 43, 87, 0.08);
}

.product-overview-copy h2,
.detail-section-title h2 {
  margin: 0 0 14px;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.product-overview-copy p {
  margin: 0;
  color: var(--muted);
}

.product-overview-note {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.product-overview-note h3 {
  margin: 0;
  color: var(--white);
}

.product-overview-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.feature-grid-detail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-grid-detail li {
  position: relative;
  min-height: 150px;
  padding: 22px 20px 20px 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 43, 87, 0.06);
  color: var(--muted);
  list-style: none;
}

.feature-grid-detail li::before {
  position: absolute;
  top: 22px;
  left: 18px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--blue-700));
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.82);
}

.detail-section-title {
  max-width: 940px;
  margin: 0 auto 28px;
  text-align: center;
}

.detail-section-title p {
  margin: 0;
  color: var(--muted);
}

.spec-table-wrap {
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 43, 87, 0.08);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.spec-table th {
  width: 34%;
  color: var(--blue-900);
  background: #f4f9ff;
  font-weight: 900;
}

.spec-table td {
  color: var(--muted);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.configuration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.72fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.configuration-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 43, 87, 0.08);
}

.configuration-card h2 {
  margin: 0 0 18px;
  color: var(--blue-900);
}

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

.configuration-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.configuration-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--green-600);
  transform: translateY(-50%);
}

.product-detail-cta {
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.product-detail-cta h2 {
  max-width: 760px;
  margin: 0 auto 14px;
  color: var(--white);
}

.product-detail-cta p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.78);
}

.applications-section {
  background: var(--white);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.application-grid article {
  min-height: 210px;
  padding: 26px;
}

.application-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue-900);
  font-weight: 900;
  background: var(--green-100);
  border-radius: 50%;
}

.application-grid h3 {
  margin: 22px 0 10px;
  color: var(--blue-900);
  line-height: 1.2;
}

.application-grid p {
  margin: 0;
  color: var(--muted);
}

.industries-section {
  background: linear-gradient(180deg, var(--blue-100), #ffffff);
}

.industries-visual-section {
  background:
    linear-gradient(180deg, #ffffff, #f4f9fd);
}

.industry-circle-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.industry-circle-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 300px;
  padding: 22px 16px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(7, 43, 87, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.industry-circle-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.industry-circle {
  display: grid;
  width: 134px;
  height: 134px;
  place-items: center;
  overflow: hidden;
  border: 10px solid var(--blue-100);
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #eaf4ff);
}

.industry-circle img {
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
}

.industry-circle-card h3 {
  margin: 8px 0 0;
  color: var(--blue-900);
  font-size: 1.04rem;
  line-height: 1.2;
}

.industry-circle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.industry-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 16px;
  color: #243449;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.industry-list-large {
  max-width: 1120px;
}

.industry-list-large span {
  min-height: 58px;
  padding: 14px 22px;
}

.client-logos {
  overflow: hidden;
  padding: 78px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.client-logos .section-heading {
  padding: 0 18px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
}

.logo-marquee::before,
.logo-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  content: "";
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: marquee 34s linear infinite;
}

.logo-track img {
  width: 180px;
  height: 86px;
  padding: 14px 20px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.support-section {
  background: #444546;
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--white);
}

.support-panel h2 {
  color: var(--white);
}

.support-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.support-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.support-list li {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.support-panel-btn {
  margin-top: 22px;
}

.support-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.support-contact-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 300px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 8%, rgba(48, 169, 83, 0.12), transparent 32%),
    var(--white);
  box-shadow: 0 14px 34px rgba(7, 43, 87, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.support-contact-card::after {
  position: absolute;
  right: -46px;
  bottom: -54px;
  width: 138px;
  height: 138px;
  content: "";
  border: 24px solid rgba(19, 104, 185, 0.07);
  border-radius: 50%;
}

.support-contact-card:hover {
  border-color: rgba(44, 156, 155, 0.42);
  box-shadow: 0 22px 46px rgba(7, 43, 87, 0.13);
  transform: translateY(-5px);
}

.support-card-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--blue-700));
  box-shadow: 0 12px 24px rgba(7, 43, 87, 0.16);
  font-weight: 900;
}

.support-contact-card h3 {
  margin: 6px 0 0;
  color: var(--blue-900);
  font-size: 1.35rem;
}

.support-contact-card p {
  margin: 0;
  color: var(--muted);
}

.support-contact-card a {
  position: relative;
  z-index: 1;
  color: var(--blue-900);
  overflow-wrap: anywhere;
  font-weight: 900;
}

.support-whatsapp {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 10px 16px;
  color: var(--white) !important;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-600), var(--blue-700));
}

.support-faq-section {
  background: var(--panel);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 43, 87, 0.06);
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  color: var(--blue-900);
  font-size: 1.08rem;
  font-weight: 900;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  content: "+";
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--blue-700));
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 52%, #eef7ff 52%, #eef7ff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.74fr);
  gap: clamp(28px, 5vw, 58px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
}

.office-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(19, 104, 185, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(48, 169, 83, 0.12), transparent 34%),
    var(--white);
  box-shadow: 0 18px 42px rgba(7, 43, 87, 0.08);
}

.office-card-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--green-600));
  box-shadow: 0 12px 24px rgba(7, 43, 87, 0.18);
  font-size: 1.35rem;
  font-weight: 900;
}

.office-card h3 {
  margin: 0 0 10px;
  color: var(--blue-900);
  font-size: 1.28rem;
}

.office-card address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.75;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-section .contact-cards,
.contact-card-list {
  grid-template-columns: 1fr;
}

.contact-cards a,
.contact-cards div {
  display: grid;
  min-height: 92px;
  align-content: center;
  padding: 16px;
  color: var(--blue-900);
  overflow-wrap: anywhere;
  font-weight: 800;
}

.contact-cards a {
  grid-template-columns: 46px 1fr;
  column-gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-cards a:hover {
  border-color: rgba(44, 156, 155, 0.42);
  box-shadow: 0 16px 30px rgba(7, 43, 87, 0.1);
  transform: translateY(-3px);
}

.contact-cards a::before {
  grid-row: 1 / span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  align-self: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--blue-700));
  font-size: 1rem;
  font-weight: 900;
}

.contact-cards a[href^="mailto:"]::before {
  content: "\2709";
}

.contact-cards a[href^="tel:"]::before {
  content: "\260E";
}

.contact-cards span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-person-card {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 18px 20px;
  border-left: 4px solid var(--green-600);
  border-radius: 8px;
  background: #f6fbff;
}

.contact-person-card span {
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-person-card strong {
  color: var(--blue-900);
  font-size: 1.2rem;
}

.contact-person-card p {
  margin: 0;
  color: var(--muted);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 20px;
  padding: 12px 20px;
  color: var(--white);
  border-radius: 8px;
  background: var(--green-600);
  font-weight: 900;
}

.contact-form-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(19, 104, 185, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(7, 43, 87, 0.12);
}

.contact-form-panel::before {
  display: block;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--green-600), var(--blue-700));
}

.inquiry-form {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form-panel .inquiry-form {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.inquiry-form .eyebrow {
  margin-bottom: -8px;
}

.inquiry-form h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 1.7rem;
}

.inquiry-form label {
  display: grid;
  gap: 6px;
  color: #304056;
  font-size: 0.9rem;
  font-weight: 900;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(180deg, #06284f, #041d3c);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.footer-cta div {
  display: grid;
  gap: 4px;
}

.footer-cta span {
  color: #9af0ad;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-cta strong {
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.22;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(170px, 0.75fr));
  gap: 0;
  padding: 46px clamp(18px, 5vw, 72px);
}

.footer-main.no-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widget {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-widget:first-child {
  padding-left: 0;
}

.footer-widget:last-child {
  padding-right: 0;
  border-right: 0;
}

.footer-widget h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.22rem;
  line-height: 1.2;
}

.footer-widget a,
.footer-widget span,
.footer-widget p {
  color: rgba(255, 255, 255, 0.76);
}

.footer-widget:not(.footer-brand) a,
.footer-widget:not(.footer-brand) span {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-widget:not(.footer-brand) a::before,
.footer-widget:not(.footer-brand) span::before {
  display: inline-grid;
  width: 7px;
  height: 7px;
  margin-top: 0.55em;
  flex: 0 0 auto;
  content: "";
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 0 0 4px rgba(53, 168, 83, 0.1);
}

.footer-widget a[href^="mailto:"]::before,
.footer-widget a[href^="tel:"]::before {
  width: 24px;
  height: 24px;
  margin-top: 0;
  place-items: center;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  font-size: 0.78rem;
  font-weight: 900;
}

.footer-widget a[href^="mailto:"]::before {
  content: "\2709";
}

.footer-widget a[href^="tel:"]::before {
  content: "\260E";
}

.footer-widget a:hover {
  color: var(--white);
}

.footer-brand p {
  max-width: 340px;
  margin: 12px 0 0;
}

.footer-logo {
  min-width: 0;
}

.footer-logo .brand-copy strong,
.footer-logo .brand-copy span {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .top-header {
    flex-direction: column;
    gap: 6px;
  }

  .top-contact {
    justify-content: flex-start;
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    position: static;
    z-index: 40;
    flex: 0 0 auto;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .homepage-hero .hero-slider {
    min-height: 1060px;
  }

  .hero-product-cluster {
    min-height: 430px;
  }

  .cluster-main {
    right: 8%;
    width: min(78%, 390px);
  }

  .cluster-small {
    width: 168px;
    height: 168px;
  }

  .hero-product-panel {
    min-height: 360px;
  }

  .hero-visual {
    min-height: 280px;
  }

  .contact-section {
    background: var(--white);
  }

  .product-detail-hero .detail-hero-grid,
  .product-overview-grid,
  .about-grid,
  .application-grid,
  .support-panel,
  .contact-grid,
  .two-column,
  .product-page-grid,
  .value-grid,
  .process-grid,
  .about-feature-grid,
  .core-value-grid {
    grid-template-columns: 1fr;
  }

  .home-proof-band {
    grid-template-columns: 1fr;
  }

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

  .mission-vision-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-stat-grid,
  .feature-grid-detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-circle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .footer-widget {
    padding: 0 22px 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .footer-widget:first-child {
    padding-left: 22px;
  }

  .footer-widget:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .brand {
    min-width: 0;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .office-card {
    grid-template-columns: 1fr;
  }

  .contact-cards a {
    grid-template-columns: 36px 1fr;
    column-gap: 10px;
    font-size: 0.9rem;
  }

  .contact-cards a::before {
    width: 36px;
    height: 36px;
    font-size: 0.88rem;
  }

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

  .detail-hero-media {
    min-height: 300px;
  }

  .detail-stat-grid,
  .feature-grid-detail,
  .configuration-grid {
    grid-template-columns: 1fr;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table th {
    padding-bottom: 6px;
    border-bottom: 0;
  }

  .spec-table td {
    padding-top: 6px;
  }

  .site-header {
    width: 100vw;
  }

  .top-header {
    padding-right: 72px;
    font-size: 0.74rem;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy span {
    font-size: 0.68rem;
  }

  .hero-slider {
    min-height: 930px;
  }

  .homepage-hero .hero-slider {
    min-height: 1040px;
  }

  .hero-slide {
    padding-bottom: 92px;
  }

  .hero h1,
  .hero h2,
  .eyebrow {
    overflow-wrap: anywhere;
  }

  .hero-visual {
    min-height: 220px;
  }

  .hero-visual-logo img,
  .product-spotlight {
    width: calc(100vw - 48px);
    max-width: 342px;
    padding: 16px;
  }

  .hero-product-cluster {
    min-height: 350px;
  }

  .cluster-main {
    right: 0;
    bottom: 0;
    width: 78%;
    height: 280px;
  }

  .cluster-small {
    width: 132px;
    height: 132px;
    padding: 14px;
  }

  .top-card {
    right: 4px;
  }

  .bottom-card {
    left: 0;
  }

  .hero-product-panel,
  .hero-product-panel-split {
    grid-template-columns: 1fr;
    min-height: 330px;
    padding: 18px;
  }

  .hero-product-panel img {
    max-height: 210px;
  }

  .home-proof-band {
    padding: 18px;
  }

  .home-proof-band article {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-about-feature {
    background: var(--white);
  }

  .about-image-card {
    min-height: 410px;
    padding: 22px;
  }

  .about-image-card img {
    max-height: 260px;
  }

  .premium-product-slider {
    grid-auto-columns: minmax(284px, 1fr);
  }

  .premium-product-card .product-image {
    min-height: 260px;
  }

  .premium-product-card .product-image img {
    height: 220px;
  }

  .industry-circle-grid {
    grid-template-columns: 1fr;
  }

  .industry-circle-card {
    min-height: auto;
  }

  .hero-actions,
  .footer-cta,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

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

  .slider-controls {
    left: 18px;
    right: 18px;
    justify-content: center;
  }

  .trust-band,
  .contact-cards,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-widget,
  .footer-widget:first-child,
  .footer-widget:last-child {
    padding-right: 0;
    padding-left: 0;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 54px;
  }

  .logo-track img {
    width: 150px;
  }
}
